UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

6 lines 370 B
import { z } from 'zod'; import { BaseResponseSchema } from '../../../core/schemas'; /** Inventory sub-part - key field only, passthrough for API flexibility */ export const InvSubDataSchema = z.object({ invMastUid: z.number() }).passthrough(); export const InvSubListResponseSchema = BaseResponseSchema(z.array(InvSubDataSchema)); //# sourceMappingURL=invMastSub.js.map