@clxmedia/types 1.0.124 → 1.0.125

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.
@@ -48,7 +48,7 @@ export type TimeDelay = {
48
48
  export type CLXTaskNotificationType = 'default' | 'initial_notify' | 'first_reminder' | 'second_reminder' | 'third_reminder' | 'final_reminder' | 'alert';
49
49
  export type CLXTaskReminderScheduleEntry = {
50
50
  delay: TimeDelay;
51
- type: 'complete' | 'verify';
51
+ type: 'start' | 'complete' | 'verify';
52
52
  notificationSlug: string;
53
53
  notificationType: CLXTaskNotificationType;
54
54
  recipient: CLXTaskAssignment | 'current_assignee';
@@ -57,6 +57,7 @@ export type CLXTaskNotificationDefinition = {
57
57
  on_action: CLXTaskActionType;
58
58
  recipient: CLXTaskAssignment;
59
59
  notificationSlug: string;
60
+ repeatable: boolean;
60
61
  }[];
61
62
  export type CLXTaskMetaData = {
62
63
  verifier: CLXTaskAssignment | null;
@@ -95,6 +96,7 @@ export type CLXTaskHistoryEntry = {
95
96
  };
96
97
  };
97
98
  export type CLXTaskWithStatus = CLXTask & {
99
+ started_at: Date | null;
98
100
  completed_at: Date | null;
99
101
  verified_at: Date | null;
100
102
  responsibility: 'internal' | 'external';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/types",
3
- "version": "1.0.124",
3
+ "version": "1.0.125",
4
4
  "description": "Conversion Logix TypeScript type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",