UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

11 lines 650 B
import { z } from 'zod'; import { BaseResponseSchema } from '../../../core/schemas'; /** Item refresh data - key field only, passthrough for API flexibility */ export const ItemRefreshDataSchema = z.object({ invMastUid: z.number().int() }).passthrough(); /** Item refresh response */ export const ItemRefreshResponseSchema = BaseResponseSchema(ItemRefreshDataSchema); /** Batch refresh data - passthrough for API flexibility */ export const BatchRefreshDataSchema = z.object({}).passthrough(); /** Batch refresh response */ export const BatchRefreshResponseSchema = BaseResponseSchema(BatchRefreshDataSchema); //# sourceMappingURL=itemsRefresh.js.map