@databutton/firebase-types 1.59.19 → 1.59.21
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.
|
@@ -241,9 +241,14 @@ export interface MultipageAppPage {
|
|
|
241
241
|
*/
|
|
242
242
|
sequence: number;
|
|
243
243
|
}
|
|
244
|
+
export declare enum FrontendBuildStage {
|
|
245
|
+
PROTOTYPE = "prototype",
|
|
246
|
+
ITERATE = "iterate"
|
|
247
|
+
}
|
|
244
248
|
export interface Frontend {
|
|
245
249
|
name: string;
|
|
246
250
|
slug: string;
|
|
251
|
+
stage: FrontendBuildStage;
|
|
247
252
|
createdBy: PerformedBy;
|
|
248
253
|
markedForDeletionBy: PerformedBy | null;
|
|
249
254
|
codeBlockRef: string;
|
|
@@ -264,8 +269,13 @@ export interface Step {
|
|
|
264
269
|
state: StepState;
|
|
265
270
|
lastModifiedAt: Timestamp;
|
|
266
271
|
}
|
|
272
|
+
export declare enum CapabilityBuildStage {
|
|
273
|
+
PROTOTYPE = "prototype",
|
|
274
|
+
ITERATE = "iterate"
|
|
275
|
+
}
|
|
267
276
|
export interface CapabilityBase {
|
|
268
277
|
createdBy: PerformedBy;
|
|
278
|
+
stage: CapabilityBuildStage;
|
|
269
279
|
markedForDeletionBy: PerformedBy | null;
|
|
270
280
|
stepsToComplete: Step[];
|
|
271
281
|
displayName: string;
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
export var FrontendBuildStage;
|
|
2
|
+
(function (FrontendBuildStage) {
|
|
3
|
+
FrontendBuildStage["PROTOTYPE"] = "prototype";
|
|
4
|
+
FrontendBuildStage["ITERATE"] = "iterate";
|
|
5
|
+
})(FrontendBuildStage = FrontendBuildStage || (FrontendBuildStage = {}));
|
|
1
6
|
export const DefaultFrontendName = "App";
|
|
2
7
|
export var StepState;
|
|
3
8
|
(function (StepState) {
|
|
@@ -6,6 +11,11 @@ export var StepState;
|
|
|
6
11
|
StepState["FAILED"] = "failed";
|
|
7
12
|
StepState["DONE"] = "done";
|
|
8
13
|
})(StepState = StepState || (StepState = {}));
|
|
14
|
+
export var CapabilityBuildStage;
|
|
15
|
+
(function (CapabilityBuildStage) {
|
|
16
|
+
CapabilityBuildStage["PROTOTYPE"] = "prototype";
|
|
17
|
+
CapabilityBuildStage["ITERATE"] = "iterate";
|
|
18
|
+
})(CapabilityBuildStage = CapabilityBuildStage || (CapabilityBuildStage = {}));
|
|
9
19
|
export const DefaultBackendName = "functions";
|
|
10
20
|
export var ScheduleState;
|
|
11
21
|
(function (ScheduleState) {
|