@haex-space/vault-sdk 2.9.3 → 3.0.0

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/svelte.mjs CHANGED
@@ -680,7 +680,7 @@ var DatabaseAPI = class {
680
680
  }
681
681
  async transaction(statements) {
682
682
  await this.client.request(DATABASE_COMMANDS.transaction, {
683
- statements
683
+ statements: statements.map((s) => [s.sql, s.params || []])
684
684
  });
685
685
  }
686
686
  async createTable(tableName, columns) {