trainingpeaks-sdk
Version:
TypeScript SDK for TrainingPeaks API integration
29 lines • 1.02 kB
TypeScript
import { z } from 'zod';
export declare const ApiWorkoutItemSchema: z.ZodObject<{
workoutId: z.ZodNumber;
athleteId: z.ZodNumber;
title: z.ZodString;
workoutTypeValueId: z.ZodNumber;
code: z.ZodNullable<z.ZodString>;
workoutDay: z.ZodString;
startTime: z.ZodNullable<z.ZodString>;
startTimePlanned: z.ZodNullable<z.ZodString>;
isItAnOr: z.ZodBoolean;
}, z.core.$strip>;
export declare const GetWorkoutsListApiResponseSchema: z.ZodArray<z.ZodObject<{
workoutId: z.ZodNumber;
athleteId: z.ZodNumber;
title: z.ZodString;
workoutTypeValueId: z.ZodNumber;
code: z.ZodNullable<z.ZodString>;
workoutDay: z.ZodString;
startTime: z.ZodNullable<z.ZodString>;
startTimePlanned: z.ZodNullable<z.ZodString>;
isItAnOr: z.ZodBoolean;
}, z.core.$strip>>;
export declare const GetWorkoutsListParamsSchema: z.ZodObject<{
athleteId: z.ZodString;
startDate: z.ZodString;
endDate: z.ZodString;
}, z.core.$strip>;
//# sourceMappingURL=workouts.schemas.d.ts.map