@indigina/wms-api 0.0.98 → 0.0.100
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 +147 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +171 -3
- 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.100
|
|
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.100 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -2398,6 +2398,121 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
2398
2398
|
type: Optional
|
|
2399
2399
|
}] }] });
|
|
2400
2400
|
|
|
2401
|
+
/**
|
|
2402
|
+
* Wms.API.Client
|
|
2403
|
+
*
|
|
2404
|
+
*
|
|
2405
|
+
*
|
|
2406
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2407
|
+
* https://openapi-generator.tech
|
|
2408
|
+
* Do not edit the class manually.
|
|
2409
|
+
*/
|
|
2410
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
2411
|
+
class DispatchItemQuantityChangesService extends BaseService {
|
|
2412
|
+
httpClient;
|
|
2413
|
+
constructor(httpClient, basePath, configuration) {
|
|
2414
|
+
super(basePath, configuration);
|
|
2415
|
+
this.httpClient = httpClient;
|
|
2416
|
+
}
|
|
2417
|
+
getDispatchItemQuantityChanges($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
2418
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
2419
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
|
|
2420
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $top, '$top');
|
|
2421
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $orderby, '$orderby');
|
|
2422
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $filter, '$filter');
|
|
2423
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $search, '$search');
|
|
2424
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2425
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
2426
|
+
'application/json'
|
|
2427
|
+
]);
|
|
2428
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2429
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
2430
|
+
}
|
|
2431
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2432
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2433
|
+
let responseType_ = 'json';
|
|
2434
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2435
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
2436
|
+
responseType_ = 'text';
|
|
2437
|
+
}
|
|
2438
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2439
|
+
responseType_ = 'json';
|
|
2440
|
+
}
|
|
2441
|
+
else {
|
|
2442
|
+
responseType_ = 'blob';
|
|
2443
|
+
}
|
|
2444
|
+
}
|
|
2445
|
+
let localVarPath = `/dispatchItemQuantityChanges`;
|
|
2446
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2447
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
2448
|
+
context: localVarHttpContext,
|
|
2449
|
+
params: localVarQueryParameters,
|
|
2450
|
+
responseType: responseType_,
|
|
2451
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2452
|
+
headers: localVarHeaders,
|
|
2453
|
+
observe: observe,
|
|
2454
|
+
transferCache: localVarTransferCache,
|
|
2455
|
+
reportProgress: reportProgress
|
|
2456
|
+
});
|
|
2457
|
+
}
|
|
2458
|
+
getDispatchItemQuantityChangesFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
2459
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
2460
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
|
|
2461
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $top, '$top');
|
|
2462
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $orderby, '$orderby');
|
|
2463
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $filter, '$filter');
|
|
2464
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, searchTerm, 'searchTerm');
|
|
2465
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2466
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
2467
|
+
'application/json'
|
|
2468
|
+
]);
|
|
2469
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2470
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
2471
|
+
}
|
|
2472
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2473
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2474
|
+
let responseType_ = 'json';
|
|
2475
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2476
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
2477
|
+
responseType_ = 'text';
|
|
2478
|
+
}
|
|
2479
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2480
|
+
responseType_ = 'json';
|
|
2481
|
+
}
|
|
2482
|
+
else {
|
|
2483
|
+
responseType_ = 'blob';
|
|
2484
|
+
}
|
|
2485
|
+
}
|
|
2486
|
+
let localVarPath = `/dispatchItemQuantityChanges/search`;
|
|
2487
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2488
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
2489
|
+
context: localVarHttpContext,
|
|
2490
|
+
params: localVarQueryParameters,
|
|
2491
|
+
responseType: responseType_,
|
|
2492
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2493
|
+
headers: localVarHeaders,
|
|
2494
|
+
observe: observe,
|
|
2495
|
+
transferCache: localVarTransferCache,
|
|
2496
|
+
reportProgress: reportProgress
|
|
2497
|
+
});
|
|
2498
|
+
}
|
|
2499
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: DispatchItemQuantityChangesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2500
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: DispatchItemQuantityChangesService, providedIn: 'root' });
|
|
2501
|
+
}
|
|
2502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: DispatchItemQuantityChangesService, decorators: [{
|
|
2503
|
+
type: Injectable,
|
|
2504
|
+
args: [{
|
|
2505
|
+
providedIn: 'root'
|
|
2506
|
+
}]
|
|
2507
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
2508
|
+
type: Optional
|
|
2509
|
+
}, {
|
|
2510
|
+
type: Inject,
|
|
2511
|
+
args: [BASE_PATH]
|
|
2512
|
+
}] }, { type: Configuration, decorators: [{
|
|
2513
|
+
type: Optional
|
|
2514
|
+
}] }] });
|
|
2515
|
+
|
|
2401
2516
|
/**
|
|
2402
2517
|
* Wms.API.Client
|
|
2403
2518
|
*
|
|
@@ -5252,7 +5367,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
5252
5367
|
type: Optional
|
|
5253
5368
|
}] }] });
|
|
5254
5369
|
|
|
5255
|
-
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemsService, DispatchesService, HealthService, NotesService, PendoService, PermissionsService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UsersInternalService];
|
|
5370
|
+
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, NotesService, PendoService, PermissionsService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UsersInternalService];
|
|
5256
5371
|
|
|
5257
5372
|
/**
|
|
5258
5373
|
* Wms.API.Client
|
|
@@ -5441,6 +5556,36 @@ const DeviceType = {
|
|
|
5441
5556
|
* Do not edit the class manually.
|
|
5442
5557
|
*/
|
|
5443
5558
|
|
|
5559
|
+
/**
|
|
5560
|
+
* Wms.API.Client
|
|
5561
|
+
*
|
|
5562
|
+
*
|
|
5563
|
+
*
|
|
5564
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5565
|
+
* https://openapi-generator.tech
|
|
5566
|
+
* Do not edit the class manually.
|
|
5567
|
+
*/
|
|
5568
|
+
|
|
5569
|
+
/**
|
|
5570
|
+
* Wms.API.Client
|
|
5571
|
+
*
|
|
5572
|
+
*
|
|
5573
|
+
*
|
|
5574
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5575
|
+
* https://openapi-generator.tech
|
|
5576
|
+
* Do not edit the class manually.
|
|
5577
|
+
*/
|
|
5578
|
+
|
|
5579
|
+
/**
|
|
5580
|
+
* Wms.API.Client
|
|
5581
|
+
*
|
|
5582
|
+
*
|
|
5583
|
+
*
|
|
5584
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5585
|
+
* https://openapi-generator.tech
|
|
5586
|
+
* Do not edit the class manually.
|
|
5587
|
+
*/
|
|
5588
|
+
|
|
5444
5589
|
/**
|
|
5445
5590
|
* Wms.API.Client
|
|
5446
5591
|
*
|
|
@@ -5910,5 +6055,5 @@ function provideApi(configOrBasePath) {
|
|
|
5910
6055
|
* Generated bundle index. Do not edit.
|
|
5911
6056
|
*/
|
|
5912
6057
|
|
|
5913
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonsService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemsService, DispatchesService, HealthService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentService, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
6058
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonsService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentService, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
5914
6059
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|