UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

6 lines 404 B
import { z } from 'zod'; import { BaseResponseSchema } from '../../../core/schemas'; /** Category attribute - key field only, passthrough for API flexibility */ export const CategoryAttributeSchema = z.object({ attributeUid: z.number() }).passthrough(); export const CategoryAttributesResponseSchema = BaseResponseSchema(z.array(CategoryAttributeSchema)); //# sourceMappingURL=categoriesAttributes.js.map