@demind-inc/core 1.6.19 → 1.6.20
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/types.d.ts +2 -1
- package/lib/types.ts +2 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -126,7 +126,7 @@ export interface ChatAdjustmentCTA {
|
|
|
126
126
|
meals?: ChatAdjustmentChangeWrapper<ChatAdjustmentMeal>[];
|
|
127
127
|
sleep?: ChatAdjustmentChangeWrapper<ChatAdjustmentSleep>;
|
|
128
128
|
schedule?: ChatAdjustmentChangeWrapper<ScheduledAction>[];
|
|
129
|
-
tasks?: ChatAdjustmentChangeWrapper<
|
|
129
|
+
tasks?: ChatAdjustmentChangeWrapper<ChatAdjustmentTask>[];
|
|
130
130
|
}
|
|
131
131
|
export interface ChatAdjustmentChangeWrapper<T> {
|
|
132
132
|
before?: Partial<T>;
|
|
@@ -152,4 +152,5 @@ export interface ChatAdjustmentTask {
|
|
|
152
152
|
durationMinutes: number;
|
|
153
153
|
category?: string;
|
|
154
154
|
completed?: boolean;
|
|
155
|
+
boardId?: string;
|
|
155
156
|
}
|
package/lib/types.ts
CHANGED
|
@@ -215,7 +215,7 @@ export interface ChatAdjustmentCTA {
|
|
|
215
215
|
meals?: ChatAdjustmentChangeWrapper<ChatAdjustmentMeal>[];
|
|
216
216
|
sleep?: ChatAdjustmentChangeWrapper<ChatAdjustmentSleep>;
|
|
217
217
|
schedule?: ChatAdjustmentChangeWrapper<ScheduledAction>[];
|
|
218
|
-
tasks?: ChatAdjustmentChangeWrapper<
|
|
218
|
+
tasks?: ChatAdjustmentChangeWrapper<ChatAdjustmentTask>[];
|
|
219
219
|
}
|
|
220
220
|
|
|
221
221
|
export interface ChatAdjustmentChangeWrapper<T> {
|
|
@@ -245,4 +245,5 @@ export interface ChatAdjustmentTask {
|
|
|
245
245
|
durationMinutes: number;
|
|
246
246
|
category?: string;
|
|
247
247
|
completed?: boolean;
|
|
248
|
+
boardId?: string;
|
|
248
249
|
}
|