@databutton/firebase-types 1.74.17 → 1.74.19
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.
|
@@ -131,8 +131,8 @@ export var ThirdPartyServiceCategory;
|
|
|
131
131
|
ThirdPartyServiceCategory["PAYMENTS"] = "payments";
|
|
132
132
|
ThirdPartyServiceCategory["STORAGE"] = "storage";
|
|
133
133
|
})(ThirdPartyServiceCategory = ThirdPartyServiceCategory || (ThirdPartyServiceCategory = {}));
|
|
134
|
-
export var
|
|
135
|
-
(function (
|
|
136
|
-
|
|
137
|
-
})(
|
|
134
|
+
export var UiComponentTag;
|
|
135
|
+
(function (UiComponentTag) {
|
|
136
|
+
UiComponentTag["PROVIDER"] = "provider";
|
|
137
|
+
})(UiComponentTag = UiComponentTag || (UiComponentTag = {}));
|
|
138
138
|
//# sourceMappingURL=enums.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Timestamp } from "firebase/firestore";
|
|
2
2
|
import type { JsonObject, Primitive } from "type-fest";
|
|
3
|
-
import type { ThirdPartyAuthName, ThirdPartyDatabaseName, ThirdPartyPaymentsName, ThirdPartyServiceCategory, ThirdPartyStorageName,
|
|
3
|
+
import type { ThirdPartyAuthName, ThirdPartyDatabaseName, ThirdPartyPaymentsName, ThirdPartyServiceCategory, ThirdPartyStorageName, UiComponentTag } from "./enums.js";
|
|
4
4
|
/**
|
|
5
5
|
* Types here should reflect data format stored in firestore and
|
|
6
6
|
* either be backwards-compatible or migrated when needed
|
|
@@ -52,7 +52,7 @@ export interface Profile {
|
|
|
52
52
|
aimingToBuild?: string;
|
|
53
53
|
heardAboutDatabuttonFrom?: string;
|
|
54
54
|
heardAboutDatabuttonFromComment?: string;
|
|
55
|
-
|
|
55
|
+
heardAboutDatabuttonFromList?: string[];
|
|
56
56
|
announcementsReadAt?: {
|
|
57
57
|
profileCardsReleased?: Timestamp | null;
|
|
58
58
|
billingIntroduced?: Timestamp | null;
|
|
@@ -304,13 +304,13 @@ export interface UiComponent {
|
|
|
304
304
|
markedForDeletionBy: PerformedBy | null;
|
|
305
305
|
codeBlockRef: string;
|
|
306
306
|
example?: string;
|
|
307
|
+
tags?: UiComponentTag[];
|
|
307
308
|
}
|
|
308
309
|
export interface UiFile {
|
|
309
310
|
name: string;
|
|
310
311
|
createdBy: PerformedBy;
|
|
311
312
|
markedForDeletionBy: PerformedBy | null;
|
|
312
313
|
codeBlockRef: string;
|
|
313
|
-
tags?: UiFileTag[];
|
|
314
314
|
}
|
|
315
315
|
export declare enum StepState {
|
|
316
316
|
TODO = "todo",
|