(params: ThreadResumeParams, options?: { signal?: AbortSignal })
| 185 | } |
| 186 | |
| 187 | async resumeThread(params: ThreadResumeParams, options?: { signal?: AbortSignal }): Promise<ThreadResumeResponse> { |
| 188 | const response = await this.sendRequest('thread/resume', params, { |
| 189 | signal: options?.signal, |
| 190 | timeoutMs: CodexAppServerClient.DEFAULT_TIMEOUT_MS |
| 191 | }); |
| 192 | return response as ThreadResumeResponse; |
| 193 | } |
| 194 | |
| 195 | async startTurn(params: TurnStartParams, options?: { signal?: AbortSignal }): Promise<TurnStartResponse> { |
| 196 | const response = await this.sendRequest('turn/start', params, { |
no test coverage detected