(
baseUrl?: string | undefined,
oauthHost?: string | undefined,
)
| 402 | } |
| 403 | |
| 404 | private defaultOAuthKey( |
| 405 | baseUrl?: string | undefined, |
| 406 | oauthHost?: string | undefined, |
| 407 | ): string { |
| 408 | return resolveKimiCodeOAuthKey({ |
| 409 | oauthHost: oauthHost ?? this.flowConfig.oauthHost, |
| 410 | baseUrl, |
| 411 | }); |
| 412 | } |
| 413 | |
| 414 | private defaultOAuthRef(baseUrl?: string | undefined): KimiOAuthTokenRef { |
| 415 | return { |
no test coverage detected