@demind-inc/core 1.6.19 → 1.6.21
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 +5 -3
- package/lib/types.ts +5 -3
- 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>;
|
|
@@ -147,9 +147,11 @@ export interface ChatAdjustmentTask {
|
|
|
147
147
|
taskId: string;
|
|
148
148
|
name: string;
|
|
149
149
|
description?: string;
|
|
150
|
-
startTime
|
|
151
|
-
endTime
|
|
150
|
+
startTime?: string;
|
|
151
|
+
endTime?: string;
|
|
152
|
+
date: string;
|
|
152
153
|
durationMinutes: number;
|
|
153
154
|
category?: string;
|
|
154
155
|
completed?: boolean;
|
|
156
|
+
boardId?: string;
|
|
155
157
|
}
|
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> {
|
|
@@ -240,9 +240,11 @@ export interface ChatAdjustmentTask {
|
|
|
240
240
|
taskId: string;
|
|
241
241
|
name: string;
|
|
242
242
|
description?: string;
|
|
243
|
-
startTime
|
|
244
|
-
endTime
|
|
243
|
+
startTime?: string; // ISO string (start datetime)
|
|
244
|
+
endTime?: string; // ISO string (due datetime)
|
|
245
|
+
date: string; // YYYY-MM-DD
|
|
245
246
|
durationMinutes: number;
|
|
246
247
|
category?: string;
|
|
247
248
|
completed?: boolean;
|
|
249
|
+
boardId?: string;
|
|
248
250
|
}
|