@getlupa/client 0.8.1 → 0.8.2

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.
@@ -22232,7 +22232,9 @@ let ParamsModule = class ParamsModule extends VuexModule {
22232
22232
  if (!params) {
22233
22233
  return { params: this.params };
22234
22234
  }
22235
- return { params };
22235
+ const url = getPageUrl();
22236
+ const searchString = url.search;
22237
+ return { params, searchString };
22236
22238
  }
22237
22239
  removeAllFilters() {
22238
22240
  const url = getPageUrl();
@@ -20,6 +20,7 @@ export default class ParamsModule extends VuexModule {
20
20
  }): void;
21
21
  add(params: QueryParams): {
22
22
  params: QueryParams;
23
+ searchString?: string;
23
24
  };
24
25
  removeAllFilters(): {
25
26
  params: QueryParams;
@@ -22228,7 +22228,9 @@ let ParamsModule = class ParamsModule extends VuexModule {
22228
22228
  if (!params) {
22229
22229
  return { params: this.params };
22230
22230
  }
22231
- return { params };
22231
+ const url = getPageUrl();
22232
+ const searchString = url.search;
22233
+ return { params, searchString };
22232
22234
  }
22233
22235
  removeAllFilters() {
22234
22236
  const url = getPageUrl();
@@ -20,6 +20,7 @@ export default class ParamsModule extends VuexModule {
20
20
  }): void;
21
21
  add(params: QueryParams): {
22
22
  params: QueryParams;
23
+ searchString?: string;
23
24
  };
24
25
  removeAllFilters(): {
25
26
  params: QueryParams;