@threadbase-sh/streamer 1.27.0 → 1.27.2
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/cli.cjs +938 -712
- package/dist/cli.cjs.map +1 -1
- package/dist/index.cjs +5 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/migrations/008_fix_legacy_threadbase_provider.sql +7 -0
- package/package.json +3 -3
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
-- Heal the legacy 'threadbase' provider default left in the streamer cache by an
|
|
2
|
+
-- older scanner-era schema. 'threadbase' is not a real runner (only 'claude-code'
|
|
3
|
+
-- and 'codex-cli' exist), so any conversation carrying it 501s on resume
|
|
4
|
+
-- ("Live threadbase sessions are not implemented yet"). Every such row is a
|
|
5
|
+
-- Claude Code conversation mislabeled by the old default. Mirrors the scanner's
|
|
6
|
+
-- own v2->v3 fix-up, which only ran against the scanner DB and never touched this cache.
|
|
7
|
+
UPDATE conversation_meta SET provider = 'claude-code' WHERE provider = 'threadbase';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@threadbase-sh/streamer",
|
|
3
|
-
"version": "1.27.
|
|
3
|
+
"version": "1.27.2",
|
|
4
4
|
"description": "PTY session management, WebSocket streaming, and REST API server for Claude Code conversations",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Ronen Mars",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"@hono/node-ws": "^1.3.1",
|
|
93
93
|
"@temporalio/client": "^1.18.1",
|
|
94
94
|
"@threadbase-sh/agent-types": "^1.0.0",
|
|
95
|
-
"@threadbase-sh/scanner": "^0.
|
|
95
|
+
"@threadbase-sh/scanner": "^0.10.0",
|
|
96
96
|
"@xterm/headless": "^6.0.0",
|
|
97
97
|
"better-sqlite3": "^12.9.0",
|
|
98
98
|
"chokidar": "^5.0.0",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"tsup": "^8.0.0",
|
|
137
137
|
"tsx": "^4.21.0",
|
|
138
138
|
"typescript": "^6.0.3",
|
|
139
|
-
"vitest": "^
|
|
139
|
+
"vitest": "^4.1.10"
|
|
140
140
|
},
|
|
141
141
|
"overrides": {
|
|
142
142
|
"@hono/node-ws": {
|