@indigina/wms-api 0.0.123 → 0.0.124
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.124
|
|
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.124 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -6349,6 +6349,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
6349
6349
|
type: Optional
|
|
6350
6350
|
}] }] });
|
|
6351
6351
|
|
|
6352
|
+
/**
|
|
6353
|
+
* Wms.API.Client
|
|
6354
|
+
*
|
|
6355
|
+
*
|
|
6356
|
+
*
|
|
6357
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6358
|
+
* https://openapi-generator.tech
|
|
6359
|
+
* Do not edit the class manually.
|
|
6360
|
+
*/
|
|
6361
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
6362
|
+
class WavePickingAccessService extends BaseService {
|
|
6363
|
+
httpClient;
|
|
6364
|
+
constructor(httpClient, basePath, configuration) {
|
|
6365
|
+
super(basePath, configuration);
|
|
6366
|
+
this.httpClient = httpClient;
|
|
6367
|
+
}
|
|
6368
|
+
getWavePickingAccesses($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
6369
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
6370
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
6371
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
6372
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
6373
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
6374
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
6375
|
+
let localVarHeaders = this.defaultHeaders;
|
|
6376
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
6377
|
+
'application/json'
|
|
6378
|
+
]);
|
|
6379
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
6380
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
6381
|
+
}
|
|
6382
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
6383
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
6384
|
+
let responseType_ = 'json';
|
|
6385
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
6386
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
6387
|
+
responseType_ = 'text';
|
|
6388
|
+
}
|
|
6389
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
6390
|
+
responseType_ = 'json';
|
|
6391
|
+
}
|
|
6392
|
+
else {
|
|
6393
|
+
responseType_ = 'blob';
|
|
6394
|
+
}
|
|
6395
|
+
}
|
|
6396
|
+
let localVarPath = `/wavePickingAccesses`;
|
|
6397
|
+
const { basePath, withCredentials } = this.configuration;
|
|
6398
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
6399
|
+
context: localVarHttpContext,
|
|
6400
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
6401
|
+
responseType: responseType_,
|
|
6402
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
6403
|
+
headers: localVarHeaders,
|
|
6404
|
+
observe: observe,
|
|
6405
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
6406
|
+
reportProgress: reportProgress
|
|
6407
|
+
});
|
|
6408
|
+
}
|
|
6409
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WavePickingAccessService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6410
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WavePickingAccessService, providedIn: 'root' });
|
|
6411
|
+
}
|
|
6412
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WavePickingAccessService, decorators: [{
|
|
6413
|
+
type: Injectable,
|
|
6414
|
+
args: [{
|
|
6415
|
+
providedIn: 'root'
|
|
6416
|
+
}]
|
|
6417
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
6418
|
+
type: Optional
|
|
6419
|
+
}, {
|
|
6420
|
+
type: Inject,
|
|
6421
|
+
args: [BASE_PATH]
|
|
6422
|
+
}] }, { type: Configuration, decorators: [{
|
|
6423
|
+
type: Optional
|
|
6424
|
+
}] }] });
|
|
6425
|
+
|
|
6352
6426
|
/**
|
|
6353
6427
|
* Wms.API.Client
|
|
6354
6428
|
*
|
|
@@ -6426,7 +6500,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
6426
6500
|
type: Optional
|
|
6427
6501
|
}] }] });
|
|
6428
6502
|
|
|
6429
|
-
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, NotesService, PendoService, PermissionsService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessesService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserPrintersService, UsersInternalService, WavePickReleasesService, WavesByPickReleaseIdService];
|
|
6503
|
+
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, NotesService, PendoService, PermissionsService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessesService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserPrintersService, UsersInternalService, WavePickReleasesService, WavePickingAccessService, WavesByPickReleaseIdService];
|
|
6430
6504
|
|
|
6431
6505
|
/**
|
|
6432
6506
|
* Wms.API.Client
|
|
@@ -7236,6 +7310,16 @@ const WavePickReleaseStatuses = {
|
|
|
7236
7310
|
Closed: 'Closed'
|
|
7237
7311
|
};
|
|
7238
7312
|
|
|
7313
|
+
/**
|
|
7314
|
+
* Wms.API.Client
|
|
7315
|
+
*
|
|
7316
|
+
*
|
|
7317
|
+
*
|
|
7318
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7319
|
+
* https://openapi-generator.tech
|
|
7320
|
+
* Do not edit the class manually.
|
|
7321
|
+
*/
|
|
7322
|
+
|
|
7239
7323
|
/**
|
|
7240
7324
|
* Wms.API.Client
|
|
7241
7325
|
*
|
|
@@ -7303,5 +7387,5 @@ function provideApi(configOrBasePath) {
|
|
|
7303
7387
|
* Generated bundle index. Do not edit.
|
|
7304
7388
|
*/
|
|
7305
7389
|
|
|
7306
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessesService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
7390
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessesService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
7307
7391
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|