agentgui 1.0.83 → 1.0.84

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.83",
3
+ "version": "1.0.84",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
@@ -68,8 +68,8 @@ class ConversationManager {
68
68
  if (conv.id === this.activeId) li.classList.add('active');
69
69
 
70
70
  const title = conv.title || `Conversation ${conv.id.slice(0, 8)}`;
71
- const timestamp = conv.createdAt ? new Date(conv.createdAt).toLocaleDateString() : 'Unknown';
72
- const agent = conv.agentId || 'unknown';
71
+ const timestamp = conv.created_at ? new Date(conv.created_at).toLocaleDateString() : 'Unknown';
72
+ const agent = conv.agentType || 'unknown';
73
73
 
74
74
  li.innerHTML = `
75
75
  <div class="conversation-item-title">${this.escapeHtml(title)}</div>