@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
18 lines • 1.01 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OrderEntryHeaderResponseSchema = exports.OrderEntryDataSchema = exports.OrderEntryHeaderWebParamsSchema = exports.OrderEntryHeaderSalesrepParamsSchema = exports.OrderEntryHeaderParamsSchema = void 0;
const zod_1 = require("zod");
const schemas_1 = require("../../../core/schemas");
exports.OrderEntryHeaderParamsSchema = zod_1.z.object({
importUid: zod_1.z.string().describe('import.import_uid'),
});
exports.OrderEntryHeaderSalesrepParamsSchema = zod_1.z.object({
importUid: zod_1.z.string().describe('import.import_uid'),
});
exports.OrderEntryHeaderWebParamsSchema = zod_1.z.object({
importUid: zod_1.z.string().describe('import.import_uid'),
});
/** Order entry data - passthrough for API flexibility */
exports.OrderEntryDataSchema = zod_1.z.object({}).passthrough();
exports.OrderEntryHeaderResponseSchema = (0, schemas_1.BaseResponseSchema)(exports.OrderEntryDataSchema);
//# sourceMappingURL=order-entry.js.map