@api-client/core 0.5.18 → 0.5.19

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.
@@ -200,7 +200,7 @@ export interface IUrlExpandOptions {
200
200
 
201
201
  export type UrlPart = IUrlPart | IUrlParamPart | IUrlExpressionPart;
202
202
 
203
- class SearchParams {
203
+ export class UrlSearchParams {
204
204
  /**
205
205
  * A reference to the URL processor's parts.
206
206
  */
@@ -369,12 +369,12 @@ export class UrlProcessor {
369
369
  /**
370
370
  * A helper class to manipulate query parameters on the parser.
371
371
  */
372
- search: SearchParams;
372
+ search: UrlSearchParams;
373
373
 
374
374
  constructor(expression: string) {
375
375
  this.expression = expression;
376
376
  this.tokens = new Tokenizer(expression);
377
- this.search = new SearchParams(this.parts);
377
+ this.search = new UrlSearchParams(this.parts);
378
378
  this._parse();
379
379
  }
380
380