@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
84 lines • 2.92 kB
TypeScript
import { z } from 'zod';
export declare const LocationSchema: z.ZodObject<{
locationId: z.ZodNumber;
companyId: z.ZodString;
defaultBranchId: z.ZodNullable<z.ZodString>;
deleteFlag: z.ZodString;
dateCreated: z.ZodString;
dateLastModified: z.ZodString;
lastMaintainedBy: z.ZodString;
locationName: z.ZodNullable<z.ZodString>;
lotBinIntegration: z.ZodNullable<z.ZodString>;
fedexLocAcctNo: z.ZodNullable<z.ZodString>;
fedexMeterNo: z.ZodNullable<z.ZodString>;
upsAccountNo: z.ZodNullable<z.ZodString>;
upsPickupTypeCd: z.ZodNullable<z.ZodNumber>;
upsCustomerTypeCd: z.ZodNullable<z.ZodNumber>;
upsOltAccessKey: z.ZodNullable<z.ZodString>;
upsOltPassword: z.ZodNullable<z.ZodString>;
upsOltUserId: z.ZodNullable<z.ZodString>;
distributionCenter: z.ZodString;
updateCd: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
dateCreated: string;
dateLastModified: string;
updateCd: number;
deleteFlag: string;
companyId: string;
lastMaintainedBy: string;
locationId: number;
locationName: string | null;
upsAccountNo: string | null;
defaultBranchId: string | null;
lotBinIntegration: string | null;
fedexLocAcctNo: string | null;
fedexMeterNo: string | null;
upsPickupTypeCd: number | null;
upsCustomerTypeCd: number | null;
upsOltAccessKey: string | null;
upsOltPassword: string | null;
upsOltUserId: string | null;
distributionCenter: string;
}, {
dateCreated: string;
dateLastModified: string;
updateCd: number;
deleteFlag: string;
companyId: string;
lastMaintainedBy: string;
locationId: number;
locationName: string | null;
upsAccountNo: string | null;
defaultBranchId: string | null;
lotBinIntegration: string | null;
fedexLocAcctNo: string | null;
fedexMeterNo: string | null;
upsPickupTypeCd: number | null;
upsCustomerTypeCd: number | null;
upsOltAccessKey: string | null;
upsOltPassword: string | null;
upsOltUserId: string | null;
distributionCenter: string;
}>;
export declare const LocationListParamsSchema: z.ZodObject<{
deleteFlag: z.ZodOptional<z.ZodString>;
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
offset: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
orderBy: z.ZodOptional<z.ZodDefault<z.ZodString>>;
q: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
limit?: number | undefined;
offset?: number | undefined;
q?: string | undefined;
orderBy?: string | undefined;
deleteFlag?: string | undefined;
}, {
limit?: number | undefined;
offset?: number | undefined;
q?: string | undefined;
orderBy?: string | undefined;
deleteFlag?: string | undefined;
}>;
export type Location = z.infer<typeof LocationSchema>;
export type LocationListParams = z.infer<typeof LocationListParamsSchema>;
//# sourceMappingURL=location.d.ts.map