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