@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.
- package/dist/models/TodoTasks.d.ts +1 -0
- package/dist/types.d.ts +1 -0
- package/lib/models/TodoTasks.ts +1 -0
- package/lib/types.ts +1 -0
- package/package.json +1 -1
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>;
|
package/lib/models/TodoTasks.ts
CHANGED
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> {
|