agentgui 1.0.367 → 1.0.369
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/database.js +2 -2
- package/package.json +2 -2
package/database.js
CHANGED
|
@@ -951,8 +951,8 @@ export const queries = {
|
|
|
951
951
|
|
|
952
952
|
const importStmt = db.transaction(() => {
|
|
953
953
|
prep(
|
|
954
|
-
`INSERT INTO conversations (id, agentId, title, created_at, updated_at, status) VALUES (?, ?, ?, ?, ?, ?)`
|
|
955
|
-
).run(conv.id, 'claude-code', displayTitle, conv.created, conv.modified, 'active');
|
|
954
|
+
`INSERT INTO conversations (id, agentId, title, created_at, updated_at, status, claudeSessionId) VALUES (?, ?, ?, ?, ?, ?, ?)`
|
|
955
|
+
).run(conv.id, 'claude-code', displayTitle, conv.created, conv.modified, 'active', conv.id);
|
|
956
956
|
|
|
957
957
|
for (const msg of messages) {
|
|
958
958
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentgui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.369",
|
|
4
4
|
"description": "Multi-agent ACP client with real-time communication",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "server.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"fsbrowse": "^0.2.18",
|
|
31
31
|
"google-auth-library": "^10.5.0",
|
|
32
32
|
"onnxruntime-node": "1.21.0",
|
|
33
|
-
"webtalk": "^1.0.
|
|
33
|
+
"webtalk": "^1.0.27",
|
|
34
34
|
"ws": "^8.14.2"
|
|
35
35
|
},
|
|
36
36
|
"overrides": {
|