@haex-space/vault-sdk 2.5.9 → 2.5.10
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 +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/dist/react.js +3 -0
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +3 -0
- package/dist/react.mjs.map +1 -1
- package/dist/runtime/nuxt.plugin.client.js +3 -0
- package/dist/runtime/nuxt.plugin.client.js.map +1 -1
- package/dist/runtime/nuxt.plugin.client.mjs +3 -0
- package/dist/runtime/nuxt.plugin.client.mjs.map +1 -1
- package/dist/svelte.js +3 -0
- package/dist/svelte.js.map +1 -1
- package/dist/svelte.mjs +3 -0
- package/dist/svelte.mjs.map +1 -1
- package/dist/vue.js +3 -0
- package/dist/vue.js.map +1 -1
- package/dist/vue.mjs +3 -0
- package/dist/vue.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1262,6 +1262,9 @@ async function sendInvoke(method, params, config, log) {
|
|
|
1262
1262
|
const handler = allHandlers[method];
|
|
1263
1263
|
if (handler) {
|
|
1264
1264
|
const args = handler.args(params);
|
|
1265
|
+
console.log("[SDK Debug] Handler found for method:", method);
|
|
1266
|
+
console.log("[SDK Debug] Handler command:", handler.command);
|
|
1267
|
+
console.log("[SDK Debug] Transformed args:", JSON.stringify(args, null, 2));
|
|
1265
1268
|
return invoke(handler.command, args);
|
|
1266
1269
|
}
|
|
1267
1270
|
throw new HaexVaultSdkError(
|