@haex-space/vault-sdk 2.5.67 → 2.5.68

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
@@ -1276,7 +1276,7 @@ var PermissionsAPI = class {
1276
1276
  */
1277
1277
  async checkDatabaseAsync(resource, operation) {
1278
1278
  const response = await this.client.request(
1279
- "permissions.database.check",
1279
+ PERMISSIONS_COMMANDS.checkDatabase,
1280
1280
  {
1281
1281
  resource,
1282
1282
  operation
@@ -1292,7 +1292,7 @@ var PermissionsAPI = class {
1292
1292
  */
1293
1293
  async checkWebAsync(url) {
1294
1294
  const response = await this.client.request(
1295
- "permissions.web.check",
1295
+ PERMISSIONS_COMMANDS.checkWeb,
1296
1296
  {
1297
1297
  url
1298
1298
  }
@@ -1307,7 +1307,7 @@ var PermissionsAPI = class {
1307
1307
  */
1308
1308
  async checkFilesystemAsync(path, operation) {
1309
1309
  const response = await this.client.request(
1310
- "permissions.filesystem.check",
1310
+ PERMISSIONS_COMMANDS.checkFilesystem,
1311
1311
  {
1312
1312
  path,
1313
1313
  operation