@indigina/wms-api 0.0.141 → 0.0.142

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.141
1
+ # @indigina/wms-api@0.0.142
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.141 --save
27
+ npm install @indigina/wms-api@0.0.142 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -3348,6 +3348,47 @@ class LicencePlateSerialsService extends BaseService {
3348
3348
  reportProgress: reportProgress
3349
3349
  });
3350
3350
  }
3351
+ getLicencePlateSerialsFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
3352
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
3353
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
3354
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
3355
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
3356
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
3357
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
3358
+ let localVarHeaders = this.defaultHeaders;
3359
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
3360
+ 'application/json'
3361
+ ]);
3362
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
3363
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
3364
+ }
3365
+ const localVarHttpContext = options?.context ?? new HttpContext();
3366
+ const localVarTransferCache = options?.transferCache ?? true;
3367
+ let responseType_ = 'json';
3368
+ if (localVarHttpHeaderAcceptSelected) {
3369
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
3370
+ responseType_ = 'text';
3371
+ }
3372
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
3373
+ responseType_ = 'json';
3374
+ }
3375
+ else {
3376
+ responseType_ = 'blob';
3377
+ }
3378
+ }
3379
+ let localVarPath = `/licencePlateSerials/search`;
3380
+ const { basePath, withCredentials } = this.configuration;
3381
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
3382
+ context: localVarHttpContext,
3383
+ params: localVarQueryParameters.toHttpParams(),
3384
+ responseType: responseType_,
3385
+ ...(withCredentials ? { withCredentials } : {}),
3386
+ headers: localVarHeaders,
3387
+ observe: observe,
3388
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
3389
+ reportProgress: reportProgress
3390
+ });
3391
+ }
3351
3392
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: LicencePlateSerialsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3352
3393
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: LicencePlateSerialsService, providedIn: 'root' });
3353
3394
  }