/**
* 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.optional(z.number().int().default(42).describe("The total number of workouts"))
})
export const getV1WorkoutsCountQueryResponseSchema = getV1WorkoutsCount200Schema