@demind-inc/core 1.5.60 → 1.5.61
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 -0
- package/lib/types.ts +2 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -135,8 +135,10 @@ export interface ChatAdjustmentMeal {
|
|
|
135
135
|
mealType: MealType;
|
|
136
136
|
startTime: string;
|
|
137
137
|
endTime: string;
|
|
138
|
+
description?: string;
|
|
138
139
|
}
|
|
139
140
|
export interface ChatAdjustmentSleep {
|
|
140
141
|
sleepTime: string;
|
|
141
142
|
wakeTime: string;
|
|
143
|
+
description?: string;
|
|
142
144
|
}
|
package/lib/types.ts
CHANGED
|
@@ -226,9 +226,11 @@ export interface ChatAdjustmentMeal {
|
|
|
226
226
|
mealType: MealType;
|
|
227
227
|
startTime: string; // ISO string
|
|
228
228
|
endTime: string; // ISO string
|
|
229
|
+
description?: string;
|
|
229
230
|
}
|
|
230
231
|
|
|
231
232
|
export interface ChatAdjustmentSleep {
|
|
232
233
|
sleepTime: string; // ISO string
|
|
233
234
|
wakeTime: string; // ISO string
|
|
235
|
+
description?: string;
|
|
234
236
|
}
|