@vreippainen/hevy-mcp-server
Version:
A MCP server for Hevy
20 lines (19 loc) • 697 B
TypeScript
import { z } from 'zod';
export declare const getWorkoutsSchema: {
limit: z.ZodDefault<z.ZodNumber>;
startDate: z.ZodOptional<z.ZodString>;
endDate: z.ZodOptional<z.ZodString>;
};
export declare const getExerciseProgressSchema: {
exerciseIds: z.ZodArray<z.ZodString, "many">;
limit: z.ZodDefault<z.ZodNumber>;
startDate: z.ZodOptional<z.ZodString>;
endDate: z.ZodOptional<z.ZodString>;
};
export declare const getExercisesSchema: {
searchTerm: z.ZodOptional<z.ZodString>;
excludeUnused: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
startDate: z.ZodOptional<z.ZodString>;
endDate: z.ZodOptional<z.ZodString>;
};
export declare const getRoutinesSchema: {};