@confidencesystemsinc/sdk 2.0.17 → 2.1.0

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.
@@ -6,7 +6,12 @@ export declare const TASK_STATUS: {
6
6
  readonly COMPLETED: "Completed";
7
7
  readonly REQUIRED: "Required";
8
8
  };
9
+ export declare const TASK_EVENT: {
10
+ readonly STARTED: "started";
11
+ readonly COMPLETED: "completed";
12
+ };
9
13
  export type TaskStatus = (typeof TASK_STATUS)[keyof typeof TASK_STATUS];
14
+ export type TaskEvent = (typeof TASK_EVENT)[keyof typeof TASK_EVENT];
10
15
  export interface Task {
11
16
  taskInstanceId: number;
12
17
  taskId: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@confidencesystemsinc/sdk",
3
- "version": "2.0.17",
3
+ "version": "2.1.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",