UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

52 lines 1.54 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MondayComOAuth2Api = void 0; const scopes = ['boards:write', 'boards:read']; class MondayComOAuth2Api { name = 'mondayComOAuth2Api'; extends = ['oAuth2Api']; displayName = 'Monday.com OAuth2 API'; documentationUrl = 'mondaycom'; properties = [ { displayName: 'Grant Type', name: 'grantType', type: 'hidden', default: 'authorizationCode', }, { 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', }, ]; } exports.MondayComOAuth2Api = MondayComOAuth2Api; //# sourceMappingURL=MondayComOAuth2Api.credentials.js.map