@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
11 lines • 786 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvMastAttributeCreateParamsSchema = exports.InvMastAttributesListResponseSchema = exports.InvMastAttributeSchema = void 0;
const zod_1 = require("zod");
const schemas_1 = require("../../../core/schemas");
/** Inventory master attribute - key field only, passthrough for API flexibility */
exports.InvMastAttributeSchema = zod_1.z.object({ invMastAttributeId: zod_1.z.number() }).passthrough();
exports.InvMastAttributesListResponseSchema = (0, schemas_1.BaseResponseSchema)(zod_1.z.array(exports.InvMastAttributeSchema));
/** Create params - passthrough for flexible input */
exports.InvMastAttributeCreateParamsSchema = zod_1.z.object({}).passthrough();
//# sourceMappingURL=invMastAttributes.js.map