@agent-plan/core 0.2.21 → 0.2.22-next.0
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.
- package/dist/display-status.d.ts +2 -4
- package/dist/display-status.d.ts.map +1 -1
- package/dist/display-status.js +4 -13
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/package-version.d.ts +9 -0
- package/dist/package-version.d.ts.map +1 -0
- package/dist/package-version.js +35 -0
- package/dist/plan-store.d.ts +21 -9
- package/dist/plan-store.d.ts.map +1 -1
- package/dist/plan-store.js +232 -70
- package/dist/planner-rules.d.ts +21 -0
- package/dist/planner-rules.d.ts.map +1 -0
- package/dist/planner-rules.js +58 -0
- package/dist/read-tracking.d.ts +58 -0
- package/dist/read-tracking.d.ts.map +1 -0
- package/dist/read-tracking.js +87 -0
- package/dist/recap.d.ts.map +1 -1
- package/dist/recap.js +39 -24
- package/dist/schema.d.ts +227 -227
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +6 -6
- package/dist/task-selection.d.ts +37 -0
- package/dist/task-selection.d.ts.map +1 -1
- package/dist/task-selection.js +38 -10
- package/package.json +1 -1
package/dist/schema.d.ts
CHANGED
|
@@ -673,27 +673,27 @@ export declare const ProjectSchema: z.ZodObject<{
|
|
|
673
673
|
resumedAt?: string | undefined;
|
|
674
674
|
}[] | undefined;
|
|
675
675
|
}>;
|
|
676
|
-
export declare const SubtaskStatusSchema: z.ZodEnum<["planned", "in-progress", "
|
|
677
|
-
export declare const TaskStatusSchema: z.ZodEnum<["planned", "in-progress", "
|
|
678
|
-
export declare const PhaseStatusSchema: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "
|
|
679
|
-
export declare const RequirementStatusSchema: z.ZodEnum<["planned", "in-progress", "
|
|
680
|
-
export declare const FeatureStatusSchema: z.ZodEnum<["planned", "in-progress", "
|
|
676
|
+
export declare const SubtaskStatusSchema: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
677
|
+
export declare const TaskStatusSchema: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
678
|
+
export declare const PhaseStatusSchema: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
679
|
+
export declare const RequirementStatusSchema: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
680
|
+
export declare const FeatureStatusSchema: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
681
681
|
export declare const SubtaskSchema: z.ZodObject<{
|
|
682
682
|
id: z.ZodString;
|
|
683
683
|
title: z.ZodString;
|
|
684
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
684
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
685
685
|
description: z.ZodDefault<z.ZodString>;
|
|
686
686
|
createdAt: z.ZodString;
|
|
687
687
|
updatedAt: z.ZodString;
|
|
688
688
|
}, "strip", z.ZodTypeAny, {
|
|
689
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
689
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
690
690
|
updatedAt: string;
|
|
691
691
|
id: string;
|
|
692
692
|
createdAt: string;
|
|
693
693
|
title: string;
|
|
694
694
|
description: string;
|
|
695
695
|
}, {
|
|
696
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
696
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
697
697
|
updatedAt: string;
|
|
698
698
|
id: string;
|
|
699
699
|
createdAt: string;
|
|
@@ -731,8 +731,8 @@ export declare function needsMotivation(fromStatus: string, toStatus: string): b
|
|
|
731
731
|
export declare const StatusLogEntrySchema: z.ZodObject<{
|
|
732
732
|
id: z.ZodString;
|
|
733
733
|
date: z.ZodString;
|
|
734
|
-
fromStatus: z.ZodEnum<["planned", "in-progress", "
|
|
735
|
-
toStatus: z.ZodEnum<["planned", "in-progress", "
|
|
734
|
+
fromStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
735
|
+
toStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
736
736
|
title: z.ZodString;
|
|
737
737
|
description: z.ZodDefault<z.ZodString>;
|
|
738
738
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -740,14 +740,14 @@ export declare const StatusLogEntrySchema: z.ZodObject<{
|
|
|
740
740
|
date: string;
|
|
741
741
|
title: string;
|
|
742
742
|
description: string;
|
|
743
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
744
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
743
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
744
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
745
745
|
}, {
|
|
746
746
|
id: string;
|
|
747
747
|
date: string;
|
|
748
748
|
title: string;
|
|
749
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
750
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
749
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
750
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
751
751
|
description?: string | undefined;
|
|
752
752
|
}>;
|
|
753
753
|
/** Like StatusLogEntrySchema but for the DERIVED PHASE status, which includes
|
|
@@ -755,8 +755,8 @@ export declare const StatusLogEntrySchema: z.ZodObject<{
|
|
|
755
755
|
export declare const PhaseStatusLogEntrySchema: z.ZodObject<{
|
|
756
756
|
id: z.ZodString;
|
|
757
757
|
date: z.ZodString;
|
|
758
|
-
fromStatus: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "
|
|
759
|
-
toStatus: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "
|
|
758
|
+
fromStatus: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
759
|
+
toStatus: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
760
760
|
title: z.ZodString;
|
|
761
761
|
description: z.ZodDefault<z.ZodString>;
|
|
762
762
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -764,14 +764,14 @@ export declare const PhaseStatusLogEntrySchema: z.ZodObject<{
|
|
|
764
764
|
date: string;
|
|
765
765
|
title: string;
|
|
766
766
|
description: string;
|
|
767
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
768
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
767
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
768
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
769
769
|
}, {
|
|
770
770
|
id: string;
|
|
771
771
|
date: string;
|
|
772
772
|
title: string;
|
|
773
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
774
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
773
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
774
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
775
775
|
description?: string | undefined;
|
|
776
776
|
}>;
|
|
777
777
|
export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
@@ -785,7 +785,7 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
785
785
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
786
786
|
shortName: z.ZodString;
|
|
787
787
|
title: z.ZodString;
|
|
788
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
788
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
789
789
|
description: z.ZodDefault<z.ZodString>;
|
|
790
790
|
/** Updated only when this task's description changes; distinct from entity updatedAt. */
|
|
791
791
|
descriptionUpdatedAt: z.ZodDefault<z.ZodString>;
|
|
@@ -793,8 +793,8 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
793
793
|
statusLog: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
794
794
|
id: z.ZodString;
|
|
795
795
|
date: z.ZodString;
|
|
796
|
-
fromStatus: z.ZodEnum<["planned", "in-progress", "
|
|
797
|
-
toStatus: z.ZodEnum<["planned", "in-progress", "
|
|
796
|
+
fromStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
797
|
+
toStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
798
798
|
title: z.ZodString;
|
|
799
799
|
description: z.ZodDefault<z.ZodString>;
|
|
800
800
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -802,14 +802,14 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
802
802
|
date: string;
|
|
803
803
|
title: string;
|
|
804
804
|
description: string;
|
|
805
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
806
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
805
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
806
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
807
807
|
}, {
|
|
808
808
|
id: string;
|
|
809
809
|
date: string;
|
|
810
810
|
title: string;
|
|
811
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
812
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
811
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
812
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
813
813
|
description?: string | undefined;
|
|
814
814
|
}>, "many">>;
|
|
815
815
|
decisions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -857,19 +857,19 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
857
857
|
subtasks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
858
858
|
id: z.ZodString;
|
|
859
859
|
title: z.ZodString;
|
|
860
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
860
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
861
861
|
description: z.ZodDefault<z.ZodString>;
|
|
862
862
|
createdAt: z.ZodString;
|
|
863
863
|
updatedAt: z.ZodString;
|
|
864
864
|
}, "strip", z.ZodTypeAny, {
|
|
865
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
865
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
866
866
|
updatedAt: string;
|
|
867
867
|
id: string;
|
|
868
868
|
createdAt: string;
|
|
869
869
|
title: string;
|
|
870
870
|
description: string;
|
|
871
871
|
}, {
|
|
872
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
872
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
873
873
|
updatedAt: string;
|
|
874
874
|
id: string;
|
|
875
875
|
createdAt: string;
|
|
@@ -951,7 +951,7 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
951
951
|
updatedAt: z.ZodString;
|
|
952
952
|
}, "strip", z.ZodTypeAny, {
|
|
953
953
|
number: number;
|
|
954
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
954
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
955
955
|
updatedAt: string;
|
|
956
956
|
notes: string;
|
|
957
957
|
id: string;
|
|
@@ -977,8 +977,8 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
977
977
|
date: string;
|
|
978
978
|
title: string;
|
|
979
979
|
description: string;
|
|
980
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
981
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
980
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
981
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
982
982
|
}[];
|
|
983
983
|
checklist: (string | {
|
|
984
984
|
number: number;
|
|
@@ -987,7 +987,7 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
987
987
|
checked: boolean;
|
|
988
988
|
})[];
|
|
989
989
|
subtasks: {
|
|
990
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
990
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
991
991
|
updatedAt: string;
|
|
992
992
|
id: string;
|
|
993
993
|
createdAt: string;
|
|
@@ -1018,7 +1018,7 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1018
1018
|
startedAt: string;
|
|
1019
1019
|
completedAt: string;
|
|
1020
1020
|
}, {
|
|
1021
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1021
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1022
1022
|
updatedAt: string;
|
|
1023
1023
|
id: string;
|
|
1024
1024
|
createdAt: string;
|
|
@@ -1044,8 +1044,8 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1044
1044
|
id: string;
|
|
1045
1045
|
date: string;
|
|
1046
1046
|
title: string;
|
|
1047
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1048
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1047
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1048
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1049
1049
|
description?: string | undefined;
|
|
1050
1050
|
}[] | undefined;
|
|
1051
1051
|
checklist?: (string | {
|
|
@@ -1055,7 +1055,7 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1055
1055
|
checked?: boolean | undefined;
|
|
1056
1056
|
})[] | undefined;
|
|
1057
1057
|
subtasks?: {
|
|
1058
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1058
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1059
1059
|
updatedAt: string;
|
|
1060
1060
|
id: string;
|
|
1061
1061
|
createdAt: string;
|
|
@@ -1093,7 +1093,7 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1093
1093
|
checked: boolean;
|
|
1094
1094
|
}[];
|
|
1095
1095
|
number: number;
|
|
1096
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1096
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1097
1097
|
updatedAt: string;
|
|
1098
1098
|
notes: string;
|
|
1099
1099
|
id: string;
|
|
@@ -1119,11 +1119,11 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1119
1119
|
date: string;
|
|
1120
1120
|
title: string;
|
|
1121
1121
|
description: string;
|
|
1122
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1123
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1122
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1123
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1124
1124
|
}[];
|
|
1125
1125
|
subtasks: {
|
|
1126
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1126
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1127
1127
|
updatedAt: string;
|
|
1128
1128
|
id: string;
|
|
1129
1129
|
createdAt: string;
|
|
@@ -1154,7 +1154,7 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1154
1154
|
startedAt: string;
|
|
1155
1155
|
completedAt: string;
|
|
1156
1156
|
}, {
|
|
1157
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1157
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1158
1158
|
updatedAt: string;
|
|
1159
1159
|
id: string;
|
|
1160
1160
|
createdAt: string;
|
|
@@ -1180,8 +1180,8 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1180
1180
|
id: string;
|
|
1181
1181
|
date: string;
|
|
1182
1182
|
title: string;
|
|
1183
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1184
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1183
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1184
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1185
1185
|
description?: string | undefined;
|
|
1186
1186
|
}[] | undefined;
|
|
1187
1187
|
checklist?: (string | {
|
|
@@ -1191,7 +1191,7 @@ export declare const TaskSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1191
1191
|
checked?: boolean | undefined;
|
|
1192
1192
|
})[] | undefined;
|
|
1193
1193
|
subtasks?: {
|
|
1194
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1194
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1195
1195
|
updatedAt: string;
|
|
1196
1196
|
id: string;
|
|
1197
1197
|
createdAt: string;
|
|
@@ -1299,7 +1299,7 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1299
1299
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
1300
1300
|
shortName: z.ZodString;
|
|
1301
1301
|
title: z.ZodString;
|
|
1302
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
1302
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
1303
1303
|
description: z.ZodDefault<z.ZodString>;
|
|
1304
1304
|
/** Updated only when this task's description changes; distinct from entity updatedAt. */
|
|
1305
1305
|
descriptionUpdatedAt: z.ZodDefault<z.ZodString>;
|
|
@@ -1307,8 +1307,8 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1307
1307
|
statusLog: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1308
1308
|
id: z.ZodString;
|
|
1309
1309
|
date: z.ZodString;
|
|
1310
|
-
fromStatus: z.ZodEnum<["planned", "in-progress", "
|
|
1311
|
-
toStatus: z.ZodEnum<["planned", "in-progress", "
|
|
1310
|
+
fromStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
1311
|
+
toStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
1312
1312
|
title: z.ZodString;
|
|
1313
1313
|
description: z.ZodDefault<z.ZodString>;
|
|
1314
1314
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1316,14 +1316,14 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1316
1316
|
date: string;
|
|
1317
1317
|
title: string;
|
|
1318
1318
|
description: string;
|
|
1319
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1320
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1319
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1320
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1321
1321
|
}, {
|
|
1322
1322
|
id: string;
|
|
1323
1323
|
date: string;
|
|
1324
1324
|
title: string;
|
|
1325
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1326
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1325
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1326
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1327
1327
|
description?: string | undefined;
|
|
1328
1328
|
}>, "many">>;
|
|
1329
1329
|
decisions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1371,19 +1371,19 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1371
1371
|
subtasks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1372
1372
|
id: z.ZodString;
|
|
1373
1373
|
title: z.ZodString;
|
|
1374
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
1374
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
1375
1375
|
description: z.ZodDefault<z.ZodString>;
|
|
1376
1376
|
createdAt: z.ZodString;
|
|
1377
1377
|
updatedAt: z.ZodString;
|
|
1378
1378
|
}, "strip", z.ZodTypeAny, {
|
|
1379
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1379
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1380
1380
|
updatedAt: string;
|
|
1381
1381
|
id: string;
|
|
1382
1382
|
createdAt: string;
|
|
1383
1383
|
title: string;
|
|
1384
1384
|
description: string;
|
|
1385
1385
|
}, {
|
|
1386
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1386
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1387
1387
|
updatedAt: string;
|
|
1388
1388
|
id: string;
|
|
1389
1389
|
createdAt: string;
|
|
@@ -1465,7 +1465,7 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1465
1465
|
updatedAt: z.ZodString;
|
|
1466
1466
|
}, "strip", z.ZodTypeAny, {
|
|
1467
1467
|
number: number;
|
|
1468
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1468
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1469
1469
|
updatedAt: string;
|
|
1470
1470
|
notes: string;
|
|
1471
1471
|
id: string;
|
|
@@ -1491,8 +1491,8 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1491
1491
|
date: string;
|
|
1492
1492
|
title: string;
|
|
1493
1493
|
description: string;
|
|
1494
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1495
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1494
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1495
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1496
1496
|
}[];
|
|
1497
1497
|
checklist: (string | {
|
|
1498
1498
|
number: number;
|
|
@@ -1501,7 +1501,7 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1501
1501
|
checked: boolean;
|
|
1502
1502
|
})[];
|
|
1503
1503
|
subtasks: {
|
|
1504
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1504
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1505
1505
|
updatedAt: string;
|
|
1506
1506
|
id: string;
|
|
1507
1507
|
createdAt: string;
|
|
@@ -1532,7 +1532,7 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1532
1532
|
startedAt: string;
|
|
1533
1533
|
completedAt: string;
|
|
1534
1534
|
}, {
|
|
1535
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1535
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1536
1536
|
updatedAt: string;
|
|
1537
1537
|
id: string;
|
|
1538
1538
|
createdAt: string;
|
|
@@ -1558,8 +1558,8 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1558
1558
|
id: string;
|
|
1559
1559
|
date: string;
|
|
1560
1560
|
title: string;
|
|
1561
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1562
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1561
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1562
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1563
1563
|
description?: string | undefined;
|
|
1564
1564
|
}[] | undefined;
|
|
1565
1565
|
checklist?: (string | {
|
|
@@ -1569,7 +1569,7 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1569
1569
|
checked?: boolean | undefined;
|
|
1570
1570
|
})[] | undefined;
|
|
1571
1571
|
subtasks?: {
|
|
1572
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1572
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1573
1573
|
updatedAt: string;
|
|
1574
1574
|
id: string;
|
|
1575
1575
|
createdAt: string;
|
|
@@ -1607,7 +1607,7 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1607
1607
|
checked: boolean;
|
|
1608
1608
|
}[];
|
|
1609
1609
|
number: number;
|
|
1610
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1610
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1611
1611
|
updatedAt: string;
|
|
1612
1612
|
notes: string;
|
|
1613
1613
|
id: string;
|
|
@@ -1633,11 +1633,11 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1633
1633
|
date: string;
|
|
1634
1634
|
title: string;
|
|
1635
1635
|
description: string;
|
|
1636
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1637
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1636
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1637
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1638
1638
|
}[];
|
|
1639
1639
|
subtasks: {
|
|
1640
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1640
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1641
1641
|
updatedAt: string;
|
|
1642
1642
|
id: string;
|
|
1643
1643
|
createdAt: string;
|
|
@@ -1668,7 +1668,7 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1668
1668
|
startedAt: string;
|
|
1669
1669
|
completedAt: string;
|
|
1670
1670
|
}, {
|
|
1671
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1671
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1672
1672
|
updatedAt: string;
|
|
1673
1673
|
id: string;
|
|
1674
1674
|
createdAt: string;
|
|
@@ -1694,8 +1694,8 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1694
1694
|
id: string;
|
|
1695
1695
|
date: string;
|
|
1696
1696
|
title: string;
|
|
1697
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1698
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1697
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1698
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1699
1699
|
description?: string | undefined;
|
|
1700
1700
|
}[] | undefined;
|
|
1701
1701
|
checklist?: (string | {
|
|
@@ -1705,7 +1705,7 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1705
1705
|
checked?: boolean | undefined;
|
|
1706
1706
|
})[] | undefined;
|
|
1707
1707
|
subtasks?: {
|
|
1708
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1708
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1709
1709
|
updatedAt: string;
|
|
1710
1710
|
id: string;
|
|
1711
1711
|
createdAt: string;
|
|
@@ -1768,8 +1768,8 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1768
1768
|
statusLog: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1769
1769
|
id: z.ZodString;
|
|
1770
1770
|
date: z.ZodString;
|
|
1771
|
-
fromStatus: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "
|
|
1772
|
-
toStatus: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "
|
|
1771
|
+
fromStatus: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
1772
|
+
toStatus: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
1773
1773
|
title: z.ZodString;
|
|
1774
1774
|
description: z.ZodDefault<z.ZodString>;
|
|
1775
1775
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1777,14 +1777,14 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1777
1777
|
date: string;
|
|
1778
1778
|
title: string;
|
|
1779
1779
|
description: string;
|
|
1780
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1781
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1780
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
1781
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
1782
1782
|
}, {
|
|
1783
1783
|
id: string;
|
|
1784
1784
|
date: string;
|
|
1785
1785
|
title: string;
|
|
1786
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1787
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1786
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
1787
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
1788
1788
|
description?: string | undefined;
|
|
1789
1789
|
}>, "many">>;
|
|
1790
1790
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1814,8 +1814,8 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1814
1814
|
date: string;
|
|
1815
1815
|
title: string;
|
|
1816
1816
|
description: string;
|
|
1817
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1818
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1817
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
1818
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
1819
1819
|
}[];
|
|
1820
1820
|
dependsOn: string[];
|
|
1821
1821
|
slug: string;
|
|
@@ -1836,7 +1836,7 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1836
1836
|
checked: boolean;
|
|
1837
1837
|
}[];
|
|
1838
1838
|
number: number;
|
|
1839
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1839
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1840
1840
|
updatedAt: string;
|
|
1841
1841
|
notes: string;
|
|
1842
1842
|
id: string;
|
|
@@ -1862,11 +1862,11 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1862
1862
|
date: string;
|
|
1863
1863
|
title: string;
|
|
1864
1864
|
description: string;
|
|
1865
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1866
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1865
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1866
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1867
1867
|
}[];
|
|
1868
1868
|
subtasks: {
|
|
1869
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1869
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1870
1870
|
updatedAt: string;
|
|
1871
1871
|
id: string;
|
|
1872
1872
|
createdAt: string;
|
|
@@ -1933,8 +1933,8 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1933
1933
|
id: string;
|
|
1934
1934
|
date: string;
|
|
1935
1935
|
title: string;
|
|
1936
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1937
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1936
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
1937
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
1938
1938
|
description?: string | undefined;
|
|
1939
1939
|
}[] | undefined;
|
|
1940
1940
|
dependsOn?: string[] | undefined;
|
|
@@ -1949,7 +1949,7 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1949
1949
|
completionCriteria?: string[] | undefined;
|
|
1950
1950
|
taskIds?: string[] | undefined;
|
|
1951
1951
|
tasks?: {
|
|
1952
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1952
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1953
1953
|
updatedAt: string;
|
|
1954
1954
|
id: string;
|
|
1955
1955
|
createdAt: string;
|
|
@@ -1975,8 +1975,8 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1975
1975
|
id: string;
|
|
1976
1976
|
date: string;
|
|
1977
1977
|
title: string;
|
|
1978
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
1979
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
1978
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1979
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1980
1980
|
description?: string | undefined;
|
|
1981
1981
|
}[] | undefined;
|
|
1982
1982
|
checklist?: (string | {
|
|
@@ -1986,7 +1986,7 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
1986
1986
|
checked?: boolean | undefined;
|
|
1987
1987
|
})[] | undefined;
|
|
1988
1988
|
subtasks?: {
|
|
1989
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
1989
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
1990
1990
|
updatedAt: string;
|
|
1991
1991
|
id: string;
|
|
1992
1992
|
createdAt: string;
|
|
@@ -2071,8 +2071,8 @@ export declare const FeatureSchema: z.ZodObject<{
|
|
|
2071
2071
|
statusLog: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2072
2072
|
id: z.ZodString;
|
|
2073
2073
|
date: z.ZodString;
|
|
2074
|
-
fromStatus: z.ZodEnum<["planned", "in-progress", "
|
|
2075
|
-
toStatus: z.ZodEnum<["planned", "in-progress", "
|
|
2074
|
+
fromStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
2075
|
+
toStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
2076
2076
|
title: z.ZodString;
|
|
2077
2077
|
description: z.ZodDefault<z.ZodString>;
|
|
2078
2078
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2080,14 +2080,14 @@ export declare const FeatureSchema: z.ZodObject<{
|
|
|
2080
2080
|
date: string;
|
|
2081
2081
|
title: string;
|
|
2082
2082
|
description: string;
|
|
2083
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2084
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2083
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2084
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2085
2085
|
}, {
|
|
2086
2086
|
id: string;
|
|
2087
2087
|
date: string;
|
|
2088
2088
|
title: string;
|
|
2089
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2090
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2089
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2090
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2091
2091
|
description?: string | undefined;
|
|
2092
2092
|
}>, "many">>;
|
|
2093
2093
|
createdAt: z.ZodString;
|
|
@@ -2115,8 +2115,8 @@ export declare const FeatureSchema: z.ZodObject<{
|
|
|
2115
2115
|
date: string;
|
|
2116
2116
|
title: string;
|
|
2117
2117
|
description: string;
|
|
2118
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2119
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2118
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2119
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2120
2120
|
}[];
|
|
2121
2121
|
dependsOn: string[];
|
|
2122
2122
|
discussedAt: string;
|
|
@@ -2149,8 +2149,8 @@ export declare const FeatureSchema: z.ZodObject<{
|
|
|
2149
2149
|
id: string;
|
|
2150
2150
|
date: string;
|
|
2151
2151
|
title: string;
|
|
2152
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2153
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2152
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2153
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2154
2154
|
description?: string | undefined;
|
|
2155
2155
|
}[] | undefined;
|
|
2156
2156
|
dependsOn?: string[] | undefined;
|
|
@@ -2209,8 +2209,8 @@ export declare const FeaturesDocumentSchema: z.ZodObject<{
|
|
|
2209
2209
|
statusLog: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2210
2210
|
id: z.ZodString;
|
|
2211
2211
|
date: z.ZodString;
|
|
2212
|
-
fromStatus: z.ZodEnum<["planned", "in-progress", "
|
|
2213
|
-
toStatus: z.ZodEnum<["planned", "in-progress", "
|
|
2212
|
+
fromStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
2213
|
+
toStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
2214
2214
|
title: z.ZodString;
|
|
2215
2215
|
description: z.ZodDefault<z.ZodString>;
|
|
2216
2216
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2218,14 +2218,14 @@ export declare const FeaturesDocumentSchema: z.ZodObject<{
|
|
|
2218
2218
|
date: string;
|
|
2219
2219
|
title: string;
|
|
2220
2220
|
description: string;
|
|
2221
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2222
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2221
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2222
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2223
2223
|
}, {
|
|
2224
2224
|
id: string;
|
|
2225
2225
|
date: string;
|
|
2226
2226
|
title: string;
|
|
2227
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2228
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2227
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2228
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2229
2229
|
description?: string | undefined;
|
|
2230
2230
|
}>, "many">>;
|
|
2231
2231
|
createdAt: z.ZodString;
|
|
@@ -2253,8 +2253,8 @@ export declare const FeaturesDocumentSchema: z.ZodObject<{
|
|
|
2253
2253
|
date: string;
|
|
2254
2254
|
title: string;
|
|
2255
2255
|
description: string;
|
|
2256
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2257
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2256
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2257
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2258
2258
|
}[];
|
|
2259
2259
|
dependsOn: string[];
|
|
2260
2260
|
discussedAt: string;
|
|
@@ -2287,8 +2287,8 @@ export declare const FeaturesDocumentSchema: z.ZodObject<{
|
|
|
2287
2287
|
id: string;
|
|
2288
2288
|
date: string;
|
|
2289
2289
|
title: string;
|
|
2290
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2291
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2290
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2291
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2292
2292
|
description?: string | undefined;
|
|
2293
2293
|
}[] | undefined;
|
|
2294
2294
|
dependsOn?: string[] | undefined;
|
|
@@ -2325,8 +2325,8 @@ export declare const FeaturesDocumentSchema: z.ZodObject<{
|
|
|
2325
2325
|
date: string;
|
|
2326
2326
|
title: string;
|
|
2327
2327
|
description: string;
|
|
2328
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2329
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2328
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2329
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2330
2330
|
}[];
|
|
2331
2331
|
dependsOn: string[];
|
|
2332
2332
|
discussedAt: string;
|
|
@@ -2361,8 +2361,8 @@ export declare const FeaturesDocumentSchema: z.ZodObject<{
|
|
|
2361
2361
|
id: string;
|
|
2362
2362
|
date: string;
|
|
2363
2363
|
title: string;
|
|
2364
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2365
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2364
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2365
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2366
2366
|
description?: string | undefined;
|
|
2367
2367
|
}[] | undefined;
|
|
2368
2368
|
dependsOn?: string[] | undefined;
|
|
@@ -2380,18 +2380,18 @@ export declare const MacroTaskSchema: z.ZodObject<{
|
|
|
2380
2380
|
id: z.ZodString;
|
|
2381
2381
|
title: z.ZodString;
|
|
2382
2382
|
description: z.ZodDefault<z.ZodString>;
|
|
2383
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
2383
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
2384
2384
|
createdAt: z.ZodString;
|
|
2385
2385
|
updatedAt: z.ZodString;
|
|
2386
2386
|
}, "strip", z.ZodTypeAny, {
|
|
2387
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2387
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2388
2388
|
updatedAt: string;
|
|
2389
2389
|
id: string;
|
|
2390
2390
|
createdAt: string;
|
|
2391
2391
|
title: string;
|
|
2392
2392
|
description: string;
|
|
2393
2393
|
}, {
|
|
2394
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2394
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2395
2395
|
updatedAt: string;
|
|
2396
2396
|
id: string;
|
|
2397
2397
|
createdAt: string;
|
|
@@ -2402,23 +2402,23 @@ export declare const RequirementSchema: z.ZodObject<{
|
|
|
2402
2402
|
id: z.ZodString;
|
|
2403
2403
|
title: z.ZodString;
|
|
2404
2404
|
description: z.ZodDefault<z.ZodString>;
|
|
2405
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
2405
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
2406
2406
|
macroTasks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2407
2407
|
id: z.ZodString;
|
|
2408
2408
|
title: z.ZodString;
|
|
2409
2409
|
description: z.ZodDefault<z.ZodString>;
|
|
2410
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
2410
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
2411
2411
|
createdAt: z.ZodString;
|
|
2412
2412
|
updatedAt: z.ZodString;
|
|
2413
2413
|
}, "strip", z.ZodTypeAny, {
|
|
2414
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2414
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2415
2415
|
updatedAt: string;
|
|
2416
2416
|
id: string;
|
|
2417
2417
|
createdAt: string;
|
|
2418
2418
|
title: string;
|
|
2419
2419
|
description: string;
|
|
2420
2420
|
}, {
|
|
2421
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2421
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2422
2422
|
updatedAt: string;
|
|
2423
2423
|
id: string;
|
|
2424
2424
|
createdAt: string;
|
|
@@ -2429,14 +2429,14 @@ export declare const RequirementSchema: z.ZodObject<{
|
|
|
2429
2429
|
createdAt: z.ZodString;
|
|
2430
2430
|
updatedAt: z.ZodString;
|
|
2431
2431
|
}, "strip", z.ZodTypeAny, {
|
|
2432
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2432
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2433
2433
|
updatedAt: string;
|
|
2434
2434
|
id: string;
|
|
2435
2435
|
createdAt: string;
|
|
2436
2436
|
title: string;
|
|
2437
2437
|
description: string;
|
|
2438
2438
|
macroTasks: {
|
|
2439
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2439
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2440
2440
|
updatedAt: string;
|
|
2441
2441
|
id: string;
|
|
2442
2442
|
createdAt: string;
|
|
@@ -2445,14 +2445,14 @@ export declare const RequirementSchema: z.ZodObject<{
|
|
|
2445
2445
|
}[];
|
|
2446
2446
|
linkedPhaseIds: string[];
|
|
2447
2447
|
}, {
|
|
2448
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2448
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2449
2449
|
updatedAt: string;
|
|
2450
2450
|
id: string;
|
|
2451
2451
|
createdAt: string;
|
|
2452
2452
|
title: string;
|
|
2453
2453
|
description?: string | undefined;
|
|
2454
2454
|
macroTasks?: {
|
|
2455
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2455
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2456
2456
|
updatedAt: string;
|
|
2457
2457
|
id: string;
|
|
2458
2458
|
createdAt: string;
|
|
@@ -2466,23 +2466,23 @@ export declare const RequirementsDocumentSchema: z.ZodObject<{
|
|
|
2466
2466
|
id: z.ZodString;
|
|
2467
2467
|
title: z.ZodString;
|
|
2468
2468
|
description: z.ZodDefault<z.ZodString>;
|
|
2469
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
2469
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
2470
2470
|
macroTasks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2471
2471
|
id: z.ZodString;
|
|
2472
2472
|
title: z.ZodString;
|
|
2473
2473
|
description: z.ZodDefault<z.ZodString>;
|
|
2474
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
2474
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
2475
2475
|
createdAt: z.ZodString;
|
|
2476
2476
|
updatedAt: z.ZodString;
|
|
2477
2477
|
}, "strip", z.ZodTypeAny, {
|
|
2478
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2478
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2479
2479
|
updatedAt: string;
|
|
2480
2480
|
id: string;
|
|
2481
2481
|
createdAt: string;
|
|
2482
2482
|
title: string;
|
|
2483
2483
|
description: string;
|
|
2484
2484
|
}, {
|
|
2485
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2485
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2486
2486
|
updatedAt: string;
|
|
2487
2487
|
id: string;
|
|
2488
2488
|
createdAt: string;
|
|
@@ -2493,14 +2493,14 @@ export declare const RequirementsDocumentSchema: z.ZodObject<{
|
|
|
2493
2493
|
createdAt: z.ZodString;
|
|
2494
2494
|
updatedAt: z.ZodString;
|
|
2495
2495
|
}, "strip", z.ZodTypeAny, {
|
|
2496
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2496
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2497
2497
|
updatedAt: string;
|
|
2498
2498
|
id: string;
|
|
2499
2499
|
createdAt: string;
|
|
2500
2500
|
title: string;
|
|
2501
2501
|
description: string;
|
|
2502
2502
|
macroTasks: {
|
|
2503
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2503
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2504
2504
|
updatedAt: string;
|
|
2505
2505
|
id: string;
|
|
2506
2506
|
createdAt: string;
|
|
@@ -2509,14 +2509,14 @@ export declare const RequirementsDocumentSchema: z.ZodObject<{
|
|
|
2509
2509
|
}[];
|
|
2510
2510
|
linkedPhaseIds: string[];
|
|
2511
2511
|
}, {
|
|
2512
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2512
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2513
2513
|
updatedAt: string;
|
|
2514
2514
|
id: string;
|
|
2515
2515
|
createdAt: string;
|
|
2516
2516
|
title: string;
|
|
2517
2517
|
description?: string | undefined;
|
|
2518
2518
|
macroTasks?: {
|
|
2519
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2519
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2520
2520
|
updatedAt: string;
|
|
2521
2521
|
id: string;
|
|
2522
2522
|
createdAt: string;
|
|
@@ -2527,14 +2527,14 @@ export declare const RequirementsDocumentSchema: z.ZodObject<{
|
|
|
2527
2527
|
}>, "many">;
|
|
2528
2528
|
}, "strip", z.ZodTypeAny, {
|
|
2529
2529
|
requirements: {
|
|
2530
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2530
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2531
2531
|
updatedAt: string;
|
|
2532
2532
|
id: string;
|
|
2533
2533
|
createdAt: string;
|
|
2534
2534
|
title: string;
|
|
2535
2535
|
description: string;
|
|
2536
2536
|
macroTasks: {
|
|
2537
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2537
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2538
2538
|
updatedAt: string;
|
|
2539
2539
|
id: string;
|
|
2540
2540
|
createdAt: string;
|
|
@@ -2545,14 +2545,14 @@ export declare const RequirementsDocumentSchema: z.ZodObject<{
|
|
|
2545
2545
|
}[];
|
|
2546
2546
|
}, {
|
|
2547
2547
|
requirements: {
|
|
2548
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2548
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2549
2549
|
updatedAt: string;
|
|
2550
2550
|
id: string;
|
|
2551
2551
|
createdAt: string;
|
|
2552
2552
|
title: string;
|
|
2553
2553
|
description?: string | undefined;
|
|
2554
2554
|
macroTasks?: {
|
|
2555
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
2555
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2556
2556
|
updatedAt: string;
|
|
2557
2557
|
id: string;
|
|
2558
2558
|
createdAt: string;
|
|
@@ -2893,8 +2893,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
2893
2893
|
statusLog: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2894
2894
|
id: z.ZodString;
|
|
2895
2895
|
date: z.ZodString;
|
|
2896
|
-
fromStatus: z.ZodEnum<["planned", "in-progress", "
|
|
2897
|
-
toStatus: z.ZodEnum<["planned", "in-progress", "
|
|
2896
|
+
fromStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
2897
|
+
toStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
2898
2898
|
title: z.ZodString;
|
|
2899
2899
|
description: z.ZodDefault<z.ZodString>;
|
|
2900
2900
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2902,14 +2902,14 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
2902
2902
|
date: string;
|
|
2903
2903
|
title: string;
|
|
2904
2904
|
description: string;
|
|
2905
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2906
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2905
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2906
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2907
2907
|
}, {
|
|
2908
2908
|
id: string;
|
|
2909
2909
|
date: string;
|
|
2910
2910
|
title: string;
|
|
2911
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2912
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2911
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2912
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2913
2913
|
description?: string | undefined;
|
|
2914
2914
|
}>, "many">>;
|
|
2915
2915
|
createdAt: z.ZodString;
|
|
@@ -2937,8 +2937,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
2937
2937
|
date: string;
|
|
2938
2938
|
title: string;
|
|
2939
2939
|
description: string;
|
|
2940
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2941
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2940
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2941
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2942
2942
|
}[];
|
|
2943
2943
|
dependsOn: string[];
|
|
2944
2944
|
discussedAt: string;
|
|
@@ -2971,8 +2971,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
2971
2971
|
id: string;
|
|
2972
2972
|
date: string;
|
|
2973
2973
|
title: string;
|
|
2974
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
2975
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
2974
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2975
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
2976
2976
|
description?: string | undefined;
|
|
2977
2977
|
}[] | undefined;
|
|
2978
2978
|
dependsOn?: string[] | undefined;
|
|
@@ -3009,8 +3009,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3009
3009
|
date: string;
|
|
3010
3010
|
title: string;
|
|
3011
3011
|
description: string;
|
|
3012
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3013
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3012
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3013
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3014
3014
|
}[];
|
|
3015
3015
|
dependsOn: string[];
|
|
3016
3016
|
discussedAt: string;
|
|
@@ -3045,8 +3045,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3045
3045
|
id: string;
|
|
3046
3046
|
date: string;
|
|
3047
3047
|
title: string;
|
|
3048
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3049
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3048
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3049
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3050
3050
|
description?: string | undefined;
|
|
3051
3051
|
}[] | undefined;
|
|
3052
3052
|
dependsOn?: string[] | undefined;
|
|
@@ -3065,23 +3065,23 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3065
3065
|
id: z.ZodString;
|
|
3066
3066
|
title: z.ZodString;
|
|
3067
3067
|
description: z.ZodDefault<z.ZodString>;
|
|
3068
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
3068
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
3069
3069
|
macroTasks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3070
3070
|
id: z.ZodString;
|
|
3071
3071
|
title: z.ZodString;
|
|
3072
3072
|
description: z.ZodDefault<z.ZodString>;
|
|
3073
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
3073
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
3074
3074
|
createdAt: z.ZodString;
|
|
3075
3075
|
updatedAt: z.ZodString;
|
|
3076
3076
|
}, "strip", z.ZodTypeAny, {
|
|
3077
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3077
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3078
3078
|
updatedAt: string;
|
|
3079
3079
|
id: string;
|
|
3080
3080
|
createdAt: string;
|
|
3081
3081
|
title: string;
|
|
3082
3082
|
description: string;
|
|
3083
3083
|
}, {
|
|
3084
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3084
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3085
3085
|
updatedAt: string;
|
|
3086
3086
|
id: string;
|
|
3087
3087
|
createdAt: string;
|
|
@@ -3092,14 +3092,14 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3092
3092
|
createdAt: z.ZodString;
|
|
3093
3093
|
updatedAt: z.ZodString;
|
|
3094
3094
|
}, "strip", z.ZodTypeAny, {
|
|
3095
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3095
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3096
3096
|
updatedAt: string;
|
|
3097
3097
|
id: string;
|
|
3098
3098
|
createdAt: string;
|
|
3099
3099
|
title: string;
|
|
3100
3100
|
description: string;
|
|
3101
3101
|
macroTasks: {
|
|
3102
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3102
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3103
3103
|
updatedAt: string;
|
|
3104
3104
|
id: string;
|
|
3105
3105
|
createdAt: string;
|
|
@@ -3108,14 +3108,14 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3108
3108
|
}[];
|
|
3109
3109
|
linkedPhaseIds: string[];
|
|
3110
3110
|
}, {
|
|
3111
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3111
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3112
3112
|
updatedAt: string;
|
|
3113
3113
|
id: string;
|
|
3114
3114
|
createdAt: string;
|
|
3115
3115
|
title: string;
|
|
3116
3116
|
description?: string | undefined;
|
|
3117
3117
|
macroTasks?: {
|
|
3118
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3118
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3119
3119
|
updatedAt: string;
|
|
3120
3120
|
id: string;
|
|
3121
3121
|
createdAt: string;
|
|
@@ -3126,14 +3126,14 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3126
3126
|
}>, "many">;
|
|
3127
3127
|
}, "strip", z.ZodTypeAny, {
|
|
3128
3128
|
requirements: {
|
|
3129
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3129
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3130
3130
|
updatedAt: string;
|
|
3131
3131
|
id: string;
|
|
3132
3132
|
createdAt: string;
|
|
3133
3133
|
title: string;
|
|
3134
3134
|
description: string;
|
|
3135
3135
|
macroTasks: {
|
|
3136
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3136
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3137
3137
|
updatedAt: string;
|
|
3138
3138
|
id: string;
|
|
3139
3139
|
createdAt: string;
|
|
@@ -3144,14 +3144,14 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3144
3144
|
}[];
|
|
3145
3145
|
}, {
|
|
3146
3146
|
requirements: {
|
|
3147
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3147
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3148
3148
|
updatedAt: string;
|
|
3149
3149
|
id: string;
|
|
3150
3150
|
createdAt: string;
|
|
3151
3151
|
title: string;
|
|
3152
3152
|
description?: string | undefined;
|
|
3153
3153
|
macroTasks?: {
|
|
3154
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3154
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3155
3155
|
updatedAt: string;
|
|
3156
3156
|
id: string;
|
|
3157
3157
|
createdAt: string;
|
|
@@ -3223,7 +3223,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3223
3223
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
3224
3224
|
shortName: z.ZodString;
|
|
3225
3225
|
title: z.ZodString;
|
|
3226
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
3226
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
3227
3227
|
description: z.ZodDefault<z.ZodString>;
|
|
3228
3228
|
/** Updated only when this task's description changes; distinct from entity updatedAt. */
|
|
3229
3229
|
descriptionUpdatedAt: z.ZodDefault<z.ZodString>;
|
|
@@ -3231,8 +3231,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3231
3231
|
statusLog: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3232
3232
|
id: z.ZodString;
|
|
3233
3233
|
date: z.ZodString;
|
|
3234
|
-
fromStatus: z.ZodEnum<["planned", "in-progress", "
|
|
3235
|
-
toStatus: z.ZodEnum<["planned", "in-progress", "
|
|
3234
|
+
fromStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
3235
|
+
toStatus: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
3236
3236
|
title: z.ZodString;
|
|
3237
3237
|
description: z.ZodDefault<z.ZodString>;
|
|
3238
3238
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3240,14 +3240,14 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3240
3240
|
date: string;
|
|
3241
3241
|
title: string;
|
|
3242
3242
|
description: string;
|
|
3243
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3244
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3243
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3244
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3245
3245
|
}, {
|
|
3246
3246
|
id: string;
|
|
3247
3247
|
date: string;
|
|
3248
3248
|
title: string;
|
|
3249
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3250
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3249
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3250
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3251
3251
|
description?: string | undefined;
|
|
3252
3252
|
}>, "many">>;
|
|
3253
3253
|
decisions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3295,19 +3295,19 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3295
3295
|
subtasks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3296
3296
|
id: z.ZodString;
|
|
3297
3297
|
title: z.ZodString;
|
|
3298
|
-
status: z.ZodEnum<["planned", "in-progress", "
|
|
3298
|
+
status: z.ZodEnum<["planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
3299
3299
|
description: z.ZodDefault<z.ZodString>;
|
|
3300
3300
|
createdAt: z.ZodString;
|
|
3301
3301
|
updatedAt: z.ZodString;
|
|
3302
3302
|
}, "strip", z.ZodTypeAny, {
|
|
3303
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3303
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3304
3304
|
updatedAt: string;
|
|
3305
3305
|
id: string;
|
|
3306
3306
|
createdAt: string;
|
|
3307
3307
|
title: string;
|
|
3308
3308
|
description: string;
|
|
3309
3309
|
}, {
|
|
3310
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3310
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3311
3311
|
updatedAt: string;
|
|
3312
3312
|
id: string;
|
|
3313
3313
|
createdAt: string;
|
|
@@ -3389,7 +3389,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3389
3389
|
updatedAt: z.ZodString;
|
|
3390
3390
|
}, "strip", z.ZodTypeAny, {
|
|
3391
3391
|
number: number;
|
|
3392
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3392
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3393
3393
|
updatedAt: string;
|
|
3394
3394
|
notes: string;
|
|
3395
3395
|
id: string;
|
|
@@ -3415,8 +3415,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3415
3415
|
date: string;
|
|
3416
3416
|
title: string;
|
|
3417
3417
|
description: string;
|
|
3418
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3419
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3418
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3419
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3420
3420
|
}[];
|
|
3421
3421
|
checklist: (string | {
|
|
3422
3422
|
number: number;
|
|
@@ -3425,7 +3425,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3425
3425
|
checked: boolean;
|
|
3426
3426
|
})[];
|
|
3427
3427
|
subtasks: {
|
|
3428
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3428
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3429
3429
|
updatedAt: string;
|
|
3430
3430
|
id: string;
|
|
3431
3431
|
createdAt: string;
|
|
@@ -3456,7 +3456,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3456
3456
|
startedAt: string;
|
|
3457
3457
|
completedAt: string;
|
|
3458
3458
|
}, {
|
|
3459
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3459
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3460
3460
|
updatedAt: string;
|
|
3461
3461
|
id: string;
|
|
3462
3462
|
createdAt: string;
|
|
@@ -3482,8 +3482,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3482
3482
|
id: string;
|
|
3483
3483
|
date: string;
|
|
3484
3484
|
title: string;
|
|
3485
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3486
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3485
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3486
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3487
3487
|
description?: string | undefined;
|
|
3488
3488
|
}[] | undefined;
|
|
3489
3489
|
checklist?: (string | {
|
|
@@ -3493,7 +3493,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3493
3493
|
checked?: boolean | undefined;
|
|
3494
3494
|
})[] | undefined;
|
|
3495
3495
|
subtasks?: {
|
|
3496
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3496
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3497
3497
|
updatedAt: string;
|
|
3498
3498
|
id: string;
|
|
3499
3499
|
createdAt: string;
|
|
@@ -3531,7 +3531,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3531
3531
|
checked: boolean;
|
|
3532
3532
|
}[];
|
|
3533
3533
|
number: number;
|
|
3534
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3534
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3535
3535
|
updatedAt: string;
|
|
3536
3536
|
notes: string;
|
|
3537
3537
|
id: string;
|
|
@@ -3557,11 +3557,11 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3557
3557
|
date: string;
|
|
3558
3558
|
title: string;
|
|
3559
3559
|
description: string;
|
|
3560
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3561
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3560
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3561
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3562
3562
|
}[];
|
|
3563
3563
|
subtasks: {
|
|
3564
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3564
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3565
3565
|
updatedAt: string;
|
|
3566
3566
|
id: string;
|
|
3567
3567
|
createdAt: string;
|
|
@@ -3592,7 +3592,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3592
3592
|
startedAt: string;
|
|
3593
3593
|
completedAt: string;
|
|
3594
3594
|
}, {
|
|
3595
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3595
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3596
3596
|
updatedAt: string;
|
|
3597
3597
|
id: string;
|
|
3598
3598
|
createdAt: string;
|
|
@@ -3618,8 +3618,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3618
3618
|
id: string;
|
|
3619
3619
|
date: string;
|
|
3620
3620
|
title: string;
|
|
3621
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3622
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3621
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3622
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3623
3623
|
description?: string | undefined;
|
|
3624
3624
|
}[] | undefined;
|
|
3625
3625
|
checklist?: (string | {
|
|
@@ -3629,7 +3629,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3629
3629
|
checked?: boolean | undefined;
|
|
3630
3630
|
})[] | undefined;
|
|
3631
3631
|
subtasks?: {
|
|
3632
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3632
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3633
3633
|
updatedAt: string;
|
|
3634
3634
|
id: string;
|
|
3635
3635
|
createdAt: string;
|
|
@@ -3692,8 +3692,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3692
3692
|
statusLog: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3693
3693
|
id: z.ZodString;
|
|
3694
3694
|
date: z.ZodString;
|
|
3695
|
-
fromStatus: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "
|
|
3696
|
-
toStatus: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "
|
|
3695
|
+
fromStatus: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
3696
|
+
toStatus: z.ZodEnum<["draft", "discovery", "planned", "in-progress", "done", "blocked", "canceled", "rejected", "deferred", "waiting"]>;
|
|
3697
3697
|
title: z.ZodString;
|
|
3698
3698
|
description: z.ZodDefault<z.ZodString>;
|
|
3699
3699
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3701,14 +3701,14 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3701
3701
|
date: string;
|
|
3702
3702
|
title: string;
|
|
3703
3703
|
description: string;
|
|
3704
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3705
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3704
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
3705
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
3706
3706
|
}, {
|
|
3707
3707
|
id: string;
|
|
3708
3708
|
date: string;
|
|
3709
3709
|
title: string;
|
|
3710
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3711
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3710
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
3711
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
3712
3712
|
description?: string | undefined;
|
|
3713
3713
|
}>, "many">>;
|
|
3714
3714
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3738,8 +3738,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3738
3738
|
date: string;
|
|
3739
3739
|
title: string;
|
|
3740
3740
|
description: string;
|
|
3741
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3742
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3741
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
3742
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
3743
3743
|
}[];
|
|
3744
3744
|
dependsOn: string[];
|
|
3745
3745
|
slug: string;
|
|
@@ -3760,7 +3760,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3760
3760
|
checked: boolean;
|
|
3761
3761
|
}[];
|
|
3762
3762
|
number: number;
|
|
3763
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3763
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3764
3764
|
updatedAt: string;
|
|
3765
3765
|
notes: string;
|
|
3766
3766
|
id: string;
|
|
@@ -3786,11 +3786,11 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3786
3786
|
date: string;
|
|
3787
3787
|
title: string;
|
|
3788
3788
|
description: string;
|
|
3789
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3790
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3789
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3790
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3791
3791
|
}[];
|
|
3792
3792
|
subtasks: {
|
|
3793
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3793
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3794
3794
|
updatedAt: string;
|
|
3795
3795
|
id: string;
|
|
3796
3796
|
createdAt: string;
|
|
@@ -3857,8 +3857,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3857
3857
|
id: string;
|
|
3858
3858
|
date: string;
|
|
3859
3859
|
title: string;
|
|
3860
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3861
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3860
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
3861
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
3862
3862
|
description?: string | undefined;
|
|
3863
3863
|
}[] | undefined;
|
|
3864
3864
|
dependsOn?: string[] | undefined;
|
|
@@ -3873,7 +3873,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3873
3873
|
completionCriteria?: string[] | undefined;
|
|
3874
3874
|
taskIds?: string[] | undefined;
|
|
3875
3875
|
tasks?: {
|
|
3876
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3876
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3877
3877
|
updatedAt: string;
|
|
3878
3878
|
id: string;
|
|
3879
3879
|
createdAt: string;
|
|
@@ -3899,8 +3899,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3899
3899
|
id: string;
|
|
3900
3900
|
date: string;
|
|
3901
3901
|
title: string;
|
|
3902
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3903
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3902
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3903
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3904
3904
|
description?: string | undefined;
|
|
3905
3905
|
}[] | undefined;
|
|
3906
3906
|
checklist?: (string | {
|
|
@@ -3910,7 +3910,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3910
3910
|
checked?: boolean | undefined;
|
|
3911
3911
|
})[] | undefined;
|
|
3912
3912
|
subtasks?: {
|
|
3913
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3913
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3914
3914
|
updatedAt: string;
|
|
3915
3915
|
id: string;
|
|
3916
3916
|
createdAt: string;
|
|
@@ -3975,8 +3975,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3975
3975
|
date: string;
|
|
3976
3976
|
title: string;
|
|
3977
3977
|
description: string;
|
|
3978
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
3979
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
3978
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3979
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3980
3980
|
}[];
|
|
3981
3981
|
dependsOn: string[];
|
|
3982
3982
|
discussedAt: string;
|
|
@@ -3991,14 +3991,14 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
3991
3991
|
};
|
|
3992
3992
|
requirements: {
|
|
3993
3993
|
requirements: {
|
|
3994
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
3994
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
3995
3995
|
updatedAt: string;
|
|
3996
3996
|
id: string;
|
|
3997
3997
|
createdAt: string;
|
|
3998
3998
|
title: string;
|
|
3999
3999
|
description: string;
|
|
4000
4000
|
macroTasks: {
|
|
4001
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
4001
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
4002
4002
|
updatedAt: string;
|
|
4003
4003
|
id: string;
|
|
4004
4004
|
createdAt: string;
|
|
@@ -4097,8 +4097,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
4097
4097
|
date: string;
|
|
4098
4098
|
title: string;
|
|
4099
4099
|
description: string;
|
|
4100
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
4101
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
4100
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
4101
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
4102
4102
|
}[];
|
|
4103
4103
|
dependsOn: string[];
|
|
4104
4104
|
slug: string;
|
|
@@ -4119,7 +4119,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
4119
4119
|
checked: boolean;
|
|
4120
4120
|
}[];
|
|
4121
4121
|
number: number;
|
|
4122
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
4122
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
4123
4123
|
updatedAt: string;
|
|
4124
4124
|
notes: string;
|
|
4125
4125
|
id: string;
|
|
@@ -4145,11 +4145,11 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
4145
4145
|
date: string;
|
|
4146
4146
|
title: string;
|
|
4147
4147
|
description: string;
|
|
4148
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
4149
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
4148
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
4149
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
4150
4150
|
}[];
|
|
4151
4151
|
subtasks: {
|
|
4152
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
4152
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
4153
4153
|
updatedAt: string;
|
|
4154
4154
|
id: string;
|
|
4155
4155
|
createdAt: string;
|
|
@@ -4214,8 +4214,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
4214
4214
|
id: string;
|
|
4215
4215
|
date: string;
|
|
4216
4216
|
title: string;
|
|
4217
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
4218
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
4217
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
4218
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
4219
4219
|
description?: string | undefined;
|
|
4220
4220
|
}[] | undefined;
|
|
4221
4221
|
dependsOn?: string[] | undefined;
|
|
@@ -4231,14 +4231,14 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
4231
4231
|
};
|
|
4232
4232
|
requirements: {
|
|
4233
4233
|
requirements: {
|
|
4234
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
4234
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
4235
4235
|
updatedAt: string;
|
|
4236
4236
|
id: string;
|
|
4237
4237
|
createdAt: string;
|
|
4238
4238
|
title: string;
|
|
4239
4239
|
description?: string | undefined;
|
|
4240
4240
|
macroTasks?: {
|
|
4241
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
4241
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
4242
4242
|
updatedAt: string;
|
|
4243
4243
|
id: string;
|
|
4244
4244
|
createdAt: string;
|
|
@@ -4337,8 +4337,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
4337
4337
|
id: string;
|
|
4338
4338
|
date: string;
|
|
4339
4339
|
title: string;
|
|
4340
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
4341
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
4340
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
4341
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting" | "draft" | "discovery";
|
|
4342
4342
|
description?: string | undefined;
|
|
4343
4343
|
}[] | undefined;
|
|
4344
4344
|
dependsOn?: string[] | undefined;
|
|
@@ -4353,7 +4353,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
4353
4353
|
completionCriteria?: string[] | undefined;
|
|
4354
4354
|
taskIds?: string[] | undefined;
|
|
4355
4355
|
tasks?: {
|
|
4356
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
4356
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
4357
4357
|
updatedAt: string;
|
|
4358
4358
|
id: string;
|
|
4359
4359
|
createdAt: string;
|
|
@@ -4379,8 +4379,8 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
4379
4379
|
id: string;
|
|
4380
4380
|
date: string;
|
|
4381
4381
|
title: string;
|
|
4382
|
-
fromStatus: "canceled" | "planned" | "in-progress" | "
|
|
4383
|
-
toStatus: "canceled" | "planned" | "in-progress" | "
|
|
4382
|
+
fromStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
4383
|
+
toStatus: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
4384
4384
|
description?: string | undefined;
|
|
4385
4385
|
}[] | undefined;
|
|
4386
4386
|
checklist?: (string | {
|
|
@@ -4390,7 +4390,7 @@ export declare const PlanWorkspaceSchema: z.ZodObject<{
|
|
|
4390
4390
|
checked?: boolean | undefined;
|
|
4391
4391
|
})[] | undefined;
|
|
4392
4392
|
subtasks?: {
|
|
4393
|
-
status: "canceled" | "planned" | "in-progress" | "
|
|
4393
|
+
status: "canceled" | "planned" | "in-progress" | "done" | "blocked" | "rejected" | "deferred" | "waiting";
|
|
4394
4394
|
updatedAt: string;
|
|
4395
4395
|
id: string;
|
|
4396
4396
|
createdAt: string;
|