@demind-inc/core 1.6.20 → 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 +3 -2
- package/lib/types.ts +3 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -147,8 +147,9 @@ 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;
|
package/lib/types.ts
CHANGED
|
@@ -240,8 +240,9 @@ 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;
|