n8n/packages/nodes-base/credentials/MondayComOAuth2Api.credentials.ts
2021-06-12 18:39:55 +02:00

53 lines
1,010 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
const scopes = [
'boards:write',
'boards:read',
];
export class MondayComOAuth2Api implements ICredentialType {
name = 'mondayComOAuth2Api';
extends = [
'oAuth2Api',
];
displayName = 'Monday.com OAuth2 API';
documentationUrl = 'monday';
properties: INodeProperties[] = [
{
displayName: 'Authorization URL',
name: 'authUrl',
type: 'hidden',
default: 'https://auth.monday.com/oauth2/authorize',
required: true,
},
{
displayName: 'Access Token URL',
name: 'accessTokenUrl',
type: 'hidden',
default: 'https://auth.monday.com/oauth2/token',
required: true,
},
{
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',
},
];
}