(value: Record<string, unknown>, field: string)
| 16 | type McpRoomMessage = Record<string, unknown>; |
| 17 | type McpTeamMemberSummary = { id: string; name?: string }; |
| 18 | |
| 19 | function getStringField(value: Record<string, unknown>, field: string): string | undefined { |
| 20 | const raw = value[field]; |
| 21 | return typeof raw === 'string' ? raw : undefined; |
| 22 | } |
| 23 | |
| 24 | function formatMcpRoomMessageSender( |
no outgoing calls
no test coverage detected