@haex-space/vault-sdk 2.5.7 → 2.5.9

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/vue.mjs CHANGED
@@ -1340,10 +1340,13 @@ var externalHandlers = {
1340
1340
  "external.respond": {
1341
1341
  command: TAURI_COMMANDS.external.respond,
1342
1342
  args: (p) => ({
1343
- requestId: p.requestId,
1344
- success: p.success,
1345
- data: p.data,
1346
- error: p.error
1343
+ request_id: p.requestId,
1344
+ response: {
1345
+ request_id: p.requestId,
1346
+ success: p.success,
1347
+ data: p.data,
1348
+ error: p.error
1349
+ }
1347
1350
  })
1348
1351
  }
1349
1352
  };