(sid: string)
| 198 | return this.request<Session>('POST', '/sessions', body); |
| 199 | } |
| 200 | getSession(sid: string): Promise<Session> { |
| 201 | return this.request<Session>('GET', `/sessions/${encodeURIComponent(sid)}`, undefined); |
| 202 | } |
| 203 | listSessions(query?: { |
| 204 | page_size?: number; |
| 205 | before_id?: string; |