@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.
|
|
276
|
-
endDate: z.
|
|
275
|
+
startDate: z.ZodString;
|
|
276
|
+
endDate: z.ZodString;
|
|
277
277
|
}, "strip", z.ZodTypeAny, {
|
|
278
278
|
type: string;
|
|
279
|
-
startDate:
|
|
280
|
-
endDate:
|
|
279
|
+
startDate: string;
|
|
280
|
+
endDate: string;
|
|
281
281
|
}, {
|
|
282
282
|
type: string;
|
|
283
|
-
startDate:
|
|
284
|
-
endDate:
|
|
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