getV1WorkoutsCountSchema.ts•492 B
/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
import { z } from 'zod'
export const getV1WorkoutsCountHeaderParamsSchema = z.object({
'api-key': z.string().uuid(),
})
/**
* @description The total count of workouts
*/
export const getV1WorkoutsCount200Schema = z.object({
workout_count: z.number().int().default(42).describe('The total number of workouts'),
})
export const getV1WorkoutsCountQueryResponseSchema = z.lazy(() => getV1WorkoutsCount200Schema)