@databutton/firebase-types 1.12.0 → 1.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -17,7 +17,7 @@ export interface PerformedBySystem extends PerformerBase {
|
|
|
17
17
|
export declare type PerformedBy = PerformedByUser | PerformedBySystem;
|
|
18
18
|
export interface Profile {
|
|
19
19
|
displayName: string;
|
|
20
|
-
email
|
|
20
|
+
email?: string;
|
|
21
21
|
userId?: string;
|
|
22
22
|
earlyAccess?: boolean;
|
|
23
23
|
earlyAccessChangedAt?: Timestamp;
|
|
@@ -26,6 +26,8 @@ export interface Profile {
|
|
|
26
26
|
referredAsCollaboratorBy?: PerformedBy | null;
|
|
27
27
|
referredAsViewerBy?: PerformedBy | null;
|
|
28
28
|
readProjectEventsAt?: Timestamp | null;
|
|
29
|
+
migratedToProfileRef?: string;
|
|
30
|
+
migratedFromProfileRef?: string;
|
|
29
31
|
}
|
|
30
32
|
export interface App {
|
|
31
33
|
name: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@databutton/firebase-types",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.2",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"ts-lint": "tsc --noEmit",
|
|
27
27
|
"prepublishOnly": "tsc && rm lib/index.js",
|
|
28
28
|
"build": "tsc",
|
|
29
|
-
"execute": "ts-node-esm functions/run.ts",
|
|
29
|
+
"execute": "LOCAL=true ts-node-esm functions/run.ts",
|
|
30
30
|
"serve": "yarn build && firebase emulators:start --only functions",
|
|
31
31
|
"shell": "yarn build && firebase functions:shell",
|
|
32
32
|
"start": "yarn shell",
|