Merge branch 'main' into running-agents-list

This commit is contained in:
Cody Seibert
2025-12-10 21:53:41 -05:00
36 changed files with 3414 additions and 2458 deletions

View File

@@ -316,6 +316,9 @@ export interface ElectronAPI {
method: string;
hasCredentialsFile: boolean;
hasToken: boolean;
hasStoredOAuthToken?: boolean;
hasStoredApiKey?: boolean;
hasEnvApiKey?: boolean;
};
error?: string;
}>;
@@ -327,9 +330,11 @@ export interface ElectronAPI {
path?: string;
auth?: {
authenticated: boolean;
method: string;
method: string; // Can be: "cli_verified", "cli_tokens", "auth_file", "env_var", "none"
hasAuthFile: boolean;
hasEnvKey: boolean;
hasStoredApiKey?: boolean;
hasEnvApiKey?: boolean;
};
error?: string;
}>;
@@ -723,6 +728,9 @@ interface SetupAPI {
method: string;
hasCredentialsFile: boolean;
hasToken: boolean;
hasStoredOAuthToken?: boolean;
hasStoredApiKey?: boolean;
hasEnvApiKey?: boolean;
};
error?: string;
}>;
@@ -734,9 +742,11 @@ interface SetupAPI {
path?: string;
auth?: {
authenticated: boolean;
method: string;
method: string; // Can be: "cli_verified", "cli_tokens", "auth_file", "env_var", "none"
hasAuthFile: boolean;
hasEnvKey: boolean;
hasStoredApiKey?: boolean;
hasEnvApiKey?: boolean;
};
error?: string;
}>;