2020-08-15 14:25:15 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
2021-06-12 09:39:55 -07:00
|
|
|
INodeProperties,
|
2020-08-15 14:25:15 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
const scopes = [
|
|
|
|
'https://www.googleapis.com/auth/contacts',
|
|
|
|
];
|
|
|
|
|
|
|
|
export class GoogleContactsOAuth2Api implements ICredentialType {
|
|
|
|
name = 'googleContactsOAuth2Api';
|
|
|
|
extends = [
|
|
|
|
'googleOAuth2Api',
|
|
|
|
];
|
|
|
|
displayName = 'Google Contacts OAuth2 API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'google';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-08-15 14:25:15 -07:00
|
|
|
{
|
|
|
|
displayName: 'Scope',
|
|
|
|
name: 'scope',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-08-15 14:25:15 -07:00
|
|
|
default: scopes.join(' '),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|