@indigina/wms-api 0.0.122 → 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.122
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.122 --save
27
+ npm install @indigina/wms-api@0.0.124 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -3356,6 +3356,41 @@ class NotesService extends BaseService {
3356
3356
  reportProgress: reportProgress
3357
3357
  });
3358
3358
  }
3359
+ deleteNote(id, observe = 'body', reportProgress = false, options) {
3360
+ if (id === null || id === undefined) {
3361
+ throw new Error('Required parameter id was null or undefined when calling deleteNote.');
3362
+ }
3363
+ let localVarHeaders = this.defaultHeaders;
3364
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
3365
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
3366
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
3367
+ }
3368
+ const localVarHttpContext = options?.context ?? new HttpContext();
3369
+ const localVarTransferCache = options?.transferCache ?? true;
3370
+ let responseType_ = 'json';
3371
+ if (localVarHttpHeaderAcceptSelected) {
3372
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
3373
+ responseType_ = 'text';
3374
+ }
3375
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
3376
+ responseType_ = 'json';
3377
+ }
3378
+ else {
3379
+ responseType_ = 'blob';
3380
+ }
3381
+ }
3382
+ let localVarPath = `/notes/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
3383
+ const { basePath, withCredentials } = this.configuration;
3384
+ return this.httpClient.request('delete', `${basePath}${localVarPath}`, {
3385
+ context: localVarHttpContext,
3386
+ responseType: responseType_,
3387
+ ...(withCredentials ? { withCredentials } : {}),
3388
+ headers: localVarHeaders,
3389
+ observe: observe,
3390
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
3391
+ reportProgress: reportProgress
3392
+ });
3393
+ }
3359
3394
  getNoteByCategory(sourceId, type, category, observe = 'body', reportProgress = false, options) {
3360
3395
  if (sourceId === null || sourceId === undefined) {
3361
3396
  throw new Error('Required parameter sourceId was null or undefined when calling getNoteByCategory.');
@@ -6314,6 +6349,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
6314
6349
  type: Optional
6315
6350
  }] }] });
6316
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
+
6317
6426
  /**
6318
6427
  * Wms.API.Client
6319
6428
  *
@@ -6391,7 +6500,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
6391
6500
  type: Optional
6392
6501
  }] }] });
6393
6502
 
6394
- 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];
6395
6504
 
6396
6505
  /**
6397
6506
  * Wms.API.Client
@@ -7201,6 +7310,16 @@ const WavePickReleaseStatuses = {
7201
7310
  Closed: 'Closed'
7202
7311
  };
7203
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
+
7204
7323
  /**
7205
7324
  * Wms.API.Client
7206
7325
  *
@@ -7268,5 +7387,5 @@ function provideApi(configOrBasePath) {
7268
7387
  * Generated bundle index. Do not edit.
7269
7388
  */
7270
7389
 
7271
- 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 };
7272
7391
  //# sourceMappingURL=indigina-wms-api.mjs.map