2020-05-30 12:09:04 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
|
|
|
NodePropertyTypes,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
const scopes = [
|
|
|
|
'https://www.googleapis.com/auth/calendar',
|
|
|
|
'https://www.googleapis.com/auth/calendar.events',
|
|
|
|
];
|
|
|
|
|
2020-05-31 10:24:14 -07:00
|
|
|
export class GoogleCalendarOAuth2Api implements ICredentialType {
|
|
|
|
name = 'googleCalendarOAuth2Api';
|
2020-05-30 12:09:04 -07:00
|
|
|
extends = [
|
2020-05-31 10:24:14 -07:00
|
|
|
'googleOAuth2Api',
|
2020-05-30 12:09:04 -07:00
|
|
|
];
|
2020-05-31 10:24:14 -07:00
|
|
|
displayName = 'Google Calendar OAuth2 API';
|
2020-05-30 12:09:04 -07:00
|
|
|
properties = [
|
|
|
|
{
|
|
|
|
displayName: 'Scope',
|
|
|
|
name: 'scope',
|
|
|
|
type: 'hidden' as NodePropertyTypes,
|
|
|
|
default: scopes.join(' '),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|