@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
75 lines • 3.03 kB
TypeScript
import { z } from 'zod';
/** Inventory master attribute - key field only, passthrough for API flexibility */
export declare const InvMastAttributeSchema: z.ZodObject<{
invMastAttributeId: z.ZodNumber;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
invMastAttributeId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
invMastAttributeId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">>;
export type InvMastAttribute = z.infer<typeof InvMastAttributeSchema>;
export declare const InvMastAttributesListResponseSchema: z.ZodEffects<z.ZodObject<{
count: z.ZodNumber;
data: z.ZodArray<z.ZodObject<{
invMastAttributeId: z.ZodNumber;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
invMastAttributeId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
invMastAttributeId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">>, "many">;
message: z.ZodString;
options: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
params: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
status: z.ZodNumber;
total: z.ZodNumber;
totalResults: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
params: Record<string, unknown> | unknown[];
data: z.objectOutputType<{
invMastAttributeId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}, {
params: Record<string, unknown> | unknown[];
data: z.objectInputType<{
invMastAttributeId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>, {
params: Record<string, unknown> | unknown[];
data: z.objectOutputType<{
invMastAttributeId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}, {
params: Record<string, unknown> | unknown[];
data: z.objectInputType<{
invMastAttributeId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>;
export type InvMastAttributesListResponse = z.infer<typeof InvMastAttributesListResponseSchema>;
/** Create params - passthrough for flexible input */
export declare const InvMastAttributeCreateParamsSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
export type InvMastAttributeCreateParams = z.infer<typeof InvMastAttributeCreateParamsSchema>;
//# sourceMappingURL=invMastAttributes.d.ts.map