@haex-space/vault-sdk 2.5.4 → 2.5.6

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.mjs CHANGED
@@ -1303,9 +1303,12 @@ var TAURI_COMMANDS = {
1303
1303
  // Client authorization (unified API with remember flag)
1304
1304
  clientAllow: "external_client_allow",
1305
1305
  clientBlock: "external_client_block",
1306
- // Authorized clients management
1306
+ // Authorized clients management (permanent - stored in database)
1307
1307
  getAuthorizedClients: "external_get_authorized_clients",
1308
1308
  revokeClient: "external_revoke_client",
1309
+ // Session-based authorizations (temporary - cleared when haex-vault restarts)
1310
+ getSessionAuthorizations: "external_get_session_authorizations",
1311
+ revokeSessionAuthorization: "external_revoke_session_authorization",
1309
1312
  // Blocked clients management
1310
1313
  getBlockedClients: "external_get_blocked_clients",
1311
1314
  unblockClient: "external_unblock_client",