@indigina/wms-api 0.0.163 → 0.0.165

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.163
1
+ # @indigina/wms-api@0.0.165
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.163 --save
27
+ npm install @indigina/wms-api@0.0.165 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -7808,6 +7808,47 @@ class WaveConfigurationsService extends BaseService {
7808
7808
  reportProgress: reportProgress
7809
7809
  });
7810
7810
  }
7811
+ getWaveConfigurationsFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
7812
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
7813
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
7814
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
7815
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
7816
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
7817
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
7818
+ let localVarHeaders = this.defaultHeaders;
7819
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
7820
+ 'application/json'
7821
+ ]);
7822
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
7823
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
7824
+ }
7825
+ const localVarHttpContext = options?.context ?? new HttpContext();
7826
+ const localVarTransferCache = options?.transferCache ?? true;
7827
+ let responseType_ = 'json';
7828
+ if (localVarHttpHeaderAcceptSelected) {
7829
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
7830
+ responseType_ = 'text';
7831
+ }
7832
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
7833
+ responseType_ = 'json';
7834
+ }
7835
+ else {
7836
+ responseType_ = 'blob';
7837
+ }
7838
+ }
7839
+ let localVarPath = `/waveConfigurations/search`;
7840
+ const { basePath, withCredentials } = this.configuration;
7841
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
7842
+ context: localVarHttpContext,
7843
+ params: localVarQueryParameters.toHttpParams(),
7844
+ responseType: responseType_,
7845
+ ...(withCredentials ? { withCredentials } : {}),
7846
+ headers: localVarHeaders,
7847
+ observe: observe,
7848
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
7849
+ reportProgress: reportProgress
7850
+ });
7851
+ }
7811
7852
  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 });
7812
7853
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveConfigurationsService, providedIn: 'root' });
7813
7854
  }
@@ -8388,6 +8429,121 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
8388
8429
  type: Optional
8389
8430
  }] }] });
8390
8431
 
8432
+ /**
8433
+ * Wms.API.Client
8434
+ *
8435
+ *
8436
+ *
8437
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
8438
+ * https://openapi-generator.tech
8439
+ * Do not edit the class manually.
8440
+ */
8441
+ /* tslint:disable:no-unused-variable member-ordering */
8442
+ class WaveSummariesService extends BaseService {
8443
+ httpClient;
8444
+ constructor(httpClient, basePath, configuration) {
8445
+ super(basePath, configuration);
8446
+ this.httpClient = httpClient;
8447
+ }
8448
+ getWaveSummaries($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
8449
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
8450
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
8451
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
8452
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
8453
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
8454
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
8455
+ let localVarHeaders = this.defaultHeaders;
8456
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
8457
+ 'application/json'
8458
+ ]);
8459
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
8460
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
8461
+ }
8462
+ const localVarHttpContext = options?.context ?? new HttpContext();
8463
+ const localVarTransferCache = options?.transferCache ?? true;
8464
+ let responseType_ = 'json';
8465
+ if (localVarHttpHeaderAcceptSelected) {
8466
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
8467
+ responseType_ = 'text';
8468
+ }
8469
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
8470
+ responseType_ = 'json';
8471
+ }
8472
+ else {
8473
+ responseType_ = 'blob';
8474
+ }
8475
+ }
8476
+ let localVarPath = `/waveSummaries`;
8477
+ const { basePath, withCredentials } = this.configuration;
8478
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
8479
+ context: localVarHttpContext,
8480
+ params: localVarQueryParameters.toHttpParams(),
8481
+ responseType: responseType_,
8482
+ ...(withCredentials ? { withCredentials } : {}),
8483
+ headers: localVarHeaders,
8484
+ observe: observe,
8485
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
8486
+ reportProgress: reportProgress
8487
+ });
8488
+ }
8489
+ getWaveSummariesFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
8490
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
8491
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
8492
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
8493
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
8494
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
8495
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
8496
+ let localVarHeaders = this.defaultHeaders;
8497
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
8498
+ 'application/json'
8499
+ ]);
8500
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
8501
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
8502
+ }
8503
+ const localVarHttpContext = options?.context ?? new HttpContext();
8504
+ const localVarTransferCache = options?.transferCache ?? true;
8505
+ let responseType_ = 'json';
8506
+ if (localVarHttpHeaderAcceptSelected) {
8507
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
8508
+ responseType_ = 'text';
8509
+ }
8510
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
8511
+ responseType_ = 'json';
8512
+ }
8513
+ else {
8514
+ responseType_ = 'blob';
8515
+ }
8516
+ }
8517
+ let localVarPath = `/waveSummaries/search`;
8518
+ const { basePath, withCredentials } = this.configuration;
8519
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
8520
+ context: localVarHttpContext,
8521
+ params: localVarQueryParameters.toHttpParams(),
8522
+ responseType: responseType_,
8523
+ ...(withCredentials ? { withCredentials } : {}),
8524
+ headers: localVarHeaders,
8525
+ observe: observe,
8526
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
8527
+ reportProgress: reportProgress
8528
+ });
8529
+ }
8530
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveSummariesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
8531
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveSummariesService, providedIn: 'root' });
8532
+ }
8533
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveSummariesService, decorators: [{
8534
+ type: Injectable,
8535
+ args: [{
8536
+ providedIn: 'root'
8537
+ }]
8538
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
8539
+ type: Optional
8540
+ }, {
8541
+ type: Inject,
8542
+ args: [BASE_PATH]
8543
+ }] }, { type: Configuration, decorators: [{
8544
+ type: Optional
8545
+ }] }] });
8546
+
8391
8547
  /**
8392
8548
  * Wms.API.Client
8393
8549
  *
@@ -8465,7 +8621,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
8465
8621
  type: Optional
8466
8622
  }] }] });
8467
8623
 
8468
- 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];
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];
8469
8625
 
8470
8626
  /**
8471
8627
  * Wms.API.Client
@@ -8614,6 +8770,16 @@ const ClusterPackStatuses = {
8614
8770
  * Do not edit the class manually.
8615
8771
  */
8616
8772
 
8773
+ /**
8774
+ * Wms.API.Client
8775
+ *
8776
+ *
8777
+ *
8778
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
8779
+ * https://openapi-generator.tech
8780
+ * Do not edit the class manually.
8781
+ */
8782
+
8617
8783
  /**
8618
8784
  * Wms.API.Client
8619
8785
  *
@@ -9110,16 +9276,6 @@ const RecordType = {
9110
9276
  * Do not edit the class manually.
9111
9277
  */
9112
9278
 
9113
- /**
9114
- * Wms.API.Client
9115
- *
9116
- *
9117
- *
9118
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9119
- * https://openapi-generator.tech
9120
- * Do not edit the class manually.
9121
- */
9122
-
9123
9279
  /**
9124
9280
  * Wms.API.Client
9125
9281
  *
@@ -9376,16 +9532,6 @@ const UserCompanyType = {
9376
9532
  * Do not edit the class manually.
9377
9533
  */
9378
9534
 
9379
- /**
9380
- * Wms.API.Client
9381
- *
9382
- *
9383
- *
9384
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9385
- * https://openapi-generator.tech
9386
- * Do not edit the class manually.
9387
- */
9388
-
9389
9535
  /**
9390
9536
  * Wms.API.Client
9391
9537
  *
@@ -9472,16 +9618,6 @@ const WavePickReleaseStatuses = {
9472
9618
  * Do not edit the class manually.
9473
9619
  */
9474
9620
 
9475
- /**
9476
- * Wms.API.Client
9477
- *
9478
- *
9479
- *
9480
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9481
- * https://openapi-generator.tech
9482
- * Do not edit the class manually.
9483
- */
9484
-
9485
9621
  /**
9486
9622
  * Wms.API.Client
9487
9623
  *
@@ -9549,5 +9685,5 @@ function provideApi(configOrBasePath) {
9549
9685
  * Generated bundle index. Do not edit.
9550
9686
  */
9551
9687
 
9552
- 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 };
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 };
9553
9689
  //# sourceMappingURL=indigina-wms-api.mjs.map