@company-semantics/contracts 0.61.1 → 0.61.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.61.1",
3
+ "version": "0.61.2",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
package/src/chat/types.ts CHANGED
@@ -25,7 +25,8 @@ export type ChatVisibility = 'private' | 'public'
25
25
  */
26
26
  export interface ChatSummary {
27
27
  id: string
28
- title: string
28
+ /** Title - null means intentionally untitled (title not yet generated) */
29
+ title: string | null
29
30
  messageCount: number
30
31
  createdAt: string
31
32
  updatedAt: string