UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

21 lines 820 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.InvoiceReprintApiResponseSchema = exports.InvoiceReprintResponseSchema = void 0; const zod_1 = require("zod"); const schemas_1 = require("../../../core/schemas"); // Invoice Reprint Response Schema exports.InvoiceReprintResponseSchema = zod_1.z.object({ invoiceNo: zod_1.z.string(), reprintStatus: zod_1.z.string(), reprintDate: zod_1.z.string(), documentPath: zod_1.z.string().optional(), p21Response: zod_1.z .object({ status: zod_1.z.string(), documentId: zod_1.z.string().optional(), }) .optional(), }); // Response Schemas exports.InvoiceReprintApiResponseSchema = (0, schemas_1.BaseResponseSchema)(exports.InvoiceReprintResponseSchema); //# sourceMappingURL=invoices.js.map