@indigina/wms-api 0.0.71 → 0.0.73
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 +23 -11
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/model/currentUser.d.ts +6 -0
- package/model/models.d.ts +1 -0
- package/model/userCompanyType.d.ts +22 -0
- 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.73
|
|
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.73 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -6145,16 +6145,6 @@ const APIS = [AnalyticsService, CompaniesService, DcsService, DeliveriesService,
|
|
|
6145
6145
|
* Do not edit the class manually.
|
|
6146
6146
|
*/
|
|
6147
6147
|
|
|
6148
|
-
/**
|
|
6149
|
-
* Wms.API.Client
|
|
6150
|
-
*
|
|
6151
|
-
*
|
|
6152
|
-
*
|
|
6153
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6154
|
-
* https://openapi-generator.tech
|
|
6155
|
-
* Do not edit the class manually.
|
|
6156
|
-
*/
|
|
6157
|
-
|
|
6158
6148
|
/**
|
|
6159
6149
|
* Wms.API.Client
|
|
6160
6150
|
*
|
|
@@ -6502,6 +6492,28 @@ const RecordType = {
|
|
|
6502
6492
|
* Do not edit the class manually.
|
|
6503
6493
|
*/
|
|
6504
6494
|
|
|
6495
|
+
/**
|
|
6496
|
+
* Wms.API.Client
|
|
6497
|
+
*
|
|
6498
|
+
*
|
|
6499
|
+
*
|
|
6500
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6501
|
+
* https://openapi-generator.tech
|
|
6502
|
+
* Do not edit the class manually.
|
|
6503
|
+
*/
|
|
6504
|
+
const UserCompanyType = {
|
|
6505
|
+
Dc: 'DC',
|
|
6506
|
+
Client: 'Client',
|
|
6507
|
+
OriginAgent: 'OriginAgent',
|
|
6508
|
+
DestinationAgent: 'DestinationAgent',
|
|
6509
|
+
Vendor: 'Vendor',
|
|
6510
|
+
Integration: 'Integration',
|
|
6511
|
+
SystemAdmin: 'SystemAdmin',
|
|
6512
|
+
ReportAdmin: 'ReportAdmin',
|
|
6513
|
+
SsSysAdmin: 'SS_SysAdmin',
|
|
6514
|
+
SsReportAdmin: 'SS_ReportAdmin'
|
|
6515
|
+
};
|
|
6516
|
+
|
|
6505
6517
|
/**
|
|
6506
6518
|
* Wms.API.Client
|
|
6507
6519
|
*
|
|
@@ -6562,5 +6574,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor
|
|
|
6562
6574
|
* Generated bundle index. Do not edit.
|
|
6563
6575
|
*/
|
|
6564
6576
|
|
|
6565
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CompaniesService, Configuration, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchItemsService, DispatchService, HealthService, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcess, PermissionsService, PickingProcess, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UsersInternalService };
|
|
6577
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CompaniesService, Configuration, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchItemsService, DispatchService, HealthService, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcess, PermissionsService, PickingProcess, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService };
|
|
6566
6578
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|