(input: ForkSessionInput)
| 170 | } |
| 171 | |
| 172 | async forkSession(input: ForkSessionInput): Promise<SessionSummary> { |
| 173 | const rpc = await this.getRpc(); |
| 174 | return rpc.forkSession({ |
| 175 | sessionId: input.id, |
| 176 | id: input.forkId, |
| 177 | title: input.title, |
| 178 | metadata: input.metadata, |
| 179 | }); |
| 180 | } |
| 181 | |
| 182 | async closeSession(input: SessionIdRpcInput): Promise<void> { |
| 183 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected