/** * OAuth Configuration Constants */ // Claude OAuth Configuration (Authorization Code Flow with PKCE) export const CLAUDE_CONFIG = { clientId: "9d1c250a-e61b-44d9-88ed-5944d1962f5e", authorizeUrl: "https://claude.ai/oauth/authorize", tokenUrl: "https://console.anthropic.com/v1/oauth/token", scopes: ["org:create_api_key", "user:profile", "user:inference"], codeChallengeMethod: "S256", }; // Codex (OpenAI) OAuth Configuration (Authorization Code Flow with PKCE) export const CODEX_CONFIG = { clientId: "app_EMoamEEZ73f0CkXaXp7hrann", authorizeUrl: "https://auth.openai.com/oauth/authorize", tokenUrl: "https://auth.openai.com/oauth/token", scope: "openid profile email offline_access", codeChallengeMethod: "S256", // Additional OpenAI-specific params extraParams: { id_token_add_organizations: "true", codex_cli_simplified_flow: "true", originator: "codex_cli_rs", }, }; // Gemini (Google) OAuth Configuration (Standard OAuth2) export const GEMINI_CONFIG = { clientId: "681255809395-oo8ft2oprdrnp9e3aqf6av3hmdib135j.apps.googleusercontent.com", clientSecret: "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", authorizeUrl: "https://accounts.google.com/o/oauth2/v2/auth", tokenUrl: "https://oauth2.googleapis.com/token", userInfoUrl: "https://www.googleapis.com/oauth2/v1/userinfo", scopes: [ "https://www.googleapis.com/auth/cloud-platform", "https://www.googleapis.com/auth/userinfo.email", "https://www.googleapis.com/auth/userinfo.profile", ], }; // Qwen OAuth Configuration (Device Code Flow with PKCE) export const QWEN_CONFIG = { clientId: "f0304373b74a44d2b584a3fb70ca9e56", deviceCodeUrl: "https://chat.qwen.ai/api/v1/oauth2/device/code", tokenUrl: "https://chat.qwen.ai/api/v1/oauth2/token", scope: "openid profile email model.completion", codeChallengeMethod: "S256", }; // iFlow OAuth Configuration (Authorization Code) export const IFLOW_CONFIG = { clientId: "10009311001", clientSecret: "4Z3YjXycVsQvyGF1etiNlIBB4RsqSDtW", authorizeUrl: "https://iflow.cn/oauth", tokenUrl: "https://iflow.cn/oauth/token", userInfoUrl: "https://iflow.cn/api/oauth/getUserInfo", extraParams: { loginMethod: "phone", type: "phone", }, }; // Antigravity OAuth Configuration (Standard OAuth2 with Google) export const ANTIGRAVITY_CONFIG = { clientId: "1071006060591-tmhssin2h21lcre235vtolojh4g403ep.apps.googleusercontent.com", clientSecret: "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", authorizeUrl: "https://accounts.google.com/o/oauth2/v2/auth", tokenUrl: "https://oauth2.googleapis.com/token", userInfoUrl: "https://www.googleapis.com/oauth2/v1/userinfo", scopes: [ "https://www.googleapis.com/auth/cloud-platform", "https://www.googleapis.com/auth/userinfo.email", "https://www.googleapis.com/auth/userinfo.profile", "https://www.googleapis.com/auth/cclog", "https://www.googleapis.com/auth/experimentsandconfigs", ], // Antigravity specific apiEndpoint: "https://cloudcode-pa.googleapis.com", apiVersion: "v1internal", loadCodeAssistEndpoint: "https://cloudcode-pa.googleapis.com/v1internal:loadCodeAssist", onboardUserEndpoint: "https://cloudcode-pa.googleapis.com/v1internal:onboardUser", loadCodeAssistUserAgent: "google-api-nodejs-client/9.15.1", loadCodeAssistApiClient: "google-cloud-sdk vscode_cloudshelleditor/0.1", loadCodeAssistClientMetadata: `{"ideType":"IDE_UNSPECIFIED","platform":"PLATFORM_UNSPECIFIED","pluginType":"GEMINI"}`, }; // OpenAI OAuth Configuration (Authorization Code Flow with PKCE) export const OPENAI_CONFIG = { clientId: "app_EMoamEEZ73f0CkXaXp7hrann", authorizeUrl: "https://auth.openai.com/oauth/authorize", tokenUrl: "https://auth.openai.com/oauth/token", scope: "openid profile email offline_access", codeChallengeMethod: "S256", extraParams: { id_token_add_organizations: "true", originator: "openai_native", }, }; // GitHub Copilot OAuth Configuration (Device Code Flow) export const GITHUB_CONFIG = { clientId: "Iv1.b507a08c87ecfe98", deviceCodeUrl: "https://github.com/login/device/code", tokenUrl: "https://github.com/login/oauth/access_token", userInfoUrl: "https://api.github.com/user", scopes: "read:user", apiVersion: "2022-11-28", // Updated to supported version copilotTokenUrl: "https://api.github.com/copilot_internal/v2/token", userAgent: "GitHubCopilotChat/0.26.7", editorVersion: "vscode/1.85.0", editorPluginVersion: "copilot-chat/0.26.7", }; // Kiro OAuth Configuration (AWS SSO OIDC Device Code Flow) export const KIRO_CONFIG = { // AWS SSO OIDC endpoints for Builder ID ssoOidcEndpoint: "https://oidc.us-east-1.amazonaws.com", registerClientUrl: "https://oidc.us-east-1.amazonaws.com/client/register", deviceAuthUrl: "https://oidc.us-east-1.amazonaws.com/device_authorization", tokenUrl: "https://oidc.us-east-1.amazonaws.com/token", refreshTokenUrl: "https://prod.us-east-1.auth.desktop.kiro.dev/refreshToken", // AWS Builder ID start URL startUrl: "https://view.awsapps.com/start", // Client registration params clientName: "kiro-cli", clientType: "public", scopes: ["codewhisperer:completions", "codewhisperer:analysis", "codewhisperer:conversations"], grantTypes: ["urn:ietf:params:oauth:grant-type:device_code", "refresh_token"], issuerUrl: "https://identitycenter.amazonaws.com/ssoins-722374e8c3c8e6c6", }; // OAuth timeout (5 minutes) export const OAUTH_TIMEOUT = 300000; // Provider list export const PROVIDERS = { CLAUDE: "claude", CODEX: "codex", GEMINI: "gemini-cli", QWEN: "qwen", IFLOW: "iflow", ANTIGRAVITY: "antigravity", OPENAI: "openai", GITHUB: "github", KIRO: "kiro", };