(runId: string)
| 165 | } |
| 166 | |
| 167 | retrieveRun(runId: string) { |
| 168 | return zodfetch( |
| 169 | RetrieveRunResponse, |
| 170 | `${this.baseUrl}/api/v3/runs/${runId}`, |
| 171 | { |
| 172 | method: "GET", |
| 173 | headers: this.#getHeaders(false), |
| 174 | }, |
| 175 | zodFetchOptions |
| 176 | ); |
| 177 | } |
| 178 | |
| 179 | listRuns(query?: ListRunsQueryParams): CursorPagePromise<typeof ListRunResponseItem> { |
| 180 | const searchParams = createSearchQueryForListRuns(query); |
no test coverage detected