@databutton/firebase-types 1.87.22 → 1.87.24
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.
|
@@ -589,7 +589,6 @@ export declare enum ProjectLifeStage {
|
|
|
589
589
|
Deleted = "deleted"
|
|
590
590
|
}
|
|
591
591
|
export declare enum TaskStatus {
|
|
592
|
-
BACKLOG = "backlog",
|
|
593
592
|
TODO = "todo",
|
|
594
593
|
IN_PROGRESS = "inprogress",
|
|
595
594
|
DONE = "done",
|
|
@@ -1982,6 +1981,10 @@ export interface ProjectPlan {
|
|
|
1982
1981
|
* The project this plan is currently based on (can be updated as the project evolves)
|
|
1983
1982
|
*/
|
|
1984
1983
|
basedOnProjectId?: string | null;
|
|
1984
|
+
/**
|
|
1985
|
+
* Which flow should be triggered from this project plan
|
|
1986
|
+
*/
|
|
1987
|
+
flow?: "initial-gen" | "fork";
|
|
1985
1988
|
}
|
|
1986
1989
|
export interface AiUsageRecord {
|
|
1987
1990
|
/**
|
|
@@ -36,7 +36,6 @@ export var ProjectLifeStage;
|
|
|
36
36
|
})(ProjectLifeStage || (ProjectLifeStage = {}));
|
|
37
37
|
export var TaskStatus;
|
|
38
38
|
(function (TaskStatus) {
|
|
39
|
-
TaskStatus["BACKLOG"] = "backlog";
|
|
40
39
|
TaskStatus["TODO"] = "todo";
|
|
41
40
|
TaskStatus["IN_PROGRESS"] = "inprogress";
|
|
42
41
|
TaskStatus["DONE"] = "done";
|