@indigina/wms-api 0.0.157 → 0.0.159
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 +127 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +125 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.159
|
|
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.159 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -7484,6 +7484,47 @@ class WaveConfigGroupsService extends BaseService {
|
|
|
7484
7484
|
reportProgress: reportProgress
|
|
7485
7485
|
});
|
|
7486
7486
|
}
|
|
7487
|
+
getWaveConfigGroupClients($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
7488
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
7489
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
7490
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
7491
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
7492
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
7493
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
7494
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7495
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7496
|
+
'application/json'
|
|
7497
|
+
]);
|
|
7498
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7499
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7500
|
+
}
|
|
7501
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7502
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7503
|
+
let responseType_ = 'json';
|
|
7504
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7505
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7506
|
+
responseType_ = 'text';
|
|
7507
|
+
}
|
|
7508
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7509
|
+
responseType_ = 'json';
|
|
7510
|
+
}
|
|
7511
|
+
else {
|
|
7512
|
+
responseType_ = 'blob';
|
|
7513
|
+
}
|
|
7514
|
+
}
|
|
7515
|
+
let localVarPath = `/waveConfigGroups/clients`;
|
|
7516
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7517
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
7518
|
+
context: localVarHttpContext,
|
|
7519
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
7520
|
+
responseType: responseType_,
|
|
7521
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7522
|
+
headers: localVarHeaders,
|
|
7523
|
+
observe: observe,
|
|
7524
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7525
|
+
reportProgress: reportProgress
|
|
7526
|
+
});
|
|
7527
|
+
}
|
|
7487
7528
|
getWaveConfigGroupConfigurations(waveConfigGroupId, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
7488
7529
|
if (waveConfigGroupId === null || waveConfigGroupId === undefined) {
|
|
7489
7530
|
throw new Error('Required parameter waveConfigGroupId was null or undefined when calling getWaveConfigGroupConfigurations.');
|
|
@@ -7676,6 +7717,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
7676
7717
|
type: Optional
|
|
7677
7718
|
}] }] });
|
|
7678
7719
|
|
|
7720
|
+
/**
|
|
7721
|
+
* Wms.API.Client
|
|
7722
|
+
*
|
|
7723
|
+
*
|
|
7724
|
+
*
|
|
7725
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7726
|
+
* https://openapi-generator.tech
|
|
7727
|
+
* Do not edit the class manually.
|
|
7728
|
+
*/
|
|
7729
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
7730
|
+
class WaveConfigurationsService extends BaseService {
|
|
7731
|
+
httpClient;
|
|
7732
|
+
constructor(httpClient, basePath, configuration) {
|
|
7733
|
+
super(basePath, configuration);
|
|
7734
|
+
this.httpClient = httpClient;
|
|
7735
|
+
}
|
|
7736
|
+
getWaveConfigurations($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
7737
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
7738
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
7739
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
7740
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
7741
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
7742
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
7743
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7744
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7745
|
+
'application/json'
|
|
7746
|
+
]);
|
|
7747
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7748
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7749
|
+
}
|
|
7750
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7751
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7752
|
+
let responseType_ = 'json';
|
|
7753
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7754
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7755
|
+
responseType_ = 'text';
|
|
7756
|
+
}
|
|
7757
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7758
|
+
responseType_ = 'json';
|
|
7759
|
+
}
|
|
7760
|
+
else {
|
|
7761
|
+
responseType_ = 'blob';
|
|
7762
|
+
}
|
|
7763
|
+
}
|
|
7764
|
+
let localVarPath = `/waveConfigurations`;
|
|
7765
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7766
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
7767
|
+
context: localVarHttpContext,
|
|
7768
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
7769
|
+
responseType: responseType_,
|
|
7770
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7771
|
+
headers: localVarHeaders,
|
|
7772
|
+
observe: observe,
|
|
7773
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7774
|
+
reportProgress: reportProgress
|
|
7775
|
+
});
|
|
7776
|
+
}
|
|
7777
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveConfigurationsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7778
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveConfigurationsService, providedIn: 'root' });
|
|
7779
|
+
}
|
|
7780
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveConfigurationsService, decorators: [{
|
|
7781
|
+
type: Injectable,
|
|
7782
|
+
args: [{
|
|
7783
|
+
providedIn: 'root'
|
|
7784
|
+
}]
|
|
7785
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
7786
|
+
type: Optional
|
|
7787
|
+
}, {
|
|
7788
|
+
type: Inject,
|
|
7789
|
+
args: [BASE_PATH]
|
|
7790
|
+
}] }, { type: Configuration, decorators: [{
|
|
7791
|
+
type: Optional
|
|
7792
|
+
}] }] });
|
|
7793
|
+
|
|
7679
7794
|
/**
|
|
7680
7795
|
* Wms.API.Client
|
|
7681
7796
|
*
|
|
@@ -8316,7 +8431,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
8316
8431
|
type: Optional
|
|
8317
8432
|
}] }] });
|
|
8318
8433
|
|
|
8319
|
-
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WavesByPickReleaseIdService];
|
|
8434
|
+
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WavesByPickReleaseIdService];
|
|
8320
8435
|
|
|
8321
8436
|
/**
|
|
8322
8437
|
* Wms.API.Client
|
|
@@ -9227,6 +9342,16 @@ const UserCompanyType = {
|
|
|
9227
9342
|
* Do not edit the class manually.
|
|
9228
9343
|
*/
|
|
9229
9344
|
|
|
9345
|
+
/**
|
|
9346
|
+
* Wms.API.Client
|
|
9347
|
+
*
|
|
9348
|
+
*
|
|
9349
|
+
*
|
|
9350
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9351
|
+
* https://openapi-generator.tech
|
|
9352
|
+
* Do not edit the class manually.
|
|
9353
|
+
*/
|
|
9354
|
+
|
|
9230
9355
|
/**
|
|
9231
9356
|
* Wms.API.Client
|
|
9232
9357
|
*
|
|
@@ -9390,5 +9515,5 @@ function provideApi(configOrBasePath) {
|
|
|
9390
9515
|
* Generated bundle index. Do not edit.
|
|
9391
9516
|
*/
|
|
9392
9517
|
|
|
9393
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
9518
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
9394
9519
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|