@haex-space/vault-sdk 2.5.80 → 2.5.84

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/react.mjs CHANGED
@@ -1111,7 +1111,7 @@ var BackendManagement = class {
1111
1111
  async add(request) {
1112
1112
  return this.client.request(
1113
1113
  REMOTE_STORAGE_COMMANDS.addBackend,
1114
- request
1114
+ { request }
1115
1115
  );
1116
1116
  }
1117
1117
  /**
@@ -1123,7 +1123,7 @@ var BackendManagement = class {
1123
1123
  async update(request) {
1124
1124
  return this.client.request(
1125
1125
  REMOTE_STORAGE_COMMANDS.updateBackend,
1126
- request
1126
+ { request }
1127
1127
  );
1128
1128
  }
1129
1129
  /**