@routstr/sdk 0.3.11 → 0.3.12

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/bun.mjs CHANGED
@@ -6419,6 +6419,8 @@ async function createBunSqliteDriver(dbPath, options) {
6419
6419
  const logger = (options?.logger ?? consoleLogger).child("BunSqliteDriver");
6420
6420
  const SQLite = (await import('bun:sqlite')).default;
6421
6421
  const db = new SQLite(dbPath);
6422
+ db.run("PRAGMA journal_mode = WAL");
6423
+ db.run("PRAGMA busy_timeout = 5000");
6422
6424
  db.run(`
6423
6425
  CREATE TABLE IF NOT EXISTS sdk_storage (
6424
6426
  key TEXT PRIMARY KEY,
@@ -6531,6 +6533,8 @@ var createBunSqliteUsageTrackingDriver = (options = {}) => {
6531
6533
  );
6532
6534
  }
6533
6535
  const db = new SQLiteDatabase(dbPath);
6536
+ db.run("PRAGMA journal_mode = WAL");
6537
+ db.run("PRAGMA busy_timeout = 5000");
6534
6538
  db.run(`
6535
6539
  CREATE TABLE IF NOT EXISTS ${tableName} (
6536
6540
  id TEXT PRIMARY KEY,