UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

6 lines 406 B
import { z } from 'zod'; import { BaseResponseSchema } from '../../../core/schemas'; /** Item category doc - key field only, passthrough for API flexibility */ export const ItemCategoryDocDataSchema = z.object({ itemCategoryUid: z.number() }).passthrough(); export const ItemCategoryDocListResponseSchema = BaseResponseSchema(z.array(ItemCategoryDocDataSchema)); //# sourceMappingURL=itemCategoryDoc.js.map