(sid: string)
| 238 | return this.http.undoSession(sid, body); |
| 239 | } |
| 240 | archiveSession(sid: string): Promise<{ archived: true }> { |
| 241 | return this.http.archiveSession(sid); |
| 242 | } |
| 243 | listChildren( |
| 244 | sid: string, |
| 245 | query?: { page_size?: number; before_id?: string; after_id?: string; status?: Session['status'] }, |