@buildautomaton/cli 0.1.44 → 0.1.46

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.
@@ -0,0 +1,14 @@
1
+ CREATE TABLE IF NOT EXISTS bridge_runtime (
2
+ key TEXT PRIMARY KEY NOT NULL,
3
+ value TEXT NOT NULL,
4
+ updated_at TEXT NOT NULL
5
+ );
6
+
7
+ CREATE TABLE IF NOT EXISTS mcp_session_bind (
8
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
9
+ session_id TEXT NOT NULL,
10
+ created_at TEXT NOT NULL,
11
+ consumed_at TEXT
12
+ );
13
+
14
+ CREATE INDEX IF NOT EXISTS idx_mcp_session_bind_pending ON mcp_session_bind (consumed_at, id);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buildautomaton/cli",
3
- "version": "0.1.44",
3
+ "version": "0.1.46",
4
4
  "description": "CLI for BuildAutomaton: ACP client, WebSocket bridge to backend, and skills (e.g. preview)",
5
5
  "type": "module",
6
6
  "bin": {