@haex-space/vault-sdk 2.5.7 → 2.5.8

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.
@@ -1091,9 +1091,12 @@ var externalHandlers = {
1091
1091
  command: TAURI_COMMANDS.external.respond,
1092
1092
  args: (p) => ({
1093
1093
  requestId: p.requestId,
1094
- success: p.success,
1095
- data: p.data,
1096
- error: p.error
1094
+ response: {
1095
+ requestId: p.requestId,
1096
+ success: p.success,
1097
+ data: p.data,
1098
+ error: p.error
1099
+ }
1097
1100
  })
1098
1101
  }
1099
1102
  };