@demind-inc/core 1.6.44 → 1.6.46

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.
@@ -11,6 +11,7 @@ export interface TodoTasksBoardWebhook {
11
11
  resourceId: string;
12
12
  active: boolean;
13
13
  url?: string;
14
+ rawJson?: any;
14
15
  }
15
16
  export interface TodoTasksBoard {
16
17
  todoTaskId: string;
package/dist/types.d.ts CHANGED
@@ -127,6 +127,7 @@ export interface ChatAdjustmentCTA {
127
127
  sleep?: ChatAdjustmentChangeWrapper<ChatAdjustmentSleep>;
128
128
  schedule?: ChatAdjustmentChangeWrapper<ScheduledAction>[];
129
129
  tasks?: ChatAdjustmentChangeWrapper<ChatAdjustmentTask>[];
130
+ date?: string;
130
131
  }
131
132
  export interface ChatAdjustmentChangeWrapper<T> {
132
133
  before?: Partial<T>;
@@ -13,6 +13,7 @@ export interface TodoTasksBoardWebhook {
13
13
  resourceId: string;
14
14
  active: boolean;
15
15
  url?: string;
16
+ rawJson?: any;
16
17
  }
17
18
  export interface TodoTasksBoard {
18
19
  todoTaskId: string;
package/lib/types.ts CHANGED
@@ -218,6 +218,7 @@ export interface ChatAdjustmentCTA {
218
218
  sleep?: ChatAdjustmentChangeWrapper<ChatAdjustmentSleep>;
219
219
  schedule?: ChatAdjustmentChangeWrapper<ScheduledAction>[];
220
220
  tasks?: ChatAdjustmentChangeWrapper<ChatAdjustmentTask>[];
221
+ date?: string; // YYYY-MM-DD
221
222
  }
222
223
 
223
224
  export interface ChatAdjustmentChangeWrapper<T> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.6.44",
3
+ "version": "1.6.46",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {