@demind-inc/core 1.7.76 → 1.7.77
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 +1 -1
- package/lib/types.ts +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -152,7 +152,7 @@ export interface ChatAdjustmentChangeWrapper<T> {
|
|
|
152
152
|
before?: Partial<T>;
|
|
153
153
|
after?: Partial<T>;
|
|
154
154
|
}
|
|
155
|
-
export type ChatAdjustmentMealContent =
|
|
155
|
+
export type ChatAdjustmentMealContent = Omit<PredictedMealDetail, "startTime" | "endTime" | "description">;
|
|
156
156
|
export interface ChatAdjustmentMeal {
|
|
157
157
|
mealType: MealType;
|
|
158
158
|
startTime: string;
|
package/lib/types.ts
CHANGED
|
@@ -263,7 +263,7 @@ export interface ChatAdjustmentChangeWrapper<T> {
|
|
|
263
263
|
after?: Partial<T>;
|
|
264
264
|
}
|
|
265
265
|
|
|
266
|
-
export type ChatAdjustmentMealContent =
|
|
266
|
+
export type ChatAdjustmentMealContent = Omit<
|
|
267
267
|
PredictedMealDetail,
|
|
268
268
|
"startTime" | "endTime" | "description"
|
|
269
269
|
>;
|