UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

22 lines 747 B
import { z } from 'zod'; /** * Update item attribute value request schema */ export declare const UpdateItemAttributeValueRequestSchema: z.ZodObject<{ value: z.ZodString; notes: z.ZodOptional<z.ZodString>; isActive: z.ZodOptional<z.ZodBoolean>; sortOrder: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { value: string; isActive?: boolean | undefined; sortOrder?: number | undefined; notes?: string | undefined; }, { value: string; isActive?: boolean | undefined; sortOrder?: number | undefined; notes?: string | undefined; }>; export type UpdateItemAttributeValueRequest = z.infer<typeof UpdateItemAttributeValueRequestSchema>; //# sourceMappingURL=updateItemAttributeValueRequest.d.ts.map