@databutton/firebase-types 1.87.7 → 1.87.9
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,9 +589,11 @@ export declare enum ProjectLifeStage {
|
|
|
589
589
|
Deleted = "deleted"
|
|
590
590
|
}
|
|
591
591
|
export declare enum TaskStatus {
|
|
592
|
+
BACKLOG = "backlog",
|
|
592
593
|
TODO = "todo",
|
|
593
594
|
IN_PROGRESS = "inprogress",
|
|
594
|
-
DONE = "done"
|
|
595
|
+
DONE = "done",
|
|
596
|
+
CANCELLED = "cancelled"
|
|
595
597
|
}
|
|
596
598
|
export declare enum ManagedBy {
|
|
597
599
|
AGENT = "agent",
|
|
@@ -36,9 +36,11 @@ export var ProjectLifeStage;
|
|
|
36
36
|
})(ProjectLifeStage || (ProjectLifeStage = {}));
|
|
37
37
|
export var TaskStatus;
|
|
38
38
|
(function (TaskStatus) {
|
|
39
|
+
TaskStatus["BACKLOG"] = "backlog";
|
|
39
40
|
TaskStatus["TODO"] = "todo";
|
|
40
41
|
TaskStatus["IN_PROGRESS"] = "inprogress";
|
|
41
42
|
TaskStatus["DONE"] = "done";
|
|
43
|
+
TaskStatus["CANCELLED"] = "cancelled";
|
|
42
44
|
})(TaskStatus || (TaskStatus = {}));
|
|
43
45
|
export var ManagedBy;
|
|
44
46
|
(function (ManagedBy) {
|