@clxmedia/types 1.0.198 → 1.0.200

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.
@@ -211,12 +211,15 @@ 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 = {
218
217
  id: number;
218
+ task_id: number;
219
219
  name: string;
220
+ added_by_user_id?: number;
221
+ comment?: string;
222
+ created_at: Date;
220
223
  };
221
224
  export type CLXTask = CLXTaskBase & {
222
225
  id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/types",
3
- "version": "1.0.198",
3
+ "version": "1.0.200",
4
4
  "description": "Conversion Logix TypeScript type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",