@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
6 lines • 401 B
JavaScript
import { z } from 'zod';
import { BaseResponseSchema } from '../../../core/schemas';
/** Customer document - key field only, passthrough for API flexibility */
export const CustomerDocumentSchema = z.object({ customerId: z.coerce.number() }).passthrough();
export const CustomerCustomerIdDocResponseSchema = BaseResponseSchema(CustomerDocumentSchema);
//# sourceMappingURL=customerCustomerIdDoc.js.map