@indigina/wms-api 0.0.138 → 0.0.139
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/README.md +2 -2
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +44 -44
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.139
|
|
2
2
|
|
|
3
3
|
WMS API Client for Angular applications
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
24
24
|
_published:_
|
|
25
25
|
|
|
26
26
|
```console
|
|
27
|
-
npm install @indigina/wms-api@0.0.
|
|
27
|
+
npm install @indigina/wms-api@0.0.139 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
package/package.json
CHANGED
|
@@ -2730,6 +2730,27 @@ declare class DispatchItemsService extends BaseService {
|
|
|
2730
2730
|
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchItemsService>;
|
|
2731
2731
|
}
|
|
2732
2732
|
|
|
2733
|
+
/**
|
|
2734
|
+
* Wms.API.Client
|
|
2735
|
+
*
|
|
2736
|
+
*
|
|
2737
|
+
*
|
|
2738
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2739
|
+
* https://openapi-generator.tech
|
|
2740
|
+
* Do not edit the class manually.
|
|
2741
|
+
*/
|
|
2742
|
+
declare const PickingProcesses: {
|
|
2743
|
+
readonly OrderPicking: "OrderPicking";
|
|
2744
|
+
readonly OrderPickingToTempBin: "OrderPickingToTempBin";
|
|
2745
|
+
readonly WavePicking: "WavePicking";
|
|
2746
|
+
readonly FastDispatch: "FastDispatch";
|
|
2747
|
+
readonly PickBySku: "PickBySku";
|
|
2748
|
+
readonly PickPack: "PickPack";
|
|
2749
|
+
readonly PickPackBySku: "PickPackBySku";
|
|
2750
|
+
readonly BatchPicking: "BatchPicking";
|
|
2751
|
+
};
|
|
2752
|
+
type PickingProcesses = typeof PickingProcesses[keyof typeof PickingProcesses];
|
|
2753
|
+
|
|
2733
2754
|
/**
|
|
2734
2755
|
* Wms.API.Client
|
|
2735
2756
|
*
|
|
@@ -2751,6 +2772,27 @@ declare const OrderType: {
|
|
|
2751
2772
|
};
|
|
2752
2773
|
type OrderType = typeof OrderType[keyof typeof OrderType];
|
|
2753
2774
|
|
|
2775
|
+
/**
|
|
2776
|
+
* Wms.API.Client
|
|
2777
|
+
*
|
|
2778
|
+
*
|
|
2779
|
+
*
|
|
2780
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2781
|
+
* https://openapi-generator.tech
|
|
2782
|
+
* Do not edit the class manually.
|
|
2783
|
+
*/
|
|
2784
|
+
declare const PackingProcesses: {
|
|
2785
|
+
readonly OrderPacking: "OrderPacking";
|
|
2786
|
+
readonly WebOrderPacking: "WebOrderPacking";
|
|
2787
|
+
readonly ClusterPacking: "ClusterPacking";
|
|
2788
|
+
readonly DispatchPacking: "DispatchPacking";
|
|
2789
|
+
readonly SkuPacking: "SkuPacking";
|
|
2790
|
+
readonly PickPack: "PickPack";
|
|
2791
|
+
readonly PickPackBySku: "PickPackBySku";
|
|
2792
|
+
readonly BatchPicking: "BatchPicking";
|
|
2793
|
+
};
|
|
2794
|
+
type PackingProcesses = typeof PackingProcesses[keyof typeof PackingProcesses];
|
|
2795
|
+
|
|
2754
2796
|
/**
|
|
2755
2797
|
* Wms.API.Client
|
|
2756
2798
|
*
|
|
@@ -2826,8 +2868,8 @@ interface Dispatch {
|
|
|
2826
2868
|
waveId?: string | null;
|
|
2827
2869
|
purchaseOrderNumber?: string;
|
|
2828
2870
|
star?: boolean;
|
|
2829
|
-
|
|
2830
|
-
|
|
2871
|
+
pickingProcess?: PickingProcesses;
|
|
2872
|
+
packingProcess?: PackingProcesses;
|
|
2831
2873
|
noOfLinesOrdered?: number | null;
|
|
2832
2874
|
totalUnitsOrdered?: number | null;
|
|
2833
2875
|
containsBuildKit?: boolean;
|
|
@@ -2836,48 +2878,6 @@ interface Dispatch {
|
|
|
2836
2878
|
declare namespace Dispatch {
|
|
2837
2879
|
}
|
|
2838
2880
|
|
|
2839
|
-
/**
|
|
2840
|
-
* Wms.API.Client
|
|
2841
|
-
*
|
|
2842
|
-
*
|
|
2843
|
-
*
|
|
2844
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2845
|
-
* https://openapi-generator.tech
|
|
2846
|
-
* Do not edit the class manually.
|
|
2847
|
-
*/
|
|
2848
|
-
declare const PickingProcesses: {
|
|
2849
|
-
readonly OrderPicking: "OrderPicking";
|
|
2850
|
-
readonly OrderPickingToTempBin: "OrderPickingToTempBin";
|
|
2851
|
-
readonly WavePicking: "WavePicking";
|
|
2852
|
-
readonly FastDispatch: "FastDispatch";
|
|
2853
|
-
readonly PickBySku: "PickBySku";
|
|
2854
|
-
readonly PickPack: "PickPack";
|
|
2855
|
-
readonly PickPackBySku: "PickPackBySku";
|
|
2856
|
-
readonly BatchPicking: "BatchPicking";
|
|
2857
|
-
};
|
|
2858
|
-
type PickingProcesses = typeof PickingProcesses[keyof typeof PickingProcesses];
|
|
2859
|
-
|
|
2860
|
-
/**
|
|
2861
|
-
* Wms.API.Client
|
|
2862
|
-
*
|
|
2863
|
-
*
|
|
2864
|
-
*
|
|
2865
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2866
|
-
* https://openapi-generator.tech
|
|
2867
|
-
* Do not edit the class manually.
|
|
2868
|
-
*/
|
|
2869
|
-
declare const PackingProcesses: {
|
|
2870
|
-
readonly OrderPacking: "OrderPacking";
|
|
2871
|
-
readonly WebOrderPacking: "WebOrderPacking";
|
|
2872
|
-
readonly ClusterPacking: "ClusterPacking";
|
|
2873
|
-
readonly DispatchPacking: "DispatchPacking";
|
|
2874
|
-
readonly SkuPacking: "SkuPacking";
|
|
2875
|
-
readonly PickPack: "PickPack";
|
|
2876
|
-
readonly PickPackBySku: "PickPackBySku";
|
|
2877
|
-
readonly BatchPicking: "BatchPicking";
|
|
2878
|
-
};
|
|
2879
|
-
type PackingProcesses = typeof PackingProcesses[keyof typeof PackingProcesses];
|
|
2880
|
-
|
|
2881
2881
|
/**
|
|
2882
2882
|
* Wms.API.Client
|
|
2883
2883
|
*
|