(runId: string)
| 227 | } |
| 228 | |
| 229 | replayRun(runId: string) { |
| 230 | return zodfetch( |
| 231 | ReplayRunResponse, |
| 232 | `${this.baseUrl}/api/v1/runs/${runId}/replay`, |
| 233 | { |
| 234 | method: "POST", |
| 235 | headers: this.#getHeaders(false), |
| 236 | }, |
| 237 | zodFetchOptions |
| 238 | ); |
| 239 | } |
| 240 | |
| 241 | cancelRun(runId: string) { |
| 242 | return zodfetch( |
no test coverage detected