@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
15 lines • 1.07 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvMastFaqListResponseSchema = exports.InvMastFaqResponseSchema = exports.InvMastFaqSchema = exports.UpdateInvMastFaqRequestSchema = exports.CreateInvMastFaqRequestSchema = void 0;
const zod_1 = require("zod");
const schemas_1 = require("../../../core/schemas");
/** Create inv-mast FAQ request - passthrough for flexible input */
exports.CreateInvMastFaqRequestSchema = zod_1.z.object({}).passthrough();
/** Update inv-mast FAQ request - passthrough for flexible input */
exports.UpdateInvMastFaqRequestSchema = zod_1.z.object({}).passthrough();
/** Inv-mast FAQ - key field only, passthrough for API flexibility */
exports.InvMastFaqSchema = zod_1.z.object({ invMastFaqUid: zod_1.z.number() }).passthrough();
/** Response schemas */
exports.InvMastFaqResponseSchema = (0, schemas_1.BaseResponseSchema)(exports.InvMastFaqSchema);
exports.InvMastFaqListResponseSchema = (0, schemas_1.BaseResponseSchema)(zod_1.z.array(exports.InvMastFaqSchema));
//# sourceMappingURL=invMastFaq.js.map