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

62 lines
1.2 KiB
TypeScript
Raw Normal View History

2020-06-04 06:54:39 -07:00
import {
ICredentialType,
INodeProperties,
2020-06-04 06:54:39 -07:00
} from 'n8n-workflow';
export class MailchimpOAuth2Api implements ICredentialType {
name = 'mailchimpOAuth2Api';
extends = [
'oAuth2Api',
];
displayName = 'Mailchimp OAuth2 API';
documentationUrl = 'mailchimp';
properties: INodeProperties[] = [
{
displayName: 'Grant Type',
name: 'grantType',
type: 'hidden',
default: 'authorizationCode',
},
2020-06-04 06:54:39 -07:00
{
displayName: 'Authorization URL',
name: 'authUrl',
type: 'hidden',
2020-06-04 06:54:39 -07:00
default: 'https://login.mailchimp.com/oauth2/authorize',
required: true,
},
{
displayName: 'Access Token URL',
name: 'accessTokenUrl',
type: 'hidden',
2020-06-04 06:54:39 -07:00
default: 'https://login.mailchimp.com/oauth2/token',
required: true,
},
{
displayName: 'Metadata',
name: 'metadataUrl',
type: 'hidden',
2020-06-04 06:54:39 -07:00
default: 'https://login.mailchimp.com/oauth2/metadata',
required: true,
},
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
2020-06-04 06:54:39 -07:00
default: '',
},
{
displayName: 'Auth URI Query Parameters',
name: 'authQueryParameters',
type: 'hidden',
2020-06-04 06:54:39 -07:00
default: '',
},
{
displayName: 'Authentication',
name: 'authentication',
type: 'hidden',
default: 'body',
2020-06-04 06:54:39 -07:00
},
];
}