@haex-space/vault-sdk 2.5.80 → 2.5.81

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/index.js CHANGED
@@ -1436,7 +1436,7 @@ var BackendManagement = class {
1436
1436
  async add(request) {
1437
1437
  return this.client.request(
1438
1438
  REMOTE_STORAGE_COMMANDS.addBackend,
1439
- request
1439
+ { request }
1440
1440
  );
1441
1441
  }
1442
1442
  /**
@@ -1448,7 +1448,7 @@ var BackendManagement = class {
1448
1448
  async update(request) {
1449
1449
  return this.client.request(
1450
1450
  REMOTE_STORAGE_COMMANDS.updateBackend,
1451
- request
1451
+ { request }
1452
1452
  );
1453
1453
  }
1454
1454
  /**