@clxmedia/types 1.0.201 → 1.0.203

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.
@@ -191,7 +191,6 @@ export type CLXTaskMetaData = {
191
191
  notifications?: TaskNotificationConfig[];
192
192
  due_date?: ISODateString;
193
193
  priority?: CLXPriority;
194
- checklist?: CLXTaskChecklistItem[];
195
194
  };
196
195
  export type CLXTaskTriggerConstraint = "event_user_to_onboarding_recipient_match" | "project_id_match";
197
196
  export type CLXTaskTriggerConfig = {
@@ -257,8 +256,17 @@ export type CLXTaskHistoryEntry = {
257
256
  email: string;
258
257
  };
259
258
  };
259
+ export type TaskChecklistItem = {
260
+ id: number;
261
+ task_id: number;
262
+ description: string;
263
+ required: boolean;
264
+ completed_by: number | null;
265
+ order_num: number;
266
+ };
260
267
  export type CLXTaskWithHistory = CLXTask & {
261
268
  history: CLXTaskHistoryEntry[];
269
+ checklist?: TaskChecklistItem[];
262
270
  project_step?: {
263
271
  id: number;
264
272
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/types",
3
- "version": "1.0.201",
3
+ "version": "1.0.203",
4
4
  "description": "Conversion Logix TypeScript type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",