@hasna/conversations 0.2.22 → 0.2.24
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/bin/hook.js +1 -1
- package/bin/index.js +3209 -3107
- package/bin/mcp.js +2668 -2644
- package/dist/cli/commands/agents.d.ts +2 -0
- package/dist/cli/commands/analytics.d.ts +2 -0
- package/dist/cli/commands/messaging.d.ts +2 -0
- package/dist/cli/commands/projects.d.ts +2 -0
- package/dist/cli/commands/spaces.d.ts +2 -0
- package/dist/index.js +5 -6
- package/dist/mcp/tools/advanced.d.ts +6 -0
- package/dist/mcp/tools/agents.d.ts +8 -0
- package/dist/mcp/tools/messaging.d.ts +8 -0
- package/dist/mcp/tools/projects.d.ts +5 -0
- package/dist/mcp/tools/spaces.d.ts +7 -0
- package/package.json +1 -1
package/bin/hook.js
CHANGED
|
@@ -9461,7 +9461,7 @@ function getDb() {
|
|
|
9461
9461
|
return db;
|
|
9462
9462
|
const dbPath = getDbPath2();
|
|
9463
9463
|
mkdirSync3(dirname2(dbPath), { recursive: true });
|
|
9464
|
-
db = new SqliteAdapter(dbPath
|
|
9464
|
+
db = new SqliteAdapter(dbPath);
|
|
9465
9465
|
db.exec("PRAGMA journal_mode = WAL");
|
|
9466
9466
|
db.exec("PRAGMA busy_timeout = 5000");
|
|
9467
9467
|
db.exec(`
|