test(Salesforce Node): Add unit and workflow tests for the Salesforce node (#14595)

This commit is contained in:
RomanDavydchuk
2025-04-14 14:29:04 +03:00
committed by GitHub
parent c469ebb41a
commit 57bd51b3e5
18 changed files with 2972 additions and 0 deletions

View File

@@ -285,4 +285,17 @@ BQIDAQAB
discordWebhookApi: {
webhookUri: 'https://discord.com/webhook',
},
salesforceOAuth2Api: {
grantType: 'pkce',
environment: 'production',
authUrl: 'https://login.salesforce.com/services/oauth2/authorize',
accessTokenUrl: 'https://login.salesforce.com/services/oauth2/token',
scope: 'full refresh_token',
authQueryParameters: '',
authentication: 'header',
oauthTokenData: {
access_token: 'ACCESSTOKEN',
instance_url: 'https://salesforce.instance',
},
},
} as const;