@cakemail-org/ui-components-v2 2.0.38 → 2.0.39

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/dist/cjs/index.js CHANGED
@@ -8991,7 +8991,10 @@ function getAccountReport(_a) {
8991
8991
  function createAccount(_a) {
8992
8992
  var partnerId = _a.partnerId, account = _a.account;
8993
8993
  return callApi({
8994
- url: uiKitConfig.GATEWAY_PROXY + "/accounts?partner_account_id=" + partnerId,
8994
+ url: uiKitConfig.GATEWAY_PROXY + "/accounts" + partnerId,
8995
+ query: {
8996
+ partner_account_id: partnerId
8997
+ },
8995
8998
  fetchOptions: {
8996
8999
  body: account,
8997
9000
  method: exports.EMethods.post
package/dist/esm/index.js CHANGED
@@ -8971,7 +8971,10 @@ function getAccountReport(_a) {
8971
8971
  function createAccount(_a) {
8972
8972
  var partnerId = _a.partnerId, account = _a.account;
8973
8973
  return callApi({
8974
- url: uiKitConfig.GATEWAY_PROXY + "/accounts?partner_account_id=" + partnerId,
8974
+ url: uiKitConfig.GATEWAY_PROXY + "/accounts" + partnerId,
8975
+ query: {
8976
+ partner_account_id: partnerId
8977
+ },
8975
8978
  fetchOptions: {
8976
8979
  body: account,
8977
8980
  method: EMethods.post
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cakemail-org/ui-components-v2",
3
- "version": "2.0.38",
3
+ "version": "2.0.39",
4
4
  "description": "ui library kit made with material UI",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",