(input: ReloadSessionRpcInput)
| 162 | } |
| 163 | |
| 164 | async reloadSession(input: ReloadSessionRpcInput): Promise<ResumedSessionSummary> { |
| 165 | const rpc = await this.getRpc(); |
| 166 | return rpc.reloadSession({ |
| 167 | sessionId: input.sessionId, |
| 168 | forcePluginSessionStartReminder: input.forcePluginSessionStartReminder, |
| 169 | }); |
| 170 | } |
| 171 | |
| 172 | async forkSession(input: ForkSessionInput): Promise<SessionSummary> { |
| 173 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected