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