n8n/packages/nodes-base/credentials/GoogleDocsOAuth2Api.credentials.ts
Iván Ovejero fa05d7557b
Simplify more property types in credentials classes (#2211)
*  Simplify more property types

* 👕 Fix lint
2021-10-07 23:07:56 +02:00

28 lines
569 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
const scopes = [
'https://www.googleapis.com/auth/documents',
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/drive.file',
];
export class GoogleDocsOAuth2Api implements ICredentialType {
name = 'googleDocsOAuth2Api';
extends = [
'googleOAuth2Api',
];
displayName = 'Google Docs OAuth2 API';
documentationUrl = 'google';
properties: INodeProperties[] = [
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: scopes.join(' '),
},
];
}