@indigina/wms-api 0.0.77 → 0.0.78
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/fesm2022/indigina-wms-api.mjs +11 -5
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/model/dispatchGridView.d.ts +4 -4
- package/model/dispatchSummaryView.d.ts +4 -4
- package/model/dispatchView.d.ts +4 -4
- package/model/models.d.ts +2 -2
- package/model/packingProcesses.d.ts +20 -0
- package/model/pickingProcesses.d.ts +20 -0
- package/package.json +1 -1
- package/model/packingProcess.d.ts +0 -17
- package/model/pickingProcess.d.ts +0 -17
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.78
|
|
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.78 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -6647,12 +6647,15 @@ const OrderType = {
|
|
|
6647
6647
|
* https://openapi-generator.tech
|
|
6648
6648
|
* Do not edit the class manually.
|
|
6649
6649
|
*/
|
|
6650
|
-
const
|
|
6650
|
+
const PackingProcesses = {
|
|
6651
6651
|
OrderPacking: 'OrderPacking',
|
|
6652
6652
|
WebOrderPacking: 'WebOrderPacking',
|
|
6653
6653
|
ClusterPacking: 'ClusterPacking',
|
|
6654
6654
|
DispatchPacking: 'DispatchPacking',
|
|
6655
|
-
SkuPacking: 'SkuPacking'
|
|
6655
|
+
SkuPacking: 'SkuPacking',
|
|
6656
|
+
PickPack: 'PickPack',
|
|
6657
|
+
PickPackBySku: 'PickPackBySku',
|
|
6658
|
+
BatchPicking: 'BatchPicking'
|
|
6656
6659
|
};
|
|
6657
6660
|
|
|
6658
6661
|
/**
|
|
@@ -6664,12 +6667,15 @@ const PackingProcess = {
|
|
|
6664
6667
|
* https://openapi-generator.tech
|
|
6665
6668
|
* Do not edit the class manually.
|
|
6666
6669
|
*/
|
|
6667
|
-
const
|
|
6670
|
+
const PickingProcesses = {
|
|
6668
6671
|
OrderPicking: 'OrderPicking',
|
|
6669
6672
|
OrderPickingToTempBin: 'OrderPickingToTempBin',
|
|
6670
6673
|
WavePicking: 'WavePicking',
|
|
6671
6674
|
FastDispatch: 'FastDispatch',
|
|
6672
|
-
PickBySku: 'PickBySku'
|
|
6675
|
+
PickBySku: 'PickBySku',
|
|
6676
|
+
PickPack: 'PickPack',
|
|
6677
|
+
PickPackBySku: 'PickPackBySku',
|
|
6678
|
+
BatchPicking: 'BatchPicking'
|
|
6673
6679
|
};
|
|
6674
6680
|
|
|
6675
6681
|
/**
|
|
@@ -6895,5 +6901,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor
|
|
|
6895
6901
|
* Generated bundle index. Do not edit.
|
|
6896
6902
|
*/
|
|
6897
6903
|
|
|
6898
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CompaniesService, Configuration, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchItemsService, DispatchesService, HealthService, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType,
|
|
6904
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CompaniesService, Configuration, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchItemsService, DispatchesService, HealthService, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PermissionsService, PickingProcesses, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService };
|
|
6899
6905
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|