(conversationId: string)
| 182 | return this.httpRequest(`/v1/conversations/${conversationId}`, { |
| 183 | method: 'PATCH', |
| 184 | body, |
| 185 | schema: okResponseSchema, |
| 186 | }); |
| 187 | } |
| 188 | |
| 189 | async leaveConversation(conversationId: string): Promise<void> { |
| 190 | await this.httpRequest(`/v1/conversations/${conversationId}/leave`, { |
| 191 | method: 'POST', |
| 192 | schema: voidSchema, |
no test coverage detected