@careevolution/mydatahelps-ui 2.24.3-MdhAssistantComponent.43 → 2.24.3-MdhAssistantComponent.45

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.
@@ -272,18 +272,24 @@ export declare class QueryDailySleepTool extends StructuredTool {
272
272
  export declare class QueryDailyDataTool extends StructuredTool {
273
273
  schema: z.ZodObject<{
274
274
  type: z.ZodString;
275
- startDate: z.ZodDate;
276
- endDate: z.ZodDate;
275
+ startDate: z.ZodString;
276
+ endDate: z.ZodString;
277
277
  }, "strip", z.ZodTypeAny, {
278
278
  type: string;
279
- startDate: Date;
280
- endDate: Date;
279
+ startDate: string;
280
+ endDate: string;
281
281
  }, {
282
282
  type: string;
283
- startDate: Date;
284
- endDate: Date;
283
+ startDate: string;
284
+ endDate: string;
285
285
  }>;
286
286
  name: string;
287
287
  description: string;
288
288
  _call(input: z.infer<typeof this.schema>): Promise<string>;
289
289
  }
290
+ export declare class GetAllDailyDataTypesTool extends StructuredTool {
291
+ schema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
292
+ name: string;
293
+ description: string;
294
+ _call(): Promise<string>;
295
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@careevolution/mydatahelps-ui",
3
- "version": "2.24.3-MdhAssistantComponent.43",
3
+ "version": "2.24.3-MdhAssistantComponent.45",
4
4
  "description": "MyDataHelps UI Library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",