2023-01-27 03:22:44 -08:00
import type { ICredentialType , INodeProperties } from 'n8n-workflow' ;
2023-01-17 05:21:16 -08:00
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 ( ' ' ) ,
} ,
2023-04-20 03:40:35 -07:00
{
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 : '' ,
} ,
2023-01-17 05:21:16 -08:00
] ;
}