(options: {
readonly oauthHost?: string | undefined;
readonly baseUrl?: string | undefined;
})
| 336 | * scoping is meant to fix. |
| 337 | */ |
| 338 | export function resolveKimiCodeOAuthRef(options: { |
| 339 | readonly oauthHost?: string | undefined; |
| 340 | readonly baseUrl?: string | undefined; |
| 341 | }): ManagedKimiOAuthRef { |
| 342 | return managedOAuthRef({ |
| 343 | key: resolveKimiCodeOAuthKey(options), |
| 344 | oauthHost: options.oauthHost, |
| 345 | }); |
| 346 | } |
| 347 | |
| 348 | export function resolveKimiCodeRuntimeAuth(options: { |
| 349 | readonly configuredBaseUrl?: string | undefined; |
no test coverage detected