@company-semantics/contracts 0.60.1 → 0.60.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@company-semantics/contracts",
3
- "version": "0.60.1",
3
+ "version": "0.60.2",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
package/src/chat/types.ts CHANGED
@@ -191,6 +191,8 @@ export interface ChatCreatedEvent {
191
191
  chatId: string
192
192
  /** Client-provided ID for correlation (optional) */
193
193
  interactionId?: string
194
+ /** Auto-generated title from first message */
195
+ title?: string
194
196
  timestamp: string
195
197
  }
196
198