@indigina/wms-api 0.0.178 → 0.0.179

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.178
1
+ # @indigina/wms-api@0.0.179
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.178 --save
27
+ npm install @indigina/wms-api@0.0.179 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -2570,6 +2570,51 @@ class CountRecordsService extends BaseService {
2570
2570
  reportProgress: reportProgress
2571
2571
  });
2572
2572
  }
2573
+ getCountRecordsFromIndex(statusGroup, $skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
2574
+ if (statusGroup === null || statusGroup === undefined) {
2575
+ throw new Error('Required parameter statusGroup was null or undefined when calling getCountRecordsFromIndex.');
2576
+ }
2577
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
2578
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
2579
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
2580
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
2581
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
2582
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
2583
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'statusGroup', statusGroup, QueryParamStyle.Form, true);
2584
+ let localVarHeaders = this.defaultHeaders;
2585
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2586
+ 'application/json'
2587
+ ]);
2588
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2589
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2590
+ }
2591
+ const localVarHttpContext = options?.context ?? new HttpContext();
2592
+ const localVarTransferCache = options?.transferCache ?? true;
2593
+ let responseType_ = 'json';
2594
+ if (localVarHttpHeaderAcceptSelected) {
2595
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2596
+ responseType_ = 'text';
2597
+ }
2598
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2599
+ responseType_ = 'json';
2600
+ }
2601
+ else {
2602
+ responseType_ = 'blob';
2603
+ }
2604
+ }
2605
+ let localVarPath = `/CountRecords/search`;
2606
+ const { basePath, withCredentials } = this.configuration;
2607
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
2608
+ context: localVarHttpContext,
2609
+ params: localVarQueryParameters.toHttpParams(),
2610
+ responseType: responseType_,
2611
+ ...(withCredentials ? { withCredentials } : {}),
2612
+ headers: localVarHeaders,
2613
+ observe: observe,
2614
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2615
+ reportProgress: reportProgress
2616
+ });
2617
+ }
2573
2618
  getOperatorCounts(id, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
2574
2619
  if (id === null || id === undefined) {
2575
2620
  throw new Error('Required parameter id was null or undefined when calling getOperatorCounts.');