| 117 | // ==================== Extracted Content ==================== |
| 118 | |
| 119 | export interface ExtractedContent { |
| 120 | // Raw content type |
| 121 | contentType: 'messages' | 'text' | 'table' | 'code' |
| 122 | // Raw text content |
| 123 | rawContent: string |
| 124 | // Structured data (for messages) |
| 125 | messages?: ChatMessage[] |
| 126 | topics?: Topic[] |
| 127 | // Code metadata |
| 128 | language?: string |
| 129 | // Additional metadata |
| 130 | metadata?: { |
| 131 | title?: string |
| 132 | createdAt?: number |
| 133 | pageId?: string |
| 134 | messageId?: string |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | // ==================== Converted Result ==================== |
| 139 |
nothing calls this directly
no outgoing calls
no test coverage detected