(sid: string, body: ForkSessionRequest = {})
| 220 | ); |
| 221 | } |
| 222 | forkSession(sid: string, body: ForkSessionRequest = {}): Promise<Session> { |
| 223 | return this.request('POST', `/sessions/${encodeURIComponent(sid)}:fork`, body); |
| 224 | } |
| 225 | compactSession( |
| 226 | sid: string, |
| 227 | body: CompactSessionRequest = {}, |