(sessionId: string)
| 415 | } |
| 416 | |
| 417 | async archiveSession(sessionId: string): Promise<void> { |
| 418 | await this.request(`/api/sessions/${encodeURIComponent(sessionId)}/archive`, { |
| 419 | method: 'POST', |
| 420 | body: JSON.stringify({}) |
| 421 | }) |
| 422 | } |
| 423 | |
| 424 | async reopenSession(sessionId: string): Promise<ReopenSessionResponse> { |
| 425 | return await this.request<ReopenSessionResponse>( |
no test coverage detected