UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

27 lines 917 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GmailOAuth2Api = void 0; const scopes = [ 'https://www.googleapis.com/auth/gmail.labels', 'https://www.googleapis.com/auth/gmail.addons.current.action.compose', 'https://www.googleapis.com/auth/gmail.addons.current.message.action', 'https://mail.google.com/', 'https://www.googleapis.com/auth/gmail.modify', 'https://www.googleapis.com/auth/gmail.compose', ]; class GmailOAuth2Api { name = 'gmailOAuth2'; extends = ['googleOAuth2Api']; displayName = 'Gmail OAuth2 API'; documentationUrl = 'google/oauth-single-service'; properties = [ { displayName: 'Scope', name: 'scope', type: 'hidden', default: scopes.join(' '), }, ]; } exports.GmailOAuth2Api = GmailOAuth2Api; //# sourceMappingURL=GmailOAuth2Api.credentials.js.map