@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
14 lines • 914 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BatchRefreshResponseSchema = exports.BatchRefreshDataSchema = exports.ItemRefreshResponseSchema = exports.ItemRefreshDataSchema = void 0;
const zod_1 = require("zod");
const schemas_1 = require("../../../core/schemas");
/** Item refresh data - key field only, passthrough for API flexibility */
exports.ItemRefreshDataSchema = zod_1.z.object({ invMastUid: zod_1.z.number().int() }).passthrough();
/** Item refresh response */
exports.ItemRefreshResponseSchema = (0, schemas_1.BaseResponseSchema)(exports.ItemRefreshDataSchema);
/** Batch refresh data - passthrough for API flexibility */
exports.BatchRefreshDataSchema = zod_1.z.object({}).passthrough();
/** Batch refresh response */
exports.BatchRefreshResponseSchema = (0, schemas_1.BaseResponseSchema)(exports.BatchRefreshDataSchema);
//# sourceMappingURL=itemsRefresh.js.map