@clxmedia/types 1.0.196 → 1.0.197
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.
|
@@ -236,6 +236,10 @@ export type CLXTaskBase = {
|
|
|
236
236
|
is_active: boolean;
|
|
237
237
|
};
|
|
238
238
|
export type CLXTaskResolution = "done" | "skipped" | "none";
|
|
239
|
+
export type CLXTaskTag = {
|
|
240
|
+
id: number;
|
|
241
|
+
name: string;
|
|
242
|
+
};
|
|
239
243
|
export type CLXTask = CLXTaskBase & {
|
|
240
244
|
id: number;
|
|
241
245
|
is_required: boolean;
|
|
@@ -255,6 +259,9 @@ export type CLXTask = CLXTaskBase & {
|
|
|
255
259
|
assignment: CLiQUserLocator | null;
|
|
256
260
|
target: CLXTaskTargetNone | CLXTaskTarget;
|
|
257
261
|
resolution: CLXTaskResolution;
|
|
262
|
+
due_at: Date | null;
|
|
263
|
+
priority: "low" | "medium" | "high";
|
|
264
|
+
tags: CLXTaskTag[];
|
|
258
265
|
};
|
|
259
266
|
export type CLXTaskHistoryEntry = {
|
|
260
267
|
id: number;
|