| 97 | |
| 98 | /** Used by Twitter v2 API, embed pipeline, Bluesky/TikTok conversations (broader than OpenAPI `SocialThreadSchema`). */ |
| 99 | export interface SocialThread { |
| 100 | status: ThreadOrStatusItem | null; |
| 101 | thread: ThreadOrStatusItem[] | null; |
| 102 | author: APIUser | null; |
| 103 | code: number; |
| 104 | } |
| 105 | |
| 106 | /** Thread + replies with cursor-based pagination for the conversation endpoint. */ |
| 107 | export interface SocialConversation extends SocialThread { |
nothing calls this directly
no outgoing calls
no test coverage detected