getV1WorkoutsWorkoutidSchema.ts•654 B
/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
import { workoutSchema } from './workoutSchema.ts'
import { z } from 'zod'
export const getV1WorkoutsWorkoutidPathParamsSchema = z.object({
workoutId: z.any(),
})
export const getV1WorkoutsWorkoutidHeaderParamsSchema = z.object({
'api-key': z.string().uuid(),
})
/**
* @description Success
*/
export const getV1WorkoutsWorkoutid200Schema = z.lazy(() => workoutSchema)
/**
* @description Workout not found
*/
export const getV1WorkoutsWorkoutid404Schema = z.any()
export const getV1WorkoutsWorkoutidQueryResponseSchema = z.lazy(() => getV1WorkoutsWorkoutid200Schema)