@indigina/wms-api 0.0.123 → 0.0.125

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.123
1
+ # @indigina/wms-api@0.0.125
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.123 --save
27
+ npm install @indigina/wms-api@0.0.125 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -2225,15 +2225,13 @@ class DeliveriesService extends BaseService {
2225
2225
  reportProgress: reportProgress
2226
2226
  });
2227
2227
  }
2228
- setDelivery(id, delivery, propertiesToUpdate, observe = 'body', reportProgress = false, options) {
2228
+ setDelivery(id, delivery, observe = 'body', reportProgress = false, options) {
2229
2229
  if (id === null || id === undefined) {
2230
2230
  throw new Error('Required parameter id was null or undefined when calling setDelivery.');
2231
2231
  }
2232
2232
  if (delivery === null || delivery === undefined) {
2233
2233
  throw new Error('Required parameter delivery was null or undefined when calling setDelivery.');
2234
2234
  }
2235
- let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
2236
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'propertiesToUpdate', propertiesToUpdate, QueryParamStyle.Form, true);
2237
2235
  let localVarHeaders = this.defaultHeaders;
2238
2236
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2239
2237
  'application/json'
@@ -2268,7 +2266,6 @@ class DeliveriesService extends BaseService {
2268
2266
  return this.httpClient.request('put', `${basePath}${localVarPath}`, {
2269
2267
  context: localVarHttpContext,
2270
2268
  body: delivery,
2271
- params: localVarQueryParameters.toHttpParams(),
2272
2269
  responseType: responseType_,
2273
2270
  ...(withCredentials ? { withCredentials } : {}),
2274
2271
  headers: localVarHeaders,
@@ -2507,15 +2504,13 @@ class DeliveryItemsService extends BaseService {
2507
2504
  reportProgress: reportProgress
2508
2505
  });
2509
2506
  }
2510
- setDeliveryItem(id, deliveryItem, propertiesToUpdate, observe = 'body', reportProgress = false, options) {
2507
+ setDeliveryItem(id, deliveryItem, observe = 'body', reportProgress = false, options) {
2511
2508
  if (id === null || id === undefined) {
2512
2509
  throw new Error('Required parameter id was null or undefined when calling setDeliveryItem.');
2513
2510
  }
2514
2511
  if (deliveryItem === null || deliveryItem === undefined) {
2515
2512
  throw new Error('Required parameter deliveryItem was null or undefined when calling setDeliveryItem.');
2516
2513
  }
2517
- let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
2518
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'propertiesToUpdate', propertiesToUpdate, QueryParamStyle.Form, true);
2519
2514
  let localVarHeaders = this.defaultHeaders;
2520
2515
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2521
2516
  'application/json'
@@ -2550,7 +2545,6 @@ class DeliveryItemsService extends BaseService {
2550
2545
  return this.httpClient.request('put', `${basePath}${localVarPath}`, {
2551
2546
  context: localVarHttpContext,
2552
2547
  body: deliveryItem,
2553
- params: localVarQueryParameters.toHttpParams(),
2554
2548
  responseType: responseType_,
2555
2549
  ...(withCredentials ? { withCredentials } : {}),
2556
2550
  headers: localVarHeaders,
@@ -6349,6 +6343,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
6349
6343
  type: Optional
6350
6344
  }] }] });
6351
6345
 
6346
+ /**
6347
+ * Wms.API.Client
6348
+ *
6349
+ *
6350
+ *
6351
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6352
+ * https://openapi-generator.tech
6353
+ * Do not edit the class manually.
6354
+ */
6355
+ /* tslint:disable:no-unused-variable member-ordering */
6356
+ class WavePickingAccessService extends BaseService {
6357
+ httpClient;
6358
+ constructor(httpClient, basePath, configuration) {
6359
+ super(basePath, configuration);
6360
+ this.httpClient = httpClient;
6361
+ }
6362
+ getWavePickingAccesses($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
6363
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
6364
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
6365
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
6366
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
6367
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
6368
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
6369
+ let localVarHeaders = this.defaultHeaders;
6370
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
6371
+ 'application/json'
6372
+ ]);
6373
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
6374
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
6375
+ }
6376
+ const localVarHttpContext = options?.context ?? new HttpContext();
6377
+ const localVarTransferCache = options?.transferCache ?? true;
6378
+ let responseType_ = 'json';
6379
+ if (localVarHttpHeaderAcceptSelected) {
6380
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
6381
+ responseType_ = 'text';
6382
+ }
6383
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
6384
+ responseType_ = 'json';
6385
+ }
6386
+ else {
6387
+ responseType_ = 'blob';
6388
+ }
6389
+ }
6390
+ let localVarPath = `/wavePickingAccesses`;
6391
+ const { basePath, withCredentials } = this.configuration;
6392
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
6393
+ context: localVarHttpContext,
6394
+ params: localVarQueryParameters.toHttpParams(),
6395
+ responseType: responseType_,
6396
+ ...(withCredentials ? { withCredentials } : {}),
6397
+ headers: localVarHeaders,
6398
+ observe: observe,
6399
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
6400
+ reportProgress: reportProgress
6401
+ });
6402
+ }
6403
+ 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 });
6404
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WavePickingAccessService, providedIn: 'root' });
6405
+ }
6406
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WavePickingAccessService, decorators: [{
6407
+ type: Injectable,
6408
+ args: [{
6409
+ providedIn: 'root'
6410
+ }]
6411
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
6412
+ type: Optional
6413
+ }, {
6414
+ type: Inject,
6415
+ args: [BASE_PATH]
6416
+ }] }, { type: Configuration, decorators: [{
6417
+ type: Optional
6418
+ }] }] });
6419
+
6352
6420
  /**
6353
6421
  * Wms.API.Client
6354
6422
  *
@@ -6426,7 +6494,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
6426
6494
  type: Optional
6427
6495
  }] }] });
6428
6496
 
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];
6497
+ 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
6498
 
6431
6499
  /**
6432
6500
  * Wms.API.Client
@@ -7236,6 +7304,16 @@ const WavePickReleaseStatuses = {
7236
7304
  Closed: 'Closed'
7237
7305
  };
7238
7306
 
7307
+ /**
7308
+ * Wms.API.Client
7309
+ *
7310
+ *
7311
+ *
7312
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7313
+ * https://openapi-generator.tech
7314
+ * Do not edit the class manually.
7315
+ */
7316
+
7239
7317
  /**
7240
7318
  * Wms.API.Client
7241
7319
  *
@@ -7303,5 +7381,5 @@ function provideApi(configOrBasePath) {
7303
7381
  * Generated bundle index. Do not edit.
7304
7382
  */
7305
7383
 
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 };
7384
+ 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
7385
  //# sourceMappingURL=indigina-wms-api.mjs.map