//#region src/generated/credentials/AlibabaCloudApi.d.ts /** * displayName: Alibaba Cloud * documentationUrl: alibaba */ interface AlibabaCloudApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; /** * The region for the Alibaba Cloud Model Studio API endpoint * Default: "ap-southeast-1" */ readonly "region"?: "ap-southeast-1" | "us-east-1" | "cn-beijing" | "cn-hongkong" | "eu-central-1"; /** The Workspace ID required for the Germany (Frankfurt) region. Find it in the Model Studio console under the Germany region settings. */ readonly "workspaceId": string; /** Default: "={{ (() => { const hosts = {\"ap-southeast-1\":\"https://dashscope-intl.aliyuncs.com\",\"us-east-1\":\"https://dashscope-us.aliyuncs.com\",\"cn-beijing\":\"https://dashscope.aliyuncs.com\",\"cn-hongkong\":\"https://cn-hongkong.dashscope.aliyuncs.com\"}; const region = $self.region; if (region === \"eu-central-1\") { return \"https://\" + $self.workspaceId + \".eu-central-1.maas.aliyuncs.com\"; } return hosts[region] || hosts[\"ap-southeast-1\"]; })() }}" */ readonly "url"?: unknown; readonly __name: "alibabaCloudApi"; } //#endregion //#region src/generated/credentials/AnthropicApi.d.ts /** * displayName: Anthropic * documentationUrl: anthropic */ interface AnthropicApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; /** * Override the default base URL for the API * Default: "https://api.anthropic.com" */ readonly "url"?: string; readonly "header"?: boolean; readonly "headerName"?: string; /** Type options: {"password":true} */ readonly "headerValue"?: string; readonly __name: "anthropicApi"; } //#endregion //#region src/generated/credentials/AzureAiSearchApi.d.ts /** * displayName: Azure AI Search API * documentationUrl: azureaisearch */ interface AzureAiSearchApiCredentials { readonly "endpoint": string; /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "azureAiSearchApi"; } //#endregion //#region src/generated/credentials/AzureEntraCognitiveServicesOAuth2Api.d.ts /** * displayName: Azure Entra ID (Azure Active Directory) API * documentationUrl: azureentracognitiveservicesoauth2api */ interface AzureEntraCognitiveServicesOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; readonly "resourceName": string; /** Default: "2025-03-01-preview" */ readonly "apiVersion": string; readonly "endpoint"?: string; /** * Enter your Azure Tenant ID (Directory ID) or keep "common" for multi-tenant apps. Using a specific Tenant ID is generally recommended and required for certain authentication flows. * Default: "common" */ readonly "tenantId"?: string; /** Default: "=https://login.microsoftonline.com/{{$self[\"tenantId\"]}}/oauth2/authorize" */ readonly "authUrl"?: unknown; /** Default: "=https://login.microsoftonline.com/{{$self[\"tenantId\"]}}/oauth2/token" */ readonly "accessTokenUrl"?: unknown; /** Default: "{\"grant_type\": \"client_credentials\", \"resource\": \"https://cognitiveservices.azure.com/\"}" */ readonly "additionalBodyProperties"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; /** Define custom scopes. You might need this if the default scopes are not sufficient or if you want to minimize permissions. Ensure you include "openid" and "offline_access". */ readonly "customScopes"?: boolean; /** For some services additional query parameters have to be set which can be defined here */ readonly "authQueryParameters"?: unknown; /** * Space-separated list of scopes to request. * Default: "openid offline_access" */ readonly "enabledScopes"?: string; /** Default: "={{ $self.customScopes ? $self.enabledScopes : \"openid offline_access\"}}" */ readonly "scope"?: unknown; readonly __name: "azureEntraCognitiveServicesOAuth2Api"; } //#endregion //#region src/generated/credentials/AzureOpenAiApi.d.ts /** * displayName: Azure Open AI * documentationUrl: azureopenai */ interface AzureOpenAiApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly "resourceName": string; /** Default: "2025-03-01-preview" */ readonly "apiVersion": string; readonly "endpoint"?: string; readonly __name: "azureOpenAiApi"; } //#endregion //#region src/generated/credentials/BraveSearchApi.d.ts /** * displayName: Brave Search * documentationUrl: bravesearch */ interface BraveSearchApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "braveSearchApi"; } //#endregion //#region src/generated/credentials/ChatHubVectorStorePGVectorApi.d.ts /** * displayName: ChatHub PGVector Store API * documentationUrl: postgres */ interface ChatHubVectorStorePGVectorApiCredentials { /** * Prefix for table names. The full table name will be {prefix}_{userId}. * Default: "n8n_vectors" */ readonly "tableNamePrefix"?: string; readonly __name: "chatHubVectorStorePGVectorApi"; } //#endregion //#region src/generated/credentials/ChatHubVectorStorePineconeApi.d.ts /** * displayName: ChatHub Pinecone Vector Store API * documentationUrl: pinecone */ interface ChatHubVectorStorePineconeApiCredentials { /** The Pinecone index to use for all users. */ readonly "pineconeIndex": string; /** * Prefix for namespace names. The full namespace will be {prefix}_{userId}. * Default: "n8n_vectors" */ readonly "namespacePrefix"?: string; readonly __name: "chatHubVectorStorePineconeApi"; } //#endregion //#region src/generated/credentials/ChatHubVectorStoreQdrantApi.d.ts /** * displayName: ChatHub Qdrant Vector Store API * documentationUrl: qdrant */ interface ChatHubVectorStoreQdrantApiCredentials { /** * The Qdrant collection to use. All users share this collection; access is scoped per user via a userId metadata field. The collection is created automatically if it does not exist. * Default: "n8n_vectors" */ readonly "collectionName"?: string; readonly __name: "chatHubVectorStoreQdrantApi"; } //#endregion //#region src/generated/credentials/ChromaCloudApi.d.ts /** * displayName: ChromaDB Cloud * documentationUrl: chroma */ interface ChromaCloudApiCredentials { /** * Your Chroma Cloud API key * Type options: {"password":true} */ readonly "apiKey": string; /** Optional: Tenant ID (auto-resolved if API key is scoped to single DB) */ readonly "tenant"?: string; /** Optional: Database name (auto-resolved if API key is scoped to single DB) */ readonly "database"?: string; /** Default: "https://api.trychroma.com" */ readonly "baseUrl": string; readonly __name: "chromaCloudApi"; } //#endregion //#region src/generated/credentials/ChromaSelfHostedApi.d.ts /** * displayName: ChromaDB Self-Hosted * documentationUrl: chroma */ interface ChromaSelfHostedApiCredentials { /** * The URL of your ChromaDB instance. Note that path prefixes are not supported, so the URL must point directly to the instance root. * Default: "http://localhost:8000" */ readonly "baseUrl"?: string; /** Default: "none" */ readonly "authentication"?: "none" | "apiKey" | "token"; /** Type options: {"password":true} */ readonly "apiKey"?: string; /** Type options: {"password":true} */ readonly "token"?: string; readonly __name: "chromaSelfHostedApi"; } //#endregion //#region src/generated/credentials/CohereApi.d.ts /** * displayName: Cohere API * documentationUrl: cohere */ interface CohereApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; /** Default: "https://api.cohere.ai" */ readonly "url"?: unknown; readonly __name: "cohereApi"; } //#endregion //#region src/generated/credentials/DaytonaApi.d.ts /** * displayName: Daytona * documentationUrl: daytona */ interface DaytonaApiCredentials { readonly "apiUrl": string; /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "daytonaApi"; } //#endregion //#region src/generated/credentials/DeepSeekApi.d.ts /** * displayName: DeepSeek * documentationUrl: deepseek */ interface DeepSeekApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; /** Default: "https://api.deepseek.com" */ readonly "url"?: unknown; readonly __name: "deepSeekApi"; } //#endregion //#region src/generated/credentials/GooglePalmApi.d.ts /** * displayName: Google Gemini(PaLM) Api * documentationUrl: google */ interface GooglePalmApiCredentials { /** Default: "https://generativelanguage.googleapis.com" */ readonly "host": string; /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "googlePalmApi"; } //#endregion //#region src/generated/credentials/GroqApi.d.ts /** * displayName: Groq * documentationUrl: groq */ interface GroqApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "groqApi"; } //#endregion //#region src/generated/credentials/HuggingFaceApi.d.ts /** * displayName: Hugging Face API * documentationUrl: huggingface */ interface HuggingFaceApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "huggingFaceApi"; } //#endregion //#region src/generated/credentials/LemonadeApi.d.ts /** * displayName: Lemonade * documentationUrl: lemonade */ interface LemonadeApiCredentials { /** Default: "http://localhost:8000/api/v1" */ readonly "baseUrl": string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "lemonadeApi"; } //#endregion //#region src/generated/credentials/McpOAuth2Api.d.ts /** * displayName: MCP OAuth2 API * documentationUrl: mcp */ interface McpOAuth2ApiCredentials { /** Default: true */ readonly "useDynamicClientRegistration"?: boolean; readonly __name: "mcpOAuth2Api"; } //#endregion //#region src/generated/credentials/MicrosoftAgent365Api.d.ts /** * displayName: Microsoft 365 Agent API * documentationUrl: microsoftagent365 */ interface MicrosoftAgent365ApiCredentials { readonly "tenantId": string; readonly "clientId": string; /** Type options: {"password":true} */ readonly "clientSecret": string; readonly __name: "microsoftAgent365Api"; } //#endregion //#region src/generated/credentials/MilvusApi.d.ts /** * displayName: Milvus * documentationUrl: milvus */ interface MilvusApiCredentials { /** Default: "http://localhost:19530" */ readonly "baseUrl": string; readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly __name: "milvusApi"; } //#endregion //#region src/generated/credentials/MinimaxApi.d.ts /** * displayName: MiniMax * documentationUrl: minimax */ interface MinimaxApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; /** Default: "international" */ readonly "region"?: "international" | "china"; /** Default: "={{ $self.region === \"china\" ? \"https://api.minimaxi.com/v1\" : \"https://api.minimax.io/v1\" }}" */ readonly "url"?: unknown; readonly __name: "minimaxApi"; } //#endregion //#region src/generated/credentials/MistralCloudApi.d.ts /** * displayName: Mistral Cloud API * documentationUrl: mistral */ interface MistralCloudApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "mistralCloudApi"; } //#endregion //#region src/generated/credentials/MoonshotApi.d.ts /** * displayName: Moonshot * documentationUrl: moonshot */ interface MoonshotApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; /** Default: "international" */ readonly "region"?: "international" | "china"; /** Default: "={{ $self.region === \"china\" ? \"https://api.moonshot.cn/v1\" : \"https://api.moonshot.ai/v1\" }}" */ readonly "url"?: unknown; readonly __name: "moonshotApi"; } //#endregion //#region src/generated/credentials/MotorheadApi.d.ts /** * displayName: Motorhead API * documentationUrl: motorhead */ interface MotorheadApiCredentials { /** Default: "https://api.getmetal.io/v1" */ readonly "host": string; /** Type options: {"password":true} */ readonly "apiKey": string; readonly "clientId"?: string; readonly __name: "motorheadApi"; } //#endregion //#region src/generated/credentials/OllamaApi.d.ts /** * displayName: Ollama * documentationUrl: ollama */ interface OllamaApiCredentials { /** Default: "http://localhost:11434" */ readonly "baseUrl": string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "ollamaApi"; } //#endregion //#region src/generated/credentials/OpenRouterApi.d.ts /** * displayName: OpenRouter * documentationUrl: openrouter */ interface OpenRouterApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; /** Default: "https://openrouter.ai/api/v1" */ readonly "url"?: unknown; readonly __name: "openRouterApi"; } //#endregion //#region src/generated/credentials/PineconeApi.d.ts /** * displayName: Pinecone API * documentationUrl: pinecone */ interface PineconeApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "pineconeApi"; } //#endregion //#region src/generated/credentials/QdrantApi.d.ts /** * displayName: Qdrant API * documentationUrl: https://docs.n8n.io/integrations/builtin/credentials/qdrant/ */ interface QdrantApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly "qdrantUrl": string; readonly __name: "qdrantApi"; } //#endregion //#region src/generated/credentials/SearXngApi.d.ts /** * displayName: SearXNG * documentationUrl: searxng */ interface SearXngApiCredentials { readonly "apiUrl": string; readonly __name: "searXngApi"; } //#endregion //#region src/generated/credentials/SerpApi.d.ts /** * displayName: SerpAPI * documentationUrl: serp */ interface SerpApiCredentials { readonly "oldVersionNotice"?: string; /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "serpApi"; } //#endregion //#region src/generated/credentials/VercelAiGatewayApi.d.ts /** * displayName: Vercel AI Gateway * documentationUrl: vercel */ interface VercelAiGatewayApiCredentials { /** * Your credentials for the Vercel AI Gateway * Type options: {"password":true} */ readonly "apiKey": string; /** * The base URL for your Vercel AI Gateway instance * Default: "https://ai-gateway.vercel.sh/v1" */ readonly "url": string; readonly __name: "vercelAiGatewayApi"; } //#endregion //#region src/generated/credentials/WeaviateApi.d.ts /** * displayName: Weaviate Credentials * documentationUrl: https://docs.n8n.io/integrations/builtin/credentials/weaviate/ */ interface WeaviateApiCredentials { /** * Choose whether to connect to a Weaviate Cloud instance or a custom Weaviate instance. * Default: "weaviate_cloud" */ readonly "connection_type"?: "weaviate_cloud" | "custom_connection"; /** The Endpoint of a Weaviate Cloud instance. */ readonly "weaviate_cloud_endpoint": string; /** * The API key for the Weaviate instance. * Type options: {"password":true} */ readonly "weaviate_api_key"?: string; /** * The host of your Weaviate instance. * Default: "weaviate" */ readonly "custom_connection_http_host": string; /** * The port of your Weaviate instance. * Default: 8080 */ readonly "custom_connection_http_port": number; /** Whether to use a secure connection for HTTP. */ readonly "custom_connection_http_secure": boolean; /** * The gRPC host of your Weaviate instance. * Default: "weaviate" */ readonly "custom_connection_grpc_host": string; /** * The gRPC port of your Weaviate instance. * Default: 50051 */ readonly "custom_connection_grpc_port": number; /** Whether to use a secure connection for gRPC. */ readonly "custom_connection_grpc_secure": boolean; readonly __name: "weaviateApi"; } //#endregion //#region src/generated/credentials/WolframAlphaApi.d.ts /** * displayName: Wolfram Alpha API * documentationUrl: wolframalpha */ interface WolframAlphaApiCredentials { /** Type options: {"password":true} */ readonly "appId": string; readonly __name: "wolframAlphaApi"; } //#endregion //#region src/generated/credentials/XAiApi.d.ts /** * displayName: xAi * documentationUrl: xai */ interface XAiApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; /** Default: "https://api.x.ai/v1" */ readonly "url"?: unknown; readonly __name: "xAiApi"; } //#endregion //#region src/generated/credentials/XataApi.d.ts /** * displayName: Xata Api * documentationUrl: xata */ interface XataApiCredentials { readonly "databaseEndpoint": string; /** Default: "main" */ readonly "branch": string; /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "xataApi"; } //#endregion //#region src/generated/credentials/ZepApi.d.ts /** * displayName: Zep Api * documentationUrl: zep */ interface ZepApiCredentials { readonly "deprecationNotice"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; /** Whether you are adding credentials for Zep Cloud instead of Zep Open Source */ readonly "cloud"?: boolean; /** Default: "http://localhost:8000" */ readonly "apiUrl"?: string; readonly __name: "zepApi"; } //#endregion //#region src/generated/credentials/ActionNetworkApi.d.ts /** * displayName: Action Network API * documentationUrl: actionnetwork */ interface ActionNetworkApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "actionNetworkApi"; } //#endregion //#region src/generated/credentials/ActiveCampaignApi.d.ts /** * displayName: ActiveCampaign API * documentationUrl: activecampaign */ interface ActiveCampaignApiCredentials { readonly "apiUrl"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "activeCampaignApi"; } //#endregion //#region src/generated/credentials/AcuitySchedulingApi.d.ts /** * displayName: Acuity Scheduling API * documentationUrl: acuityscheduling */ interface AcuitySchedulingApiCredentials { readonly "userId"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "acuitySchedulingApi"; } //#endregion //#region src/generated/credentials/AcuitySchedulingOAuth2Api.d.ts /** * displayName: AcuityScheduling OAuth2 API * documentationUrl: acuityscheduling */ interface AcuitySchedulingOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://acuityscheduling.com/oauth2/authorize" */ readonly "authUrl": unknown; /** Default: "https://acuityscheduling.com/oauth2/token" */ readonly "accessTokenUrl": unknown; /** Default: "api-v1" */ readonly "scope": unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "acuitySchedulingOAuth2Api"; } //#endregion //#region src/generated/credentials/AdaloApi.d.ts /** * displayName: Adalo API * documentationUrl: adalo */ interface AdaloApiCredentials { /** * The Adalo API is available on paid Adalo plans, find more information here * Type options: {"password":true} */ readonly "apiKey"?: string; /** You can get App ID from the URL of your app. For example, if your app URL is https://app.adalo.com/apps/1234567890/screens, then your App ID is 1234567890. */ readonly "appId"?: string; readonly __name: "adaloApi"; } //#endregion //#region src/generated/credentials/AffinityApi.d.ts /** * displayName: Affinity API * documentationUrl: affinity */ interface AffinityApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "affinityApi"; } //#endregion //#region src/generated/credentials/AgileCrmApi.d.ts /** * displayName: AgileCRM API * documentationUrl: agilecrm */ interface AgileCrmApiCredentials { readonly "email"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; /** If the domain is https://example.agilecrm.com "example" would have to be entered */ readonly "subdomain"?: string; readonly __name: "agileCrmApi"; } //#endregion //#region src/generated/credentials/AirtableApi.d.ts /** * displayName: Airtable API * documentationUrl: airtable */ interface AirtableApiCredentials { readonly "deprecated"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "airtableApi"; } //#endregion //#region src/generated/credentials/AirtableOAuth2Api.d.ts /** * displayName: Airtable OAuth2 API * documentationUrl: airtable */ interface AirtableOAuth2ApiCredentials { /** Default: "pkce" */ readonly "grantType"?: unknown; /** Default: "https://airtable.com/oauth2/v1/authorize" */ readonly "authUrl"?: unknown; /** Default: "https://airtable.com/oauth2/v1/token" */ readonly "accessTokenUrl"?: unknown; /** Default: "schema.bases:read data.records:read data.records:write" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "airtableOAuth2Api"; } //#endregion //#region src/generated/credentials/AirtableTokenApi.d.ts /** * displayName: Airtable Personal Access Token API * documentationUrl: airtable */ interface AirtableTokenApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly "notice"?: string; readonly __name: "airtableTokenApi"; } //#endregion //#region src/generated/credentials/AirtopApi.d.ts /** * displayName: Airtop API * documentationUrl: airtop */ interface AirtopApiCredentials { /** * The Airtop API key. You can create one at Airtop for free. * Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "airtopApi"; } //#endregion //#region src/generated/credentials/AlienVaultApi.d.ts /** * displayName: AlienVault API * documentationUrl: alienvault */ interface AlienVaultApiCredentials { /** Type options: {"password":true} */ readonly "accessToken": string; readonly __name: "alienVaultApi"; } //#endregion //#region src/generated/credentials/Amqp.d.ts /** * displayName: AMQP * documentationUrl: amqp */ interface AmqpCredentials { readonly "hostname"?: string; /** Default: 5672 */ readonly "port"?: number; readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly "transportType"?: string; readonly __name: "amqp"; } //#endregion //#region src/generated/credentials/ApiTemplateIoApi.d.ts /** * displayName: APITemplate.io API * documentationUrl: apitemplateio */ interface ApiTemplateIoApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "apiTemplateIoApi"; } //#endregion //#region src/generated/credentials/AsanaApi.d.ts /** * displayName: Asana API * documentationUrl: asana */ interface AsanaApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "asanaApi"; } //#endregion //#region src/generated/credentials/AsanaOAuth2Api.d.ts /** * displayName: Asana OAuth2 API * documentationUrl: asana */ interface AsanaOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://app.asana.com/-/oauth_authorize" */ readonly "authUrl": unknown; /** Default: "https://app.asana.com/-/oauth_token" */ readonly "accessTokenUrl": unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "asanaOAuth2Api"; } //#endregion //#region src/generated/credentials/Auth0ManagementApi.d.ts /** * displayName: Auth0 Management API * documentationUrl: auth0management */ interface Auth0ManagementApiCredentials { /** Type options: {"expirable":true,"password":true} */ readonly "sessionToken"?: unknown; /** Default: "your-domain.eu.auth0.com" */ readonly "domain": string; readonly "clientId": string; /** Type options: {"password":true} */ readonly "clientSecret": string; readonly __name: "auth0ManagementApi"; } //#endregion //#region src/generated/credentials/AutopilotApi.d.ts /** * displayName: Autopilot API * documentationUrl: autopilot */ interface AutopilotApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "autopilotApi"; } //#endregion //#region src/generated/credentials/Aws.d.ts /** * displayName: AWS (IAM) * documentationUrl: aws */ interface AwsCredentials { /** Default: "us-east-1" */ readonly "region"?: "af-south-1" | "ap-east-1" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-gov-east-1" | "us-west-1" | "us-west-2" | "us-gov-west-1"; readonly "accessKeyId"?: string; /** Type options: {"password":true} */ readonly "secretAccessKey"?: string; /** Support for temporary credentials from AWS STS */ readonly "temporaryCredentials"?: boolean; /** Type options: {"password":true} */ readonly "sessionToken"?: string; readonly "customEndpoints"?: boolean; /** If you use Amazon VPC to host n8n, you can establish a connection between your VPC and Rekognition using a VPC endpoint. Leave blank to use the default endpoint. */ readonly "rekognitionEndpoint"?: string; /** If you use Amazon VPC to host n8n, you can establish a connection between your VPC and Lambda using a VPC endpoint. Leave blank to use the default endpoint. */ readonly "lambdaEndpoint"?: string; /** If you use Amazon VPC to host n8n, you can establish a connection between your VPC and SNS using a VPC endpoint. Leave blank to use the default endpoint. */ readonly "snsEndpoint"?: string; /** If you use Amazon VPC to host n8n, you can establish a connection between your VPC and SES using a VPC endpoint. Leave blank to use the default endpoint. */ readonly "sesEndpoint"?: string; /** If you use Amazon VPC to host n8n, you can establish a connection between your VPC and SQS using a VPC endpoint. Leave blank to use the default endpoint. */ readonly "sqsEndpoint"?: string; /** If you use Amazon VPC to host n8n, you can establish a connection between your VPC and S3 using a VPC endpoint. Leave blank to use the default endpoint. */ readonly "s3Endpoint"?: string; /** Endpoint for AWS Systems Manager (SSM) */ readonly "ssmEndpoint"?: string; readonly __name: "aws"; } //#endregion //#region src/generated/credentials/AwsAssumeRole.d.ts /** * displayName: AWS (Assume Role) * documentationUrl: awsassumerole */ interface AwsAssumeRoleCredentials { /** Default: "us-east-1" */ readonly "region"?: "af-south-1" | "ap-east-1" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-gov-east-1" | "us-west-1" | "us-west-2" | "us-gov-west-1"; /** Use system credentials (environment variables, container role, etc.) to call STS.AssumeRole. Access to AWS system credentials is disabled by default and must be explicitly enabled. See documentation for more information. */ readonly "useSystemCredentialsForRole"?: boolean; /** Access Key ID to use for the STS.AssumeRole call */ readonly "stsAccessKeyId": string; /** * Secret Access Key to use for the STS.AssumeRole call * Type options: {"password":true} */ readonly "stsSecretAccessKey": string; /** * Session Token to use for the STS.AssumeRole call * Type options: {"password":true} */ readonly "stsSessionToken"?: string; /** The ARN of the role to assume (e.g., arn:aws:iam::123456789012:role/MyRole) */ readonly "roleArn": string; /** * External ID for cross-account role assumption (should be required by your role's trust policy) * Type options: {"password":true} */ readonly "externalId": string; /** * Name for the role session * Default: "n8n-session" */ readonly "roleSessionName": string; readonly "customEndpoints"?: boolean; /** If you use Amazon VPC to host n8n, you can establish a connection between your VPC and Rekognition using a VPC endpoint. Leave blank to use the default endpoint. */ readonly "rekognitionEndpoint"?: string; /** If you use Amazon VPC to host n8n, you can establish a connection between your VPC and Lambda using a VPC endpoint. Leave blank to use the default endpoint. */ readonly "lambdaEndpoint"?: string; /** If you use Amazon VPC to host n8n, you can establish a connection between your VPC and SNS using a VPC endpoint. Leave blank to use the default endpoint. */ readonly "snsEndpoint"?: string; /** If you use Amazon VPC to host n8n, you can establish a connection between your VPC and SES using a VPC endpoint. Leave blank to use the default endpoint. */ readonly "sesEndpoint"?: string; /** If you use Amazon VPC to host n8n, you can establish a connection between your VPC and SQS using a VPC endpoint. Leave blank to use the default endpoint. */ readonly "sqsEndpoint"?: string; /** If you use Amazon VPC to host n8n, you can establish a connection between your VPC and S3 using a VPC endpoint. Leave blank to use the default endpoint. */ readonly "s3Endpoint"?: string; /** Endpoint for AWS Systems Manager (SSM) */ readonly "ssmEndpoint"?: string; readonly __name: "awsAssumeRole"; } //#endregion //#region src/generated/credentials/AzureStorageOAuth2Api.d.ts /** * displayName: Azure Storage OAuth2 API * documentationUrl: azurestorage */ interface AzureStorageOAuth2ApiCredentials { readonly "account"?: string; /** Default: "=https://{{ $self[\"account\"] }}.blob.core.windows.net" */ readonly "baseUrl"?: unknown; /** Default: "https://storage.azure.com/.default" */ readonly "scope"?: unknown; /** Default: "https://graph.microsoft.com" */ readonly "graphApiBaseUrl"?: unknown; readonly __name: "azureStorageOAuth2Api"; } //#endregion //#region src/generated/credentials/AzureStorageSharedKeyApi.d.ts /** * displayName: Azure Storage Shared Key API * documentationUrl: azurestorage */ interface AzureStorageSharedKeyApiCredentials { /** Account name */ readonly "account"?: string; /** * Account key * Type options: {"password":true} */ readonly "key"?: string; /** Default: "=https://{{ $self[\"account\"] }}.blob.core.windows.net" */ readonly "baseUrl"?: unknown; readonly __name: "azureStorageSharedKeyApi"; } //#endregion //#region src/generated/credentials/BambooHrApi.d.ts /** * displayName: BambooHR API * documentationUrl: bamboohr */ interface BambooHrApiCredentials { readonly "subdomain"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "bambooHrApi"; } //#endregion //#region src/generated/credentials/BannerbearApi.d.ts /** * displayName: Bannerbear API * documentationUrl: bannerbear */ interface BannerbearApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "bannerbearApi"; } //#endregion //#region src/generated/credentials/BaserowApi.d.ts /** * displayName: Baserow API * documentationUrl: baserow */ interface BaserowApiCredentials { readonly "deprecated"?: string; /** Default: "https://api.baserow.io" */ readonly "host"?: string; /** Type options: {"expirable":true} */ readonly "jwtToken"?: unknown; /** Email address you use to login to Baserow */ readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly __name: "baserowApi"; } //#endregion //#region src/generated/credentials/BaserowTokenApi.d.ts /** * displayName: Baserow Token API * documentationUrl: baserow */ interface BaserowTokenApiCredentials { /** Default: "https://api.baserow.io" */ readonly "host"?: string; /** * In Baserow, click on top left corner, My settings, Database tokens, Create new. * Type options: {"password":true} */ readonly "token"?: string; readonly __name: "baserowTokenApi"; } //#endregion //#region src/generated/credentials/BeeminderApi.d.ts /** * displayName: Beeminder API * documentationUrl: beeminder */ interface BeeminderApiCredentials { /** Type options: {"password":true} */ readonly "authToken"?: string; readonly __name: "beeminderApi"; } //#endregion //#region src/generated/credentials/BeeminderOAuth2Api.d.ts /** * displayName: Beeminder OAuth2 API * documentationUrl: beeminder */ interface BeeminderOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://www.beeminder.com/apps/authorize" */ readonly "authUrl": unknown; /** Default: "https://www.beeminder.com/apps/authorize" */ readonly "accessTokenUrl": unknown; /** Default: "response_type=token" */ readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly "scope"?: unknown; readonly __name: "beeminderOAuth2Api"; } //#endregion //#region src/generated/credentials/BitbucketAccessTokenApi.d.ts /** * displayName: Bitbucket Access Token API * documentationUrl: bitbuckettokenapi */ interface BitbucketAccessTokenApiCredentials { readonly "email"?: string; /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "bitbucketAccessTokenApi"; } //#endregion //#region src/generated/credentials/BitbucketApi.d.ts /** * displayName: Bitbucket API * documentationUrl: bitbucket */ interface BitbucketApiCredentials { readonly "username"?: string; /** Type options: {"password":true} */ readonly "appPassword"?: string; readonly __name: "bitbucketApi"; } //#endregion //#region src/generated/credentials/BitlyApi.d.ts /** * displayName: Bitly API * documentationUrl: bitly */ interface BitlyApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "bitlyApi"; } //#endregion //#region src/generated/credentials/BitlyOAuth2Api.d.ts /** * displayName: Bitly OAuth2 API * documentationUrl: bitly */ interface BitlyOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://bitly.com/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://api-ssl.bitly.com/oauth/access_token" */ readonly "accessTokenUrl": unknown; readonly "clientId": string; /** Type options: {"password":true} */ readonly "clientSecret": string; readonly "scope"?: unknown; /** For some services additional query parameters have to be set which can be defined here */ readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "bitlyOAuth2Api"; } //#endregion //#region src/generated/credentials/BitwardenApi.d.ts /** * displayName: Bitwarden API * documentationUrl: bitwarden */ interface BitwardenApiCredentials { readonly "clientId"?: string; /** Type options: {"password":true} */ readonly "clientSecret"?: string; /** Default: "cloudHosted" */ readonly "environment"?: "cloudHosted" | "selfHosted"; readonly "domain"?: string; readonly __name: "bitwardenApi"; } //#endregion //#region src/generated/credentials/BoxOAuth2Api.d.ts /** * displayName: Box OAuth2 API * documentationUrl: box */ interface BoxOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://account.box.com/api/oauth2/authorize" */ readonly "authUrl": unknown; /** Default: "https://api.box.com/oauth2/token" */ readonly "accessTokenUrl": unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "boxOAuth2Api"; } //#endregion //#region src/generated/credentials/BrandfetchApi.d.ts /** * displayName: Brandfetch API * documentationUrl: brandfetch */ interface BrandfetchApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "brandfetchApi"; } //#endregion //#region src/generated/credentials/BrevoApi.d.ts /** * displayName: Brevo * documentationUrl: brevo */ interface BrevoApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "sendInBlueApi"; } //#endregion //#region src/generated/credentials/BubbleApi.d.ts /** * displayName: Bubble API * documentationUrl: bubble */ interface BubbleApiCredentials { /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly "appName"?: string; /** Default: "live" */ readonly "environment"?: "development" | "live"; /** Default: "bubbleHosted" */ readonly "hosting"?: "bubbleHosted" | "selfHosted"; readonly "domain"?: string; readonly __name: "bubbleApi"; } //#endregion //#region src/generated/credentials/CalApi.d.ts /** * displayName: Cal API * documentationUrl: cal */ interface CalApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** Default: "https://api.cal.com" */ readonly "host"?: string; readonly __name: "calApi"; } //#endregion //#region src/generated/credentials/CalendlyApi.d.ts /** * displayName: Calendly API * documentationUrl: calendly */ interface CalendlyApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "calendlyApi"; } //#endregion //#region src/generated/credentials/CalendlyOAuth2Api.d.ts /** * displayName: Calendly OAuth2 API * documentationUrl: calendly */ interface CalendlyOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://auth.calendly.com/oauth/authorize" */ readonly "authUrl"?: unknown; /** Default: "https://auth.calendly.com/oauth/token" */ readonly "accessTokenUrl"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly "authQueryParameters"?: unknown; readonly "scope"?: unknown; readonly __name: "calendlyOAuth2Api"; } //#endregion //#region src/generated/credentials/CarbonBlackApi.d.ts /** * displayName: Carbon Black API * documentationUrl: carbonblack */ interface CarbonBlackApiCredentials { readonly "apiUrl"?: string; /** Type options: {"password":true} */ readonly "accessToken": string; readonly __name: "carbonBlackApi"; } //#endregion //#region src/generated/credentials/ChargebeeApi.d.ts /** * displayName: Chargebee API * documentationUrl: chargebee */ interface ChargebeeApiCredentials { readonly "accountName"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "chargebeeApi"; } //#endregion //#region src/generated/credentials/CircleCiApi.d.ts /** * displayName: CircleCI API * documentationUrl: circleci */ interface CircleCiApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "circleCiApi"; } //#endregion //#region src/generated/credentials/CiscoMerakiApi.d.ts /** * displayName: Cisco Meraki API * documentationUrl: ciscomeraki */ interface CiscoMerakiApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "ciscoMerakiApi"; } //#endregion //#region src/generated/credentials/CiscoSecureEndpointApi.d.ts /** * displayName: Cisco Secure Endpoint (AMP) API * documentationUrl: ciscosecureendpoint */ interface CiscoSecureEndpointApiCredentials { /** Default: "amp" */ readonly "region"?: "apjc.amp" | "eu.amp" | "amp"; readonly "clientId": string; /** Type options: {"password":true} */ readonly "clientSecret": string; readonly __name: "ciscoSecureEndpointApi"; } //#endregion //#region src/generated/credentials/CiscoUmbrellaApi.d.ts /** * displayName: Cisco Umbrella API * documentationUrl: ciscoumbrella */ interface CiscoUmbrellaApiCredentials { /** Type options: {"expirable":true} */ readonly "sessionToken"?: unknown; /** Type options: {"password":true} */ readonly "apiKey": string; /** Type options: {"password":true} */ readonly "secret": string; readonly __name: "ciscoUmbrellaApi"; } //#endregion //#region src/generated/credentials/CiscoWebexOAuth2Api.d.ts /** * displayName: Cisco Webex OAuth2 API * documentationUrl: ciscowebex */ interface CiscoWebexOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://webexapis.com/v1/authorize" */ readonly "authUrl": unknown; /** Default: "https://webexapis.com/v1/access_token" */ readonly "accessTokenUrl": unknown; /** Default: "spark:memberships_read meeting:recordings_read spark:kms meeting:schedules_read spark:rooms_read spark:messages_write spark:memberships_write meeting:recordings_write meeting:preferences_read spark:messages_read meeting:schedules_write" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "ciscoWebexOAuth2Api"; } //#endregion //#region src/generated/credentials/ClearbitApi.d.ts /** * displayName: Clearbit API * documentationUrl: clearbit */ interface ClearbitApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "clearbitApi"; } //#endregion //#region src/generated/credentials/ClickUpApi.d.ts /** * displayName: ClickUp API * documentationUrl: clickup */ interface ClickUpApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "clickUpApi"; } //#endregion //#region src/generated/credentials/ClickUpOAuth2Api.d.ts /** * displayName: ClickUp OAuth2 API * documentationUrl: clickup */ interface ClickUpOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://app.clickup.com/api" */ readonly "authUrl": unknown; /** Default: "https://api.clickup.com/api/v2/oauth/token" */ readonly "accessTokenUrl": unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "clickUpOAuth2Api"; } //#endregion //#region src/generated/credentials/ClockifyApi.d.ts /** * displayName: Clockify API * documentationUrl: clockify */ interface ClockifyApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "clockifyApi"; } //#endregion //#region src/generated/credentials/CloudflareApi.d.ts /** * displayName: Cloudflare API * documentationUrl: cloudflare */ interface CloudflareApiCredentials { /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly __name: "cloudflareApi"; } //#endregion //#region src/generated/credentials/CockpitApi.d.ts /** * displayName: Cockpit API * documentationUrl: cockpit */ interface CockpitApiCredentials { readonly "url"?: string; /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "cockpitApi"; } //#endregion //#region src/generated/credentials/CodaApi.d.ts /** * displayName: Coda API * documentationUrl: coda */ interface CodaApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "codaApi"; } //#endregion //#region src/generated/credentials/ContentfulApi.d.ts /** * displayName: Contentful API * documentationUrl: contentful */ interface ContentfulApiCredentials { /** The ID for the Contentful space */ readonly "spaceId": string; /** * Access token that has access to the space. Can be left empty if only Delivery API should be used. * Type options: {"password":true} */ readonly "ContentDeliveryaccessToken"?: string; /** * Access token that has access to the space. Can be left empty if only Preview API should be used. * Type options: {"password":true} */ readonly "ContentPreviewaccessToken"?: string; readonly __name: "contentfulApi"; } //#endregion //#region src/generated/credentials/ConvertApi.d.ts /** * displayName: ConvertAPI * documentationUrl: convertapi */ interface ConvertApiCredentials { /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly __name: "convertApi"; } //#endregion //#region src/generated/credentials/ConvertKitApi.d.ts /** * displayName: ConvertKit API * documentationUrl: convertkit */ interface ConvertKitApiCredentials { /** Type options: {"password":true} */ readonly "apiSecret"?: string; readonly __name: "convertKitApi"; } //#endregion //#region src/generated/credentials/CopperApi.d.ts /** * displayName: Copper API * documentationUrl: copper */ interface CopperApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly "email": string; readonly __name: "copperApi"; } //#endregion //#region src/generated/credentials/CortexApi.d.ts /** * displayName: Cortex API * documentationUrl: cortex */ interface CortexApiCredentials { /** Type options: {"password":true} */ readonly "cortexApiKey"?: string; /** The URL of the Cortex instance */ readonly "host"?: string; readonly __name: "cortexApi"; } //#endregion //#region src/generated/credentials/CrateDb.d.ts /** * displayName: CrateDB * documentationUrl: cratedb */ interface CrateDbCredentials { /** Default: "localhost" */ readonly "host"?: string; /** Default: "doc" */ readonly "database"?: string; /** Default: "crate" */ readonly "user"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** Default: "disable" */ readonly "ssl"?: "allow" | "disable" | "require"; /** Default: 5432 */ readonly "port"?: number; readonly __name: "crateDb"; } //#endregion //#region src/generated/credentials/CrowdStrikeOAuth2Api.d.ts /** * displayName: CrowdStrike OAuth2 API * documentationUrl: crowdstrike */ interface CrowdStrikeOAuth2ApiCredentials { /** Type options: {"expirable":true} */ readonly "sessionToken"?: unknown; readonly "url": string; readonly "clientId": string; /** Type options: {"password":true} */ readonly "clientSecret": string; readonly __name: "crowdStrikeOAuth2Api"; } //#endregion //#region src/generated/credentials/Crypto.d.ts /** * displayName: Crypto * documentationUrl: crypto */ interface CryptoCredentials { /** * Secret used in the Hmac action * Type options: {"password":true} */ readonly "hmacSecret"?: string; /** * Private Key used in the Sign action * Type options: {"rows":4,"password":true} */ readonly "signPrivateKey"?: string; readonly __name: "crypto"; } //#endregion //#region src/generated/credentials/CurrentsApi.d.ts /** * displayName: Currents API * documentationUrl: https://docs.currents.dev/api */ interface CurrentsApiCredentials { /** * API key from Currents Dashboard (Organization > API & Record Keys) * Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "currentsApi"; } //#endregion //#region src/generated/credentials/CustomerIoApi.d.ts /** * displayName: Customer.io API * documentationUrl: customerio */ interface CustomerIoApiCredentials { /** * Required for tracking API * Type options: {"password":true} */ readonly "trackingApiKey": string; /** * Should be set based on your account region * Default: "track.customer.io" */ readonly "region": "track-eu.customer.io" | "track.customer.io"; /** Required for tracking API */ readonly "trackingSiteId"?: string; /** * Required for App API * Type options: {"password":true} */ readonly "appApiKey"?: string; readonly __name: "customerIoApi"; } //#endregion //#region src/generated/credentials/DatabricksApi.d.ts /** * displayName: Databricks * documentationUrl: https://docs.databricks.com/dev-tools/api/latest/authentication.html */ interface DatabricksApiCredentials { /** Domain of your Databricks workspace */ readonly "host": string; /** * Databricks personal access token * Type options: {"password":true} */ readonly "token": string; readonly __name: "databricksApi"; } //#endregion //#region src/generated/credentials/DatabricksOAuth2Api.d.ts /** * displayName: Databricks OAuth2 API * documentationUrl: https://docs.databricks.com/dev-tools/api/latest/authentication.html */ interface DatabricksOAuth2ApiCredentials { /** Domain of your Databricks workspace */ readonly "host": string; /** Default: "clientCredentials" */ readonly "grantType"?: unknown; /** Default: "={{$self[\"host\"]}}/oidc/v1/token" */ readonly "accessTokenUrl": unknown; /** Default: "all-apis" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "databricksOAuth2Api"; } //#endregion //#region src/generated/credentials/DatadogApi.d.ts /** * displayName: Datadog API * documentationUrl: datadog */ interface DatadogApiCredentials { /** Default: "https://api.datadoghq.com" */ readonly "url": string; /** Type options: {"password":true} */ readonly "apiKey": string; /** * For some endpoints, you also need an Application key. * Type options: {"password":true} */ readonly "appKey"?: string; readonly __name: "datadogApi"; } //#endregion //#region src/generated/credentials/DeepLApi.d.ts /** * displayName: DeepL API * documentationUrl: deepl */ interface DeepLApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** Default: "pro" */ readonly "apiPlan"?: "pro" | "free"; readonly __name: "deepLApi"; } //#endregion //#region src/generated/credentials/DemioApi.d.ts /** * displayName: Demio API * documentationUrl: demio */ interface DemioApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** Type options: {"password":true} */ readonly "apiSecret"?: string; readonly __name: "demioApi"; } //#endregion //#region src/generated/credentials/DfirIrisApi.d.ts /** * displayName: DFIR-IRIS API * documentationUrl: dfiriris */ interface DfirIrisApiCredentials { /** The API endpoints are reachable on the same Address and port as the web interface. */ readonly "baseUrl": string; /** Type options: {"password":true} */ readonly "apiKey": string; readonly "skipSslCertificateValidation"?: boolean; readonly __name: "dfirIrisApi"; } //#endregion //#region src/generated/credentials/DhlApi.d.ts /** * displayName: DHL API * documentationUrl: dhl */ interface DhlApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "dhlApi"; } //#endregion //#region src/generated/credentials/DiscordBotApi.d.ts /** * displayName: Discord Bot API * documentationUrl: discord */ interface DiscordBotApiCredentials { /** Type options: {"password":true} */ readonly "botToken": string; readonly __name: "discordBotApi"; } //#endregion //#region src/generated/credentials/DiscordOAuth2Api.d.ts /** * displayName: Discord OAuth2 API * documentationUrl: discord */ interface DiscordOAuth2ApiCredentials { /** Type options: {"password":true} */ readonly "botToken"?: string; /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://discord.com/api/oauth2/authorize" */ readonly "authUrl": unknown; /** Default: "https://discord.com/api/oauth2/token" */ readonly "accessTokenUrl": unknown; /** Default: "permissions=1642758929655" */ readonly "authQueryParameters"?: unknown; /** Define custom scopes */ readonly "customScopes"?: boolean; readonly "customScopesNotice"?: string; /** * Scopes that should be enabled * Default: "identify guilds guilds.join bot" */ readonly "enabledScopes"?: string; /** Default: "={{$self[\"customScopes\"] ? $self[\"enabledScopes\"] : \"identify guilds guilds.join bot\"}}" */ readonly "scope"?: unknown; readonly __name: "discordOAuth2Api"; } //#endregion //#region src/generated/credentials/DiscordWebhookApi.d.ts /** * displayName: Discord Webhook * documentationUrl: discord */ interface DiscordWebhookApiCredentials { /** Type options: {"password":true} */ readonly "webhookUri": string; readonly __name: "discordWebhookApi"; } //#endregion //#region src/generated/credentials/DiscourseApi.d.ts /** * displayName: Discourse API * documentationUrl: discourse */ interface DiscourseApiCredentials { readonly "url": string; /** Type options: {"password":true} */ readonly "apiKey": string; readonly "username": string; readonly __name: "discourseApi"; } //#endregion //#region src/generated/credentials/DisqusApi.d.ts /** * displayName: Disqus API * documentationUrl: disqus */ interface DisqusApiCredentials { /** * Visit your account details page, and grab the Access Token. See Disqus auth. * Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "disqusApi"; } //#endregion //#region src/generated/credentials/DriftApi.d.ts /** * displayName: Drift API * documentationUrl: drift */ interface DriftApiCredentials { /** * Visit your account details page, and grab the Access Token. See Drift auth. * Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "driftApi"; } //#endregion //#region src/generated/credentials/DriftOAuth2Api.d.ts /** * displayName: Drift OAuth2 API * documentationUrl: drift */ interface DriftOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://dev.drift.com/authorize" */ readonly "authUrl": unknown; /** Default: "https://driftapi.com/oauth2/token" */ readonly "accessTokenUrl": unknown; readonly "authQueryParameters"?: unknown; readonly "scope"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "driftOAuth2Api"; } //#endregion //#region src/generated/credentials/DropboxApi.d.ts /** * displayName: Dropbox API * documentationUrl: dropbox */ interface DropboxApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; /** Default: "full" */ readonly "accessType"?: "folder" | "full"; readonly __name: "dropboxApi"; } //#endregion //#region src/generated/credentials/DropboxOAuth2Api.d.ts /** * displayName: Dropbox OAuth2 API * documentationUrl: dropbox */ interface DropboxOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://www.dropbox.com/oauth2/authorize" */ readonly "authUrl": unknown; /** Default: "https://api.dropboxapi.com/oauth2/token" */ readonly "accessTokenUrl": unknown; /** Default: "files.content.write files.content.read sharing.read account_info.read" */ readonly "scope"?: unknown; /** Default: "token_access_type=offline&force_reapprove=true" */ readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; /** Default: "full" */ readonly "accessType"?: "folder" | "full"; readonly __name: "dropboxOAuth2Api"; } //#endregion //#region src/generated/credentials/DropcontactApi.d.ts /** * displayName: Dropcontact API * documentationUrl: dropcontact */ interface DropcontactApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "dropcontactApi"; } //#endregion //#region src/generated/credentials/DynatraceApi.d.ts /** * displayName: Dynatrace API * documentationUrl: dynatrace */ interface DynatraceApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "dynatraceApi"; } //#endregion //#region src/generated/credentials/ERPNextApi.d.ts /** * displayName: ERPNext API * documentationUrl: erpnext */ interface ERPNextApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** Type options: {"password":true} */ readonly "apiSecret"?: string; /** Default: "cloudHosted" */ readonly "environment"?: "cloudHosted" | "selfHosted"; /** Subdomain of cloud-hosted ERPNext instance. For example, "n8n" is the subdomain in: https://n8n.erpnext.com */ readonly "subdomain"?: string; /** * Domain for your cloud hosted ERPNext instance. * Default: "erpnext.com" */ readonly "domain"?: "erpnext.com" | "frappe.cloud"; /** Whether to connect even if SSL certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; readonly __name: "erpNextApi"; } //#endregion //#region src/generated/credentials/EgoiApi.d.ts /** * displayName: E-Goi API * documentationUrl: egoi */ interface EgoiApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "egoiApi"; } //#endregion //#region src/generated/credentials/ElasticSecurityApi.d.ts /** * displayName: Elastic Security API * documentationUrl: elasticsecurity */ interface ElasticSecurityApiCredentials { /** Referred to as Kibana 'endpoint' in the Elastic deployment dashboard */ readonly "baseUrl": string; /** Default: "basicAuth" */ readonly "type"?: "apiKey" | "basicAuth"; readonly "username": string; /** Type options: {"password":true} */ readonly "password": string; /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "elasticSecurityApi"; } //#endregion //#region src/generated/credentials/ElasticsearchApi.d.ts /** * displayName: Elasticsearch API * documentationUrl: elasticsearch */ interface ElasticsearchApiCredentials { readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** Referred to as Elasticsearch 'endpoint' in the Elastic deployment dashboard */ readonly "baseUrl"?: string; readonly "ignoreSSLIssues"?: boolean; readonly __name: "elasticsearchApi"; } //#endregion //#region src/generated/credentials/EmeliaApi.d.ts /** * displayName: Emelia API * documentationUrl: emelia */ interface EmeliaApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "emeliaApi"; } //#endregion //#region src/generated/credentials/EventbriteApi.d.ts /** * displayName: Eventbrite API * documentationUrl: eventbrite */ interface EventbriteApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "eventbriteApi"; } //#endregion //#region src/generated/credentials/EventbriteOAuth2Api.d.ts /** * displayName: Eventbrite OAuth2 API * documentationUrl: eventbrite */ interface EventbriteOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://www.eventbrite.com/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://www.eventbrite.com/oauth/token" */ readonly "accessTokenUrl": unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "eventbriteOAuth2Api"; } //#endregion //#region src/generated/credentials/F5BigIpApi.d.ts /** * displayName: F5 Big-IP API * documentationUrl: f5bigip */ interface F5BigIpApiCredentials { readonly "username": string; /** Type options: {"password":true} */ readonly "password": string; readonly __name: "f5BigIpApi"; } //#endregion //#region src/generated/credentials/FacebookGraphApi.d.ts /** * displayName: Facebook Graph API * documentationUrl: facebookgraph */ interface FacebookGraphApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "facebookGraphApi"; } //#endregion //#region src/generated/credentials/FacebookGraphAppApi.d.ts /** * displayName: Facebook Graph API (App) * documentationUrl: facebookapp */ interface FacebookGraphAppApiCredentials { /** * (Optional) When set, the node will sign API calls and verify incoming webhook payloads for added security * Type options: {"password":true} */ readonly "appSecret"?: string; readonly __name: "facebookGraphAppApi"; } //#endregion //#region src/generated/credentials/FacebookLeadAdsOAuth2Api.d.ts /** * displayName: Facebook Lead Ads OAuth2 API * documentationUrl: facebookleadads */ interface FacebookLeadAdsOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://www.facebook.com/v17.0/dialog/oauth" */ readonly "authUrl": unknown; /** Default: "https://graph.facebook.com/v17.0/oauth/access_token" */ readonly "accessTokenUrl": unknown; /** Default: "leads_retrieval pages_show_list pages_manage_metadata pages_manage_ads business_management pages_read_engagement" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "facebookLeadAdsOAuth2Api"; } //#endregion //#region src/generated/credentials/FigmaApi.d.ts /** * displayName: Figma API * documentationUrl: figma */ interface FigmaApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "figmaApi"; } //#endregion //#region src/generated/credentials/FileMaker.d.ts /** * displayName: FileMaker API * documentationUrl: filemaker */ interface FileMakerCredentials { readonly "host"?: string; readonly "db"?: string; readonly "login"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly __name: "fileMaker"; } //#endregion //#region src/generated/credentials/FilescanApi.d.ts /** * displayName: Filescan API * documentationUrl: filescan */ interface FilescanApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "filescanApi"; } //#endregion //#region src/generated/credentials/FlowApi.d.ts /** * displayName: Flow API * documentationUrl: flow */ interface FlowApiCredentials { readonly "organizationId"?: number; /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "flowApi"; } //#endregion //#region src/generated/credentials/FormIoApi.d.ts /** * displayName: Form.io API * documentationUrl: formiotrigger */ interface FormIoApiCredentials { /** Default: "cloudHosted" */ readonly "environment"?: "cloudHosted" | "selfHosted"; readonly "domain"?: string; readonly "email"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** Type options: {"expirable":true,"password":true} */ readonly "token"?: unknown; readonly __name: "formIoApi"; } //#endregion //#region src/generated/credentials/FormstackApi.d.ts /** * displayName: Formstack API * documentationUrl: formstacktrigger */ interface FormstackApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "formstackApi"; } //#endregion //#region src/generated/credentials/FormstackOAuth2Api.d.ts /** * displayName: Formstack OAuth2 API * documentationUrl: formstacktrigger */ interface FormstackOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://www.formstack.com/api/v2/oauth2/authorize" */ readonly "authUrl": unknown; /** Default: "https://www.formstack.com/api/v2/oauth2/token" */ readonly "accessTokenUrl": unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "formstackOAuth2Api"; } //#endregion //#region src/generated/credentials/FortiGateApi.d.ts /** * displayName: Fortinet FortiGate API * documentationUrl: fortigate */ interface FortiGateApiCredentials { /** Type options: {"password":true} */ readonly "accessToken": string; readonly __name: "fortiGateApi"; } //#endregion //#region src/generated/credentials/FreshdeskApi.d.ts /** * displayName: Freshdesk API * documentationUrl: freshdesk */ interface FreshdeskApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** If the URL you get displayed on Freshdesk is "https://company.freshdesk.com" enter "company" */ readonly "domain"?: string; readonly __name: "freshdeskApi"; } //#endregion //#region src/generated/credentials/FreshserviceApi.d.ts /** * displayName: Freshservice API * documentationUrl: freshservice */ interface FreshserviceApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** Domain in the Freshservice org URL. For example, in https://n8n.freshservice.com, the domain is n8n */ readonly "domain"?: string; readonly __name: "freshserviceApi"; } //#endregion //#region src/generated/credentials/FreshworksCrmApi.d.ts /** * displayName: Freshworks CRM API * documentationUrl: freshdesk */ interface FreshworksCrmApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** Domain in the Freshworks CRM org URL. For example, in https://n8n-org.myfreshworks.com, the domain is n8n-org. */ readonly "domain"?: string; readonly __name: "freshworksCrmApi"; } //#endregion //#region src/generated/credentials/Ftp.d.ts /** * displayName: FTP * documentationUrl: ftp */ interface FtpCredentials { readonly "host": string; /** Default: 21 */ readonly "port": number; readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly __name: "ftp"; } //#endregion //#region src/generated/credentials/GSuiteAdminOAuth2Api.d.ts /** * displayName: Google Workspace Admin OAuth2 API * documentationUrl: google */ interface GSuiteAdminOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/admin.directory.group https://www.googleapis.com/auth/admin.directory.user https://www.googleapis.com/auth/admin.directory.domain.readonly https://www.googleapis.com/auth/admin.directory.userschema.readonly https://www.googleapis.com/auth/admin.directory.device.chromeos https://www.googleapis.com/auth/admin.directory.orgunit.readonly" */ readonly "scope"?: unknown; readonly __name: "gSuiteAdminOAuth2Api"; } //#endregion //#region src/generated/credentials/GetResponseApi.d.ts /** * displayName: GetResponse API * documentationUrl: getresponse */ interface GetResponseApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "getResponseApi"; } //#endregion //#region src/generated/credentials/GetResponseOAuth2Api.d.ts /** * displayName: GetResponse OAuth2 API * documentationUrl: getresponse */ interface GetResponseOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://app.getresponse.com/oauth2_authorize.html" */ readonly "authUrl": unknown; /** Default: "https://api.getresponse.com/v3/token" */ readonly "accessTokenUrl": unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "getResponseOAuth2Api"; } //#endregion //#region src/generated/credentials/GhostAdminApi.d.ts /** * displayName: Ghost Admin API * documentationUrl: ghost */ interface GhostAdminApiCredentials { readonly "url"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "ghostAdminApi"; } //#endregion //#region src/generated/credentials/GhostContentApi.d.ts /** * displayName: Ghost Content API * documentationUrl: ghost */ interface GhostContentApiCredentials { readonly "url"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "ghostContentApi"; } //#endregion //#region src/generated/credentials/GitPassword.d.ts /** * displayName: Git * documentationUrl: git */ interface GitPasswordCredentials { /** The username to authenticate with */ readonly "username"?: string; /** * The password to use in combination with the user * Type options: {"password":true} */ readonly "password"?: string; readonly __name: "gitPassword"; } //#endregion //#region src/generated/credentials/GithubApi.d.ts /** * displayName: GitHub API * documentationUrl: github */ interface GithubApiCredentials { /** * The server to connect to. Only has to be set if Github Enterprise is used. * Default: "https://api.github.com" */ readonly "server"?: string; readonly "user"?: string; /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "githubApi"; } //#endregion //#region src/generated/credentials/GithubOAuth2Api.d.ts /** * displayName: GitHub OAuth2 API * documentationUrl: github */ interface GithubOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** * The server to connect to. Only has to be set if Github Enterprise is used. * Default: "https://api.github.com" */ readonly "server"?: string; /** Default: "={{$self[\"server\"] === \"https://api.github.com\" ? \"https://github.com\" : $self[\"server\"].split(\"://\")[0] + \"://\" + $self[\"server\"].split(\"://\")[1].split(\"/\")[0]}}/login/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "={{$self[\"server\"] === \"https://api.github.com\" ? \"https://github.com\" : $self[\"server\"].split(\"://\")[0] + \"://\" + $self[\"server\"].split(\"://\")[1].split(\"/\")[0]}}/login/oauth/access_token" */ readonly "accessTokenUrl": unknown; /** Default: "repo,admin:repo_hook,admin:org,admin:org_hook,gist,notifications,user,write:packages,read:packages,delete:packages,workflow" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "githubOAuth2Api"; } //#endregion //#region src/generated/credentials/GitlabApi.d.ts /** * displayName: GitLab API * documentationUrl: gitlab */ interface GitlabApiCredentials { /** Default: "https://gitlab.com" */ readonly "server"?: string; /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "gitlabApi"; } //#endregion //#region src/generated/credentials/GitlabOAuth2Api.d.ts /** * displayName: GitLab OAuth2 API * documentationUrl: gitlab */ interface GitlabOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://gitlab.com" */ readonly "server"?: string; /** Default: "={{$self[\"server\"]}}/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "={{$self[\"server\"]}}/oauth/token" */ readonly "accessTokenUrl": unknown; /** Default: "api" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "gitlabOAuth2Api"; } //#endregion //#region src/generated/credentials/GmailOAuth2Api.d.ts /** * displayName: Gmail OAuth2 API * documentationUrl: google/oauth-single-service */ interface GmailOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/gmail.labels https://www.googleapis.com/auth/gmail.addons.current.action.compose https://www.googleapis.com/auth/gmail.addons.current.message.action https://mail.google.com/ https://www.googleapis.com/auth/gmail.modify https://www.googleapis.com/auth/gmail.compose" */ readonly "scope"?: unknown; readonly __name: "gmailOAuth2"; } //#endregion //#region src/generated/credentials/GoToWebinarOAuth2Api.d.ts /** * displayName: GoToWebinar OAuth2 API * documentationUrl: gotowebinar */ interface GoToWebinarOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://api.getgo.com/oauth/v2/authorize" */ readonly "authUrl"?: unknown; /** Default: "https://api.getgo.com/oauth/v2/token" */ readonly "accessTokenUrl"?: unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "goToWebinarOAuth2Api"; } //#endregion //#region src/generated/credentials/GongApi.d.ts /** * displayName: Gong API * documentationUrl: gong */ interface GongApiCredentials { /** Default: "https://api.gong.io" */ readonly "baseUrl"?: string; /** Type options: {"password":true} */ readonly "accessKey"?: string; /** Type options: {"password":true} */ readonly "accessKeySecret"?: string; readonly __name: "gongApi"; } //#endregion //#region src/generated/credentials/GongOAuth2Api.d.ts /** * displayName: Gong OAuth2 API * documentationUrl: gong */ interface GongOAuth2ApiCredentials { /** Default: "https://api.gong.io" */ readonly "baseUrl"?: string; /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://app.gong.io/oauth2/authorize" */ readonly "authUrl": unknown; /** Default: "https://app.gong.io/oauth2/generate-customer-token" */ readonly "accessTokenUrl": unknown; /** Default: "api:calls:read:transcript api:provisioning:read api:workspaces:read api:meetings:user:delete api:crm:get-objects api:data-privacy:delete api:crm:schema api:flows:write api:crm:upload api:meetings:integration:status api:calls:read:extensive api:meetings:user:update api:integration-settings:write api:settings:scorecards:read api:stats:scorecards api:stats:interaction api:stats:user-actions api:crm:integration:delete api:calls:read:basic api:calls:read:media-url api:digital-interactions:write api:crm:integrations:read api:library:read api:data-privacy:read api:users:read api:logs:read api:calls:create api:meetings:user:create api:stats:user-actions:detailed api:settings:trackers:read api:crm:integration:register api:provisioning:read-write api:engagement-data:write api:permission-profile:read api:permission-profile:write api:flows:read api:crm-calls:manual-association:read" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "gongOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleAdsOAuth2Api.d.ts /** * displayName: Google Ads OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleAdsOAuth2ApiCredentials { /** Type options: {"password":true} */ readonly "developerToken": string; /** Default: "https://www.googleapis.com/auth/adwords" */ readonly "scope"?: unknown; readonly __name: "googleAdsOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleAnalyticsOAuth2Api.d.ts /** * displayName: Google Analytics OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleAnalyticsOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/analytics https://www.googleapis.com/auth/analytics.readonly" */ readonly "scope"?: unknown; readonly __name: "googleAnalyticsOAuth2"; } //#endregion //#region src/generated/credentials/GoogleApi.d.ts /** * displayName: Google Service Account API * documentationUrl: google/service-account */ interface GoogleApiCredentials { /** * The region where the Google Cloud service is located. This applies only to specific nodes, like the Google Vertex Chat Model * Default: "us-central1" */ readonly "region"?: "africa-south1" | "asia-east1" | "asia-east2" | "asia-northeast1" | "asia-northeast2" | "asia-northeast3" | "asia-south1" | "asia-south2" | "asia-southeast1" | "asia-southeast2" | "australia-southeast1" | "australia-southeast2" | "europe-central2" | "europe-north1" | "europe-southwest1" | "europe-west1" | "europe-west10" | "europe-west12" | "europe-west2" | "europe-west3" | "europe-west4" | "europe-west6" | "europe-west8" | "europe-west9" | "me-central1" | "me-central2" | "me-west1" | "northamerica-northeast1" | "northamerica-northeast2" | "northamerica-south1" | "southamerica-east1" | "southamerica-west1" | "us-central1" | "us-east1" | "us-east4" | "us-east5" | "us-south1" | "us-west1" | "us-west2" | "us-west3" | "us-west4"; /** The Google Service account similar to user-808@project.iam.gserviceaccount.com */ readonly "email": string; /** * Enter the private key located in the JSON file downloaded from Google Cloud Console * Type options: {"password":true} */ readonly "privateKey": string; readonly "inpersonate"?: boolean; /** The email address of the user for which the application is requesting delegated access */ readonly "delegatedEmail"?: string; readonly "httpNode"?: boolean; readonly "httpWarning"?: string; /** You can find the scopes for services here */ readonly "scopes"?: string; readonly __name: "googleApi"; } //#endregion //#region src/generated/credentials/GoogleBigQueryOAuth2Api.d.ts /** * displayName: Google BigQuery OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleBigQueryOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/bigquery https://www.googleapis.com/auth/cloud-platform https://www.googleapis.com/auth/drive" */ readonly "scope"?: unknown; readonly __name: "googleBigQueryOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleBooksOAuth2Api.d.ts /** * displayName: Google Books OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleBooksOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/books" */ readonly "scope"?: unknown; readonly __name: "googleBooksOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleBusinessProfileOAuth2Api.d.ts /** * displayName: Google Business Profile OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleBusinessProfileOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/business.manage" */ readonly "scope"?: unknown; readonly "notice"?: string; readonly __name: "googleBusinessProfileOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleCalendarOAuth2Api.d.ts /** * displayName: Google Calendar OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleCalendarOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/calendar https://www.googleapis.com/auth/calendar.events" */ readonly "scope"?: unknown; readonly __name: "googleCalendarOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleChatOAuth2Api.d.ts /** * displayName: Chat OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleChatOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/chat.spaces https://www.googleapis.com/auth/chat.messages https://www.googleapis.com/auth/chat.memberships" */ readonly "scope"?: unknown; readonly __name: "googleChatOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleCloudNaturalLanguageOAuth2Api.d.ts /** * displayName: Google Cloud Natural Language OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleCloudNaturalLanguageOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/cloud-language https://www.googleapis.com/auth/cloud-platform" */ readonly "scope"?: unknown; readonly __name: "googleCloudNaturalLanguageOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleCloudStorageOAuth2Api.d.ts /** * displayName: Google Cloud Storage OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleCloudStorageOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/cloud-platform https://www.googleapis.com/auth/cloud-platform.read-only https://www.googleapis.com/auth/devstorage.full_control https://www.googleapis.com/auth/devstorage.read_only https://www.googleapis.com/auth/devstorage.read_write" */ readonly "scope"?: unknown; readonly __name: "googleCloudStorageOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleContactsOAuth2Api.d.ts /** * displayName: Google Contacts OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleContactsOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/contacts" */ readonly "scope"?: unknown; readonly __name: "googleContactsOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleDocsOAuth2Api.d.ts /** * displayName: Google Docs OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleDocsOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/documents https://www.googleapis.com/auth/drive https://www.googleapis.com/auth/drive.file" */ readonly "scope"?: unknown; readonly __name: "googleDocsOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleDriveOAuth2Api.d.ts /** * displayName: Google Drive OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleDriveOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/drive https://www.googleapis.com/auth/drive.appdata https://www.googleapis.com/auth/drive.photos.readonly" */ readonly "scope"?: unknown; readonly "notice"?: string; readonly __name: "googleDriveOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleFirebaseCloudFirestoreOAuth2Api.d.ts /** * displayName: Google Firebase Cloud Firestore OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleFirebaseCloudFirestoreOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/datastore https://www.googleapis.com/auth/firebase" */ readonly "scope"?: unknown; readonly __name: "googleFirebaseCloudFirestoreOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleFirebaseRealtimeDatabaseOAuth2Api.d.ts /** * displayName: Google Firebase Realtime Database OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleFirebaseRealtimeDatabaseOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/firebase.database https://www.googleapis.com/auth/firebase" */ readonly "scope"?: unknown; /** Default: "firebaseio.com" */ readonly "region"?: "firebaseio.com" | "europe-west1.firebasedatabase.app" | "asia-southeast1.firebasedatabase.app"; readonly __name: "googleFirebaseRealtimeDatabaseOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleOAuth2Api.d.ts /** * displayName: Google OAuth2 API * documentationUrl: google/oauth-generic */ interface GoogleOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://accounts.google.com/o/oauth2/v2/auth" */ readonly "authUrl"?: unknown; /** Default: "https://oauth2.googleapis.com/token" */ readonly "accessTokenUrl"?: unknown; /** Default: "access_type=offline&prompt=consent" */ readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "googleOAuth2Api"; } //#endregion //#region src/generated/credentials/GooglePerspectiveOAuth2Api.d.ts /** * displayName: Google Perspective OAuth2 API * documentationUrl: google/oauth-single-service */ interface GooglePerspectiveOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/userinfo.email" */ readonly "scope"?: unknown; readonly __name: "googlePerspectiveOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleSheetsOAuth2Api.d.ts /** * displayName: Google Sheets OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleSheetsOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/drive.file https://www.googleapis.com/auth/spreadsheets https://www.googleapis.com/auth/drive.metadata" */ readonly "scope"?: unknown; readonly "notice"?: string; readonly __name: "googleSheetsOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleSheetsTriggerOAuth2Api.d.ts /** * displayName: Google Sheets Trigger OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleSheetsTriggerOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/drive https://www.googleapis.com/auth/drive.file https://www.googleapis.com/auth/spreadsheets https://www.googleapis.com/auth/drive.metadata" */ readonly "scope"?: unknown; readonly "notice"?: string; readonly __name: "googleSheetsTriggerOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleSlidesOAuth2Api.d.ts /** * displayName: Google Slides OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleSlidesOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/drive.file https://www.googleapis.com/auth/presentations" */ readonly "scope"?: unknown; readonly __name: "googleSlidesOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleTasksOAuth2Api.d.ts /** * displayName: Google Tasks OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleTasksOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/tasks" */ readonly "scope"?: unknown; readonly __name: "googleTasksOAuth2Api"; } //#endregion //#region src/generated/credentials/GoogleTranslateOAuth2Api.d.ts /** * displayName: Google Translate OAuth2 API * documentationUrl: google/oauth-single-service */ interface GoogleTranslateOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/cloud-translation" */ readonly "scope"?: unknown; readonly __name: "googleTranslateOAuth2Api"; } //#endregion //#region src/generated/credentials/GotifyApi.d.ts /** * displayName: Gotify API * documentationUrl: gotify */ interface GotifyApiCredentials { /** * (Optional) Needed for message creation * Type options: {"password":true} */ readonly "appApiToken"?: string; /** * (Optional) Needed for everything (delete, getAll) but message creation * Type options: {"password":true} */ readonly "clientApiToken"?: string; /** The URL of the Gotify host */ readonly "url"?: string; /** Whether to connect even if SSL certificate validation is not possible */ readonly "ignoreSSLIssues"?: boolean; readonly __name: "gotifyApi"; } //#endregion //#region src/generated/credentials/GrafanaApi.d.ts /** * displayName: Grafana API * documentationUrl: grafana */ interface GrafanaApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; /** Base URL of your Grafana instance */ readonly "baseUrl": string; readonly __name: "grafanaApi"; } //#endregion //#region src/generated/credentials/GristApi.d.ts /** * displayName: Grist API * documentationUrl: grist */ interface GristApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; /** Default: "free" */ readonly "planType"?: "free" | "paid" | "selfHosted"; /** Custom subdomain of your team */ readonly "customSubdomain": string; /** URL of your Grist instance. Include http/https without /api and no trailing slash. */ readonly "selfHostedUrl": string; readonly __name: "gristApi"; } //#endregion //#region src/generated/credentials/GumroadApi.d.ts /** * displayName: Gumroad API * documentationUrl: gumroad */ interface GumroadApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "gumroadApi"; } //#endregion //#region src/generated/credentials/HaloPSAApi.d.ts /** * displayName: HaloPSA API * documentationUrl: halopsa */ interface HaloPSAApiCredentials { /** Default: "onPremise" */ readonly "hostingType"?: "onPremise" | "hostedHalo"; readonly "authUrl": string; /** The Resource server is available at your "Halo Web Application URL/api" */ readonly "resourceApiUrl": string; /** Must be your application client ID */ readonly "client_id": string; /** * Must be your application client secret * Type options: {"password":true} */ readonly "client_secret": string; /** An additional tenant parameter for HaloPSA hosted solution */ readonly "tenant"?: string; /** Default: "admin edit:tickets edit:customers" */ readonly "scope": unknown; readonly __name: "haloPSAApi"; } //#endregion //#region src/generated/credentials/HarvestApi.d.ts /** * displayName: Harvest API * documentationUrl: harvest */ interface HarvestApiCredentials { /** * Visit your account details page, and grab the Access Token. See Harvest Personal Access Tokens. * Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "harvestApi"; } //#endregion //#region src/generated/credentials/HarvestOAuth2Api.d.ts /** * displayName: Harvest OAuth2 API * documentationUrl: harvest */ interface HarvestOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://id.getharvest.com/oauth2/authorize" */ readonly "authUrl": unknown; /** Default: "https://id.getharvest.com/api/v2/oauth2/token" */ readonly "accessTokenUrl": unknown; /** Default: "all" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "harvestOAuth2Api"; } //#endregion //#region src/generated/credentials/HelpScoutOAuth2Api.d.ts /** * displayName: HelpScout OAuth2 API * documentationUrl: helpscout */ interface HelpScoutOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://secure.helpscout.net/authentication/authorizeClientApplication" */ readonly "authUrl": unknown; /** Default: "https://api.helpscout.net/v2/oauth2/token" */ readonly "accessTokenUrl": unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "helpScoutOAuth2Api"; } //#endregion //#region src/generated/credentials/HighLevelApi.d.ts /** * displayName: HighLevel API * documentationUrl: highlevel */ interface HighLevelApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "highLevelApi"; } //#endregion //#region src/generated/credentials/HighLevelOAuth2Api.d.ts /** * displayName: HighLevel OAuth2 API * documentationUrl: highlevel */ interface HighLevelOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://marketplace.leadconnectorhq.com/oauth/chooselocation" */ readonly "authUrl": "https://marketplace.leadconnectorhq.com/oauth/chooselocation" | "https://marketplace.gohighlevel.com/oauth/chooselocation"; readonly "scope": string; /** Default: "https://services.leadconnectorhq.com/oauth/token" */ readonly "accessTokenUrl"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly "notice"?: string; readonly __name: "highLevelOAuth2Api"; } //#endregion //#region src/generated/credentials/HomeAssistantApi.d.ts /** * displayName: Home Assistant API * documentationUrl: homeassistant */ interface HomeAssistantApiCredentials { readonly "host"?: string; /** Default: 8123 */ readonly "port"?: number; readonly "ssl"?: boolean; /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "homeAssistantApi"; } //#endregion //#region src/generated/credentials/HttpBasicAuth.d.ts /** * displayName: Basic Auth * documentationUrl: httprequest */ interface HttpBasicAuthCredentials { readonly "user"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly __name: "httpBasicAuth"; } //#endregion //#region src/generated/credentials/HttpBearerAuth.d.ts /** * displayName: Bearer Auth * documentationUrl: httprequest */ interface HttpBearerAuthCredentials { /** Type options: {"password":true} */ readonly "token"?: string; readonly "useCustomAuth"?: string; readonly __name: "httpBearerAuth"; } //#endregion //#region src/generated/credentials/HttpCustomAuth.d.ts /** * displayName: Custom Auth * documentationUrl: httprequest */ interface HttpCustomAuthCredentials { /** * Use json to specify authentication values for headers, body and qs. * Type options: {"redactJsonLeaves":true} */ readonly "json": string; readonly __name: "httpCustomAuth"; } //#endregion //#region src/generated/credentials/HttpDigestAuth.d.ts /** * displayName: Digest Auth * documentationUrl: httprequest */ interface HttpDigestAuthCredentials { readonly "user"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly __name: "httpDigestAuth"; } //#endregion //#region src/generated/credentials/HttpHeaderAuth.d.ts /** * displayName: Header Auth * documentationUrl: httprequest */ interface HttpHeaderAuthCredentials { readonly "name"?: string; /** Type options: {"password":true} */ readonly "value"?: string; readonly "useCustomAuth"?: string; readonly __name: "httpHeaderAuth"; } //#endregion //#region src/generated/credentials/HttpMultipleHeadersAuth.d.ts /** * displayName: Multiple Headers Auth * documentationUrl: httprequest */ interface HttpMultipleHeadersAuthCredentials { /** * Default: {"values":[{"name":"","value":""}]} * Type options: {"multipleValues":true} */ readonly "headers"?: { values: Array<{ name?: string; value?: string; }>; }; readonly __name: "httpMultipleHeadersAuth"; } //#endregion //#region src/generated/credentials/HttpQueryAuth.d.ts /** * displayName: Query Auth * documentationUrl: httprequest */ interface HttpQueryAuthCredentials { readonly "name"?: string; /** Type options: {"password":true} */ readonly "value"?: string; readonly __name: "httpQueryAuth"; } //#endregion //#region src/generated/credentials/HttpSslAuth.d.ts /** * displayName: SSL Certificates * documentationUrl: httprequest */ interface HttpSslAuthCredentials { /** * Certificate Authority certificate * Type options: {"password":true} */ readonly "ca"?: string; /** Type options: {"password":true} */ readonly "cert"?: string; /** Type options: {"password":true} */ readonly "key"?: string; /** * Optional passphrase for the private key, if the private key is encrypted * Type options: {"password":true} */ readonly "passphrase"?: string; readonly __name: "httpSslAuth"; } //#endregion //#region src/generated/credentials/HubspotApi.d.ts /** * displayName: HubSpot API * documentationUrl: hubspot */ interface HubspotApiCredentials { readonly "notice"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "hubspotApi"; } //#endregion //#region src/generated/credentials/HubspotAppToken.d.ts /** * displayName: HubSpot Service Key * documentationUrl: hubspot */ interface HubspotAppTokenCredentials { /** Type options: {"password":true} */ readonly "appToken"?: string; readonly __name: "hubspotAppToken"; } //#endregion //#region src/generated/credentials/HubspotDeveloperApi.d.ts /** * displayName: HubSpot Developer API * documentationUrl: hubspot */ interface HubspotDeveloperApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://app.hubspot.com/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://api.hubapi.com/oauth/v1/token" */ readonly "accessTokenUrl": unknown; /** Default: "grant_type=authorization_code" */ readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; /** Type options: {"password":true} */ readonly "apiKey": string; readonly "appId": string; /** Default: "crm.objects.contacts.read crm.schemas.contacts.read crm.objects.companies.read crm.schemas.companies.read crm.objects.deals.read crm.schemas.deals.read conversations.read tickets" */ readonly "scope"?: unknown; readonly __name: "hubspotDeveloperApi"; } //#endregion //#region src/generated/credentials/HubspotOAuth2Api.d.ts /** * displayName: HubSpot OAuth2 API * documentationUrl: hubspot */ interface HubspotOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://app.hubspot.com/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://api.hubapi.com/oauth/v1/token" */ readonly "accessTokenUrl": unknown; /** Default: "crm.lists.write crm.objects.contacts.read crm.objects.contacts.write crm.objects.companies.read crm.objects.companies.write crm.objects.deals.read crm.objects.deals.write crm.objects.owners.read crm.schemas.companies.read crm.schemas.contacts.read crm.schemas.deals.read forms tickets" */ readonly "scope"?: unknown; /** Default: "grant_type=authorization_code" */ readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "hubspotOAuth2Api"; } //#endregion //#region src/generated/credentials/HumanticAiApi.d.ts /** * displayName: Humantic AI API * documentationUrl: humanticai */ interface HumanticAiApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "humanticAiApi"; } //#endregion //#region src/generated/credentials/HunterApi.d.ts /** * displayName: Hunter API * documentationUrl: hunter */ interface HunterApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "hunterApi"; } //#endregion //#region src/generated/credentials/HybridAnalysisApi.d.ts /** * displayName: Hybrid Analysis API * documentationUrl: hybridanalysis */ interface HybridAnalysisApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "hybridAnalysisApi"; } //#endregion //#region src/generated/credentials/Imap.d.ts /** * displayName: IMAP * documentationUrl: imap */ interface ImapCredentials { readonly "user"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly "host"?: string; /** Default: 993 */ readonly "port"?: number; /** Default: true */ readonly "secure"?: boolean; /** Whether to connect even if SSL certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; readonly __name: "imap"; } //#endregion //#region src/generated/credentials/ImpervaWafApi.d.ts /** * displayName: Imperva WAF API * documentationUrl: impervawaf */ interface ImpervaWafApiCredentials { readonly "apiID": string; /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "impervaWafApi"; } //#endregion //#region src/generated/credentials/IntercomApi.d.ts /** * displayName: Intercom API * documentationUrl: intercom */ interface IntercomApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "intercomApi"; } //#endregion //#region src/generated/credentials/InvoiceNinjaApi.d.ts /** * displayName: Invoice Ninja API * documentationUrl: invoiceninja */ interface InvoiceNinjaApiCredentials { readonly "url"?: string; /** Type options: {"password":true} */ readonly "apiToken"?: string; /** Type options: {"password":true} */ readonly "secret"?: string; readonly __name: "invoiceNinjaApi"; } //#endregion //#region src/generated/credentials/IterableApi.d.ts /** * displayName: Iterable API * documentationUrl: iterable */ interface IterableApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** Default: "https://api.iterable.com" */ readonly "region"?: "https://api.eu.iterable.com" | "https://api.iterable.com"; readonly __name: "iterableApi"; } //#endregion //#region src/generated/credentials/JenkinsApi.d.ts /** * displayName: Jenkins API * documentationUrl: jenkins */ interface JenkinsApiCredentials { readonly "username"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly "baseUrl"?: string; readonly __name: "jenkinsApi"; } //#endregion //#region src/generated/credentials/JinaAiApi.d.ts /** * displayName: Jina AI API * documentationUrl: jinaai */ interface JinaAiApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "jinaAiApi"; } //#endregion //#region src/generated/credentials/JiraSoftwareCloudApi.d.ts /** * displayName: Jira SW Cloud API * documentationUrl: jira */ interface JiraSoftwareCloudApiCredentials { readonly "email"?: string; /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly "domain"?: string; readonly __name: "jiraSoftwareCloudApi"; } //#endregion //#region src/generated/credentials/JiraSoftwareServerApi.d.ts /** * displayName: Jira SW Server API * documentationUrl: jira */ interface JiraSoftwareServerApiCredentials { readonly "email"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly "domain"?: string; readonly __name: "jiraSoftwareServerApi"; } //#endregion //#region src/generated/credentials/JiraSoftwareServerPatApi.d.ts /** * displayName: Jira SW Server (PAT) API * documentationUrl: jira */ interface JiraSoftwareServerPatApiCredentials { /** Type options: {"password":true} */ readonly "personalAccessToken"?: string; readonly "domain"?: string; readonly __name: "jiraSoftwareServerPatApi"; } //#endregion //#region src/generated/credentials/JotFormApi.d.ts /** * displayName: JotForm API * documentationUrl: jotform */ interface JotFormApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** * The API domain to use. Use "eu-api.jotform.com" if your account is in based in Europe. * Default: "api.jotform.com" */ readonly "apiDomain"?: "api.jotform.com" | "eu-api.jotform.com" | "hipaa-api.jotform.com"; readonly __name: "jotFormApi"; } //#endregion //#region src/generated/credentials/JwtAuth.d.ts /** * displayName: JWT Auth * documentationUrl: jwt */ interface JwtAuthCredentials { /** * Choose either the secret passphrase or PEM encoded public keys * Default: "passphrase" */ readonly "keyType"?: "passphrase" | "pemKey"; /** Type options: {"password":true} */ readonly "secret"?: string; /** Type options: {"password":true} */ readonly "privateKey"?: string; /** Type options: {"password":true} */ readonly "publicKey"?: string; /** Default: "HS256" */ readonly "algorithm"?: "HS256" | "HS384" | "HS512" | "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "PS256" | "PS384" | "PS512" | "none"; readonly __name: "jwtAuth"; } //#endregion //#region src/generated/credentials/Kafka.d.ts /** * displayName: Kafka * documentationUrl: kafka */ interface KafkaCredentials { readonly "clientId"?: string; readonly "brokers"?: string; /** Default: true */ readonly "ssl"?: boolean; readonly "authentication"?: boolean; /** Optional username if authenticated is required */ readonly "username"?: string; /** * Optional password if authenticated is required * Type options: {"password":true} */ readonly "password"?: string; /** Default: "plain" */ readonly "saslMechanism"?: "plain" | "scram-sha-256" | "scram-sha-512"; readonly __name: "kafka"; } //#endregion //#region src/generated/credentials/KeapOAuth2Api.d.ts /** * displayName: Keap OAuth2 API * documentationUrl: keap */ interface KeapOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://signin.infusionsoft.com/app/oauth/authorize" */ readonly "authUrl"?: unknown; /** Default: "https://api.infusionsoft.com/token" */ readonly "accessTokenUrl"?: unknown; /** Default: "full" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "keapOAuth2Api"; } //#endregion //#region src/generated/credentials/KibanaApi.d.ts /** * displayName: Kibana API * documentationUrl: kibana */ interface KibanaApiCredentials { readonly "url": string; readonly "username": string; /** Type options: {"password":true} */ readonly "password": string; readonly __name: "kibanaApi"; } //#endregion //#region src/generated/credentials/KoBoToolboxApi.d.ts /** * displayName: KoBoToolbox API Token * documentationUrl: kobotoolbox */ interface KoBoToolboxApiCredentials { /** Default: "https://kf.kobotoolbox.org/" */ readonly "URL"?: string; /** Type options: {"password":true} */ readonly "token"?: string; readonly __name: "koBoToolboxApi"; } //#endregion //#region src/generated/credentials/Ldap.d.ts /** * displayName: LDAP * documentationUrl: ldap */ interface LdapCredentials { /** IP or domain of the LDAP server */ readonly "hostname": string; /** * Port used to connect to the LDAP server * Default: "389" */ readonly "port"?: string; /** Distinguished Name of the user to connect as */ readonly "bindDN"?: string; /** * Password of the user provided in the Binding DN field above * Type options: {"password":true} */ readonly "bindPassword"?: string; /** Default: "none" */ readonly "connectionSecurity"?: "none" | "tls" | "startTls"; /** Whether to connect even if SSL/TLS certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; /** Type options: {"alwaysOpenEditWindow":true} */ readonly "caCertificate"?: string; /** * Optional connection timeout in seconds * Default: 300 */ readonly "timeout"?: number; readonly __name: "ldap"; } //#endregion //#region src/generated/credentials/LemlistApi.d.ts /** * displayName: Lemlist API * documentationUrl: lemlist */ interface LemlistApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "lemlistApi"; } //#endregion //#region src/generated/credentials/LineNotifyOAuth2Api.d.ts /** * displayName: Line Notify OAuth2 API * documentationUrl: line */ interface LineNotifyOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://notify-bot.line.me/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://notify-bot.line.me/oauth/token" */ readonly "accessTokenUrl": unknown; /** Default: "notify" */ readonly "scope": unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "lineNotifyOAuth2Api"; } //#endregion //#region src/generated/credentials/LinearApi.d.ts /** * displayName: Linear API * documentationUrl: linear */ interface LinearApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** * The signing secret is used to verify the authenticity of webhook requests sent by Linear. * Type options: {"password":true} */ readonly "signingSecret"?: string; readonly __name: "linearApi"; } //#endregion //#region src/generated/credentials/LinearOAuth2Api.d.ts /** * displayName: Linear OAuth2 API * documentationUrl: linear */ interface LinearOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://linear.app/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://api.linear.app/oauth/token" */ readonly "accessTokenUrl": unknown; /** Default: "user" */ readonly "actor"?: "user" | "app"; /** Grants the "Admin" scope, Needed to create webhooks */ readonly "includeAdminScope"?: boolean; /** Default: "={{$self[\"includeAdminScope\"] ? \"read write issues:create comments:create admin\" : \"read write issues:create comments:create\"}}" */ readonly "scope": unknown; /** Default: "={{\"actor=\"+$self[\"actor\"]}}" */ readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; /** * The signing secret is used to verify the authenticity of webhook requests sent by Linear. * Type options: {"password":true} */ readonly "signingSecret"?: string; readonly __name: "linearOAuth2Api"; } //#endregion //#region src/generated/credentials/LingvaNexApi.d.ts /** * displayName: LingvaNex API * documentationUrl: lingvanex */ interface LingvaNexApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "lingvaNexApi"; } //#endregion //#region src/generated/credentials/LinkedInCommunityManagementOAuth2Api.d.ts /** * displayName: LinkedIn Community Management OAuth2 API * documentationUrl: linkedin */ interface LinkedInCommunityManagementOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://www.linkedin.com/oauth/v2/authorization" */ readonly "authUrl": unknown; /** Default: "https://www.linkedin.com/oauth/v2/accessToken" */ readonly "accessTokenUrl": unknown; /** Default: "w_member_social w_organization_social r_basicprofile" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "linkedInCommunityManagementOAuth2Api"; } //#endregion //#region src/generated/credentials/LinkedInOAuth2Api.d.ts /** * displayName: LinkedIn OAuth2 API * documentationUrl: linkedin */ interface LinkedInOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** * Whether to request permissions to post as an organization * Default: true */ readonly "organizationSupport"?: boolean; /** Default: "https://www.linkedin.com/oauth/v2/authorization" */ readonly "authUrl": unknown; /** Default: "https://www.linkedin.com/oauth/v2/accessToken" */ readonly "accessTokenUrl": unknown; /** * Standard scopes for posting on behalf of a user or organization. See this resource . * Default: "=w_member_social{{$self[\"organizationSupport\"] === true ? \",w_organization_social\": $self[\"legacy\"] === true ? \",r_liteprofile,r_emailaddress\" : \",profile,email,openid\"}}" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; /** * Whether to use the legacy API * Default: true */ readonly "legacy"?: boolean; readonly __name: "linkedInOAuth2Api"; } //#endregion //#region src/generated/credentials/LoneScaleApi.d.ts /** * displayName: LoneScale API * documentationUrl: lonescale */ interface LoneScaleApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "loneScaleApi"; } //#endregion //#region src/generated/credentials/Magento2Api.d.ts /** * displayName: Magento 2 API * documentationUrl: magento2 */ interface Magento2ApiCredentials { readonly "host"?: string; /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "magento2Api"; } //#endregion //#region src/generated/credentials/MailcheckApi.d.ts /** * displayName: Mailcheck API * documentationUrl: mailcheck */ interface MailcheckApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "mailcheckApi"; } //#endregion //#region src/generated/credentials/MailchimpApi.d.ts /** * displayName: Mailchimp API * documentationUrl: mailchimp */ interface MailchimpApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "mailchimpApi"; } //#endregion //#region src/generated/credentials/MailchimpOAuth2Api.d.ts /** * displayName: Mailchimp OAuth2 API * documentationUrl: mailchimp */ interface MailchimpOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://login.mailchimp.com/oauth2/authorize" */ readonly "authUrl": unknown; /** Default: "https://login.mailchimp.com/oauth2/token" */ readonly "accessTokenUrl": unknown; /** Default: "https://login.mailchimp.com/oauth2/metadata" */ readonly "metadataUrl": unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "mailchimpOAuth2Api"; } //#endregion //#region src/generated/credentials/MailerLiteApi.d.ts /** * displayName: Mailer Lite API * documentationUrl: mailerlite */ interface MailerLiteApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** * If the Classic API should be used, If this is your first time using this node this should be false. * Default: true */ readonly "classicApi"?: boolean; readonly __name: "mailerLiteApi"; } //#endregion //#region src/generated/credentials/MailgunApi.d.ts /** * displayName: Mailgun API * documentationUrl: mailgun */ interface MailgunApiCredentials { /** * The configured mailgun API domain * Default: "api.mailgun.net" */ readonly "apiDomain"?: "api.eu.mailgun.net" | "api.mailgun.net"; readonly "emailDomain"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "mailgunApi"; } //#endregion //#region src/generated/credentials/MailjetEmailApi.d.ts /** * displayName: Mailjet Email API * documentationUrl: mailjet */ interface MailjetEmailApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** Type options: {"password":true} */ readonly "secretKey"?: string; /** Whether to allow to run the API call in a Sandbox mode, where all validations of the payload will be done without delivering the message */ readonly "sandboxMode"?: boolean; readonly __name: "mailjetEmailApi"; } //#endregion //#region src/generated/credentials/MailjetSmsApi.d.ts /** * displayName: Mailjet SMS API * documentationUrl: mailjet */ interface MailjetSmsApiCredentials { /** Type options: {"password":true} */ readonly "token"?: string; readonly __name: "mailjetSmsApi"; } //#endregion //#region src/generated/credentials/MalcoreApi.d.ts /** * displayName: Malcore API * documentationUrl: malcore */ interface MalcoreApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "malcoreApi"; } //#endregion //#region src/generated/credentials/MandrillApi.d.ts /** * displayName: Mandrill API * documentationUrl: mandrill */ interface MandrillApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "mandrillApi"; } //#endregion //#region src/generated/credentials/MarketstackApi.d.ts /** * displayName: Marketstack API * documentationUrl: marketstack */ interface MarketstackApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** Whether to use HTTPS (paid plans only) */ readonly "useHttps"?: boolean; readonly __name: "marketstackApi"; } //#endregion //#region src/generated/credentials/MatrixApi.d.ts /** * displayName: Matrix API * documentationUrl: matrix */ interface MatrixApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; /** Default: "https://matrix-client.matrix.org" */ readonly "homeserverUrl"?: string; readonly __name: "matrixApi"; } //#endregion //#region src/generated/credentials/MattermostApi.d.ts /** * displayName: Mattermost API * documentationUrl: mattermost */ interface MattermostApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly "baseUrl"?: string; /** Whether to connect even if SSL certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; readonly __name: "mattermostApi"; } //#endregion //#region src/generated/credentials/MauticApi.d.ts /** * displayName: Mautic API * documentationUrl: mautic */ interface MauticApiCredentials { readonly "url"?: string; readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly __name: "mauticApi"; } //#endregion //#region src/generated/credentials/MauticOAuth2Api.d.ts /** * displayName: Mautic OAuth2 API * documentationUrl: mautic */ interface MauticOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; readonly "url"?: string; /** Default: "={{$self[\"url\"].endsWith(\"/\") ? $self[\"url\"].slice(0, -1) : $self[\"url\"]}}/oauth/v2/authorize" */ readonly "authUrl": unknown; /** Default: "={{$self[\"url\"].endsWith(\"/\") ? $self[\"url\"].slice(0, -1) : $self[\"url\"]}}/oauth/v2/token" */ readonly "accessTokenUrl": unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "mauticOAuth2Api"; } //#endregion //#region src/generated/credentials/MediumApi.d.ts /** * displayName: Medium API * documentationUrl: medium */ interface MediumApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "mediumApi"; } //#endregion //#region src/generated/credentials/MediumOAuth2Api.d.ts /** * displayName: Medium OAuth2 API * documentationUrl: medium */ interface MediumOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://medium.com/m/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://medium.com/v1/tokens" */ readonly "accessTokenUrl": unknown; /** Default: "basicProfile,publishPost,listPublications" */ readonly "scope"?: unknown; readonly "clientId": string; /** Type options: {"password":true} */ readonly "clientSecret": string; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "mediumOAuth2Api"; } //#endregion //#region src/generated/credentials/MessageBirdApi.d.ts /** * displayName: MessageBird API * documentationUrl: messagebird */ interface MessageBirdApiCredentials { /** Type options: {"password":true} */ readonly "accessKey"?: string; readonly __name: "messageBirdApi"; } //#endregion //#region src/generated/credentials/MetabaseApi.d.ts /** * displayName: Metabase API * documentationUrl: metabase */ interface MetabaseApiCredentials { /** Type options: {"expirable":true} */ readonly "sessionToken"?: unknown; readonly "url"?: string; readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly __name: "metabaseApi"; } //#endregion //#region src/generated/credentials/MicrosoftAzureCosmosDbSharedKeyApi.d.ts /** * displayName: Microsoft Azure Cosmos DB API * documentationUrl: azurecosmosdb */ interface MicrosoftAzureCosmosDbSharedKeyApiCredentials { /** Account name */ readonly "account": string; /** * Account key * Type options: {"password":true} */ readonly "key": string; /** Database name */ readonly "database": string; readonly __name: "microsoftAzureCosmosDbSharedKeyApi"; } //#endregion //#region src/generated/credentials/MicrosoftAzureMonitorOAuth2Api.d.ts /** * displayName: Microsoft Azure Monitor OAuth2 API * documentationUrl: microsoftazuremonitor */ interface MicrosoftAzureMonitorOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: "authorizationCode" | "clientCredentials"; readonly "tenantId": string; /** Default: "https://api.loganalytics.azure.com" */ readonly "resource"?: "https://api.loganalytics.azure.com" | "https://api.loganalytics.io" | "https://monitor.azure.com" | "https://management.azure.com"; /** Default: "=https://login.microsoftonline.com/{{$self[\"tenantId\"]}}/oauth2/authorize" */ readonly "authUrl"?: unknown; /** Default: "=https://login.microsoftonline.com/{{$self[\"tenantId\"]}}/oauth2/{{$self[\"grantType\"] === \"clientCredentials\" ? \"v2.0/\" : \"\"}}token" */ readonly "accessTokenUrl"?: unknown; /** Default: "={{$self[\"grantType\"] === \"clientCredentials\" ? \"\" : \"resource=\" + $self[\"resource\"]}}" */ readonly "authQueryParameters"?: unknown; /** Default: "={{$self[\"grantType\"] === \"clientCredentials\" ? $self[\"resource\"] + \"/.default\" : \"\"}}" */ readonly "scope"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "microsoftAzureMonitorOAuth2Api"; } //#endregion //#region src/generated/credentials/MicrosoftDynamicsOAuth2Api.d.ts /** * displayName: Microsoft Dynamics OAuth2 API * documentationUrl: microsoft */ interface MicrosoftDynamicsOAuth2ApiCredentials { readonly "subdomain": string; /** Default: "crm.dynamics.com" */ readonly "region"?: "crm5.dynamics.com" | "crm6.dynamics.com" | "crm3.dynamics.com" | "crm.dynamics.cn" | "crm4.dynamics.com" | "crm12.dynamics.com" | "crm16.dynamics.com" | "crm8.dynamics.com" | "crm7.dynamics.com" | "crm.microsoftdynamics.de" | "crm.dynamics.com" | "crm9.dynamics.com" | "crm14.dynamics.com" | "crm2.dynamics.com" | "crm17.dynamics.com" | "crm15.dynamics.com" | "crm11.dynamics.com" | "crm.microsoftdynamics.us"; /** Default: "=openid offline_access https://{{$self.subdomain}}.{{$self.region}}/.default" */ readonly "scope"?: unknown; /** Default: "https://graph.microsoft.com" */ readonly "graphApiBaseUrl"?: unknown; readonly __name: "microsoftDynamicsOAuth2Api"; } //#endregion //#region src/generated/credentials/MicrosoftEntraOAuth2Api.d.ts /** * displayName: Microsoft Entra ID (Azure Active Directory) API * documentationUrl: microsoftentra */ interface MicrosoftEntraOAuth2ApiCredentials { /** Define custom scopes */ readonly "customScopes"?: boolean; readonly "customScopesNotice"?: string; /** * Scopes that should be enabled * Default: "openid offline_access AccessReview.ReadWrite.All Directory.ReadWrite.All NetworkAccessPolicy.ReadWrite.All DelegatedAdminRelationship.ReadWrite.All EntitlementManagement.ReadWrite.All User.ReadWrite.All Directory.AccessAsUser.All Sites.FullControl.All GroupMember.ReadWrite.All" */ readonly "enabledScopes"?: string; /** Default: "={{$self[\"customScopes\"] ? $self[\"enabledScopes\"] : \"openid offline_access AccessReview.ReadWrite.All Directory.ReadWrite.All NetworkAccessPolicy.ReadWrite.All DelegatedAdminRelationship.ReadWrite.All EntitlementManagement.ReadWrite.All User.ReadWrite.All Directory.AccessAsUser.All Sites.FullControl.All GroupMember.ReadWrite.All\"}}" */ readonly "scope"?: unknown; readonly __name: "microsoftEntraOAuth2Api"; } //#endregion //#region src/generated/credentials/MicrosoftExcelOAuth2Api.d.ts /** * displayName: Microsoft Excel OAuth2 API * documentationUrl: microsoft */ interface MicrosoftExcelOAuth2ApiCredentials { /** Define custom scopes */ readonly "customScopes"?: boolean; readonly "customScopesNotice"?: string; /** * Scopes that should be enabled * Default: "openid offline_access Files.ReadWrite" */ readonly "enabledScopes"?: string; /** Default: "={{$self[\"customScopes\"] ? $self[\"enabledScopes\"] : \"openid offline_access Files.ReadWrite\"}}" */ readonly "scope"?: unknown; readonly __name: "microsoftExcelOAuth2Api"; } //#endregion //#region src/generated/credentials/MicrosoftGraphSecurityOAuth2Api.d.ts /** * displayName: Microsoft Graph Security OAuth2 API * documentationUrl: microsoft */ interface MicrosoftGraphSecurityOAuth2ApiCredentials { /** Default: "SecurityEvents.ReadWrite.All offline_access" */ readonly "scope"?: unknown; readonly __name: "microsoftGraphSecurityOAuth2Api"; } //#endregion //#region src/generated/credentials/MicrosoftOAuth2Api.d.ts /** * displayName: Microsoft OAuth2 API * documentationUrl: microsoft */ interface MicrosoftOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://login.microsoftonline.com/common/oauth2/v2.0/authorize" */ readonly "authUrl"?: string; /** Default: "https://login.microsoftonline.com/common/oauth2/v2.0/token" */ readonly "accessTokenUrl"?: string; /** Default: "response_mode=query" */ readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; /** * Select the endpoint for your Microsoft cloud environment. * Default: "https://graph.microsoft.com" */ readonly "graphApiBaseUrl"?: "https://graph.microsoft.com" | "https://graph.microsoft.us" | "https://dod-graph.microsoft.us" | "https://microsoftgraph.chinacloudapi.cn"; readonly __name: "microsoftOAuth2Api"; } //#endregion //#region src/generated/credentials/MicrosoftOneDriveOAuth2Api.d.ts /** * displayName: Microsoft Drive OAuth2 API * documentationUrl: microsoft */ interface MicrosoftOneDriveOAuth2ApiCredentials { /** Default: "openid offline_access Files.ReadWrite.All" */ readonly "scope"?: unknown; readonly __name: "microsoftOneDriveOAuth2Api"; } //#endregion //#region src/generated/credentials/MicrosoftOutlookOAuth2Api.d.ts /** * displayName: Microsoft Outlook OAuth2 API * documentationUrl: microsoft */ interface MicrosoftOutlookOAuth2ApiCredentials { /** Default: "openid offline_access Contacts.Read Contacts.ReadWrite Calendars.Read Calendars.Read.Shared Calendars.ReadWrite Mail.ReadWrite Mail.ReadWrite.Shared Mail.Send Mail.Send.Shared MailboxSettings.Read" */ readonly "scope"?: unknown; readonly "useShared"?: boolean; /** Target user's UPN or ID */ readonly "userPrincipalName"?: string; readonly __name: "microsoftOutlookOAuth2Api"; } //#endregion //#region src/generated/credentials/MicrosoftSharePointOAuth2Api.d.ts /** * displayName: Microsoft SharePoint OAuth2 API * documentationUrl: microsoft */ interface MicrosoftSharePointOAuth2ApiCredentials { /** Default: "=openid offline_access https://{{$self.subdomain}}.sharepoint.com/.default" */ readonly "scope"?: unknown; readonly "subdomain"?: string; /** Default: "https://graph.microsoft.com" */ readonly "graphApiBaseUrl"?: unknown; readonly __name: "microsoftSharePointOAuth2Api"; } //#endregion //#region src/generated/credentials/MicrosoftSql.d.ts /** * displayName: Microsoft SQL * documentationUrl: microsoftsql */ interface MicrosoftSqlCredentials { /** Default: "localhost" */ readonly "server"?: string; /** Default: "master" */ readonly "database"?: string; /** Default: "sa" */ readonly "user"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** Default: 1433 */ readonly "port"?: number; readonly "domain"?: string; /** Default: true */ readonly "tls"?: boolean; /** Whether to connect even if SSL certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; /** * Connection timeout in ms * Default: 15000 */ readonly "connectTimeout"?: number; /** * Request timeout in ms * Default: 15000 */ readonly "requestTimeout"?: number; /** * The version of TDS to use. If server doesn't support specified version, negotiated version is used instead. * Default: "7_4" */ readonly "tdsVersion"?: "7_4" | "7_3_B" | "7_3_A" | "7_2" | "7_1"; readonly __name: "microsoftSql"; } //#endregion //#region src/generated/credentials/MicrosoftTeamsOAuth2Api.d.ts /** * displayName: Microsoft Teams OAuth2 API * documentationUrl: microsoft */ interface MicrosoftTeamsOAuth2ApiCredentials { /** Define custom scopes */ readonly "customScopes"?: boolean; readonly "customScopesNotice"?: string; /** * Scopes that should be enabled * Default: "openid offline_access User.Read.All Group.ReadWrite.All Chat.ReadWrite ChannelMessage.Read.All" */ readonly "enabledScopes"?: string; /** Default: "={{$self[\"customScopes\"] ? $self[\"enabledScopes\"] : \"openid offline_access User.Read.All Group.ReadWrite.All Chat.ReadWrite ChannelMessage.Read.All\"}}" */ readonly "scope"?: unknown; readonly "notice"?: string; readonly __name: "microsoftTeamsOAuth2Api"; } //#endregion //#region src/generated/credentials/MicrosoftToDoOAuth2Api.d.ts /** * displayName: Microsoft To Do OAuth2 API * documentationUrl: microsoft */ interface MicrosoftToDoOAuth2ApiCredentials { /** Default: "openid offline_access Tasks.ReadWrite" */ readonly "scope"?: unknown; readonly __name: "microsoftToDoOAuth2Api"; } //#endregion //#region src/generated/credentials/MindeeInvoiceApi.d.ts /** * displayName: Mindee Invoice API * documentationUrl: mindee */ interface MindeeInvoiceApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "mindeeInvoiceApi"; } //#endregion //#region src/generated/credentials/MindeeReceiptApi.d.ts /** * displayName: Mindee Receipt API * documentationUrl: mindee */ interface MindeeReceiptApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "mindeeReceiptApi"; } //#endregion //#region src/generated/credentials/MiroOAuth2Api.d.ts /** * displayName: Miro OAuth2 API * documentationUrl: miro */ interface MiroOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://miro.com/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://api.miro.com/v1/oauth/token" */ readonly "accessTokenUrl": unknown; readonly "scope": unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "miroOAuth2Api"; } //#endregion //#region src/generated/credentials/MispApi.d.ts /** * displayName: MISP API * documentationUrl: misp */ interface MispApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly "baseUrl"?: string; /** Whether to connect even if SSL certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; readonly __name: "mispApi"; } //#endregion //#region src/generated/credentials/MistApi.d.ts /** * displayName: Mist API * documentationUrl: mist */ interface MistApiCredentials { /** Type options: {"password":true} */ readonly "token": string; /** Default: "eu" */ readonly "region"?: "eu" | "global"; readonly __name: "mistApi"; } //#endregion //#region src/generated/credentials/MoceanApi.d.ts /** * displayName: Mocean Api * documentationUrl: mocean */ interface MoceanApiCredentials { /** Type options: {"password":true} */ readonly "mocean-api-key"?: string; /** Type options: {"password":true} */ readonly "mocean-api-secret"?: string; readonly __name: "moceanApi"; } //#endregion //#region src/generated/credentials/MondayComApi.d.ts /** * displayName: Monday.com API * documentationUrl: mondaycom */ interface MondayComApiCredentials { /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly __name: "mondayComApi"; } //#endregion //#region src/generated/credentials/MondayComOAuth2Api.d.ts /** * displayName: Monday.com OAuth2 API * documentationUrl: mondaycom */ interface MondayComOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://auth.monday.com/oauth2/authorize" */ readonly "authUrl": unknown; /** Default: "https://auth.monday.com/oauth2/token" */ readonly "accessTokenUrl": unknown; /** Default: "boards:write boards:read" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "mondayComOAuth2Api"; } //#endregion //#region src/generated/credentials/MongoDb.d.ts /** * displayName: MongoDB * documentationUrl: mongodb */ interface MongoDbCredentials { /** Default: "values" */ readonly "configurationType"?: "connectionString" | "values"; /** * If provided, the value here will be used as a MongoDB connection string, and the MongoDB credentials will be ignored * Type options: {"password":true} */ readonly "connectionString"?: string; /** Default: "localhost" */ readonly "host"?: string; /** Note: the database should still be provided even if using an override connection string */ readonly "database"?: string; readonly "user"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** Default: 27017 */ readonly "port"?: number; readonly "tls"?: boolean; /** Type options: {"password":true} */ readonly "ca"?: string; /** Type options: {"password":true} */ readonly "cert"?: string; /** Type options: {"password":true} */ readonly "key"?: string; /** Type options: {"password":true} */ readonly "passphrase"?: string; readonly __name: "mongoDb"; } //#endregion //#region src/generated/credentials/MonicaCrmApi.d.ts /** * displayName: Monica CRM API * documentationUrl: monicacrm */ interface MonicaCrmApiCredentials { /** Default: "cloudHosted" */ readonly "environment"?: "cloudHosted" | "selfHosted"; readonly "domain"?: string; /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly __name: "monicaCrmApi"; } //#endregion //#region src/generated/credentials/Mqtt.d.ts /** * displayName: MQTT * documentationUrl: mqtt */ interface MqttCredentials { /** Default: "mqtt" */ readonly "protocol"?: "mqtt" | "mqtts" | "ws"; readonly "host"?: string; /** Default: 1883 */ readonly "port"?: number; readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** * Whether to use clean session - set to false to receive QoS 1 and 2 messages while offline * Default: true */ readonly "clean"?: boolean; /** Client ID. If left empty, one is autogenerated for you. */ readonly "clientId"?: string; readonly "ssl"?: boolean; /** * Whether to use passwordless connection with certificates (SASL mechanism EXTERNAL) * Default: true */ readonly "passwordless"?: boolean; /** * SSL CA Certificates to use * Type options: {"password":true} */ readonly "ca"?: string; /** Whether to validate Certificate */ readonly "rejectUnauthorized"?: boolean; /** * SSL Client Certificate to use * Type options: {"password":true} */ readonly "cert"?: string; /** * SSL Client Key to use * Type options: {"password":true} */ readonly "key"?: string; readonly __name: "mqtt"; } //#endregion //#region src/generated/credentials/Msg91Api.d.ts /** * displayName: Msg91 Api * documentationUrl: msg91 */ interface Msg91ApiCredentials { /** Type options: {"password":true} */ readonly "authkey"?: string; readonly __name: "msg91Api"; } //#endregion //#region src/generated/credentials/MySql.d.ts /** * displayName: MySQL * documentationUrl: mysql */ interface MySqlCredentials { /** Default: "localhost" */ readonly "host"?: string; /** Default: "mysql" */ readonly "database"?: string; /** Default: "mysql" */ readonly "user"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** Default: 3306 */ readonly "port"?: number; /** * The milliseconds before a timeout occurs during the initial connection to the MySQL server * Default: 10000 */ readonly "connectTimeout"?: number; readonly "ssl"?: boolean; /** Type options: {"password":true} */ readonly "caCertificate"?: string; /** Type options: {"password":true} */ readonly "clientPrivateKey"?: string; /** Type options: {"password":true} */ readonly "clientCertificate"?: string; readonly "sshTunnel"?: boolean; /** Default: "password" */ readonly "sshAuthenticateWith"?: "password" | "privateKey"; /** Default: "localhost" */ readonly "sshHost"?: string; /** Default: 22 */ readonly "sshPort"?: number; /** Default: "root" */ readonly "sshUser"?: string; /** Type options: {"password":true} */ readonly "sshPassword"?: string; /** Type options: {"rows":4,"password":true} */ readonly "privateKey"?: string; /** Passphrase used to create the key, if no passphrase was used leave empty */ readonly "passphrase"?: string; readonly __name: "mySql"; } //#endregion //#region src/generated/credentials/N8nApi.d.ts /** * displayName: n8n API * documentationUrl: https://docs.n8n.io/api/authentication/ */ interface N8nApiCredentials { /** * The API key for the n8n instance * Type options: {"password":true} */ readonly "apiKey"?: string; /** The API URL of the n8n instance */ readonly "baseUrl"?: string; readonly __name: "n8nApi"; } //#endregion //#region src/generated/credentials/NasaApi.d.ts /** * displayName: NASA API * documentationUrl: nasa */ interface NasaApiCredentials { /** Type options: {"password":true} */ readonly "api_key"?: string; readonly __name: "nasaApi"; } //#endregion //#region src/generated/credentials/NetlifyApi.d.ts /** * displayName: Netlify API * documentationUrl: netlify */ interface NetlifyApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "netlifyApi"; } //#endregion //#region src/generated/credentials/NetscalerAdcApi.d.ts /** * displayName: Netscaler ADC API * documentationUrl: netscaleradc */ interface NetscalerAdcApiCredentials { readonly "url": string; readonly "username": string; /** Type options: {"password":true} */ readonly "password": string; readonly __name: "citrixAdcApi"; } //#endregion //#region src/generated/credentials/NextCloudApi.d.ts /** * displayName: NextCloud API * documentationUrl: nextcloud */ interface NextCloudApiCredentials { readonly "webDavUrl"?: string; readonly "user"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly __name: "nextCloudApi"; } //#endregion //#region src/generated/credentials/NextCloudOAuth2Api.d.ts /** * displayName: NextCloud OAuth2 API * documentationUrl: nextcloud */ interface NextCloudOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; readonly "webDavUrl"?: string; /** Default: "https://nextcloud.example.com/apps/oauth2/authorize" */ readonly "authUrl": string; /** Default: "https://nextcloud.example.com/apps/oauth2/api/v1/token" */ readonly "accessTokenUrl": string; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "nextCloudOAuth2Api"; } //#endregion //#region src/generated/credentials/NocoDb.d.ts /** * displayName: NocoDB * documentationUrl: nocodb */ interface NocoDbCredentials { /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly "host"?: string; readonly __name: "nocoDb"; } //#endregion //#region src/generated/credentials/NocoDbApiToken.d.ts /** * displayName: NocoDB API Token * documentationUrl: nocodb */ interface NocoDbApiTokenCredentials { /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly "host"?: string; readonly __name: "nocoDbApiToken"; } //#endregion //#region src/generated/credentials/NotionApi.d.ts /** * displayName: Notion API * documentationUrl: notion */ interface NotionApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "notionApi"; } //#endregion //#region src/generated/credentials/NotionOAuth2Api.d.ts /** * displayName: Notion OAuth2 API * documentationUrl: notion */ interface NotionOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://api.notion.com/v1/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://api.notion.com/v1/oauth/token" */ readonly "accessTokenUrl": unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "notionOAuth2Api"; } //#endregion //#region src/generated/credentials/NpmApi.d.ts /** * displayName: Npm API * documentationUrl: npm */ interface NpmApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; /** Default: "https://registry.npmjs.org" */ readonly "registryUrl"?: string; readonly __name: "npmApi"; } //#endregion //#region src/generated/credentials/OAuth1Api.d.ts /** * displayName: OAuth1 API * documentationUrl: httprequest */ interface OAuth1ApiCredentials { readonly "authUrl": string; readonly "accessTokenUrl": string; /** Type options: {"password":true} */ readonly "consumerKey": string; /** Type options: {"password":true} */ readonly "consumerSecret": string; readonly "requestTokenUrl": string; /** Default: "HMAC-SHA1" */ readonly "signatureMethod": "HMAC-SHA1" | "HMAC-SHA256" | "HMAC-SHA512"; readonly __name: "oAuth1Api"; } //#endregion //#region src/generated/credentials/OAuth2Api.d.ts /** * displayName: OAuth2 API * documentationUrl: httprequest */ interface OAuth2ApiCredentials { readonly "useDynamicClientRegistration"?: unknown; /** Default: "authorizationCode" */ readonly "grantType"?: "authorizationCode" | "clientCredentials" | "pkce"; readonly "serverUrl": string; readonly "authUrl": string; readonly "accessTokenUrl": string; readonly "clientId": string; /** Type options: {"password":true} */ readonly "clientSecret": string; readonly "scope"?: string; /** For some services additional query parameters have to be set which can be defined here */ readonly "authQueryParameters"?: string; /** Default: "header" */ readonly "authentication"?: "body" | "header"; readonly "sendAdditionalBodyProperties"?: boolean; /** Type options: {"rows":5} */ readonly "additionalBodyProperties"?: string; readonly "ignoreSSLIssues"?: boolean; /** * HTTP status code that indicates the token has expired. Some APIs return 403 instead of 401. * Default: 401 */ readonly "tokenExpiredStatusCode"?: number; /** Whether the IdP returns tokens encrypted as JWE to the public key at this instance’s JWKS endpoint. The response must contain at least one JWE-encrypted token (access or ID token); fully plaintext responses are rejected. The field is hidden by the server unless the OAuth2 JWE feature is enabled. */ readonly "jweEnabled"?: boolean; readonly "jwksUriNotice"?: string; readonly __name: "oAuth2Api"; } //#endregion //#region src/generated/credentials/OdooApi.d.ts /** * displayName: Odoo API * documentationUrl: odoo */ interface OdooApiCredentials { readonly "url": string; readonly "username": string; /** Type options: {"password":true} */ readonly "password": string; readonly "db"?: string; readonly __name: "odooApi"; } //#endregion //#region src/generated/credentials/OktaApi.d.ts /** * displayName: Okta API * documentationUrl: okta */ interface OktaApiCredentials { readonly "url": string; /** * Secure Session Web Service Access Token * Type options: {"password":true} */ readonly "accessToken": string; readonly __name: "oktaApi"; } //#endregion //#region src/generated/credentials/OneSimpleApi.d.ts /** * displayName: One Simple API * documentationUrl: onesimpleapi */ interface OneSimpleApiCredentials { /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly __name: "oneSimpleApi"; } //#endregion //#region src/generated/credentials/OnfleetApi.d.ts /** * displayName: Onfleet API * documentationUrl: onfleet */ interface OnfleetApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "onfleetApi"; } //#endregion //#region src/generated/credentials/OpenAiApi.d.ts /** * displayName: OpenAI * documentationUrl: openai */ interface OpenAiApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; /** For users who belong to multiple organizations, you can set which organization is used for an API request. Usage from these API requests will count against the specified organization's subscription quota. */ readonly "organizationId"?: string; /** * Override the default base URL for the API * Default: "https://api.openai.com/v1" */ readonly "url"?: string; readonly "header"?: boolean; readonly "headerName"?: string; /** Type options: {"password":true} */ readonly "headerValue"?: string; readonly __name: "openAiApi"; } //#endregion //#region src/generated/credentials/OpenCTIApi.d.ts /** * displayName: OpenCTI API * documentationUrl: opencti */ interface OpenCTIApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "openCtiApi"; } //#endregion //#region src/generated/credentials/OpenWeatherMapApi.d.ts /** * displayName: OpenWeatherMap API * documentationUrl: openweathermap */ interface OpenWeatherMapApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "openWeatherMapApi"; } //#endregion //#region src/generated/credentials/OracleDBApi.d.ts /** * displayName: Oracle Database Credentials API * documentationUrl: oracledb */ interface OracleDBApiCredentials { readonly "user"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** * The Oracle database instance to connect to * Default: "localhost/orcl" */ readonly "connectionString"?: string; /** The privilege to use when connecting to the database */ readonly "privilege"?: 32768 | 131072 | 2 | 262144 | 524288 | 4 | 8 | 1048576; /** Define type of connection with database */ readonly "useThickMode"?: boolean; /** SSL connection with database */ readonly "useSSL"?: boolean; /** * The password to decrypt the Privacy Enhanced Mail (PEM)-encoded private certificate, if it is encrypted * Type options: {"password":true} */ readonly "walletPassword"?: string; /** The security credentials required to establish a mutual TLS (mTLS) connection to Oracle Database */ readonly "walletContent"?: string; /** The distinguished name (DN) that should be matched with the certificate DN */ readonly "sslServerCertDN"?: string; /** * Whether the server certificate DN should be matched in addition to the regular certificate verification that is performed * Default: true */ readonly "sslServerDNMatch"?: boolean; /** Whether the secure DN matching behavior which checks both the listener and server certificates has to be performed */ readonly "sslAllowWeakDNMatch"?: boolean; /** The number of connections established to the database when a pool is created */ readonly "poolMin"?: number; /** * The maximum number of connections to which a connection pool can grow * Default: 4 */ readonly "poolMax"?: number; /** * The number of connections that are opened whenever a connection request exceeds the number of currently open connections * Default: 1 */ readonly "poolIncrement"?: number; /** The number of seconds that a pooled connection can exist in a pool after first being created */ readonly "maxLifetimeSession"?: number; /** * The number of seconds after which idle connections (unused in the pool) may be terminated * Default: 60 */ readonly "poolTimeout"?: number; /** DRCP/PRCP Connection Class */ readonly "connectionClass"?: string; /** The timeout duration in seconds for an application to establish an Oracle Net connection */ readonly "connectTimeout"?: number; /** * The maximum number of seconds to wait to establish a connection to the database host * Default: 20 */ readonly "transportConnectTimeout"?: number; /** * The number of minutes between the sending of keepalive probes * Type options: {"minValue":0} */ readonly "expireTime"?: number; readonly __name: "oracleDBApi"; } //#endregion //#region src/generated/credentials/OrbitApi.d.ts /** * displayName: Orbit API * documentationUrl: orbit */ interface OrbitApiCredentials { readonly "deprecated"?: string; /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "orbitApi"; } //#endregion //#region src/generated/credentials/OuraApi.d.ts /** * displayName: Oura API * documentationUrl: oura */ interface OuraApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "ouraApi"; } //#endregion //#region src/generated/credentials/PaddleApi.d.ts /** * displayName: Paddle API * documentationUrl: paddle */ interface PaddleApiCredentials { readonly "vendorAuthCode"?: string; readonly "vendorId"?: string; readonly "sandbox"?: boolean; readonly __name: "paddleApi"; } //#endregion //#region src/generated/credentials/PagerDutyApi.d.ts /** * displayName: PagerDuty API * documentationUrl: pagerduty */ interface PagerDutyApiCredentials { /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly __name: "pagerDutyApi"; } //#endregion //#region src/generated/credentials/PagerDutyOAuth2Api.d.ts /** * displayName: PagerDuty OAuth2 API * documentationUrl: pagerduty */ interface PagerDutyOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://app.pagerduty.com/oauth/authorize" */ readonly "authUrl"?: unknown; /** Default: "https://app.pagerduty.com/oauth/token" */ readonly "accessTokenUrl"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "write" */ readonly "scope"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "pagerDutyOAuth2Api"; } //#endregion //#region src/generated/credentials/PayPalApi.d.ts /** * displayName: PayPal API * documentationUrl: paypal */ interface PayPalApiCredentials { readonly "clientId"?: string; /** Type options: {"password":true} */ readonly "secret"?: string; /** Default: "live" */ readonly "env"?: "sanbox" | "live"; readonly __name: "payPalApi"; } //#endregion //#region src/generated/credentials/PeekalinkApi.d.ts /** * displayName: Peekalink API * documentationUrl: peekalink */ interface PeekalinkApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "peekalinkApi"; } //#endregion //#region src/generated/credentials/PerplexityApi.d.ts /** * displayName: Perplexity API * documentationUrl: perplexity */ interface PerplexityApiCredentials { /** * Your Perplexity API key. Get it from your Perplexity account. * Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "perplexityApi"; } //#endregion //#region src/generated/credentials/PhantombusterApi.d.ts /** * displayName: Phantombuster API * documentationUrl: phantombuster */ interface PhantombusterApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "phantombusterApi"; } //#endregion //#region src/generated/credentials/PhilipsHueOAuth2Api.d.ts /** * displayName: PhilipHue OAuth2 API * documentationUrl: philipshue */ interface PhilipsHueOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; readonly "appId"?: string; /** Default: "https://api.meethue.com/v2/oauth2/authorize" */ readonly "authUrl"?: unknown; /** Default: "https://api.meethue.com/v2/oauth2/token" */ readonly "accessTokenUrl"?: unknown; /** Default: "={{\"appid=\"+$self[\"appId\"]}}" */ readonly "authQueryParameters"?: unknown; readonly "scope"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "philipsHueOAuth2Api"; } //#endregion //#region src/generated/credentials/PipedriveApi.d.ts /** * displayName: Pipedrive API * documentationUrl: pipedrive */ interface PipedriveApiCredentials { /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly __name: "pipedriveApi"; } //#endregion //#region src/generated/credentials/PipedriveOAuth2Api.d.ts /** * displayName: Pipedrive OAuth2 API * documentationUrl: pipedrive */ interface PipedriveOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://oauth.pipedrive.com/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://oauth.pipedrive.com/oauth/token" */ readonly "accessTokenUrl": unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "pipedriveOAuth2Api"; } //#endregion //#region src/generated/credentials/PlivoApi.d.ts /** * displayName: Plivo API * documentationUrl: plivo */ interface PlivoApiCredentials { readonly "authId"?: string; /** Type options: {"password":true} */ readonly "authToken"?: string; readonly __name: "plivoApi"; } //#endregion //#region src/generated/credentials/PostHogApi.d.ts /** * displayName: PostHog API * documentationUrl: posthog */ interface PostHogApiCredentials { /** Default: "https://app.posthog.com" */ readonly "url"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "postHogApi"; } //#endregion //#region src/generated/credentials/Postgres.d.ts /** * displayName: Postgres * documentationUrl: postgres */ interface PostgresCredentials { /** Default: "localhost" */ readonly "host"?: string; /** Default: "postgres" */ readonly "database"?: string; /** Default: "postgres" */ readonly "user"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** * Make sure this value times the number of workers you have is lower than the maximum number of connections your postgres instance allows. * Default: 100 */ readonly "maxConnections"?: number; /** Whether to connect even if SSL certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; /** Default: "disable" */ readonly "ssl"?: "allow" | "disable" | "require"; /** Default: 5432 */ readonly "port"?: number; readonly "sshTunnel"?: boolean; /** Default: "password" */ readonly "sshAuthenticateWith"?: "password" | "privateKey"; /** Default: "localhost" */ readonly "sshHost"?: string; /** Default: 22 */ readonly "sshPort"?: number; /** Default: "root" */ readonly "sshUser"?: string; /** Type options: {"password":true} */ readonly "sshPassword"?: string; /** Type options: {"rows":4,"password":true} */ readonly "privateKey"?: string; /** Passphrase used to create the key, if no passphrase was used leave empty */ readonly "passphrase"?: string; readonly __name: "postgres"; } //#endregion //#region src/generated/credentials/PostmarkApi.d.ts /** * displayName: Postmark API * documentationUrl: postmark */ interface PostmarkApiCredentials { /** Type options: {"password":true} */ readonly "serverToken"?: string; readonly __name: "postmarkApi"; } //#endregion //#region src/generated/credentials/ProfitWellApi.d.ts /** * displayName: ProfitWell API * documentationUrl: profitwell */ interface ProfitWellApiCredentials { /** * Your Private Token * Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "profitWellApi"; } //#endregion //#region src/generated/credentials/PushbulletOAuth2Api.d.ts /** * displayName: Pushbullet OAuth2 API * documentationUrl: pushbullet */ interface PushbulletOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://www.pushbullet.com/authorize" */ readonly "authUrl": unknown; /** Default: "https://api.pushbullet.com/oauth2/token" */ readonly "accessTokenUrl": unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "pushbulletOAuth2Api"; } //#endregion //#region src/generated/credentials/PushcutApi.d.ts /** * displayName: Pushcut API * documentationUrl: pushcut */ interface PushcutApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "pushcutApi"; } //#endregion //#region src/generated/credentials/PushoverApi.d.ts /** * displayName: Pushover API * documentationUrl: pushover */ interface PushoverApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "pushoverApi"; } //#endregion //#region src/generated/credentials/QRadarApi.d.ts /** * displayName: QRadar API * documentationUrl: qradar */ interface QRadarApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "qRadarApi"; } //#endregion //#region src/generated/credentials/QualysApi.d.ts /** * displayName: Qualys API * documentationUrl: qualys */ interface QualysApiCredentials { readonly "username": string; /** Type options: {"password":true} */ readonly "password": string; /** * User description, like a user agent * Default: "n8n application" */ readonly "requestedWith"?: string; readonly __name: "qualysApi"; } //#endregion //#region src/generated/credentials/QuestDb.d.ts /** * displayName: QuestDB * documentationUrl: questdb */ interface QuestDbCredentials { /** Default: "localhost" */ readonly "host"?: string; /** Default: "qdb" */ readonly "database"?: string; /** Default: "admin" */ readonly "user"?: string; /** * Default: "quest" * Type options: {"password":true} */ readonly "password"?: string; /** Default: "disable" */ readonly "ssl"?: "allow" | "disable" | "require"; /** Default: 8812 */ readonly "port"?: number; readonly __name: "questDb"; } //#endregion //#region src/generated/credentials/QuickBaseApi.d.ts /** * displayName: Quick Base API * documentationUrl: quickbase */ interface QuickBaseApiCredentials { readonly "hostname": string; /** Type options: {"password":true} */ readonly "userToken": string; readonly __name: "quickbaseApi"; } //#endregion //#region src/generated/credentials/QuickBooksOAuth2Api.d.ts /** * displayName: QuickBooks Online OAuth2 API * documentationUrl: quickbooks */ interface QuickBooksOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://appcenter.intuit.com/connect/oauth2" */ readonly "authUrl"?: unknown; /** Default: "https://oauth.platform.intuit.com/oauth2/v1/tokens/bearer" */ readonly "accessTokenUrl"?: unknown; /** Default: "com.intuit.quickbooks.accounting" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; /** Default: "production" */ readonly "environment"?: "production" | "sandbox"; readonly __name: "quickBooksOAuth2Api"; } //#endregion //#region src/generated/credentials/RabbitMQ.d.ts /** * displayName: RabbitMQ * documentationUrl: rabbitmq */ interface RabbitMQCredentials { readonly "hostname"?: string; /** Default: 5672 */ readonly "port"?: number; readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** Default: "/" */ readonly "vhost"?: string; readonly "ssl"?: boolean; /** * Whether to use passwordless connection with certificates (SASL mechanism EXTERNAL) * Default: true */ readonly "passwordless"?: boolean; /** * SSL CA Certificates to use * Type options: {"password":true} */ readonly "ca"?: string; /** * SSL Client Certificate to use * Type options: {"password":true} */ readonly "cert"?: string; /** * SSL Client Key to use * Type options: {"password":true} */ readonly "key"?: string; /** * SSL passphrase to use * Type options: {"password":true} */ readonly "passphrase"?: string; readonly __name: "rabbitmq"; } //#endregion //#region src/generated/credentials/RaindropOAuth2Api.d.ts /** * displayName: Raindrop OAuth2 API * documentationUrl: raindrop */ interface RaindropOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://raindrop.io/oauth/authorize" */ readonly "authUrl"?: unknown; /** Default: "https://api.raindrop.io/v1/oauth/access_token" */ readonly "accessTokenUrl"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly "scope"?: unknown; readonly __name: "raindropOAuth2Api"; } //#endregion //#region src/generated/credentials/Rapid7InsightVmApi.d.ts /** * displayName: Rapid7 InsightVM API * documentationUrl: rapid7insightvm */ interface Rapid7InsightVmApiCredentials { readonly "url": string; /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "rapid7InsightVmApi"; } //#endregion //#region src/generated/credentials/RecordedFutureApi.d.ts /** * displayName: Recorded Future API * documentationUrl: recordedfuture */ interface RecordedFutureApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "recordedFutureApi"; } //#endregion //#region src/generated/credentials/RedditOAuth2Api.d.ts /** * displayName: Reddit OAuth2 API * documentationUrl: reddit */ interface RedditOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "response_type=code" */ readonly "authQueryParameters"?: unknown; /** Default: "https://www.reddit.com/api/v1/authorize" */ readonly "authUrl"?: unknown; /** Default: "https://www.reddit.com/api/v1/access_token" */ readonly "accessTokenUrl"?: unknown; /** Default: "identity edit history mysubreddits read save submit" */ readonly "scope"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "redditOAuth2Api"; } //#endregion //#region src/generated/credentials/Redis.d.ts /** * displayName: Redis * documentationUrl: redis */ interface RedisCredentials { /** Type options: {"password":true} */ readonly "password"?: string; readonly "user"?: string; /** Default: "localhost" */ readonly "host"?: string; /** Default: 6379 */ readonly "port"?: number; readonly "database"?: number; readonly "ssl"?: boolean; /** Whether to disable TLS certificate verification. Enable this to use self-signed certificates. WARNING: This makes the connection less secure. */ readonly "disableTlsVerification"?: boolean; readonly __name: "redis"; } //#endregion //#region src/generated/credentials/RocketchatApi.d.ts /** * displayName: Rocket API * documentationUrl: rocketchat */ interface RocketchatApiCredentials { readonly "userId"?: string; /** Type options: {"password":true} */ readonly "authKey"?: string; readonly "domain"?: string; readonly __name: "rocketchatApi"; } //#endregion //#region src/generated/credentials/RundeckApi.d.ts /** * displayName: Rundeck API * documentationUrl: rundeck */ interface RundeckApiCredentials { readonly "url"?: string; /** Type options: {"password":true} */ readonly "token"?: string; readonly __name: "rundeckApi"; } //#endregion //#region src/generated/credentials/S3.d.ts /** * displayName: S3 * documentationUrl: s3 */ interface S3Credentials { readonly "endpoint"?: string; /** Default: "us-east-1" */ readonly "region"?: string; readonly "accessKeyId"?: string; /** Type options: {"password":true} */ readonly "secretAccessKey"?: string; readonly "forcePathStyle"?: boolean; /** Whether to connect even if SSL certificate validation is not possible */ readonly "ignoreSSLIssues"?: boolean; readonly __name: "s3"; } //#endregion //#region src/generated/credentials/SalesforceJwtApi.d.ts /** * displayName: Salesforce JWT API * documentationUrl: salesforce */ interface SalesforceJwtApiCredentials { /** Default: "production" */ readonly "environment"?: "production" | "sandbox"; /** Consumer Key from Salesforce Connected App */ readonly "clientId": string; readonly "username": string; /** * Use the multiline editor. Make sure it is in standard PEM key format:
-----BEGIN PRIVATE KEY-----
KEY DATA GOES HERE
-----END PRIVATE KEY----- * Type options: {"password":true,"rows":4} */ readonly "privateKey": string; /** Your org's My Domain URL (e.g. https://mycompany.my.salesforce.com). Required for Spring '26 and later orgs; leave blank to keep the default audience used by earlier orgs. */ readonly "myDomainUrl"?: string; readonly __name: "salesforceJwtApi"; } //#endregion //#region src/generated/credentials/SalesforceOAuth2Api.d.ts /** * displayName: Salesforce OAuth2 API * documentationUrl: salesforce */ interface SalesforceOAuth2ApiCredentials { /** Default: "pkce" */ readonly "grantType"?: unknown; /** Default: "production" */ readonly "environment"?: "production" | "sandbox"; /** Default: "={{ $self[\"environment\"] === \"sandbox\" ? \"https://test.salesforce.com/services/oauth2/authorize?prompt=login\" : \"https://login.salesforce.com/services/oauth2/authorize?prompt=login\" }}" */ readonly "authUrl": unknown; /** Default: "={{ $self[\"environment\"] === \"sandbox\" ? \"https://test.salesforce.com/services/oauth2/token\" : \"https://login.salesforce.com/services/oauth2/token\" }}" */ readonly "accessTokenUrl": unknown; /** Default: "full refresh_token" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "salesforceOAuth2Api"; } //#endregion //#region src/generated/credentials/SalesmateApi.d.ts /** * displayName: Salesmate API * documentationUrl: salesmate */ interface SalesmateApiCredentials { /** Type options: {"password":true} */ readonly "sessionToken"?: string; readonly "url"?: string; readonly __name: "salesmateApi"; } //#endregion //#region src/generated/credentials/SeaTableApi.d.ts /** * displayName: SeaTable API * documentationUrl: seatable */ interface SeaTableApiCredentials { /** Default: "cloudHosted" */ readonly "environment"?: "cloudHosted" | "selfHosted"; readonly "domain"?: string; /** * The API-Token of the SeaTable base you would like to use with n8n. n8n can only connect to one base at a time. * Type options: {"password":true} */ readonly "token"?: string; /** Seatable server's timezone */ readonly "timezone"?: "Europe/Andorra" | "Asia/Dubai" | "Asia/Kabul" | "America/Antigua" | "America/Puerto_Rico" | "America/Anguilla" | "America/Puerto_Rico" | "Europe/Tirane" | "Asia/Yerevan" | "Africa/Lagos" | "Africa/Luanda" | "Antarctica/Casey" | "Antarctica/Davis" | "Antarctica/DumontDUrville" | "Antarctica/Mawson" | "Antarctica/McMurdo" | "Antarctica/Palmer" | "Antarctica/Rothera" | "Antarctica/Syowa" | "Antarctica/Troll" | "Antarctica/Vostok" | "Asia/Riyadh" | "Asia/Singapore" | "Pacific/Auckland" | "Pacific/Port_Moresby" | "America/Argentina/Buenos_Aires" | "America/Argentina/Catamarca" | "America/Argentina/Cordoba" | "America/Argentina/Jujuy" | "America/Argentina/La_Rioja" | "America/Argentina/Mendoza" | "America/Argentina/Rio_Gallegos" | "America/Argentina/Salta" | "America/Argentina/San_Juan" | "America/Argentina/San_Luis" | "America/Argentina/Tucuman" | "America/Argentina/Ushuaia" | "Pacific/Pago_Pago" | "Europe/Vienna" | "Antarctica/Macquarie" | "Asia/Tokyo" | "Australia/Adelaide" | "Australia/Brisbane" | "Australia/Broken_Hill" | "Australia/Darwin" | "Australia/Eucla" | "Australia/Hobart" | "Australia/Lindeman" | "Australia/Lord_Howe" | "Australia/Melbourne" | "Australia/Perth" | "Australia/Sydney" | "America/Aruba" | "America/Puerto_Rico" | "Europe/Helsinki" | "Europe/Mariehamn" | "Asia/Baku" | "Europe/Belgrade" | "Europe/Sarajevo" | "America/Barbados" | "Asia/Dhaka" | "Europe/Brussels" | "Africa/Abidjan" | "Africa/Ouagadougou" | "Europe/Sofia" | "Asia/Bahrain" | "Asia/Qatar" | "Africa/Bujumbura" | "Africa/Maputo" | "Africa/Lagos" | "Africa/Porto-Novo" | "America/Puerto_Rico" | "America/St_Barthelemy" | "Atlantic/Bermuda" | "Asia/Brunei" | "Asia/Kuching" | "America/La_Paz" | "America/Kralendijk" | "America/Puerto_Rico" | "America/Araguaina" | "America/Bahia" | "America/Belem" | "America/Boa_Vista" | "America/Campo_Grande" | "America/Cuiaba" | "America/Eirunepe" | "America/Fortaleza" | "America/Maceio" | "America/Manaus" | "America/Noronha" | "America/Porto_Velho" | "America/Recife" | "America/Rio_Branco" | "America/Santarem" | "America/Sao_Paulo" | "America/Nassau" | "America/Toronto" | "Asia/Thimphu" | "Africa/Gaborone" | "Africa/Maputo" | "Europe/Minsk" | "America/Belize" | "America/Atikokan" | "America/Blanc-Sablon" | "America/Cambridge_Bay" | "America/Creston" | "America/Dawson" | "America/Dawson_Creek" | "America/Edmonton" | "America/Fort_Nelson" | "America/Glace_Bay" | "America/Goose_Bay" | "America/Halifax" | "America/Inuvik" | "America/Iqaluit" | "America/Moncton" | "America/Panama" | "America/Phoenix" | "America/Puerto_Rico" | "America/Rankin_Inlet" | "America/Regina" | "America/Resolute" | "America/St_Johns" | "America/Swift_Current" | "America/Toronto" | "America/Vancouver" | "America/Whitehorse" | "America/Winnipeg" | "Asia/Yangon" | "Indian/Cocos" | "Africa/Kinshasa" | "Africa/Lagos" | "Africa/Lubumbashi" | "Africa/Maputo" | "Africa/Bangui" | "Africa/Lagos" | "Africa/Brazzaville" | "Africa/Lagos" | "Europe/Zurich" | "Africa/Abidjan" | "Pacific/Rarotonga" | "America/Coyhaique" | "America/Punta_Arenas" | "America/Santiago" | "Pacific/Easter" | "Africa/Douala" | "Africa/Lagos" | "Asia/Shanghai" | "Asia/Urumqi" | "America/Bogota" | "America/Costa_Rica" | "America/Havana" | "Atlantic/Cape_Verde" | "America/Curacao" | "America/Puerto_Rico" | "Asia/Bangkok" | "Indian/Christmas" | "Asia/Famagusta" | "Asia/Nicosia" | "Europe/Prague" | "Europe/Berlin" | "Europe/Busingen" | "Europe/Zurich" | "Africa/Djibouti" | "Africa/Nairobi" | "Europe/Berlin" | "Europe/Copenhagen" | "America/Dominica" | "America/Puerto_Rico" | "America/Santo_Domingo" | "Africa/Algiers" | "America/Guayaquil" | "Pacific/Galapagos" | "Europe/Tallinn" | "Africa/Cairo" | "Africa/El_Aaiun" | "Africa/Asmara" | "Africa/Nairobi" | "Africa/Ceuta" | "Atlantic/Canary" | "Europe/Madrid" | "Africa/Addis_Ababa" | "Africa/Nairobi" | "Europe/Helsinki" | "Pacific/Fiji" | "Atlantic/Stanley" | "Pacific/Chuuk" | "Pacific/Guadalcanal" | "Pacific/Kosrae" | "Pacific/Pohnpei" | "Pacific/Port_Moresby" | "Atlantic/Faroe" | "Europe/Paris" | "Africa/Lagos" | "Africa/Libreville" | "Europe/London" | "America/Grenada" | "America/Puerto_Rico" | "Asia/Tbilisi" | "America/Cayenne" | "Europe/Guernsey" | "Europe/London" | "Africa/Abidjan" | "Africa/Accra" | "Europe/Gibraltar" | "America/Danmarkshavn" | "America/Nuuk" | "America/Scoresbysund" | "America/Thule" | "Africa/Abidjan" | "Africa/Banjul" | "Africa/Abidjan" | "Africa/Conakry" | "America/Guadeloupe" | "America/Puerto_Rico" | "Africa/Lagos" | "Africa/Malabo" | "Europe/Athens" | "Atlantic/South_Georgia" | "America/Guatemala" | "Pacific/Guam" | "Africa/Bissau" | "America/Guyana" | "Asia/Hong_Kong" | "America/Tegucigalpa" | "Europe/Belgrade" | "Europe/Zagreb" | "America/Port-au-Prince" | "Europe/Budapest" | "Asia/Jakarta" | "Asia/Jayapura" | "Asia/Makassar" | "Asia/Pontianak" | "Europe/Dublin" | "Asia/Jerusalem" | "Europe/Isle_of_Man" | "Europe/London" | "Asia/Kolkata" | "Indian/Chagos" | "Asia/Baghdad" | "Asia/Tehran" | "Africa/Abidjan" | "Atlantic/Reykjavik" | "Europe/Rome" | "Europe/Jersey" | "Europe/London" | "America/Jamaica" | "Asia/Amman" | "Asia/Tokyo" | "Africa/Nairobi" | "Asia/Bishkek" | "Asia/Bangkok" | "Asia/Phnom_Penh" | "Pacific/Kanton" | "Pacific/Kiritimati" | "Pacific/Tarawa" | "Africa/Nairobi" | "Indian/Comoro" | "America/Puerto_Rico" | "America/St_Kitts" | "Asia/Pyongyang" | "Asia/Seoul" | "Asia/Kuwait" | "Asia/Riyadh" | "America/Cayman" | "America/Panama" | "Asia/Almaty" | "Asia/Aqtau" | "Asia/Aqtobe" | "Asia/Atyrau" | "Asia/Oral" | "Asia/Qostanay" | "Asia/Qyzylorda" | "Asia/Bangkok" | "Asia/Vientiane" | "Asia/Beirut" | "America/Puerto_Rico" | "America/St_Lucia" | "Europe/Vaduz" | "Europe/Zurich" | "Asia/Colombo" | "Africa/Monrovia" | "Africa/Johannesburg" | "Africa/Maseru" | "Europe/Vilnius" | "Europe/Brussels" | "Europe/Luxembourg" | "Europe/Riga" | "Africa/Tripoli" | "Africa/Casablanca" | "Europe/Monaco" | "Europe/Paris" | "Europe/Chisinau" | "Europe/Belgrade" | "Europe/Podgorica" | "America/Marigot" | "America/Puerto_Rico" | "Africa/Nairobi" | "Indian/Antananarivo" | "Pacific/Kwajalein" | "Pacific/Majuro" | "Pacific/Tarawa" | "Europe/Belgrade" | "Europe/Skopje" | "Africa/Abidjan" | "Africa/Bamako" | "Asia/Yangon" | "Asia/Hovd" | "Asia/Ulaanbaatar" | "Asia/Macau" | "Pacific/Guam" | "Pacific/Saipan" | "America/Martinique" | "Africa/Abidjan" | "Africa/Nouakchott" | "America/Montserrat" | "America/Puerto_Rico" | "Europe/Malta" | "Indian/Mauritius" | "Indian/Maldives" | "Africa/Blantyre" | "Africa/Maputo" | "America/Bahia_Banderas" | "America/Cancun" | "America/Chihuahua" | "America/Ciudad_Juarez" | "America/Hermosillo" | "America/Matamoros" | "America/Mazatlan" | "America/Merida" | "America/Mexico_City" | "America/Monterrey" | "America/Ojinaga" | "America/Tijuana" | "Asia/Kuala_Lumpur" | "Asia/Kuching" | "Asia/Singapore" | "Africa/Maputo" | "Africa/Windhoek" | "Pacific/Noumea" | "Africa/Lagos" | "Africa/Niamey" | "Pacific/Norfolk" | "Africa/Lagos" | "America/Managua" | "Europe/Amsterdam" | "Europe/Brussels" | "Europe/Berlin" | "Europe/Oslo" | "Asia/Kathmandu" | "Pacific/Nauru" | "Pacific/Niue" | "Pacific/Auckland" | "Pacific/Chatham" | "Asia/Dubai" | "Asia/Muscat" | "America/Panama" | "America/Lima" | "Pacific/Gambier" | "Pacific/Marquesas" | "Pacific/Tahiti" | "Pacific/Bougainville" | "Pacific/Port_Moresby" | "Asia/Manila" | "Asia/Karachi" | "Europe/Warsaw" | "America/Miquelon" | "Pacific/Pitcairn" | "America/Puerto_Rico" | "Asia/Gaza" | "Asia/Hebron" | "Atlantic/Azores" | "Atlantic/Madeira" | "Europe/Lisbon" | "Pacific/Palau" | "America/Asuncion" | "Asia/Qatar" | "Asia/Dubai" | "Indian/Reunion" | "Europe/Bucharest" | "Europe/Belgrade" | "Asia/Anadyr" | "Asia/Barnaul" | "Asia/Chita" | "Asia/Irkutsk" | "Asia/Kamchatka" | "Asia/Khandyga" | "Asia/Krasnoyarsk" | "Asia/Magadan" | "Asia/Novokuznetsk" | "Asia/Novosibirsk" | "Asia/Omsk" | "Asia/Sakhalin" | "Asia/Srednekolymsk" | "Asia/Tomsk" | "Asia/Ust-Nera" | "Asia/Vladivostok" | "Asia/Yakutsk" | "Asia/Yekaterinburg" | "Europe/Astrakhan" | "Europe/Kaliningrad" | "Europe/Kirov" | "Europe/Moscow" | "Europe/Samara" | "Europe/Saratov" | "Europe/Simferopol" | "Europe/Ulyanovsk" | "Europe/Volgograd" | "Africa/Kigali" | "Africa/Maputo" | "Asia/Riyadh" | "Pacific/Guadalcanal" | "Asia/Dubai" | "Indian/Mahe" | "Africa/Khartoum" | "Europe/Berlin" | "Europe/Stockholm" | "Asia/Singapore" | "Africa/Abidjan" | "Atlantic/St_Helena" | "Europe/Belgrade" | "Europe/Ljubljana" | "Arctic/Longyearbyen" | "Europe/Berlin" | "Europe/Bratislava" | "Europe/Prague" | "Africa/Abidjan" | "Africa/Freetown" | "Europe/Rome" | "Europe/San_Marino" | "Africa/Abidjan" | "Africa/Dakar" | "Africa/Mogadishu" | "Africa/Nairobi" | "America/Paramaribo" | "Africa/Juba" | "Africa/Sao_Tome" | "America/El_Salvador" | "America/Lower_Princes" | "America/Puerto_Rico" | "Asia/Damascus" | "Africa/Johannesburg" | "Africa/Mbabane" | "America/Grand_Turk" | "Africa/Ndjamena" | "Asia/Dubai" | "Indian/Kerguelen" | "Indian/Maldives" | "Africa/Abidjan" | "Africa/Lome" | "Asia/Bangkok" | "Asia/Dushanbe" | "Pacific/Fakaofo" | "Asia/Dili" | "Asia/Ashgabat" | "Africa/Tunis" | "Pacific/Tongatapu" | "Europe/Istanbul" | "America/Port_of_Spain" | "America/Puerto_Rico" | "Pacific/Funafuti" | "Pacific/Tarawa" | "Asia/Taipei" | "Africa/Dar_es_Salaam" | "Africa/Nairobi" | "Europe/Kyiv" | "Europe/Simferopol" | "Africa/Kampala" | "Africa/Nairobi" | "Pacific/Midway" | "Pacific/Pago_Pago" | "Pacific/Tarawa" | "Pacific/Wake" | "America/Adak" | "America/Anchorage" | "America/Boise" | "America/Chicago" | "America/Denver" | "America/Detroit" | "America/Indiana/Indianapolis" | "America/Indiana/Knox" | "America/Indiana/Marengo" | "America/Indiana/Petersburg" | "America/Indiana/Tell_City" | "America/Indiana/Vevay" | "America/Indiana/Vincennes" | "America/Indiana/Winamac" | "America/Juneau" | "America/Kentucky/Louisville" | "America/Kentucky/Monticello" | "America/Los_Angeles" | "America/Menominee" | "America/Metlakatla" | "America/New_York" | "America/Nome" | "America/North_Dakota/Beulah" | "America/North_Dakota/Center" | "America/North_Dakota/New_Salem" | "America/Phoenix" | "America/Sitka" | "America/Yakutat" | "Pacific/Honolulu" | "America/Montevideo" | "Asia/Samarkand" | "Asia/Tashkent" | "Europe/Rome" | "Europe/Vatican" | "America/Puerto_Rico" | "America/St_Vincent" | "America/Caracas" | "America/Puerto_Rico" | "America/Tortola" | "America/Puerto_Rico" | "America/St_Thomas" | "Asia/Bangkok" | "Asia/Ho_Chi_Minh" | "Pacific/Efate" | "Pacific/Tarawa" | "Pacific/Wallis" | "Pacific/Apia" | "Asia/Aden" | "Asia/Riyadh" | "Africa/Nairobi" | "Indian/Mayotte" | "Africa/Johannesburg" | "Africa/Lusaka" | "Africa/Maputo" | "Africa/Harare" | "Africa/Maputo"; readonly __name: "seaTableApi"; } //#endregion //#region src/generated/credentials/SecurityScorecardApi.d.ts /** * displayName: SecurityScorecard API * documentationUrl: securityscorecard */ interface SecurityScorecardApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "securityScorecardApi"; } //#endregion //#region src/generated/credentials/SegmentApi.d.ts /** * displayName: Segment API * documentationUrl: segment */ interface SegmentApiCredentials { /** Type options: {"password":true} */ readonly "writekey"?: string; readonly __name: "segmentApi"; } //#endregion //#region src/generated/credentials/SekoiaApi.d.ts /** * displayName: Sekoia API * documentationUrl: sekoia */ interface SekoiaApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "sekoiaApi"; } //#endregion //#region src/generated/credentials/SendGridApi.d.ts /** * displayName: SendGrid API * documentationUrl: sendgrid */ interface SendGridApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "sendGridApi"; } //#endregion //#region src/generated/credentials/SendyApi.d.ts /** * displayName: Sendy API * documentationUrl: sendy */ interface SendyApiCredentials { readonly "url"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "sendyApi"; } //#endregion //#region src/generated/credentials/SentryIoApi.d.ts /** * displayName: Sentry.io API * documentationUrl: sentryio */ interface SentryIoApiCredentials { /** Type options: {"password":true} */ readonly "token"?: string; readonly __name: "sentryIoApi"; } //#endregion //#region src/generated/credentials/SentryIoOAuth2Api.d.ts /** * displayName: Sentry.io OAuth2 API * documentationUrl: sentryio */ interface SentryIoOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://sentry.io/oauth/authorize/" */ readonly "authUrl": unknown; /** Default: "https://sentry.io/oauth/token/" */ readonly "accessTokenUrl": unknown; /** Default: "event:admin event:read org:read project:read project:releases team:read event:write org:admin project:write team:write project:admin team:admin" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "sentryIoOAuth2Api"; } //#endregion //#region src/generated/credentials/SentryIoServerApi.d.ts /** * displayName: Sentry.io Server API * documentationUrl: sentryio */ interface SentryIoServerApiCredentials { /** Type options: {"password":true} */ readonly "token"?: string; readonly "url"?: string; readonly __name: "sentryIoServerApi"; } //#endregion //#region src/generated/credentials/ServiceNowBasicApi.d.ts /** * displayName: ServiceNow Basic Auth API * documentationUrl: servicenow */ interface ServiceNowBasicApiCredentials { readonly "user": string; /** Type options: {"password":true} */ readonly "password": string; readonly "subdomain": string; readonly __name: "serviceNowBasicApi"; } //#endregion //#region src/generated/credentials/ServiceNowOAuth2Api.d.ts /** * displayName: ServiceNow OAuth2 API * documentationUrl: servicenow */ interface ServiceNowOAuth2ApiCredentials { readonly "subdomain": string; /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "=https://{{$self[\"subdomain\"]}}.service-now.com/oauth_auth.do" */ readonly "authUrl": unknown; /** Default: "=https://{{$self[\"subdomain\"]}}.service-now.com/oauth_token.do" */ readonly "accessTokenUrl": unknown; /** Default: "useraccount" */ readonly "scope"?: unknown; /** Default: "response_type=code" */ readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "serviceNowOAuth2Api"; } //#endregion //#region src/generated/credentials/Sftp.d.ts /** * displayName: SFTP * documentationUrl: ftp */ interface SftpCredentials { readonly "host": string; /** Default: 22 */ readonly "port": number; readonly "username": string; /** Type options: {"password":true} */ readonly "password"?: string; /** * String that contains a private key for either key-based or hostbased user authentication (OpenSSH format) * Type options: {"password":true} */ readonly "privateKey"?: string; /** * For an encrypted private key, this is the passphrase used to decrypt it * Type options: {"password":true} */ readonly "passphrase"?: string; readonly __name: "sftp"; } //#endregion //#region src/generated/credentials/ShopifyAccessTokenApi.d.ts /** * displayName: Shopify Access Token API * documentationUrl: shopify */ interface ShopifyAccessTokenApiCredentials { /** Only the subdomain without .myshopify.com */ readonly "shopSubdomain": string; /** Type options: {"password":true} */ readonly "accessToken": string; /** * Secret key needed to verify the webhook when using Shopify Trigger node * Type options: {"password":true} */ readonly "appSecretKey": string; readonly __name: "shopifyAccessTokenApi"; } //#endregion //#region src/generated/credentials/ShopifyApi.d.ts /** * displayName: Shopify API * documentationUrl: shopify */ interface ShopifyApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; /** Type options: {"password":true} */ readonly "password": string; /** Only the subdomain without .myshopify.com */ readonly "shopSubdomain": string; /** Type options: {"password":true} */ readonly "sharedSecret"?: string; readonly __name: "shopifyApi"; } //#endregion //#region src/generated/credentials/ShopifyOAuth2Api.d.ts /** * displayName: Shopify OAuth2 API * documentationUrl: shopify */ interface ShopifyOAuth2ApiCredentials { /** Only the subdomain without .myshopify.com */ readonly "shopSubdomain": string; /** Default: "authorizationCode" */ readonly "grantType"?: unknown; readonly "clientId": string; /** Type options: {"password":true} */ readonly "clientSecret": string; /** Default: "=https://{{$self[\"shopSubdomain\"]}}.myshopify.com/admin/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "=https://{{$self[\"shopSubdomain\"]}}.myshopify.com/admin/oauth/access_token" */ readonly "accessTokenUrl": unknown; /** Default: "write_orders read_orders write_products read_products" */ readonly "scope"?: unknown; /** Default: "access_mode=value" */ readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "shopifyOAuth2Api"; } //#endregion //#region src/generated/credentials/ShufflerApi.d.ts /** * displayName: Shuffler API * documentationUrl: shuffler */ interface ShufflerApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "shufflerApi"; } //#endregion //#region src/generated/credentials/Signl4Api.d.ts /** * displayName: SIGNL4 Webhook * documentationUrl: signl4 */ interface Signl4ApiCredentials { /** * The team secret is the last part of your SIGNL4 webhook URL * Type options: {"password":true} */ readonly "teamSecret"?: string; readonly __name: "signl4Api"; } //#endregion //#region src/generated/credentials/SlackApi.d.ts /** * displayName: Slack API * documentationUrl: slack */ interface SlackApiCredentials { /** Type options: {"password":true} */ readonly "accessToken": string; /** * The signature secret is used to verify the authenticity of requests sent by Slack. * Type options: {"password":true} */ readonly "signatureSecret"?: string; readonly "notice"?: string; readonly __name: "slackApi"; } //#endregion //#region src/generated/credentials/SlackOAuth2Api.d.ts /** * displayName: Slack OAuth2 API * documentationUrl: slack */ interface SlackOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://slack.com/oauth/v2/authorize" */ readonly "authUrl"?: unknown; /** Default: "https://slack.com/api/oauth.v2.access" */ readonly "accessTokenUrl"?: unknown; readonly "scope"?: unknown; /** Define custom scopes */ readonly "customScopes"?: boolean; readonly "customScopesNotice"?: string; /** * Space-separated user-level scopes for your Slack app * Default: "channels:read channels:write channels:history chat:write files:read files:write groups:read groups:history im:read im:history mpim:read mpim:history reactions:read reactions:write stars:read stars:write usergroups:write usergroups:read users.profile:read users.profile:write users:read search:read" */ readonly "userScope"?: string; /** Default: "={{$self[\"customScopes\"] ? \"user_scope=\" + $self[\"userScope\"] : \"user_scope=channels:read channels:write channels:history chat:write files:read files:write groups:read groups:history im:read im:history mpim:read mpim:history reactions:read reactions:write stars:read stars:write usergroups:write usergroups:read users.profile:read users.profile:write users:read search:read\"}}" */ readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly "notice"?: string; readonly __name: "slackOAuth2Api"; } //#endregion //#region src/generated/credentials/Sms77Api.d.ts /** * displayName: seven API * documentationUrl: sms77 */ interface Sms77ApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "sms77Api"; } //#endregion //#region src/generated/credentials/Smtp.d.ts /** * displayName: SMTP * documentationUrl: sendemail */ interface SmtpCredentials { readonly "user"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly "host"?: string; /** Default: 465 */ readonly "port"?: number; /** Default: true */ readonly "secure"?: boolean; readonly "disableStartTls"?: boolean; /** The hostname of the client, used for identifying to the server */ readonly "hostName"?: string; readonly __name: "smtp"; } //#endregion //#region src/generated/credentials/Snowflake.d.ts /** * displayName: Snowflake * documentationUrl: snowflake */ interface SnowflakeCredentials { /** Enter the name of your Snowflake account */ readonly "account"?: string; /** Specify the database you want to use after creating the connection */ readonly "database"?: string; /** The default virtual warehouse to use for the session after connecting. Used for performing queries, loading data, etc. */ readonly "warehouse"?: string; /** * The way to authenticate with Snowflake * Default: "password" */ readonly "authentication"?: "password" | "keyPair"; readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** * Private PEM key for Key-pair authentication with Snowflake, follow guide here * Type options: {"password":true,"rows":4} */ readonly "privateKey": string; /** * If the private key is encrypted, you must provide the passphrase used to encrypt it * Type options: {"password":true} */ readonly "passphrase"?: string; /** Enter the schema you want to use after creating the connection */ readonly "schema"?: string; /** Enter the security role you want to use after creating the connection */ readonly "role"?: string; /** Whether to keep alive the client session. By default, client connections typically time out approximately 3-4 hours after the most recent query was executed. If the parameter clientSessionKeepAlive is set to true, the client’s connection to the server will be kept alive indefinitely, even if no queries are executed. */ readonly "clientSessionKeepAlive"?: boolean; readonly __name: "snowflake"; } //#endregion //#region src/generated/credentials/SolarWindsIpamApi.d.ts /** * displayName: SolarWinds IPAM * documentationUrl: solarwindsipam */ interface SolarWindsIpamApiCredentials { /** The base URL of your SolarWinds IPAM server. */ readonly "url": string; /** The username for SolarWinds IPAM API. */ readonly "username": string; /** * The password for SolarWinds IPAM API. * Type options: {"password":true} */ readonly "password": string; readonly __name: "solarWindsIpamApi"; } //#endregion //#region src/generated/credentials/SolarWindsObservabilityApi.d.ts /** * displayName: SolarWinds Observability * documentationUrl: solarwindsobservability */ interface SolarWindsObservabilityApiCredentials { readonly "url": string; /** Type options: {"password":true} */ readonly "apiToken": string; readonly __name: "solarWindsObservabilityApi"; } //#endregion //#region src/generated/credentials/SplunkApi.d.ts /** * displayName: Splunk API * documentationUrl: splunk */ interface SplunkApiCredentials { /** Type options: {"password":true} */ readonly "authToken"?: string; /** Protocol, domain and port */ readonly "baseUrl"?: string; /** Whether to connect even if SSL certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; readonly __name: "splunkApi"; } //#endregion //#region src/generated/credentials/SpotifyOAuth2Api.d.ts /** * displayName: Spotify OAuth2 API * documentationUrl: spotify */ interface SpotifyOAuth2ApiCredentials { /** Default: "https://api.spotify.com/" */ readonly "server"?: unknown; /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://accounts.spotify.com/authorize" */ readonly "authUrl": unknown; /** Default: "https://accounts.spotify.com/api/token" */ readonly "accessTokenUrl": unknown; /** Default: "user-read-playback-state playlist-read-collaborative user-modify-playback-state playlist-modify-public user-read-currently-playing playlist-read-private user-read-recently-played playlist-modify-private user-library-read user-follow-read" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "spotifyOAuth2Api"; } //#endregion //#region src/generated/credentials/SshPassword.d.ts /** * displayName: SSH Password * documentationUrl: ssh */ interface SshPasswordCredentials { readonly "host": string; /** Default: 22 */ readonly "port": number; readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly __name: "sshPassword"; } //#endregion //#region src/generated/credentials/SshPrivateKey.d.ts /** * displayName: SSH Private Key * documentationUrl: ssh */ interface SshPrivateKeyCredentials { readonly "host": string; /** Default: 22 */ readonly "port": number; readonly "username"?: string; /** Type options: {"rows":4,"password":true} */ readonly "privateKey"?: string; /** * Passphase used to create the key, if no passphase was used leave empty * Type options: {"password":true} */ readonly "passphrase"?: string; readonly __name: "sshPrivateKey"; } //#endregion //#region src/generated/credentials/StackbyApi.d.ts /** * displayName: Stackby API * documentationUrl: stackby */ interface StackbyApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "stackbyApi"; } //#endregion //#region src/generated/credentials/StoryblokContentApi.d.ts /** * displayName: Storyblok Content API * documentationUrl: storyblok */ interface StoryblokContentApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "storyblokContentApi"; } //#endregion //#region src/generated/credentials/StoryblokManagementApi.d.ts /** * displayName: Storyblok Management API * documentationUrl: storyblok */ interface StoryblokManagementApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "storyblokManagementApi"; } //#endregion //#region src/generated/credentials/StrapiApi.d.ts /** * displayName: Strapi API * documentationUrl: strapi */ interface StrapiApiCredentials { readonly "notice"?: string; readonly "email"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly "url"?: string; /** * The version of api to be used * Default: "v3" */ readonly "apiVersion"?: "v4" | "v3"; readonly __name: "strapiApi"; } //#endregion //#region src/generated/credentials/StrapiTokenApi.d.ts /** * displayName: Strapi API Token * documentationUrl: strapi */ interface StrapiTokenApiCredentials { /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly "url"?: string; /** * The version of api to be used * Default: "v3" */ readonly "apiVersion"?: "v4" | "v3"; readonly __name: "strapiTokenApi"; } //#endregion //#region src/generated/credentials/StravaOAuth2Api.d.ts /** * displayName: Strava OAuth2 API * documentationUrl: strava */ interface StravaOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://www.strava.com/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://www.strava.com/oauth/token" */ readonly "accessTokenUrl": unknown; /** Default: "activity:read_all,activity:write" */ readonly "scope": unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "stravaOAuth2Api"; } //#endregion //#region src/generated/credentials/StripeApi.d.ts /** * displayName: Stripe API * documentationUrl: stripe */ interface StripeApiCredentials { /** Type options: {"password":true} */ readonly "secretKey"?: string; /** * The signature secret is used to verify the authenticity of requests sent by Stripe. * Type options: {"password":true} */ readonly "signatureSecret"?: string; readonly "notice"?: string; readonly __name: "stripeApi"; } //#endregion //#region src/generated/credentials/SupabaseApi.d.ts /** * displayName: Supabase API * documentationUrl: supabase */ interface SupabaseApiCredentials { readonly "host"?: string; /** Type options: {"password":true} */ readonly "serviceRole"?: string; readonly __name: "supabaseApi"; } //#endregion //#region src/generated/credentials/SurveyMonkeyApi.d.ts /** * displayName: SurveyMonkey API * documentationUrl: surveymonkey */ interface SurveyMonkeyApiCredentials { /** * The access token must have the following scopes: * Type options: {"password":true} */ readonly "accessToken"?: string; readonly "clientId"?: string; /** Type options: {"password":true} */ readonly "clientSecret"?: string; readonly __name: "surveyMonkeyApi"; } //#endregion //#region src/generated/credentials/SurveyMonkeyOAuth2Api.d.ts /** * displayName: SurveyMonkey OAuth2 API * documentationUrl: surveymonkey */ interface SurveyMonkeyOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://api.surveymonkey.com/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://api.surveymonkey.com/oauth/token" */ readonly "accessTokenUrl": unknown; /** Default: "surveys_read,collectors_read,responses_read,responses_read_detail,webhooks_write,webhooks_read" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "surveyMonkeyOAuth2Api"; } //#endregion //#region src/generated/credentials/SyncroMspApi.d.ts /** * displayName: SyncroMSP API * documentationUrl: syncromsp */ interface SyncroMspApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly "subdomain"?: string; readonly __name: "syncroMspApi"; } //#endregion //#region src/generated/credentials/SysdigApi.d.ts /** * displayName: Sysdig API * documentationUrl: sysdig */ interface SysdigApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "sysdigApi"; } //#endregion //#region src/generated/credentials/TaigaApi.d.ts /** * displayName: Taiga API * documentationUrl: taiga */ interface TaigaApiCredentials { readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** Default: "cloud" */ readonly "environment"?: "cloud" | "selfHosted"; readonly "url"?: string; readonly __name: "taigaApi"; } //#endregion //#region src/generated/credentials/TapfiliateApi.d.ts /** * displayName: Tapfiliate API * documentationUrl: tapfiliate */ interface TapfiliateApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "tapfiliateApi"; } //#endregion //#region src/generated/credentials/TelegramApi.d.ts /** * displayName: Telegram API * documentationUrl: telegram */ interface TelegramApiCredentials { /** * Chat with the bot father to obtain the access token * Type options: {"password":true} */ readonly "accessToken"?: string; /** * Base URL for Telegram Bot API * Default: "https://api.telegram.org" */ readonly "baseUrl"?: string; readonly __name: "telegramApi"; } //#endregion //#region src/generated/credentials/TheHiveApi.d.ts /** * displayName: The Hive API * documentationUrl: thehive */ interface TheHiveApiCredentials { /** Type options: {"password":true} */ readonly "ApiKey"?: string; /** The URL of TheHive instance */ readonly "url"?: string; /** The version of api to be used */ readonly "apiVersion"?: "v1" | ""; /** Whether to connect even if SSL certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; readonly __name: "theHiveApi"; } //#endregion //#region src/generated/credentials/TheHiveProjectApi.d.ts /** * displayName: The Hive 5 API * documentationUrl: thehive */ interface TheHiveProjectApiCredentials { /** Type options: {"password":true} */ readonly "ApiKey"?: string; /** The URL of TheHive instance */ readonly "url"?: string; /** Whether to connect even if SSL certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; readonly __name: "theHiveProjectApi"; } //#endregion //#region src/generated/credentials/TimescaleDb.d.ts /** * displayName: TimescaleDB * documentationUrl: timescaledb */ interface TimescaleDbCredentials { /** Default: "localhost" */ readonly "host"?: string; /** Default: "postgres" */ readonly "database"?: string; /** Default: "postgres" */ readonly "user"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** Whether to connect even if SSL certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; /** Default: "disable" */ readonly "ssl"?: "allow" | "disable" | "require"; /** Default: 5432 */ readonly "port"?: number; readonly __name: "timescaleDb"; } //#endregion //#region src/generated/credentials/TodoistApi.d.ts /** * displayName: Todoist API * documentationUrl: todoist */ interface TodoistApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "todoistApi"; } //#endregion //#region src/generated/credentials/TodoistOAuth2Api.d.ts /** * displayName: Todoist OAuth2 API * documentationUrl: todoist */ interface TodoistOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://todoist.com/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://todoist.com/oauth/access_token" */ readonly "accessTokenUrl": unknown; /** Default: "data:read_write,data:delete" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "todoistOAuth2Api"; } //#endregion //#region src/generated/credentials/TogglApi.d.ts /** * displayName: Toggl API * documentationUrl: toggl */ interface TogglApiCredentials { readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly __name: "togglApi"; } //#endregion //#region src/generated/credentials/TotpApi.d.ts /** * displayName: TOTP API * documentationUrl: totp */ interface TotpApiCredentials { /** * Secret key encoded in the QR code during setup. Learn more. * Type options: {"password":true} */ readonly "secret": string; /** Identifier for the TOTP account, in the issuer:username format. Learn more. */ readonly "label"?: string; readonly __name: "totpApi"; } //#endregion //#region src/generated/credentials/TravisCiApi.d.ts /** * displayName: Travis API * documentationUrl: travisci */ interface TravisCiApiCredentials { /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly __name: "travisCiApi"; } //#endregion //#region src/generated/credentials/TrellixEpoApi.d.ts /** * displayName: Trellix (McAfee) ePolicy Orchestrator API * documentationUrl: trellixepo */ interface TrellixEpoApiCredentials { readonly "username": string; /** Type options: {"password":true} */ readonly "password": string; readonly __name: "trellixEpoApi"; } //#endregion //#region src/generated/credentials/TrelloApi.d.ts /** * displayName: Trello API * documentationUrl: trello */ interface TrelloApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; /** Type options: {"password":true} */ readonly "apiToken": string; /** Type options: {"password":true} */ readonly "oauthSecret"?: unknown; readonly __name: "trelloApi"; } //#endregion //#region src/generated/credentials/TwakeCloudApi.d.ts /** * displayName: Twake Cloud API * documentationUrl: twake */ interface TwakeCloudApiCredentials { /** Type options: {"password":true} */ readonly "workspaceKey"?: string; readonly __name: "twakeCloudApi"; } //#endregion //#region src/generated/credentials/TwakeServerApi.d.ts /** * displayName: Twake Server API * documentationUrl: twake */ interface TwakeServerApiCredentials { readonly "hostUrl"?: string; readonly "publicId"?: string; /** Type options: {"password":true} */ readonly "privateApiKey"?: string; readonly __name: "twakeServerApi"; } //#endregion //#region src/generated/credentials/TwilioApi.d.ts /** * displayName: Twilio API * documentationUrl: twilio */ interface TwilioApiCredentials { /** Default: "authToken" */ readonly "authType"?: "authToken" | "apiKey"; readonly "accountSid"?: string; /** Type options: {"password":true} */ readonly "authToken"?: string; /** Type options: {"password":true} */ readonly "apiKeySid"?: string; /** Type options: {"password":true} */ readonly "apiKeySecret"?: string; readonly __name: "twilioApi"; } //#endregion //#region src/generated/credentials/TwistOAuth2Api.d.ts /** * displayName: Twist OAuth2 API * documentationUrl: twist */ interface TwistOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://twist.com/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://twist.com/oauth/access_token" */ readonly "accessTokenUrl": unknown; /** Default: "attachments:write,channels:remove,comments:remove,messages:remove,threads:remove,workspaces:read" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "twistOAuth2Api"; } //#endregion //#region src/generated/credentials/TwitterOAuth1Api.d.ts /** * displayName: X OAuth API * documentationUrl: twitter */ interface TwitterOAuth1ApiCredentials { /** Default: "https://api.twitter.com/oauth/request_token" */ readonly "requestTokenUrl"?: unknown; /** Default: "https://api.twitter.com/oauth/authorize" */ readonly "authUrl"?: unknown; /** Default: "https://api.twitter.com/oauth/access_token" */ readonly "accessTokenUrl"?: unknown; /** Default: "HMAC-SHA1" */ readonly "signatureMethod"?: unknown; readonly "apiPermissions"?: string; readonly __name: "twitterOAuth1Api"; } //#endregion //#region src/generated/credentials/TwitterOAuth2Api.d.ts /** * displayName: X OAuth2 API * documentationUrl: twitter */ interface TwitterOAuth2ApiCredentials { readonly "apiPermissions"?: string; /** Default: "pkce" */ readonly "grantType"?: unknown; /** Default: "https://twitter.com/i/oauth2/authorize" */ readonly "authUrl"?: unknown; /** Default: "https://api.twitter.com/2/oauth2/token" */ readonly "accessTokenUrl"?: unknown; /** Default: "tweet.read users.read tweet.write tweet.moderate.write users.read follows.read follows.write offline.access like.read like.write dm.write dm.read list.read list.write" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "twitterOAuth2Api"; } //#endregion //#region src/generated/credentials/TypeformApi.d.ts /** * displayName: Typeform API * documentationUrl: typeform */ interface TypeformApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "typeformApi"; } //#endregion //#region src/generated/credentials/TypeformOAuth2Api.d.ts /** * displayName: Typeform OAuth2 API * documentationUrl: typeform */ interface TypeformOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://api.typeform.com/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://api.typeform.com/oauth/token" */ readonly "accessTokenUrl": unknown; /** Default: "webhooks:write webhooks:read forms:read" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "typeformOAuth2Api"; } //#endregion //#region src/generated/credentials/UProcApi.d.ts /** * displayName: uProc API * documentationUrl: uproc */ interface UProcApiCredentials { readonly "email"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "uprocApi"; } //#endregion //#region src/generated/credentials/UnleashedSoftwareApi.d.ts /** * displayName: Unleashed API * documentationUrl: unleashedsoftware */ interface UnleashedSoftwareApiCredentials { readonly "apiId"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "unleashedSoftwareApi"; } //#endregion //#region src/generated/credentials/UpleadApi.d.ts /** * displayName: Uplead API * documentationUrl: uplead */ interface UpleadApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "upleadApi"; } //#endregion //#region src/generated/credentials/UptimeRobotApi.d.ts /** * displayName: Uptime Robot API * documentationUrl: uptimerobot */ interface UptimeRobotApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "uptimeRobotApi"; } //#endregion //#region src/generated/credentials/UrlScanIoApi.d.ts /** * displayName: urlscan.io API * documentationUrl: urlscanio */ interface UrlScanIoApiCredentials { /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "urlScanIoApi"; } //#endregion //#region src/generated/credentials/VenafiTlsProtectCloudApi.d.ts /** * displayName: Venafi TLS Protect Cloud * documentationUrl: venafitlsprotectcloud */ interface VenafiTlsProtectCloudApiCredentials { /** Default: "cloud" */ readonly "region"?: "cloud" | "eu"; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "venafiTlsProtectCloudApi"; } //#endregion //#region src/generated/credentials/VenafiTlsProtectDatacenterApi.d.ts /** * displayName: Venafi TLS Protect Datacenter API * documentationUrl: venafitlsprotectdatacenter */ interface VenafiTlsProtectDatacenterApiCredentials { readonly "domain"?: string; readonly "clientId"?: string; readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; /** Default: true */ readonly "allowUnauthorizedCerts"?: boolean; /** Type options: {"expirable":true} */ readonly "token"?: unknown; /** Default: "certificate:manage" */ readonly "scope"?: unknown; readonly __name: "venafiTlsProtectDatacenterApi"; } //#endregion //#region src/generated/credentials/VeroApi.d.ts /** * displayName: Vero API * documentationUrl: vero */ interface VeroApiCredentials { /** Type options: {"password":true} */ readonly "authToken"?: string; readonly __name: "veroApi"; } //#endregion //#region src/generated/credentials/VerticaApi.d.ts /** * displayName: Vertica API * documentationUrl: vertica */ interface VerticaApiCredentials { /** Default: "https://localhost:8443" */ readonly "url": string; /** The username for accessing the Vertica database. */ readonly "username"?: string; /** * The password for accessing the Vertica database. * Type options: {"password":true} */ readonly "password"?: string; readonly __name: "verticaApi"; } //#endregion //#region src/generated/credentials/VirusTotalApi.d.ts /** * displayName: VirusTotal API * documentationUrl: virustotal */ interface VirusTotalApiCredentials { /** Type options: {"password":true} */ readonly "accessToken": string; readonly __name: "virusTotalApi"; } //#endregion //#region src/generated/credentials/VonageApi.d.ts /** * displayName: Vonage API * documentationUrl: vonage */ interface VonageApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; /** Type options: {"password":true} */ readonly "apiSecret"?: string; readonly __name: "vonageApi"; } //#endregion //#region src/generated/credentials/WebflowApi.d.ts /** * displayName: Webflow API * documentationUrl: webflow */ interface WebflowApiCredentials { /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "webflowApi"; } //#endregion //#region src/generated/credentials/WebflowOAuth2Api.d.ts /** * displayName: Webflow OAuth2 API * documentationUrl: webflow */ interface WebflowOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** * If the legacy API should be used * Default: true */ readonly "legacy"?: boolean; /** Default: "https://webflow.com/oauth/authorize" */ readonly "authUrl": unknown; /** Default: "https://api.webflow.com/oauth/access_token" */ readonly "accessTokenUrl": unknown; /** Default: "={{$self[\"legacy\"] ? \"\" : \"cms:read cms:write sites:read forms:read\"}}" */ readonly "scope"?: unknown; /** For some services additional query parameters have to be set which can be defined here */ readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "webflowOAuth2Api"; } //#endregion //#region src/generated/credentials/WekanApi.d.ts /** * displayName: Wekan API * documentationUrl: wekan */ interface WekanApiCredentials { readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly "url"?: string; /** Type options: {"expirable":true} */ readonly "token"?: unknown; readonly __name: "wekanApi"; } //#endregion //#region src/generated/credentials/WhatsAppApi.d.ts /** * displayName: WhatsApp API * documentationUrl: whatsapp */ interface WhatsAppApiCredentials { /** Type options: {"password":true} */ readonly "accessToken": string; readonly "businessAccountId": string; readonly __name: "whatsAppApi"; } //#endregion //#region src/generated/credentials/WhatsAppTriggerApi.d.ts /** * displayName: WhatsApp OAuth API * documentationUrl: whatsapp */ interface WhatsAppTriggerApiCredentials { readonly "clientId": string; /** Type options: {"password":true} */ readonly "clientSecret": string; readonly __name: "whatsAppTriggerApi"; } //#endregion //#region src/generated/credentials/WiseApi.d.ts /** * displayName: Wise API * documentationUrl: wise */ interface WiseApiCredentials { /** Type options: {"password":true} */ readonly "apiToken"?: string; /** Default: "live" */ readonly "environment"?: "live" | "test"; /** * Optional private key used for Strong Customer Authentication (SCA). Only needed to retrieve statements, and execute transfers. * Type options: {"password":true} */ readonly "privateKey"?: string; readonly __name: "wiseApi"; } //#endregion //#region src/generated/credentials/WooCommerceApi.d.ts /** * displayName: WooCommerce API * documentationUrl: woocommerce */ interface WooCommerceApiCredentials { /** Type options: {"password":true} */ readonly "consumerKey"?: string; /** Type options: {"password":true} */ readonly "consumerSecret"?: string; readonly "url"?: string; /** Whether credentials should be included in the query. Occasionally, some servers may not parse the Authorization header correctly (if you see a “Consumer key is missing” error when authenticating over SSL, you have a server issue). In this case, you may provide the consumer key/secret as query string parameters instead. */ readonly "includeCredentialsInQuery"?: boolean; readonly __name: "wooCommerceApi"; } //#endregion //#region src/generated/credentials/WordpressApi.d.ts /** * displayName: Wordpress API * documentationUrl: wordpress */ interface WordpressApiCredentials { readonly "username"?: string; /** Type options: {"password":true} */ readonly "password"?: string; readonly "url"?: string; /** Whether to connect even if SSL certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; readonly __name: "wordpressApi"; } //#endregion //#region src/generated/credentials/WordpressOAuth2Api.d.ts /** * displayName: WordPress OAuth2 API * documentationUrl: wordpress */ interface WordpressOAuth2ApiCredentials { readonly "wordpressComNotice"?: string; /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://public-api.wordpress.com/oauth2/authorize" */ readonly "authUrl": unknown; /** Default: "https://public-api.wordpress.com/oauth2/token" */ readonly "accessTokenUrl": unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; /** Your WordPress.com site identifier — either a .wordpress.com subdomain (e.g. myblog.wordpress.com) or a custom domain (e.g. myblog.com). Used in API requests that still route through public-api.wordpress.com. */ readonly "wordpressSite": string; /** Whether to define custom OAuth2 scopes instead of the defaults */ readonly "customScopes"?: boolean; readonly "customScopesNotice"?: string; /** * Space-separated list of OAuth2 scopes to request * Default: "global" */ readonly "enabledScopes"?: string; /** Default: "={{$self[\"customScopes\"] ? $self[\"enabledScopes\"] : \"global\"}}" */ readonly "scope"?: unknown; readonly __name: "wordpressOAuth2Api"; } //#endregion //#region src/generated/credentials/WorkableApi.d.ts /** * displayName: Workable API * documentationUrl: workable */ interface WorkableApiCredentials { readonly "subdomain"?: string; /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "workableApi"; } //#endregion //#region src/generated/credentials/WufooApi.d.ts /** * displayName: Wufoo API * documentationUrl: wufoo */ interface WufooApiCredentials { /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly "subdomain"?: string; readonly __name: "wufooApi"; } //#endregion //#region src/generated/credentials/XeroOAuth2Api.d.ts /** * displayName: Xero OAuth2 API * documentationUrl: xero */ interface XeroOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://login.xero.com/identity/connect/authorize" */ readonly "authUrl"?: unknown; /** Default: "https://identity.xero.com/connect/token" */ readonly "accessTokenUrl"?: unknown; /** Default: "offline_access accounting.invoices accounting.payments accounting.banktransactions accounting.manualjournals accounting.attachments accounting.settings accounting.contacts" */ readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "xeroOAuth2Api"; } //#endregion //#region src/generated/credentials/YouTubeOAuth2Api.d.ts /** * displayName: YouTube OAuth2 API * documentationUrl: google */ interface YouTubeOAuth2ApiCredentials { /** Default: "https://www.googleapis.com/auth/youtube https://www.googleapis.com/auth/youtubepartner https://www.googleapis.com/auth/youtube.force-ssl https://www.googleapis.com/auth/youtube.upload https://www.googleapis.com/auth/youtubepartner-channel-audit" */ readonly "scope"?: unknown; readonly __name: "youTubeOAuth2Api"; } //#endregion //#region src/generated/credentials/YourlsApi.d.ts /** * displayName: Yourls API * documentationUrl: yourls */ interface YourlsApiCredentials { readonly "signature"?: string; readonly "url"?: string; readonly __name: "yourlsApi"; } //#endregion //#region src/generated/credentials/ZabbixApi.d.ts /** * displayName: Zabbix API * documentationUrl: zabbix */ interface ZabbixApiCredentials { readonly "url": string; /** Type options: {"password":true} */ readonly "apiToken": string; readonly __name: "zabbixApi"; } //#endregion //#region src/generated/credentials/ZammadBasicAuthApi.d.ts /** * displayName: Zammad Basic Auth API * documentationUrl: zammad */ interface ZammadBasicAuthApiCredentials { readonly "baseUrl": string; readonly "username": string; /** Type options: {"password":true} */ readonly "password": string; /** Whether to connect even if SSL certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; readonly __name: "zammadBasicAuthApi"; } //#endregion //#region src/generated/credentials/ZammadTokenAuthApi.d.ts /** * displayName: Zammad Token Auth API * documentationUrl: zammad */ interface ZammadTokenAuthApiCredentials { readonly "baseUrl": string; /** Type options: {"password":true} */ readonly "accessToken": string; /** Whether to connect even if SSL certificate validation is not possible */ readonly "allowUnauthorizedCerts"?: boolean; readonly __name: "zammadTokenAuthApi"; } //#endregion //#region src/generated/credentials/ZendeskApi.d.ts /** * displayName: Zendesk API * documentationUrl: zendesk */ interface ZendeskApiCredentials { /** The subdomain of your Zendesk work environment */ readonly "subdomain"?: string; readonly "email"?: string; /** Type options: {"password":true} */ readonly "apiToken"?: string; readonly __name: "zendeskApi"; } //#endregion //#region src/generated/credentials/ZendeskOAuth2Api.d.ts /** * displayName: Zendesk OAuth2 API * documentationUrl: zendesk */ interface ZendeskOAuth2ApiCredentials { /** The subdomain of your Zendesk work environment */ readonly "subdomain": string; /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** * URL to get authorization code. Replace {SUBDOMAIN_HERE} with your subdomain. * Default: "=https://{{$self[\"subdomain\"]}}.zendesk.com/oauth/authorizations/new" */ readonly "authUrl": unknown; /** * URL to get access token. Replace {SUBDOMAIN_HERE} with your subdomain. * Default: "=https://{{$self[\"subdomain\"]}}.zendesk.com/oauth/tokens" */ readonly "accessTokenUrl": unknown; readonly "clientId": string; /** Type options: {"password":true} */ readonly "clientSecret": string; /** Default: "read write" */ readonly "scope"?: unknown; /** For some services additional query parameters have to be set which can be defined here */ readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "zendeskOAuth2Api"; } //#endregion //#region src/generated/credentials/ZohoOAuth2Api.d.ts /** * displayName: Zoho OAuth2 API * documentationUrl: zoho */ interface ZohoOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://accounts.zoho.com/oauth/v2/auth" */ readonly "authUrl": "https://accounts.zoho.com/oauth/v2/auth" | "https://accounts.zoho.com.cn/oauth/v2/auth"; /** Default: "https://accounts.zoho.com/oauth/v2/token" */ readonly "accessTokenUrl": "https://accounts.zoho.com.au/oauth/v2/token" | "https://accounts.zoho.com.cn/oauth/v2/token" | "https://accounts.zoho.eu/oauth/v2/token" | "https://accounts.zoho.in/oauth/v2/token" | "https://accounts.zoho.com/oauth/v2/token"; /** Default: "ZohoCRM.modules.ALL,ZohoCRM.settings.all,ZohoCRM.users.all" */ readonly "scope"?: unknown; /** Default: "access_type=offline" */ readonly "authQueryParameters"?: unknown; /** Default: "body" */ readonly "authentication"?: unknown; readonly __name: "zohoOAuth2Api"; } //#endregion //#region src/generated/credentials/ZoomApi.d.ts /** * displayName: Zoom API * documentationUrl: zoom */ interface ZoomApiCredentials { readonly "notice"?: string; /** Type options: {"password":true} */ readonly "accessToken"?: string; readonly __name: "zoomApi"; } //#endregion //#region src/generated/credentials/ZoomOAuth2Api.d.ts /** * displayName: Zoom OAuth2 API * documentationUrl: zoom */ interface ZoomOAuth2ApiCredentials { /** Default: "authorizationCode" */ readonly "grantType"?: unknown; /** Default: "https://zoom.us/oauth/authorize" */ readonly "authUrl"?: unknown; /** Default: "https://zoom.us/oauth/token" */ readonly "accessTokenUrl"?: unknown; readonly "scope"?: unknown; readonly "authQueryParameters"?: unknown; /** Default: "header" */ readonly "authentication"?: unknown; readonly __name: "zoomOAuth2Api"; } //#endregion //#region src/generated/credentials/ZscalerZiaApi.d.ts /** * displayName: Zscaler ZIA API * documentationUrl: zscalerzia */ interface ZscalerZiaApiCredentials { /** Type options: {"expirable":true} */ readonly "cookie"?: unknown; readonly "baseUrl": string; readonly "username": string; /** Type options: {"password":true} */ readonly "password": string; /** Type options: {"password":true} */ readonly "apiKey": string; readonly __name: "zscalerZiaApi"; } //#endregion //#region src/generated/credentials/ZulipApi.d.ts /** * displayName: Zulip API * documentationUrl: zulip */ interface ZulipApiCredentials { readonly "url"?: string; readonly "email"?: string; /** Type options: {"password":true} */ readonly "apiKey"?: string; readonly __name: "zulipApi"; } //#endregion //#region src/generated/credentials/index.d.ts type N8nCredentialsUnion = AlibabaCloudApiCredentials | AnthropicApiCredentials | AzureAiSearchApiCredentials | AzureEntraCognitiveServicesOAuth2ApiCredentials | AzureOpenAiApiCredentials | BraveSearchApiCredentials | ChatHubVectorStorePGVectorApiCredentials | ChatHubVectorStorePineconeApiCredentials | ChatHubVectorStoreQdrantApiCredentials | ChromaCloudApiCredentials | ChromaSelfHostedApiCredentials | CohereApiCredentials | DaytonaApiCredentials | DeepSeekApiCredentials | GooglePalmApiCredentials | GroqApiCredentials | HuggingFaceApiCredentials | LemonadeApiCredentials | McpOAuth2ApiCredentials | MicrosoftAgent365ApiCredentials | MilvusApiCredentials | MinimaxApiCredentials | MistralCloudApiCredentials | MoonshotApiCredentials | MotorheadApiCredentials | OllamaApiCredentials | OpenRouterApiCredentials | PineconeApiCredentials | QdrantApiCredentials | SearXngApiCredentials | SerpApiCredentials | VercelAiGatewayApiCredentials | WeaviateApiCredentials | WolframAlphaApiCredentials | XAiApiCredentials | XataApiCredentials | ZepApiCredentials | ActionNetworkApiCredentials | ActiveCampaignApiCredentials | AcuitySchedulingApiCredentials | AcuitySchedulingOAuth2ApiCredentials | AdaloApiCredentials | AffinityApiCredentials | AgileCrmApiCredentials | AirtableApiCredentials | AirtableOAuth2ApiCredentials | AirtableTokenApiCredentials | AirtopApiCredentials | AlienVaultApiCredentials | AmqpCredentials | ApiTemplateIoApiCredentials | AsanaApiCredentials | AsanaOAuth2ApiCredentials | Auth0ManagementApiCredentials | AutopilotApiCredentials | AwsCredentials | AwsAssumeRoleCredentials | AzureStorageOAuth2ApiCredentials | AzureStorageSharedKeyApiCredentials | BambooHrApiCredentials | BannerbearApiCredentials | BaserowApiCredentials | BaserowTokenApiCredentials | BeeminderApiCredentials | BeeminderOAuth2ApiCredentials | BitbucketAccessTokenApiCredentials | BitbucketApiCredentials | BitlyApiCredentials | BitlyOAuth2ApiCredentials | BitwardenApiCredentials | BoxOAuth2ApiCredentials | BrandfetchApiCredentials | BrevoApiCredentials | BubbleApiCredentials | CalApiCredentials | CalendlyApiCredentials | CalendlyOAuth2ApiCredentials | CarbonBlackApiCredentials | ChargebeeApiCredentials | CircleCiApiCredentials | CiscoMerakiApiCredentials | CiscoSecureEndpointApiCredentials | CiscoUmbrellaApiCredentials | CiscoWebexOAuth2ApiCredentials | ClearbitApiCredentials | ClickUpApiCredentials | ClickUpOAuth2ApiCredentials | ClockifyApiCredentials | CloudflareApiCredentials | CockpitApiCredentials | CodaApiCredentials | ContentfulApiCredentials | ConvertApiCredentials | ConvertKitApiCredentials | CopperApiCredentials | CortexApiCredentials | CrateDbCredentials | CrowdStrikeOAuth2ApiCredentials | CryptoCredentials | CurrentsApiCredentials | CustomerIoApiCredentials | DatabricksApiCredentials | DatabricksOAuth2ApiCredentials | DatadogApiCredentials | DeepLApiCredentials | DemioApiCredentials | DfirIrisApiCredentials | DhlApiCredentials | DiscordBotApiCredentials | DiscordOAuth2ApiCredentials | DiscordWebhookApiCredentials | DiscourseApiCredentials | DisqusApiCredentials | DriftApiCredentials | DriftOAuth2ApiCredentials | DropboxApiCredentials | DropboxOAuth2ApiCredentials | DropcontactApiCredentials | DynatraceApiCredentials | ERPNextApiCredentials | EgoiApiCredentials | ElasticSecurityApiCredentials | ElasticsearchApiCredentials | EmeliaApiCredentials | EventbriteApiCredentials | EventbriteOAuth2ApiCredentials | F5BigIpApiCredentials | FacebookGraphApiCredentials | FacebookGraphAppApiCredentials | FacebookLeadAdsOAuth2ApiCredentials | FigmaApiCredentials | FileMakerCredentials | FilescanApiCredentials | FlowApiCredentials | FormIoApiCredentials | FormstackApiCredentials | FormstackOAuth2ApiCredentials | FortiGateApiCredentials | FreshdeskApiCredentials | FreshserviceApiCredentials | FreshworksCrmApiCredentials | FtpCredentials | GSuiteAdminOAuth2ApiCredentials | GetResponseApiCredentials | GetResponseOAuth2ApiCredentials | GhostAdminApiCredentials | GhostContentApiCredentials | GitPasswordCredentials | GithubApiCredentials | GithubOAuth2ApiCredentials | GitlabApiCredentials | GitlabOAuth2ApiCredentials | GmailOAuth2ApiCredentials | GoToWebinarOAuth2ApiCredentials | GongApiCredentials | GongOAuth2ApiCredentials | GoogleAdsOAuth2ApiCredentials | GoogleAnalyticsOAuth2ApiCredentials | GoogleApiCredentials | GoogleBigQueryOAuth2ApiCredentials | GoogleBooksOAuth2ApiCredentials | GoogleBusinessProfileOAuth2ApiCredentials | GoogleCalendarOAuth2ApiCredentials | GoogleChatOAuth2ApiCredentials | GoogleCloudNaturalLanguageOAuth2ApiCredentials | GoogleCloudStorageOAuth2ApiCredentials | GoogleContactsOAuth2ApiCredentials | GoogleDocsOAuth2ApiCredentials | GoogleDriveOAuth2ApiCredentials | GoogleFirebaseCloudFirestoreOAuth2ApiCredentials | GoogleFirebaseRealtimeDatabaseOAuth2ApiCredentials | GoogleOAuth2ApiCredentials | GooglePerspectiveOAuth2ApiCredentials | GoogleSheetsOAuth2ApiCredentials | GoogleSheetsTriggerOAuth2ApiCredentials | GoogleSlidesOAuth2ApiCredentials | GoogleTasksOAuth2ApiCredentials | GoogleTranslateOAuth2ApiCredentials | GotifyApiCredentials | GrafanaApiCredentials | GristApiCredentials | GumroadApiCredentials | HaloPSAApiCredentials | HarvestApiCredentials | HarvestOAuth2ApiCredentials | HelpScoutOAuth2ApiCredentials | HighLevelApiCredentials | HighLevelOAuth2ApiCredentials | HomeAssistantApiCredentials | HttpBasicAuthCredentials | HttpBearerAuthCredentials | HttpCustomAuthCredentials | HttpDigestAuthCredentials | HttpHeaderAuthCredentials | HttpMultipleHeadersAuthCredentials | HttpQueryAuthCredentials | HttpSslAuthCredentials | HubspotApiCredentials | HubspotAppTokenCredentials | HubspotDeveloperApiCredentials | HubspotOAuth2ApiCredentials | HumanticAiApiCredentials | HunterApiCredentials | HybridAnalysisApiCredentials | ImapCredentials | ImpervaWafApiCredentials | IntercomApiCredentials | InvoiceNinjaApiCredentials | IterableApiCredentials | JenkinsApiCredentials | JinaAiApiCredentials | JiraSoftwareCloudApiCredentials | JiraSoftwareServerApiCredentials | JiraSoftwareServerPatApiCredentials | JotFormApiCredentials | JwtAuthCredentials | KafkaCredentials | KeapOAuth2ApiCredentials | KibanaApiCredentials | KoBoToolboxApiCredentials | LdapCredentials | LemlistApiCredentials | LineNotifyOAuth2ApiCredentials | LinearApiCredentials | LinearOAuth2ApiCredentials | LingvaNexApiCredentials | LinkedInCommunityManagementOAuth2ApiCredentials | LinkedInOAuth2ApiCredentials | LoneScaleApiCredentials | Magento2ApiCredentials | MailcheckApiCredentials | MailchimpApiCredentials | MailchimpOAuth2ApiCredentials | MailerLiteApiCredentials | MailgunApiCredentials | MailjetEmailApiCredentials | MailjetSmsApiCredentials | MalcoreApiCredentials | MandrillApiCredentials | MarketstackApiCredentials | MatrixApiCredentials | MattermostApiCredentials | MauticApiCredentials | MauticOAuth2ApiCredentials | MediumApiCredentials | MediumOAuth2ApiCredentials | MessageBirdApiCredentials | MetabaseApiCredentials | MicrosoftAzureCosmosDbSharedKeyApiCredentials | MicrosoftAzureMonitorOAuth2ApiCredentials | MicrosoftDynamicsOAuth2ApiCredentials | MicrosoftEntraOAuth2ApiCredentials | MicrosoftExcelOAuth2ApiCredentials | MicrosoftGraphSecurityOAuth2ApiCredentials | MicrosoftOAuth2ApiCredentials | MicrosoftOneDriveOAuth2ApiCredentials | MicrosoftOutlookOAuth2ApiCredentials | MicrosoftSharePointOAuth2ApiCredentials | MicrosoftSqlCredentials | MicrosoftTeamsOAuth2ApiCredentials | MicrosoftToDoOAuth2ApiCredentials | MindeeInvoiceApiCredentials | MindeeReceiptApiCredentials | MiroOAuth2ApiCredentials | MispApiCredentials | MistApiCredentials | MoceanApiCredentials | MondayComApiCredentials | MondayComOAuth2ApiCredentials | MongoDbCredentials | MonicaCrmApiCredentials | MqttCredentials | Msg91ApiCredentials | MySqlCredentials | N8nApiCredentials | NasaApiCredentials | NetlifyApiCredentials | NetscalerAdcApiCredentials | NextCloudApiCredentials | NextCloudOAuth2ApiCredentials | NocoDbCredentials | NocoDbApiTokenCredentials | NotionApiCredentials | NotionOAuth2ApiCredentials | NpmApiCredentials | OAuth1ApiCredentials | OAuth2ApiCredentials | OdooApiCredentials | OktaApiCredentials | OneSimpleApiCredentials | OnfleetApiCredentials | OpenAiApiCredentials | OpenCTIApiCredentials | OpenWeatherMapApiCredentials | OracleDBApiCredentials | OrbitApiCredentials | OuraApiCredentials | PaddleApiCredentials | PagerDutyApiCredentials | PagerDutyOAuth2ApiCredentials | PayPalApiCredentials | PeekalinkApiCredentials | PerplexityApiCredentials | PhantombusterApiCredentials | PhilipsHueOAuth2ApiCredentials | PipedriveApiCredentials | PipedriveOAuth2ApiCredentials | PlivoApiCredentials | PostHogApiCredentials | PostgresCredentials | PostmarkApiCredentials | ProfitWellApiCredentials | PushbulletOAuth2ApiCredentials | PushcutApiCredentials | PushoverApiCredentials | QRadarApiCredentials | QualysApiCredentials | QuestDbCredentials | QuickBaseApiCredentials | QuickBooksOAuth2ApiCredentials | RabbitMQCredentials | RaindropOAuth2ApiCredentials | Rapid7InsightVmApiCredentials | RecordedFutureApiCredentials | RedditOAuth2ApiCredentials | RedisCredentials | RocketchatApiCredentials | RundeckApiCredentials | S3Credentials | SalesforceJwtApiCredentials | SalesforceOAuth2ApiCredentials | SalesmateApiCredentials | SeaTableApiCredentials | SecurityScorecardApiCredentials | SegmentApiCredentials | SekoiaApiCredentials | SendGridApiCredentials | SendyApiCredentials | SentryIoApiCredentials | SentryIoOAuth2ApiCredentials | SentryIoServerApiCredentials | ServiceNowBasicApiCredentials | ServiceNowOAuth2ApiCredentials | SftpCredentials | ShopifyAccessTokenApiCredentials | ShopifyApiCredentials | ShopifyOAuth2ApiCredentials | ShufflerApiCredentials | Signl4ApiCredentials | SlackApiCredentials | SlackOAuth2ApiCredentials | Sms77ApiCredentials | SmtpCredentials | SnowflakeCredentials | SolarWindsIpamApiCredentials | SolarWindsObservabilityApiCredentials | SplunkApiCredentials | SpotifyOAuth2ApiCredentials | SshPasswordCredentials | SshPrivateKeyCredentials | StackbyApiCredentials | StoryblokContentApiCredentials | StoryblokManagementApiCredentials | StrapiApiCredentials | StrapiTokenApiCredentials | StravaOAuth2ApiCredentials | StripeApiCredentials | SupabaseApiCredentials | SurveyMonkeyApiCredentials | SurveyMonkeyOAuth2ApiCredentials | SyncroMspApiCredentials | SysdigApiCredentials | TaigaApiCredentials | TapfiliateApiCredentials | TelegramApiCredentials | TheHiveApiCredentials | TheHiveProjectApiCredentials | TimescaleDbCredentials | TodoistApiCredentials | TodoistOAuth2ApiCredentials | TogglApiCredentials | TotpApiCredentials | TravisCiApiCredentials | TrellixEpoApiCredentials | TrelloApiCredentials | TwakeCloudApiCredentials | TwakeServerApiCredentials | TwilioApiCredentials | TwistOAuth2ApiCredentials | TwitterOAuth1ApiCredentials | TwitterOAuth2ApiCredentials | TypeformApiCredentials | TypeformOAuth2ApiCredentials | UProcApiCredentials | UnleashedSoftwareApiCredentials | UpleadApiCredentials | UptimeRobotApiCredentials | UrlScanIoApiCredentials | VenafiTlsProtectCloudApiCredentials | VenafiTlsProtectDatacenterApiCredentials | VeroApiCredentials | VerticaApiCredentials | VirusTotalApiCredentials | VonageApiCredentials | WebflowApiCredentials | WebflowOAuth2ApiCredentials | WekanApiCredentials | WhatsAppApiCredentials | WhatsAppTriggerApiCredentials | WiseApiCredentials | WooCommerceApiCredentials | WordpressApiCredentials | WordpressOAuth2ApiCredentials | WorkableApiCredentials | WufooApiCredentials | XeroOAuth2ApiCredentials | YouTubeOAuth2ApiCredentials | YourlsApiCredentials | ZabbixApiCredentials | ZammadBasicAuthApiCredentials | ZammadTokenAuthApiCredentials | ZendeskApiCredentials | ZendeskOAuth2ApiCredentials | ZohoOAuth2ApiCredentials | ZoomApiCredentials | ZoomOAuth2ApiCredentials | ZscalerZiaApiCredentials | ZulipApiCredentials; //#endregion export { SurveyMonkeyOAuth2ApiCredentials as $, BitlyApiCredentials as $a, FlowApiCredentials as $i, MetabaseApiCredentials as $n, ChatHubVectorStoreQdrantApiCredentials as $o, HttpBasicAuthCredentials as $r, PlivoApiCredentials as $t, UpleadApiCredentials as A, CrateDbCredentials as Aa, GoogleAnalyticsOAuth2ApiCredentials as Ai, N8nApiCredentials as An, WolframAlphaApiCredentials as Ao, JotFormApiCredentials as Ar, SegmentApiCredentials as At, TrelloApiCredentials as B, ClickUpApiCredentials as Ba, GitPasswordCredentials as Bi, MindeeReceiptApiCredentials as Bn, MoonshotApiCredentials as Bo, HunterApiCredentials as Br, RedditOAuth2ApiCredentials as Bt, WebflowApiCredentials as C, DemioApiCredentials as Ca, GoogleCloudNaturalLanguageOAuth2ApiCredentials as Ci, NotionApiCredentials as Cn, AcuitySchedulingOAuth2ApiCredentials as Co, LineNotifyOAuth2ApiCredentials as Cr, ServiceNowOAuth2ApiCredentials as Ct, VenafiTlsProtectCloudApiCredentials as D, CustomerIoApiCredentials as Da, GoogleBooksOAuth2ApiCredentials as Di, NextCloudApiCredentials as Dn, ZepApiCredentials as Do, KeapOAuth2ApiCredentials as Dr, SentryIoApiCredentials as Dt, VenafiTlsProtectDatacenterApiCredentials as E, DatabricksApiCredentials as Ea, GoogleBusinessProfileOAuth2ApiCredentials as Ei, NextCloudOAuth2ApiCredentials as En, ActionNetworkApiCredentials as Eo, KoBoToolboxApiCredentials as Er, SentryIoOAuth2ApiCredentials as Et, TwitterOAuth2ApiCredentials as F, CodaApiCredentials as Fa, GmailOAuth2ApiCredentials as Fi, MongoDbCredentials as Fn, QdrantApiCredentials as Fo, JenkinsApiCredentials as Fr, SalesforceJwtApiCredentials as Ft, TodoistApiCredentials as G, CalendlyOAuth2ApiCredentials as Ga, GSuiteAdminOAuth2ApiCredentials as Gi, MicrosoftSharePointOAuth2ApiCredentials as Gn, LemonadeApiCredentials as Go, HubspotApiCredentials as Gr, QuestDbCredentials as Gt, TotpApiCredentials as H, CiscoWebexOAuth2ApiCredentials as Ha, GhostAdminApiCredentials as Hi, MicrosoftToDoOAuth2ApiCredentials as Hn, MinimaxApiCredentials as Ho, HubspotOAuth2ApiCredentials as Hr, RabbitMQCredentials as Ht, TwitterOAuth1ApiCredentials as I, CockpitApiCredentials as Ia, GitlabOAuth2ApiCredentials as Ii, MondayComOAuth2ApiCredentials as In, PineconeApiCredentials as Io, IterableApiCredentials as Ir, S3Credentials as It, TheHiveApiCredentials as J, BubbleApiCredentials as Ja, FreshserviceApiCredentials as Ji, MicrosoftGraphSecurityOAuth2ApiCredentials as Jn, GooglePalmApiCredentials as Jo, HttpMultipleHeadersAuthCredentials as Jr, PushbulletOAuth2ApiCredentials as Jt, TimescaleDbCredentials as K, CalendlyApiCredentials as Ka, FtpCredentials as Ki, MicrosoftOutlookOAuth2ApiCredentials as Kn, HuggingFaceApiCredentials as Ko, HttpSslAuthCredentials as Kr, PushoverApiCredentials as Kt, TwistOAuth2ApiCredentials as L, CloudflareApiCredentials as La, GitlabApiCredentials as Li, MondayComApiCredentials as Ln, OpenRouterApiCredentials as Lo, InvoiceNinjaApiCredentials as Lr, RundeckApiCredentials as Lt, UProcApiCredentials as M, CopperApiCredentials as Ma, GongOAuth2ApiCredentials as Mi, Msg91ApiCredentials as Mn, VercelAiGatewayApiCredentials as Mo, JiraSoftwareServerApiCredentials as Mr, SeaTableApiCredentials as Mt, TypeformOAuth2ApiCredentials as N, ConvertKitApiCredentials as Na, GongApiCredentials as Ni, MqttCredentials as Nn, SerpApiCredentials as No, JiraSoftwareCloudApiCredentials as Nr, SalesmateApiCredentials as Nt, UrlScanIoApiCredentials as O, CurrentsApiCredentials as Oa, GoogleBigQueryOAuth2ApiCredentials as Oi, NetlifyApiCredentials as On, XataApiCredentials as Oo, KafkaCredentials as Or, SendyApiCredentials as Ot, TypeformApiCredentials as P, ContentfulApiCredentials as Pa, GoToWebinarOAuth2ApiCredentials as Pi, MonicaCrmApiCredentials as Pn, SearXngApiCredentials as Po, JinaAiApiCredentials as Pr, SalesforceOAuth2ApiCredentials as Pt, SyncroMspApiCredentials as Q, BitlyOAuth2ApiCredentials as Qa, FormIoApiCredentials as Qi, MicrosoftAzureCosmosDbSharedKeyApiCredentials as Qn, ChromaCloudApiCredentials as Qo, HttpBearerAuthCredentials as Qr, PostHogApiCredentials as Qt, TwilioApiCredentials as R, ClockifyApiCredentials as Ra, GithubOAuth2ApiCredentials as Ri, MoceanApiCredentials as Rn, OllamaApiCredentials as Ro, IntercomApiCredentials as Rr, RocketchatApiCredentials as Rt, WebflowOAuth2ApiCredentials as S, DhlApiCredentials as Sa, GoogleCloudStorageOAuth2ApiCredentials as Si, NotionOAuth2ApiCredentials as Sn, AdaloApiCredentials as So, LinearApiCredentials as Sr, SftpCredentials as St, VeroApiCredentials as T, DatabricksOAuth2ApiCredentials as Ta, GoogleCalendarOAuth2ApiCredentials as Ti, NocoDbCredentials as Tn, ActiveCampaignApiCredentials as To, LdapCredentials as Tr, SentryIoServerApiCredentials as Tt, TogglApiCredentials as U, CircleCiApiCredentials as Ua, GetResponseOAuth2ApiCredentials as Ui, MicrosoftTeamsOAuth2ApiCredentials as Un, MilvusApiCredentials as Uo, HubspotDeveloperApiCredentials as Ur, QuickBooksOAuth2ApiCredentials as Ut, TravisCiApiCredentials as V, ClearbitApiCredentials as Va, GhostContentApiCredentials as Vi, MindeeInvoiceApiCredentials as Vn, MistralCloudApiCredentials as Vo, HumanticAiApiCredentials as Vr, RaindropOAuth2ApiCredentials as Vt, TodoistOAuth2ApiCredentials as W, ChargebeeApiCredentials as Wa, GetResponseApiCredentials as Wi, MicrosoftSqlCredentials as Wn, McpOAuth2ApiCredentials as Wo, HubspotAppTokenCredentials as Wr, QuickBaseApiCredentials as Wt, TapfiliateApiCredentials as X, BoxOAuth2ApiCredentials as Xa, FormstackOAuth2ApiCredentials as Xi, MicrosoftEntraOAuth2ApiCredentials as Xn, CohereApiCredentials as Xo, HttpDigestAuthCredentials as Xr, PostmarkApiCredentials as Xt, TelegramApiCredentials as Y, BrandfetchApiCredentials as Ya, FreshdeskApiCredentials as Yi, MicrosoftExcelOAuth2ApiCredentials as Yn, DeepSeekApiCredentials as Yo, HttpHeaderAuthCredentials as Yr, ProfitWellApiCredentials as Yt, TaigaApiCredentials as Z, BitwardenApiCredentials as Za, FormstackApiCredentials as Zi, MicrosoftDynamicsOAuth2ApiCredentials as Zn, ChromaSelfHostedApiCredentials as Zo, HttpCustomAuthCredentials as Zr, PostgresCredentials as Zt, WooCommerceApiCredentials as _, DisqusApiCredentials as _a, GoogleFirebaseRealtimeDatabaseOAuth2ApiCredentials as _i, OktaApiCredentials as _n, AirtableTokenApiCredentials as _o, LoneScaleApiCredentials as _r, SlackApiCredentials as _t, ZohoOAuth2ApiCredentials as a, EventbriteOAuth2ApiCredentials as aa, HarvestApiCredentials as ai, PeekalinkApiCredentials as an, BaserowApiCredentials as ao, MattermostApiCredentials as ar, AnthropicApiCredentials as as, StrapiApiCredentials as at, WhatsAppApiCredentials as b, DiscordOAuth2ApiCredentials as ba, GoogleDocsOAuth2ApiCredentials as bi, OAuth1ApiCredentials as bn, AgileCrmApiCredentials as bo, LingvaNexApiCredentials as br, ShopifyApiCredentials as bt, ZammadTokenAuthApiCredentials as c, ElasticsearchApiCredentials as ca, GristApiCredentials as ci, PagerDutyApiCredentials as cn, AzureStorageSharedKeyApiCredentials as co, MandrillApiCredentials as cr, StackbyApiCredentials as ct, YouTubeOAuth2ApiCredentials as d, ERPNextApiCredentials as da, GoogleTranslateOAuth2ApiCredentials as di, OrbitApiCredentials as dn, AwsCredentials as do, MailgunApiCredentials as dr, SpotifyOAuth2ApiCredentials as dt, FileMakerCredentials as ea, HomeAssistantApiCredentials as ei, PipedriveOAuth2ApiCredentials as en, BitbucketApiCredentials as eo, MessageBirdApiCredentials as er, ChatHubVectorStorePineconeApiCredentials as es, SurveyMonkeyApiCredentials as et, XeroOAuth2ApiCredentials as f, DropcontactApiCredentials as fa, GoogleTasksOAuth2ApiCredentials as fi, OracleDBApiCredentials as fn, AutopilotApiCredentials as fo, MailerLiteApiCredentials as fr, SplunkApiCredentials as ft, WordpressApiCredentials as g, DriftApiCredentials as ga, GooglePerspectiveOAuth2ApiCredentials as gi, OneSimpleApiCredentials as gn, AirtopApiCredentials as go, Magento2ApiCredentials as gr, SlackOAuth2ApiCredentials as gt, WordpressOAuth2ApiCredentials as h, DriftOAuth2ApiCredentials as ha, GoogleSheetsOAuth2ApiCredentials as hi, OnfleetApiCredentials as hn, ApiTemplateIoApiCredentials as ho, MailcheckApiCredentials as hr, Sms77ApiCredentials as ht, ZoomApiCredentials as i, FacebookGraphApiCredentials as ia, HarvestOAuth2ApiCredentials as ii, PerplexityApiCredentials as in, BaserowTokenApiCredentials as io, MauticApiCredentials as ir, AzureAiSearchApiCredentials as is, StrapiTokenApiCredentials as it, UnleashedSoftwareApiCredentials as j, CortexApiCredentials as ja, GoogleAdsOAuth2ApiCredentials as ji, MySqlCredentials as jn, WeaviateApiCredentials as jo, JiraSoftwareServerPatApiCredentials as jr, SecurityScorecardApiCredentials as jt, UptimeRobotApiCredentials as k, CryptoCredentials as ka, GoogleApiCredentials as ki, NasaApiCredentials as kn, XAiApiCredentials as ko, JwtAuthCredentials as kr, SendGridApiCredentials as kt, ZammadBasicAuthApiCredentials as l, ElasticSecurityApiCredentials as la, GrafanaApiCredentials as li, PaddleApiCredentials as ln, AzureStorageOAuth2ApiCredentials as lo, MailjetSmsApiCredentials as lr, SshPrivateKeyCredentials as lt, WorkableApiCredentials as m, DropboxApiCredentials as ma, GoogleSheetsTriggerOAuth2ApiCredentials as mi, OpenAiApiCredentials as mn, AsanaApiCredentials as mo, MailchimpApiCredentials as mr, SmtpCredentials as mt, ZulipApiCredentials as n, FacebookLeadAdsOAuth2ApiCredentials as na, HighLevelApiCredentials as ni, PhilipsHueOAuth2ApiCredentials as nn, BeeminderOAuth2ApiCredentials as no, MediumApiCredentials as nr, AzureOpenAiApiCredentials as ns, StripeApiCredentials as nt, ZendeskOAuth2ApiCredentials as o, EventbriteApiCredentials as oa, HaloPSAApiCredentials as oi, PayPalApiCredentials as on, BannerbearApiCredentials as oo, MatrixApiCredentials as or, AlibabaCloudApiCredentials as os, StoryblokManagementApiCredentials as ot, WufooApiCredentials as p, DropboxOAuth2ApiCredentials as pa, GoogleSlidesOAuth2ApiCredentials as pi, OpenWeatherMapApiCredentials as pn, AsanaOAuth2ApiCredentials as po, MailchimpOAuth2ApiCredentials as pr, SnowflakeCredentials as pt, TheHiveProjectApiCredentials as q, CalApiCredentials as qa, FreshworksCrmApiCredentials as qi, MicrosoftOneDriveOAuth2ApiCredentials as qn, GroqApiCredentials as qo, HttpQueryAuthCredentials as qr, PushcutApiCredentials as qt, ZoomOAuth2ApiCredentials as r, FacebookGraphAppApiCredentials as ra, HelpScoutOAuth2ApiCredentials as ri, PhantombusterApiCredentials as rn, BeeminderApiCredentials as ro, MauticOAuth2ApiCredentials as rr, AzureEntraCognitiveServicesOAuth2ApiCredentials as rs, StravaOAuth2ApiCredentials as rt, ZendeskApiCredentials as s, EmeliaApiCredentials as sa, GumroadApiCredentials as si, PagerDutyOAuth2ApiCredentials as sn, BambooHrApiCredentials as so, MarketstackApiCredentials as sr, StoryblokContentApiCredentials as st, N8nCredentialsUnion as t, FigmaApiCredentials as ta, HighLevelOAuth2ApiCredentials as ti, PipedriveApiCredentials as tn, BitbucketAccessTokenApiCredentials as to, MediumOAuth2ApiCredentials as tr, ChatHubVectorStorePGVectorApiCredentials as ts, SupabaseApiCredentials as tt, YourlsApiCredentials as u, EgoiApiCredentials as ua, GotifyApiCredentials as ui, OuraApiCredentials as un, AwsAssumeRoleCredentials as uo, MailjetEmailApiCredentials as ur, SshPasswordCredentials as ut, WiseApiCredentials as v, DiscourseApiCredentials as va, GoogleFirebaseCloudFirestoreOAuth2ApiCredentials as vi, OdooApiCredentials as vn, AirtableOAuth2ApiCredentials as vo, LinkedInOAuth2ApiCredentials as vr, Signl4ApiCredentials as vt, VonageApiCredentials as w, DeepLApiCredentials as wa, GoogleChatOAuth2ApiCredentials as wi, NocoDbApiTokenCredentials as wn, AcuitySchedulingApiCredentials as wo, LemlistApiCredentials as wr, ServiceNowBasicApiCredentials as wt, WekanApiCredentials as x, DiscordBotApiCredentials as xa, GoogleContactsOAuth2ApiCredentials as xi, NpmApiCredentials as xn, AffinityApiCredentials as xo, LinearOAuth2ApiCredentials as xr, ShopifyAccessTokenApiCredentials as xt, WhatsAppTriggerApiCredentials as y, DiscordWebhookApiCredentials as ya, GoogleDriveOAuth2ApiCredentials as yi, OAuth2ApiCredentials as yn, AirtableApiCredentials as yo, LinkedInCommunityManagementOAuth2ApiCredentials as yr, ShopifyOAuth2ApiCredentials as yt, TwakeCloudApiCredentials as z, ClickUpOAuth2ApiCredentials as za, GithubApiCredentials as zi, MispApiCredentials as zn, MotorheadApiCredentials as zo, ImapCredentials as zr, RedisCredentials as zt };