export type CredentialRequest = { /** * Name of the credential provider (e.g., 'openai', 'google-drive') */ name: string; /** * Credential data for the provider (API keys, service account details, etc.) */ value: any; /** * Organization key identifier for the tenant */ platform: string; };