@whiplashmerch/whiplash-api-client 0.4.112 → 0.4.113
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.esm.js +15 -1
- package/dist/client.esm.js.map +1 -1
- package/dist/utils/warehouse.d.ts +15 -0
- package/package.json +1 -1
|
@@ -24,3 +24,18 @@ export interface ApiV21WarehousesIdOpenBatchesAgainstShelfResult {
|
|
|
24
24
|
result?: string[];
|
|
25
25
|
}
|
|
26
26
|
export declare const getWarehouseIdOpenBatchesAgainstShelf: (client: HttpClient, warehouseId: number, params: CallTraitOpenBatchesAgainstShelfParams) => Promise<ApiV21WarehousesIdOpenBatchesAgainstShelfResult>;
|
|
27
|
+
export interface CallTraitWarehouseIdValidForDuppedLotRelocateParams {
|
|
28
|
+
args: {
|
|
29
|
+
source_shelf: string;
|
|
30
|
+
destination_shelf: string;
|
|
31
|
+
item_id?: number;
|
|
32
|
+
new_role?: ApiV21EntitiesLocationRole;
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
export interface ApiV21WarehousesIdValidForDuppedLotRelocateResult {
|
|
36
|
+
result?: {
|
|
37
|
+
valid: boolean;
|
|
38
|
+
reason?: string;
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
export declare const getWarehouseIdValidForDuplicatedLotRelocate: (client: HttpClient, warehouseId: number, params: CallTraitWarehouseIdValidForDuppedLotRelocateParams) => Promise<ApiV21WarehousesIdValidForDuppedLotRelocateResult>;
|