@gomusdev/web-components 1.37.0 → 1.37.1

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.
@@ -12654,7 +12654,10 @@ var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot
12654
12654
  return { error: { errors: validationErrors } };
12655
12655
  }
12656
12656
  const httpMethod = this.client[options.method];
12657
- const ret = await httpMethod(path, { body, params: assign(this.#defaultApiParams, params) });
12657
+ const ret = await httpMethod(path, {
12658
+ body,
12659
+ params: assign(this.#defaultApiParams, { params }).params
12660
+ });
12658
12661
  return ret;
12659
12662
  }
12660
12663
  /**
@@ -12654,7 +12654,10 @@ class Shop {
12654
12654
  return { error: { errors: validationErrors } };
12655
12655
  }
12656
12656
  const httpMethod = this.client[options.method];
12657
- const ret = await httpMethod(path, { body, params: assign(this.#defaultApiParams, params) });
12657
+ const ret = await httpMethod(path, {
12658
+ body,
12659
+ params: assign(this.#defaultApiParams, { params }).params
12660
+ });
12658
12661
  return ret;
12659
12662
  }
12660
12663
  /**
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "Giantmonkey GmbH"
5
5
  },
6
6
  "license": "MIT",
7
- "version": "1.37.0",
7
+ "version": "1.37.1",
8
8
  "type": "module",
9
9
  "main": "./dist-js/gomus-webcomponents.iife.js",
10
10
  "module": "./dist-js/gomus-webcomponents.iife.js",