@clxmedia/types 1.0.199 → 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;
|
|
@@ -211,7 +211,6 @@ export type CLXTaskBase = {
|
|
|
211
211
|
id: number;
|
|
212
212
|
name: string;
|
|
213
213
|
slug: string;
|
|
214
|
-
is_active: boolean;
|
|
215
214
|
};
|
|
216
215
|
export type CLXTaskResolution = "done" | "skipped" | "none";
|
|
217
216
|
export type CLXTaskTag = {
|
|
@@ -241,6 +240,9 @@ export type CLXTask = CLXTaskBase & {
|
|
|
241
240
|
target: CLXTaskTargetNone | CLXTaskTarget;
|
|
242
241
|
resolution: CLXTaskResolution;
|
|
243
242
|
priority: number;
|
|
243
|
+
activated_at: Date | null;
|
|
244
|
+
responsibility: "internal" | "external";
|
|
245
|
+
status: CLXTaskStatus;
|
|
244
246
|
tags: CLXTaskTag[];
|
|
245
247
|
};
|
|
246
248
|
export type CLXTaskHistoryEntry = {
|
|
@@ -255,12 +257,7 @@ export type CLXTaskHistoryEntry = {
|
|
|
255
257
|
email: string;
|
|
256
258
|
};
|
|
257
259
|
};
|
|
258
|
-
export type
|
|
259
|
-
activated_at: Date | null;
|
|
260
|
-
responsibility: "internal" | "external";
|
|
261
|
-
status: CLXTaskStatus;
|
|
262
|
-
};
|
|
263
|
-
export type CLXTaskWithHistory = CLXTaskWithStatus & {
|
|
260
|
+
export type CLXTaskWithHistory = CLXTask & {
|
|
264
261
|
history: CLXTaskHistoryEntry[];
|
|
265
262
|
project_step?: {
|
|
266
263
|
id: number;
|