()
| 16 | } |
| 17 | |
| 18 | export function fileSuffixForOauthConfig(): string { |
| 19 | if (process.env.CLAUDE_CODE_CUSTOM_OAUTH_URL) { |
| 20 | return '-custom-oauth' |
| 21 | } |
| 22 | switch (getOauthConfigType()) { |
| 23 | case 'local': |
| 24 | return '-local-oauth' |
| 25 | case 'staging': |
| 26 | return '-staging-oauth' |
| 27 | case 'prod': |
| 28 | // No suffix for production config |
| 29 | return '' |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | export const CLAUDE_AI_INFERENCE_SCOPE = 'user:inference' as const |
| 34 | export const CLAUDE_AI_PROFILE_SCOPE = 'user:profile' as const |
no test coverage detected