n8n-nodes-base
Version:
Base nodes of n8n
23 lines • 748 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GoogleCalendarOAuth2Api = void 0;
const scopes = [
'https://www.googleapis.com/auth/calendar',
'https://www.googleapis.com/auth/calendar.events',
];
class GoogleCalendarOAuth2Api {
name = 'googleCalendarOAuth2Api';
extends = ['googleOAuth2Api'];
displayName = 'Google Calendar OAuth2 API';
documentationUrl = 'google/oauth-single-service';
properties = [
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: scopes.join(' '),
},
];
}
exports.GoogleCalendarOAuth2Api = GoogleCalendarOAuth2Api;
//# sourceMappingURL=GoogleCalendarOAuth2Api.credentials.js.map