@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
147 lines • 5.59 kB
TypeScript
import { z } from 'zod';
/** Inv-mast attribute value - key field only, passthrough for API flexibility */
export declare const InvMastAttributeValueSchema: z.ZodObject<{
invMastAttributeValueId: z.ZodNumber;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
invMastAttributeValueId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
invMastAttributeValueId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">>;
export type InvMastAttributeValue = z.infer<typeof InvMastAttributeValueSchema>;
export declare const InvMastAttributeValuesListResponseSchema: z.ZodEffects<z.ZodObject<{
count: z.ZodNumber;
data: z.ZodArray<z.ZodObject<{
invMastAttributeValueId: z.ZodNumber;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
invMastAttributeValueId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
invMastAttributeValueId: 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<{
invMastAttributeValueId: 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<{
invMastAttributeValueId: 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<{
invMastAttributeValueId: 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<{
invMastAttributeValueId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>;
export type InvMastAttributeValuesListResponse = z.infer<typeof InvMastAttributeValuesListResponseSchema>;
export declare const InvMastAttributeValueResponseSchema: z.ZodEffects<z.ZodObject<{
count: z.ZodNumber;
data: z.ZodObject<{
invMastAttributeValueId: z.ZodNumber;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
invMastAttributeValueId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
invMastAttributeValueId: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">>;
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: {
invMastAttributeValueId: number;
} & {
[k: string]: unknown;
};
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}, {
params: Record<string, unknown> | unknown[];
data: {
invMastAttributeValueId: number;
} & {
[k: string]: unknown;
};
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>, {
params: Record<string, unknown> | unknown[];
data: {
invMastAttributeValueId: number;
} & {
[k: string]: unknown;
};
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}, {
params: Record<string, unknown> | unknown[];
data: {
invMastAttributeValueId: number;
} & {
[k: string]: unknown;
};
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>;
export type InvMastAttributeValueResponse = z.infer<typeof InvMastAttributeValueResponseSchema>;
/** Create params - passthrough for flexible input */
export declare const InvMastAttributeValueCreateParamsSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
export type InvMastAttributeValueCreateParams = z.infer<typeof InvMastAttributeValueCreateParamsSchema>;
/** Update params - passthrough for flexible input */
export declare const InvMastAttributeValueUpdateParamsSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
export type InvMastAttributeValueUpdateParams = z.infer<typeof InvMastAttributeValueUpdateParamsSchema>;
//# sourceMappingURL=invMastAttributesValues.d.ts.map