UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

6 lines 425 B
import { z } from 'zod'; import { BaseResponseSchema } from '../../../core/schemas'; /** Invoice document - key field only, passthrough for API flexibility */ export const InvoiceDocumentSchema = z.object({ invoiceNo: z.coerce.number() }).passthrough(); export const CustomerCustomerIdInvoicesInvoiceNoResponseSchema = BaseResponseSchema(InvoiceDocumentSchema); //# sourceMappingURL=customerCustomerIdInvoicesInvoiceNo.js.map