@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
13 lines • 824 B
JavaScript
import { z } from 'zod';
import { BaseResponseSchema } from '../../../core/schemas';
/** Inv-mast attribute value - key field only, passthrough for API flexibility */
export const InvMastAttributeValueSchema = z
.object({ invMastAttributeValueId: z.number() })
.passthrough();
export const InvMastAttributeValuesListResponseSchema = BaseResponseSchema(z.array(InvMastAttributeValueSchema));
export const InvMastAttributeValueResponseSchema = BaseResponseSchema(InvMastAttributeValueSchema);
/** Create params - passthrough for flexible input */
export const InvMastAttributeValueCreateParamsSchema = z.object({}).passthrough();
/** Update params - passthrough for flexible input */
export const InvMastAttributeValueUpdateParamsSchema = z.object({}).passthrough();
//# sourceMappingURL=invMastAttributesValues.js.map