@clxmedia/types 1.0.102 → 1.0.103

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.
@@ -1,6 +1,6 @@
1
1
  import type { CLXFormRuleSet } from "../clxforms";
2
2
  import type { EnterpriseEventSlugs } from "../events";
3
- import type { CLXTask } from "../tasks";
3
+ import type { CLXTaskWithStatus } from "../tasks";
4
4
  export type CLXProjectTaskInstance = {
5
5
  id: number;
6
6
  is_required: boolean;
@@ -11,7 +11,7 @@ export type CLXProjectTaskInstance = {
11
11
  project_step_id: number;
12
12
  created_at: Date;
13
13
  updated_at: Date;
14
- task: CLXTask;
14
+ task: CLXTaskWithStatus;
15
15
  };
16
16
  export type CLXProjectStepInstance = {
17
17
  id: number;
@@ -64,8 +64,10 @@ export type CLXTaskHistoryEntry = {
64
64
  email: string;
65
65
  };
66
66
  };
67
- export type CLXTaskWithHistory = CLXTask & {
67
+ export type CLXTaskWithStatus = CLXTask & {
68
68
  completed_at: Date | null;
69
69
  verified_at: Date | null;
70
+ };
71
+ export type CLXTaskWithHistory = CLXTaskWithStatus & {
70
72
  history: CLXTaskHistoryEntry[];
71
73
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/types",
3
- "version": "1.0.102",
3
+ "version": "1.0.103",
4
4
  "description": "Conversion Logix TypeScript type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",