n8n/packages/nodes-base/credentials/KeapOAuth2Api.credentials.ts

53 lines
1 KiB
TypeScript
Raw Normal View History

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
2020-04-01 15:10:41 -07:00
const scopes = ['full'];
2020-04-01 15:10:41 -07:00
2020-04-02 16:37:40 -07:00
export class KeapOAuth2Api implements ICredentialType {
name = 'keapOAuth2Api';
extends = ['oAuth2Api'];
2020-04-02 16:37:40 -07:00
displayName = 'Keap OAuth2 API';
documentationUrl = 'keap';
properties: INodeProperties[] = [
{
displayName: 'Grant Type',
name: 'grantType',
type: 'hidden',
default: 'authorizationCode',
},
2020-04-01 15:10:41 -07:00
{
displayName: 'Authorization URL',
name: 'authUrl',
type: 'hidden',
2020-04-01 15:10:41 -07:00
default: 'https://signin.infusionsoft.com/app/oauth/authorize',
},
{
displayName: 'Access Token URL',
name: 'accessTokenUrl',
type: 'hidden',
2020-04-01 15:10:41 -07:00
default: 'https://api.infusionsoft.com/token',
},
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
2020-04-01 15:10:41 -07:00
default: scopes.join(' '),
},
{
displayName: 'Auth URI Query Parameters',
name: 'authQueryParameters',
type: 'hidden',
2020-04-01 15:10:41 -07:00
default: '',
},
{
displayName: 'Authentication',
name: 'authentication',
type: 'hidden',
2020-04-01 15:10:41 -07:00
default: 'body',
},
];
}