@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
16 lines • 1.19 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvMastAttributeValueUpdateParamsSchema = exports.InvMastAttributeValueCreateParamsSchema = exports.InvMastAttributeValueResponseSchema = exports.InvMastAttributeValuesListResponseSchema = exports.InvMastAttributeValueSchema = void 0;
const zod_1 = require("zod");
const schemas_1 = require("../../../core/schemas");
/** Inv-mast attribute value - key field only, passthrough for API flexibility */
exports.InvMastAttributeValueSchema = zod_1.z
.object({ invMastAttributeValueId: zod_1.z.number() })
.passthrough();
exports.InvMastAttributeValuesListResponseSchema = (0, schemas_1.BaseResponseSchema)(zod_1.z.array(exports.InvMastAttributeValueSchema));
exports.InvMastAttributeValueResponseSchema = (0, schemas_1.BaseResponseSchema)(exports.InvMastAttributeValueSchema);
/** Create params - passthrough for flexible input */
exports.InvMastAttributeValueCreateParamsSchema = zod_1.z.object({}).passthrough();
/** Update params - passthrough for flexible input */
exports.InvMastAttributeValueUpdateParamsSchema = zod_1.z.object({}).passthrough();
//# sourceMappingURL=invMastAttributesValues.js.map