(input: ExportSessionInput)
| 198 | } |
| 199 | |
| 200 | async exportSession(input: ExportSessionInput): Promise<ExportSessionResult> { |
| 201 | const rpc = await this.getRpc(); |
| 202 | return rpc.exportSession({ |
| 203 | sessionId: input.id, |
| 204 | outputPath: input.outputPath, |
| 205 | includeGlobalLog: input.includeGlobalLog, |
| 206 | version: input.version, |
| 207 | installSource: input.installSource, |
| 208 | shellEnv: input.shellEnv, |
| 209 | }); |
| 210 | } |
| 211 | |
| 212 | async getConfig(input?: GetConfigOptions): Promise<KimiConfig> { |
| 213 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected