agentgui 1.0.367 → 1.0.368

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/database.js +2 -2
  2. package/package.json +1 -1
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.367",
3
+ "version": "1.0.368",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",