@clxmedia/types 1.0.200 → 1.0.201
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.
|
@@ -27,7 +27,7 @@ export type CLXProjectStepInstance = {
|
|
|
27
27
|
project_id: number;
|
|
28
28
|
name: string;
|
|
29
29
|
status: CLXTaskStatus;
|
|
30
|
-
project_tasks:
|
|
30
|
+
project_tasks: CLXTask[];
|
|
31
31
|
};
|
|
32
32
|
export type CLXUserInstance = {
|
|
33
33
|
id: number;
|
|
@@ -240,6 +240,9 @@ export type CLXTask = CLXTaskBase & {
|
|
|
240
240
|
target: CLXTaskTargetNone | CLXTaskTarget;
|
|
241
241
|
resolution: CLXTaskResolution;
|
|
242
242
|
priority: number;
|
|
243
|
+
activated_at: Date | null;
|
|
244
|
+
responsibility: "internal" | "external";
|
|
245
|
+
status: CLXTaskStatus;
|
|
243
246
|
tags: CLXTaskTag[];
|
|
244
247
|
};
|
|
245
248
|
export type CLXTaskHistoryEntry = {
|
|
@@ -254,12 +257,7 @@ export type CLXTaskHistoryEntry = {
|
|
|
254
257
|
email: string;
|
|
255
258
|
};
|
|
256
259
|
};
|
|
257
|
-
export type
|
|
258
|
-
activated_at: Date | null;
|
|
259
|
-
responsibility: "internal" | "external";
|
|
260
|
-
status: CLXTaskStatus;
|
|
261
|
-
};
|
|
262
|
-
export type CLXTaskWithHistory = CLXTaskWithStatus & {
|
|
260
|
+
export type CLXTaskWithHistory = CLXTask & {
|
|
263
261
|
history: CLXTaskHistoryEntry[];
|
|
264
262
|
project_step?: {
|
|
265
263
|
id: number;
|