@databutton/firebase-types 1.87.6 → 1.87.8
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",
|
|
@@ -599,6 +601,7 @@ export declare enum ManagedBy {
|
|
|
599
601
|
}
|
|
600
602
|
export interface History {
|
|
601
603
|
createdBy: PerformedBy;
|
|
604
|
+
compressed?: boolean;
|
|
602
605
|
comment: string;
|
|
603
606
|
}
|
|
604
607
|
export interface ProjectLifeStageChangeRequest {
|
|
@@ -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) {
|