@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
144 lines • 6.16 kB
TypeScript
import { z } from 'zod';
export declare const InvMastUdListParamsSchema: z.ZodObject<{
edgeCache: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>, z.ZodLiteral<8>, z.ZodLiteral<"1">, z.ZodLiteral<"2">, z.ZodLiteral<"3">, z.ZodLiteral<"4">, z.ZodLiteral<"5">, z.ZodLiteral<"8">]>, 3 | 2 | 1 | 4 | 5 | 8, 3 | 2 | 1 | 4 | "1" | 5 | 8 | "2" | "3" | "4" | "5" | "8">>;
} & {
createdSince: z.ZodOptional<z.ZodString>;
invMastUdUid: z.ZodOptional<z.ZodNumber>;
invMastUid: z.ZodOptional<z.ZodNumber>;
limit: z.ZodOptional<z.ZodNumber>;
modifiedSince: z.ZodOptional<z.ZodString>;
offset: z.ZodOptional<z.ZodNumber>;
orderBy: z.ZodOptional<z.ZodString>;
statusCd: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
limit?: number | undefined;
offset?: number | undefined;
edgeCache?: 3 | 2 | 1 | 4 | 5 | 8 | undefined;
orderBy?: string | undefined;
statusCd?: number | undefined;
invMastUid?: number | undefined;
createdSince?: string | undefined;
modifiedSince?: string | undefined;
invMastUdUid?: number | undefined;
}, {
limit?: number | undefined;
offset?: number | undefined;
edgeCache?: 3 | 2 | 1 | 4 | "1" | 5 | 8 | "2" | "3" | "4" | "5" | "8" | undefined;
orderBy?: string | undefined;
statusCd?: number | undefined;
invMastUid?: number | undefined;
createdSince?: string | undefined;
modifiedSince?: string | undefined;
invMastUdUid?: number | undefined;
}>;
export type InvMastUdListParams = z.infer<typeof InvMastUdListParamsSchema>;
export declare const InvMastUdDataSchema: z.ZodObject<{
invMastUdUid: z.ZodOptional<z.ZodNumber>;
invMastUid: z.ZodOptional<z.ZodNumber>;
statusCd: z.ZodOptional<z.ZodNumber>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
invMastUdUid: z.ZodOptional<z.ZodNumber>;
invMastUid: z.ZodOptional<z.ZodNumber>;
statusCd: z.ZodOptional<z.ZodNumber>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
invMastUdUid: z.ZodOptional<z.ZodNumber>;
invMastUid: z.ZodOptional<z.ZodNumber>;
statusCd: z.ZodOptional<z.ZodNumber>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
}, z.ZodTypeAny, "passthrough">>;
export type InvMastUdData = z.infer<typeof InvMastUdDataSchema>;
export declare const InvMastUdListResponseSchema: z.ZodEffects<z.ZodObject<{
count: z.ZodNumber;
data: z.ZodArray<z.ZodObject<{
invMastUdUid: z.ZodOptional<z.ZodNumber>;
invMastUid: z.ZodOptional<z.ZodNumber>;
statusCd: z.ZodOptional<z.ZodNumber>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
invMastUdUid: z.ZodOptional<z.ZodNumber>;
invMastUid: z.ZodOptional<z.ZodNumber>;
statusCd: z.ZodOptional<z.ZodNumber>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
invMastUdUid: z.ZodOptional<z.ZodNumber>;
invMastUid: z.ZodOptional<z.ZodNumber>;
statusCd: z.ZodOptional<z.ZodNumber>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
}, 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<{
invMastUdUid: z.ZodOptional<z.ZodNumber>;
invMastUid: z.ZodOptional<z.ZodNumber>;
statusCd: z.ZodOptional<z.ZodNumber>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
}, 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<{
invMastUdUid: z.ZodOptional<z.ZodNumber>;
invMastUid: z.ZodOptional<z.ZodNumber>;
statusCd: z.ZodOptional<z.ZodNumber>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
}, 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<{
invMastUdUid: z.ZodOptional<z.ZodNumber>;
invMastUid: z.ZodOptional<z.ZodNumber>;
statusCd: z.ZodOptional<z.ZodNumber>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
}, 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<{
invMastUdUid: z.ZodOptional<z.ZodNumber>;
invMastUid: z.ZodOptional<z.ZodNumber>;
statusCd: z.ZodOptional<z.ZodNumber>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
}, z.ZodTypeAny, "passthrough">[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>;
export type InvMastUdListResponse = z.infer<typeof InvMastUdListResponseSchema>;
//# sourceMappingURL=invMastUd.d.ts.map