@databutton/firebase-types 1.59.18 → 1.59.20
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;
|
|
@@ -269,11 +274,16 @@ export interface CapabilityBase {
|
|
|
269
274
|
markedForDeletionBy: PerformedBy | null;
|
|
270
275
|
stepsToComplete: Step[];
|
|
271
276
|
displayName: string;
|
|
272
|
-
|
|
277
|
+
purpose: string;
|
|
273
278
|
aiGeneratedSummary: string;
|
|
274
279
|
}
|
|
280
|
+
export declare enum EndpointCapabilityBuildStage {
|
|
281
|
+
PROTOTYPE = "prototype",
|
|
282
|
+
ITERATE = "iterate"
|
|
283
|
+
}
|
|
275
284
|
export interface EndpointCapability extends CapabilityBase {
|
|
276
285
|
type: "endpoint";
|
|
286
|
+
stage: EndpointCapabilityBuildStage;
|
|
277
287
|
backendRef: string | null;
|
|
278
288
|
}
|
|
279
289
|
export type Capability = EndpointCapability;
|
|
@@ -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 EndpointCapabilityBuildStage;
|
|
15
|
+
(function (EndpointCapabilityBuildStage) {
|
|
16
|
+
EndpointCapabilityBuildStage["PROTOTYPE"] = "prototype";
|
|
17
|
+
EndpointCapabilityBuildStage["ITERATE"] = "iterate";
|
|
18
|
+
})(EndpointCapabilityBuildStage = EndpointCapabilityBuildStage || (EndpointCapabilityBuildStage = {}));
|
|
9
19
|
export const DefaultBackendName = "functions";
|
|
10
20
|
export var ScheduleState;
|
|
11
21
|
(function (ScheduleState) {
|