@kubb/plugin-zod
Version:
Zod schema generator plugin for Kubb, creating type-safe validation schemas from OpenAPI specifications for runtime data validation.
23 lines (18 loc) • 534 B
text/typescript
/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
import { z } from 'zod'
export const listPetsQueryParams = z.object({
limit: z.string().describe('How many items to return at one time (max 100)').optional(),
offset: z.coerce.number().int().default(0),
})
/**
* @description A paged array of pets
*/
export const listPets200 = z.lazy(() => pets)
/**
* @description unexpected error
*/
export const listPetsError = z.lazy(() => error)
export const listPetsQueryResponse = z.lazy(() => listPets200)