n8n-nodes-base
Version:
Base nodes of n8n
50 lines • 1.43 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.KeapOAuth2Api = void 0;
const scopes = ['full'];
class KeapOAuth2Api {
name = 'keapOAuth2Api';
extends = ['oAuth2Api'];
displayName = 'Keap OAuth2 API';
documentationUrl = 'keap';
properties = [
{
displayName: 'Grant Type',
name: 'grantType',
type: 'hidden',
default: 'authorizationCode',
},
{
displayName: 'Authorization URL',
name: 'authUrl',
type: 'hidden',
default: 'https://signin.infusionsoft.com/app/oauth/authorize',
},
{
displayName: 'Access Token URL',
name: 'accessTokenUrl',
type: 'hidden',
default: 'https://api.infusionsoft.com/token',
},
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: scopes.join(' '),
},
{
displayName: 'Auth URI Query Parameters',
name: 'authQueryParameters',
type: 'hidden',
default: '',
},
{
displayName: 'Authentication',
name: 'authentication',
type: 'hidden',
default: 'body',
},
];
}
exports.KeapOAuth2Api = KeapOAuth2Api;
//# sourceMappingURL=KeapOAuth2Api.credentials.js.map