@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 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 = Extract<PredictedMealDetail, "startTime" | "endTime" | "description">;
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 = Extract<
266
+ export type ChatAdjustmentMealContent = Omit<
267
267
  PredictedMealDetail,
268
268
  "startTime" | "endTime" | "description"
269
269
  >;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.7.76",
3
+ "version": "1.7.77",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {