(input: CreateSessionOptions)
| 130 | protected abstract getRpc(): Promise<ResolvedCoreAPI>; |
| 131 | |
| 132 | async createSession(input: CreateSessionOptions): Promise<SessionSummary> { |
| 133 | const rpc = await this.getRpc(); |
| 134 | const { planMode, ...coreInput } = input; |
| 135 | void planMode; |
| 136 | return rpc.createSession(coreInput); |
| 137 | } |
| 138 | |
| 139 | async createSessionWithKaos( |
| 140 | input: CreateSessionOptions, |
nothing calls this directly
no test coverage detected