mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
38 lines
1 KiB
TypeScript
38 lines
1 KiB
TypeScript
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
const scopes = [
|
|
'https://www.googleapis.com/auth/drive',
|
|
'https://www.googleapis.com/auth/drive.file',
|
|
'https://www.googleapis.com/auth/spreadsheets',
|
|
'https://www.googleapis.com/auth/drive.metadata',
|
|
];
|
|
|
|
export class GoogleSheetsTriggerOAuth2Api implements ICredentialType {
|
|
name = 'googleSheetsTriggerOAuth2Api';
|
|
|
|
extends = ['googleOAuth2Api'];
|
|
|
|
displayName = 'Google Sheets Trigger OAuth2 API';
|
|
|
|
documentationUrl = 'google/oauth-single-service';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Scope',
|
|
name: 'scope',
|
|
type: 'hidden',
|
|
default: scopes.join(' '),
|
|
},
|
|
{
|
|
displayName:
|
|
'Make sure you have enabled the following APIs & Services in the Google Cloud Console: Google Drive API, Google Sheets API. <a href="https://docs.n8n.io/integrations/builtin/credentials/google/oauth-generic/#scopes" target="_blank">More info</a>.',
|
|
name: 'notice',
|
|
type: 'notice',
|
|
default: '',
|
|
displayOptions: {
|
|
hideOnCloud: true,
|
|
},
|
|
},
|
|
];
|
|
}
|