@indigina/wms-api 0.0.158 → 0.0.160
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 +86 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +128 -33
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.160
|
|
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.160 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -7717,6 +7717,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
7717
7717
|
type: Optional
|
|
7718
7718
|
}] }] });
|
|
7719
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
|
+
|
|
7720
7794
|
/**
|
|
7721
7795
|
* Wms.API.Client
|
|
7722
7796
|
*
|
|
@@ -8357,7 +8431,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
8357
8431
|
type: Optional
|
|
8358
8432
|
}] }] });
|
|
8359
8433
|
|
|
8360
|
-
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];
|
|
8361
8435
|
|
|
8362
8436
|
/**
|
|
8363
8437
|
* Wms.API.Client
|
|
@@ -9268,6 +9342,16 @@ const UserCompanyType = {
|
|
|
9268
9342
|
* Do not edit the class manually.
|
|
9269
9343
|
*/
|
|
9270
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
|
+
|
|
9271
9355
|
/**
|
|
9272
9356
|
* Wms.API.Client
|
|
9273
9357
|
*
|
|
@@ -9431,5 +9515,5 @@ function provideApi(configOrBasePath) {
|
|
|
9431
9515
|
* Generated bundle index. Do not edit.
|
|
9432
9516
|
*/
|
|
9433
9517
|
|
|
9434
|
-
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 };
|
|
9435
9519
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|