feat(cliproxy): add kiro and ghcp to OAuth diagnostics and account manager

- add OAUTH_CALLBACK_PORTS: kiro=9876, ghcp=null (device code)

- add OAUTH_FLOW_TYPES for both providers

- update getAllAccountsSummary providers array
This commit is contained in:
kaitranntt
2025-12-22 00:45:13 -05:00
parent fae1ee2b31
commit 49bc0a44cc
2 changed files with 4 additions and 12 deletions
+1 -1
View File
@@ -495,7 +495,7 @@ export function discoverExistingAccounts(): void {
* Get summary of all accounts across providers
*/
export function getAllAccountsSummary(): Record<CLIProxyProvider, AccountInfo[]> {
const providers: CLIProxyProvider[] = ['gemini', 'codex', 'agy', 'qwen', 'iflow'];
const providers: CLIProxyProvider[] = ['gemini', 'codex', 'agy', 'qwen', 'iflow', 'kiro', 'ghcp'];
const summary: Record<CLIProxyProvider, AccountInfo[]> = {} as Record<
CLIProxyProvider,
AccountInfo[]