@indigina/wms-api 0.0.93 → 0.0.94
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 +62 -1
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +266 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.94
|
|
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.94 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -5037,6 +5037,21 @@ const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDelive
|
|
|
5037
5037
|
* Do not edit the class manually.
|
|
5038
5038
|
*/
|
|
5039
5039
|
|
|
5040
|
+
/**
|
|
5041
|
+
* Wms.API.Client
|
|
5042
|
+
*
|
|
5043
|
+
*
|
|
5044
|
+
*
|
|
5045
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5046
|
+
* https://openapi-generator.tech
|
|
5047
|
+
* Do not edit the class manually.
|
|
5048
|
+
*/
|
|
5049
|
+
const DcLocationStatus = {
|
|
5050
|
+
Active: 'Active',
|
|
5051
|
+
Suspended: 'Suspended',
|
|
5052
|
+
Closed: 'Closed'
|
|
5053
|
+
};
|
|
5054
|
+
|
|
5040
5055
|
/**
|
|
5041
5056
|
* Wms.API.Client
|
|
5042
5057
|
*
|
|
@@ -5119,6 +5134,27 @@ const DeviceType = {
|
|
|
5119
5134
|
* Do not edit the class manually.
|
|
5120
5135
|
*/
|
|
5121
5136
|
|
|
5137
|
+
/**
|
|
5138
|
+
* Wms.API.Client
|
|
5139
|
+
*
|
|
5140
|
+
*
|
|
5141
|
+
*
|
|
5142
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5143
|
+
* https://openapi-generator.tech
|
|
5144
|
+
* Do not edit the class manually.
|
|
5145
|
+
*/
|
|
5146
|
+
const LocationType = {
|
|
5147
|
+
AvailableStock: 'AvailableStock',
|
|
5148
|
+
CrossDock: 'CrossDock',
|
|
5149
|
+
Quarantine: 'Quarantine',
|
|
5150
|
+
Returns: 'Returns',
|
|
5151
|
+
WebStock: 'WebStock',
|
|
5152
|
+
BulkStock: 'BulkStock',
|
|
5153
|
+
Qc: 'QC',
|
|
5154
|
+
Query: 'Query',
|
|
5155
|
+
TestCode: 'TestCode'
|
|
5156
|
+
};
|
|
5157
|
+
|
|
5122
5158
|
/**
|
|
5123
5159
|
* Wms.API.Client
|
|
5124
5160
|
*
|
|
@@ -5269,6 +5305,16 @@ const PickingProcesses = {
|
|
|
5269
5305
|
* Do not edit the class manually.
|
|
5270
5306
|
*/
|
|
5271
5307
|
|
|
5308
|
+
/**
|
|
5309
|
+
* Wms.API.Client
|
|
5310
|
+
*
|
|
5311
|
+
*
|
|
5312
|
+
*
|
|
5313
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5314
|
+
* https://openapi-generator.tech
|
|
5315
|
+
* Do not edit the class manually.
|
|
5316
|
+
*/
|
|
5317
|
+
|
|
5272
5318
|
/**
|
|
5273
5319
|
* Wms.API.Client
|
|
5274
5320
|
*
|
|
@@ -5400,6 +5446,21 @@ const RecordType = {
|
|
|
5400
5446
|
* Do not edit the class manually.
|
|
5401
5447
|
*/
|
|
5402
5448
|
|
|
5449
|
+
/**
|
|
5450
|
+
* Wms.API.Client
|
|
5451
|
+
*
|
|
5452
|
+
*
|
|
5453
|
+
*
|
|
5454
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5455
|
+
* https://openapi-generator.tech
|
|
5456
|
+
* Do not edit the class manually.
|
|
5457
|
+
*/
|
|
5458
|
+
const StorageType = {
|
|
5459
|
+
PickFace: 'PickFace',
|
|
5460
|
+
Bulk: 'Bulk',
|
|
5461
|
+
CrossDock: 'CrossDock'
|
|
5462
|
+
};
|
|
5463
|
+
|
|
5403
5464
|
/**
|
|
5404
5465
|
* Wms.API.Client
|
|
5405
5466
|
*
|
|
@@ -5524,5 +5585,5 @@ function provideApi(configOrBasePath) {
|
|
|
5524
5585
|
* Generated bundle index. Do not edit.
|
|
5525
5586
|
*/
|
|
5526
5587
|
|
|
5527
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonsService, CompaniesService, Configuration, DcLocationsService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchItemsService, DispatchesService, HealthService, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
5588
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonsService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchItemsService, DispatchesService, HealthService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
5528
5589
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|