@indigina/wms-api 0.0.165 → 0.0.167
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
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.167
|
|
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.167 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -4137,6 +4137,83 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
4137
4137
|
type: Optional
|
|
4138
4138
|
}] }] });
|
|
4139
4139
|
|
|
4140
|
+
/**
|
|
4141
|
+
* Wms.API.Client
|
|
4142
|
+
*
|
|
4143
|
+
*
|
|
4144
|
+
*
|
|
4145
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4146
|
+
* https://openapi-generator.tech
|
|
4147
|
+
* Do not edit the class manually.
|
|
4148
|
+
*/
|
|
4149
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
4150
|
+
class PickSummariesService extends BaseService {
|
|
4151
|
+
httpClient;
|
|
4152
|
+
constructor(httpClient, basePath, configuration) {
|
|
4153
|
+
super(basePath, configuration);
|
|
4154
|
+
this.httpClient = httpClient;
|
|
4155
|
+
}
|
|
4156
|
+
getPickSummaries(from, to, observe = 'body', reportProgress = false, options) {
|
|
4157
|
+
if (from === null || from === undefined) {
|
|
4158
|
+
throw new Error('Required parameter from was null or undefined when calling getPickSummaries.');
|
|
4159
|
+
}
|
|
4160
|
+
if (to === null || to === undefined) {
|
|
4161
|
+
throw new Error('Required parameter to was null or undefined when calling getPickSummaries.');
|
|
4162
|
+
}
|
|
4163
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
4164
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'from', from, QueryParamStyle.Form, true);
|
|
4165
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'to', to, QueryParamStyle.Form, true);
|
|
4166
|
+
let localVarHeaders = this.defaultHeaders;
|
|
4167
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
4168
|
+
'application/json'
|
|
4169
|
+
]);
|
|
4170
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4171
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
4172
|
+
}
|
|
4173
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
4174
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
4175
|
+
let responseType_ = 'json';
|
|
4176
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
4177
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
4178
|
+
responseType_ = 'text';
|
|
4179
|
+
}
|
|
4180
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4181
|
+
responseType_ = 'json';
|
|
4182
|
+
}
|
|
4183
|
+
else {
|
|
4184
|
+
responseType_ = 'blob';
|
|
4185
|
+
}
|
|
4186
|
+
}
|
|
4187
|
+
let localVarPath = `/pickSummaries`;
|
|
4188
|
+
const { basePath, withCredentials } = this.configuration;
|
|
4189
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
4190
|
+
context: localVarHttpContext,
|
|
4191
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
4192
|
+
responseType: responseType_,
|
|
4193
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
4194
|
+
headers: localVarHeaders,
|
|
4195
|
+
observe: observe,
|
|
4196
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
4197
|
+
reportProgress: reportProgress
|
|
4198
|
+
});
|
|
4199
|
+
}
|
|
4200
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: PickSummariesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4201
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: PickSummariesService, providedIn: 'root' });
|
|
4202
|
+
}
|
|
4203
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: PickSummariesService, decorators: [{
|
|
4204
|
+
type: Injectable,
|
|
4205
|
+
args: [{
|
|
4206
|
+
providedIn: 'root'
|
|
4207
|
+
}]
|
|
4208
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
4209
|
+
type: Optional
|
|
4210
|
+
}, {
|
|
4211
|
+
type: Inject,
|
|
4212
|
+
args: [BASE_PATH]
|
|
4213
|
+
}] }, { type: Configuration, decorators: [{
|
|
4214
|
+
type: Optional
|
|
4215
|
+
}] }] });
|
|
4216
|
+
|
|
4140
4217
|
/**
|
|
4141
4218
|
* Wms.API.Client
|
|
4142
4219
|
*
|
|
@@ -8621,7 +8698,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
8621
8698
|
type: Optional
|
|
8622
8699
|
}] }] });
|
|
8623
8700
|
|
|
8624
|
-
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, WaveSummariesService, WavesByPickReleaseIdService];
|
|
8701
|
+
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PickSummariesService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WaveSummariesService, WavesByPickReleaseIdService];
|
|
8625
8702
|
|
|
8626
8703
|
/**
|
|
8627
8704
|
* Wms.API.Client
|
|
@@ -9135,6 +9212,16 @@ const PickReleaseHistoryTypes = {
|
|
|
9135
9212
|
Closed: 'Closed'
|
|
9136
9213
|
};
|
|
9137
9214
|
|
|
9215
|
+
/**
|
|
9216
|
+
* Wms.API.Client
|
|
9217
|
+
*
|
|
9218
|
+
*
|
|
9219
|
+
*
|
|
9220
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9221
|
+
* https://openapi-generator.tech
|
|
9222
|
+
* Do not edit the class manually.
|
|
9223
|
+
*/
|
|
9224
|
+
|
|
9138
9225
|
/**
|
|
9139
9226
|
* Wms.API.Client
|
|
9140
9227
|
*
|
|
@@ -9685,5 +9772,5 @@ function provideApi(configOrBasePath) {
|
|
|
9685
9772
|
* Generated bundle index. Do not edit.
|
|
9686
9773
|
*/
|
|
9687
9774
|
|
|
9688
|
-
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, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
|
|
9775
|
+
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, PickSummariesService, 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, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
|
|
9689
9776
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|