(
conversationId: string,
explicitAddress?: string,
)
| 260 | } |
| 261 | |
| 262 | getConversation( |
| 263 | conversationId: string, |
| 264 | explicitAddress?: string, |
| 265 | ): Promise<ConversationDetailView> { |
| 266 | return this.sdk.conversations.get( |
| 267 | this.resolveAddress(explicitAddress), |
| 268 | conversationId, |
| 269 | ); |
| 270 | } |
| 271 | |
| 272 | // ── Review queue (pending outbound) ───────────────────────────── |
| 273 |
no test coverage detected