(http: HttpClient)
| 42 | private readonly orpc: OpenApiClient |
| 43 | |
| 44 | constructor(http: HttpClient) { |
| 45 | this.http = http |
| 46 | // Mixed class (SPEC §4.4): runStream / reconnectStream are SSE and stay on the raw |
| 47 | // `http.stream` facade; stopTask / submitHumanInput are plain JSON and go through the |
| 48 | // generated oRPC contract. Both facades share this one transport. |
| 49 | this.orpc = createOpenApiClient(http) |
| 50 | } |
| 51 | |
| 52 | async runStream( |
| 53 | appId: string, |
nothing calls this directly
no test coverage detected