-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(functions-load-balancing): adapt to new common model
- Loading branch information
1 parent
a4be30d
commit a14d488
Showing
7 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import * as admin from "firebase-admin"; | ||
|
||
export type FirebaseTimestamp = admin.firestore.Timestamp | ||
export type FirebaseFieldValue = admin.firestore.FieldValue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import {Game as InnerGame} from '@pipeline/common'; | ||
import {FirebaseFieldValue, FirebaseTimestamp} from "./FirebaseTypes"; | ||
|
||
|
||
export type Game = InnerGame<FirebaseTimestamp, FirebaseFieldValue>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import {RTDBGame as InnerRTDBGame} from '@pipeline/common'; | ||
import {FirebaseFieldValue, FirebaseTimestamp} from "./FirebaseTypes"; | ||
|
||
|
||
export type RTDBGame = InnerRTDBGame<FirebaseTimestamp, FirebaseFieldValue>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import {Status as InnerStatus} from '@pipeline/common'; | ||
import {FirebaseFieldValue, FirebaseTimestamp} from "./FirebaseTypes"; | ||
|
||
|
||
export type Status = InnerStatus<FirebaseTimestamp, FirebaseFieldValue>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters