getV1RoutineFoldersFolderidSchema.ts•708 B
/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
import { routineFolderSchema } from './routineFolderSchema.ts'
import { z } from 'zod'
export const getV1RoutineFoldersFolderidPathParamsSchema = z.object({
folderId: z.any(),
})
export const getV1RoutineFoldersFolderidHeaderParamsSchema = z.object({
'api-key': z.string().uuid(),
})
/**
* @description Success
*/
export const getV1RoutineFoldersFolderid200Schema = z.lazy(() => routineFolderSchema)
/**
* @description Routine folder not found
*/
export const getV1RoutineFoldersFolderid404Schema = z.any()
export const getV1RoutineFoldersFolderidQueryResponseSchema = z.lazy(() => getV1RoutineFoldersFolderid200Schema)