applesauce-sqlite 0.0.0-next-20251205152544 → 0.0.0-next-20251209200210

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.
Files changed (2) hide show
  1. package/dist/relay.js +1 -1
  2. package/package.json +3 -3
package/dist/relay.js CHANGED
@@ -5,7 +5,7 @@ import { WebSocket, WebSocketServer } from "ws";
5
5
  import { BetterSqlite3EventDatabase } from "./better-sqlite3/event-database.js";
6
6
  // Create the event store with SQLite backend
7
7
  const database = new BetterSqlite3EventDatabase(process.env.DATABASE_PATH || ":memory:");
8
- const eventStore = new EventStore(database);
8
+ const eventStore = new EventStore({ database });
9
9
  // Set validation method for event store
10
10
  eventStore.verifyEvent = verifyEvent;
11
11
  const subscriptions = new Map();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "applesauce-sqlite",
3
- "version": "0.0.0-next-20251205152544",
3
+ "version": "0.0.0-next-20251209200210",
4
4
  "description": "sqlite event databases for applesauce",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -102,7 +102,7 @@
102
102
  }
103
103
  },
104
104
  "dependencies": {
105
- "applesauce-core": "0.0.0-next-20251205152544"
105
+ "applesauce-core": "0.0.0-next-20251209200210"
106
106
  },
107
107
  "optionalDependencies": {
108
108
  "@libsql/client": "^0.15.15",
@@ -114,7 +114,7 @@
114
114
  "@hirez_io/observer-spy": "^2.2.0",
115
115
  "@types/better-sqlite3": "^7.6.13",
116
116
  "@types/ws": "^8.18.1",
117
- "applesauce-signers": "0.0.0-next-20251205152544",
117
+ "applesauce-signers": "0.0.0-next-20251209200210",
118
118
  "rimraf": "^6.1.2",
119
119
  "typescript": "^5.9.3",
120
120
  "vitest": "^4.0.15",