@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
855 lines • 29.9 kB
TypeScript
import { z } from 'zod';
export declare const BinSchema: z.ZodObject<{
binUid: z.ZodNumber;
locationId: z.ZodNumber;
bin: z.ZodString;
binDesc: z.ZodOptional<z.ZodString>;
binType: z.ZodOptional<z.ZodString>;
isActive: z.ZodOptional<z.ZodString>;
maxCapacity: z.ZodOptional<z.ZodNumber>;
currentCapacity: z.ZodOptional<z.ZodNumber>;
zone: z.ZodOptional<z.ZodString>;
aisle: z.ZodOptional<z.ZodString>;
shelf: z.ZodOptional<z.ZodString>;
position: z.ZodOptional<z.ZodString>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
createdBy: z.ZodOptional<z.ZodString>;
lastMaintainedBy: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}, {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}>;
export declare const InventoryLocationBinSchema: z.ZodObject<{
invLocBinUid: z.ZodNumber;
invMastUid: z.ZodNumber;
locationId: z.ZodNumber;
binUid: z.ZodNumber;
itemId: z.ZodString;
bin: z.ZodString;
qtyOnHand: z.ZodNumber;
qtyAllocated: z.ZodOptional<z.ZodNumber>;
qtyAvailable: z.ZodOptional<z.ZodNumber>;
unitCost: z.ZodOptional<z.ZodNumber>;
lastCountDate: z.ZodOptional<z.ZodString>;
lastMovementDate: z.ZodOptional<z.ZodString>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
}, {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
}>;
export declare const CreateBinRequestSchema: z.ZodObject<{
bin: z.ZodString;
binDesc: z.ZodOptional<z.ZodString>;
binType: z.ZodOptional<z.ZodString>;
isActive: z.ZodOptional<z.ZodString>;
maxCapacity: z.ZodOptional<z.ZodNumber>;
zone: z.ZodOptional<z.ZodString>;
aisle: z.ZodOptional<z.ZodString>;
shelf: z.ZodOptional<z.ZodString>;
position: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
bin: string;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}, {
bin: string;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}>;
export declare const UpdateBinRequestSchema: z.ZodObject<{
binDesc: z.ZodOptional<z.ZodString>;
binType: z.ZodOptional<z.ZodString>;
isActive: z.ZodOptional<z.ZodString>;
maxCapacity: z.ZodOptional<z.ZodNumber>;
zone: z.ZodOptional<z.ZodString>;
aisle: z.ZodOptional<z.ZodString>;
shelf: z.ZodOptional<z.ZodString>;
position: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}, {
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}>;
export declare const BinListParamsSchema: z.ZodObject<{
limit: z.ZodOptional<z.ZodNumber>;
offset: z.ZodOptional<z.ZodNumber>;
} & {
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 | 4 | 1 | 5 | 8, 3 | 2 | 4 | 1 | "1" | 5 | 8 | "2" | "3" | "4" | "5" | "8">>;
} & {
binType: z.ZodOptional<z.ZodString>;
isActive: z.ZodOptional<z.ZodString>;
zone: z.ZodOptional<z.ZodString>;
q: z.ZodOptional<z.ZodString>;
orderBy: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
edgeCache?: 3 | 2 | 4 | 1 | 5 | 8 | undefined;
limit?: number | undefined;
offset?: number | undefined;
q?: string | undefined;
orderBy?: string | undefined;
isActive?: string | undefined;
binType?: string | undefined;
zone?: string | undefined;
}, {
edgeCache?: 3 | 2 | 4 | 1 | "1" | 5 | 8 | "2" | "3" | "4" | "5" | "8" | undefined;
limit?: number | undefined;
offset?: number | undefined;
q?: string | undefined;
orderBy?: string | undefined;
isActive?: string | undefined;
binType?: string | undefined;
zone?: string | undefined;
}>;
export declare const InventoryLocationBinListParamsSchema: z.ZodObject<{
limit: z.ZodOptional<z.ZodNumber>;
offset: z.ZodOptional<z.ZodNumber>;
} & {
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 | 4 | 1 | 5 | 8, 3 | 2 | 4 | 1 | "1" | 5 | 8 | "2" | "3" | "4" | "5" | "8">>;
} & {
invMastUid: z.ZodOptional<z.ZodNumber>;
hasStock: z.ZodOptional<z.ZodBoolean>;
orderBy: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
edgeCache?: 3 | 2 | 4 | 1 | 5 | 8 | undefined;
limit?: number | undefined;
offset?: number | undefined;
orderBy?: string | undefined;
invMastUid?: number | undefined;
hasStock?: boolean | undefined;
}, {
edgeCache?: 3 | 2 | 4 | 1 | "1" | 5 | 8 | "2" | "3" | "4" | "5" | "8" | undefined;
limit?: number | undefined;
offset?: number | undefined;
orderBy?: string | undefined;
invMastUid?: number | undefined;
hasStock?: boolean | undefined;
}>;
export declare const BinResponseSchema: z.ZodEffects<z.ZodObject<{
count: z.ZodNumber;
data: z.ZodObject<{
binUid: z.ZodNumber;
locationId: z.ZodNumber;
bin: z.ZodString;
binDesc: z.ZodOptional<z.ZodString>;
binType: z.ZodOptional<z.ZodString>;
isActive: z.ZodOptional<z.ZodString>;
maxCapacity: z.ZodOptional<z.ZodNumber>;
currentCapacity: z.ZodOptional<z.ZodNumber>;
zone: z.ZodOptional<z.ZodString>;
aisle: z.ZodOptional<z.ZodString>;
shelf: z.ZodOptional<z.ZodString>;
position: z.ZodOptional<z.ZodString>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
createdBy: z.ZodOptional<z.ZodString>;
lastMaintainedBy: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}, {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}>;
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: {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
};
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}, {
params: Record<string, unknown> | unknown[];
data: {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
};
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>, {
params: Record<string, unknown> | unknown[];
data: {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
};
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}, {
params: Record<string, unknown> | unknown[];
data: {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
};
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>;
export declare const BinListResponseSchema: z.ZodEffects<z.ZodObject<{
count: z.ZodNumber;
data: z.ZodArray<z.ZodObject<{
binUid: z.ZodNumber;
locationId: z.ZodNumber;
bin: z.ZodString;
binDesc: z.ZodOptional<z.ZodString>;
binType: z.ZodOptional<z.ZodString>;
isActive: z.ZodOptional<z.ZodString>;
maxCapacity: z.ZodOptional<z.ZodNumber>;
currentCapacity: z.ZodOptional<z.ZodNumber>;
zone: z.ZodOptional<z.ZodString>;
aisle: z.ZodOptional<z.ZodString>;
shelf: z.ZodOptional<z.ZodString>;
position: z.ZodOptional<z.ZodString>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
createdBy: z.ZodOptional<z.ZodString>;
lastMaintainedBy: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}, {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}>, "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: {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}, {
params: Record<string, unknown> | unknown[];
data: {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>, {
params: Record<string, unknown> | unknown[];
data: {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}, {
params: Record<string, unknown> | unknown[];
data: {
locationId: number;
bin: string;
binUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
createdBy?: string | undefined;
lastMaintainedBy?: string | undefined;
isActive?: string | undefined;
binDesc?: string | undefined;
binType?: string | undefined;
maxCapacity?: number | undefined;
currentCapacity?: number | undefined;
zone?: string | undefined;
aisle?: string | undefined;
shelf?: string | undefined;
position?: string | undefined;
}[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>;
export declare const InventoryLocationBinResponseSchema: z.ZodEffects<z.ZodObject<{
count: z.ZodNumber;
data: z.ZodObject<{
invLocBinUid: z.ZodNumber;
invMastUid: z.ZodNumber;
locationId: z.ZodNumber;
binUid: z.ZodNumber;
itemId: z.ZodString;
bin: z.ZodString;
qtyOnHand: z.ZodNumber;
qtyAllocated: z.ZodOptional<z.ZodNumber>;
qtyAvailable: z.ZodOptional<z.ZodNumber>;
unitCost: z.ZodOptional<z.ZodNumber>;
lastCountDate: z.ZodOptional<z.ZodString>;
lastMovementDate: z.ZodOptional<z.ZodString>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
}, {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
}>;
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: {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
};
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}, {
params: Record<string, unknown> | unknown[];
data: {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
};
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>, {
params: Record<string, unknown> | unknown[];
data: {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
};
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}, {
params: Record<string, unknown> | unknown[];
data: {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
};
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>;
export declare const InventoryLocationBinListResponseSchema: z.ZodEffects<z.ZodObject<{
count: z.ZodNumber;
data: z.ZodArray<z.ZodObject<{
invLocBinUid: z.ZodNumber;
invMastUid: z.ZodNumber;
locationId: z.ZodNumber;
binUid: z.ZodNumber;
itemId: z.ZodString;
bin: z.ZodString;
qtyOnHand: z.ZodNumber;
qtyAllocated: z.ZodOptional<z.ZodNumber>;
qtyAvailable: z.ZodOptional<z.ZodNumber>;
unitCost: z.ZodOptional<z.ZodNumber>;
lastCountDate: z.ZodOptional<z.ZodString>;
lastMovementDate: z.ZodOptional<z.ZodString>;
dateCreated: z.ZodOptional<z.ZodString>;
dateLastModified: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
}, {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
}>, "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: {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
}[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}, {
params: Record<string, unknown> | unknown[];
data: {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
}[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>, {
params: Record<string, unknown> | unknown[];
data: {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
}[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}, {
params: Record<string, unknown> | unknown[];
data: {
invMastUid: number;
itemId: string;
locationId: number;
bin: string;
qtyOnHand: number;
binUid: number;
invLocBinUid: number;
dateCreated?: string | undefined;
dateLastModified?: string | undefined;
qtyAllocated?: number | undefined;
qtyAvailable?: number | undefined;
unitCost?: number | undefined;
lastCountDate?: string | undefined;
lastMovementDate?: string | undefined;
}[];
options: Record<string, unknown> | unknown[];
status: number;
message: string;
count: number;
total: number;
totalResults: number;
}>;
export type Bin = z.infer<typeof BinSchema>;
export type InventoryLocationBin = z.infer<typeof InventoryLocationBinSchema>;
export type CreateBinRequest = z.infer<typeof CreateBinRequestSchema>;
export type UpdateBinRequest = z.infer<typeof UpdateBinRequestSchema>;
export type BinListParams = z.infer<typeof BinListParamsSchema>;
export type InventoryLocationBinListParams = z.infer<typeof InventoryLocationBinListParamsSchema>;
export type BinResponse = z.infer<typeof BinResponseSchema>;
export type BinListResponse = z.infer<typeof BinListResponseSchema>;
export type InventoryLocationBinResponse = z.infer<typeof InventoryLocationBinResponseSchema>;
export type InventoryLocationBinListResponse = z.infer<typeof InventoryLocationBinListResponseSchema>;
//# sourceMappingURL=bins.d.ts.map