(
oauthRef?: KimiOAuthTokenRef | undefined,
oauthHost?: string | undefined,
)
| 419 | } |
| 420 | |
| 421 | private oauthHostFor( |
| 422 | oauthRef?: KimiOAuthTokenRef | undefined, |
| 423 | oauthHost?: string | undefined, |
| 424 | ): string { |
| 425 | return oauthRef?.oauthHost ?? oauthHost ?? this.flowConfig.oauthHost; |
| 426 | } |
| 427 | |
| 428 | private identityHeaders(): Record<string, string> | undefined { |
| 429 | if (this.identity === undefined) return undefined; |
no outgoing calls
no test coverage detected