@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
11 lines • 717 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InternalPdfResponseSchema = exports.InternalPdfDataSchema = exports.CreateInternalPdfRequestSchema = void 0;
const zod_1 = require("zod");
const schemas_1 = require("../../../core/schemas");
/** Create PDF request - passthrough for flexible input */
exports.CreateInternalPdfRequestSchema = zod_1.z.object({}).passthrough();
/** Internal PDF data - key field only, passthrough for API flexibility */
exports.InternalPdfDataSchema = zod_1.z.object({ pdfId: zod_1.z.string() }).passthrough();
exports.InternalPdfResponseSchema = (0, schemas_1.BaseResponseSchema)(exports.InternalPdfDataSchema);
//# sourceMappingURL=internalPdf.js.map