(
params: { since?: string; until?: string; cursor?: string; limit?: number },
explicitAddress?: string,
)
| 252 | // ── Conversations ─────────────────────────────────────────────── |
| 253 | |
| 254 | listConversations( |
| 255 | params: { since?: string; until?: string; cursor?: string; limit?: number }, |
| 256 | explicitAddress?: string, |
| 257 | ): Promise<Page<ConversationSummaryView>> { |
| 258 | const { cursor, ...rest } = params; |
| 259 | return this.sdk.conversations.list(this.resolveAddress(explicitAddress), rest).page(cursor); |
| 260 | } |
| 261 | |
| 262 | getConversation( |
| 263 | conversationId: string, |
no test coverage detected