mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
4605228d13
* ✨ Add Google Slides node * 🔨 Minor fixes * 🔨 Refactor Google Slides node * ⚡ Improvements * ⚡ Add download option and fix multi items on Google Slides Co-authored-by: Tanay Pant <tanaypant@protonmail.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
27 lines
541 B
TypeScript
27 lines
541 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
const scopes = [
|
|
'https://www.googleapis.com/auth/drive.file',
|
|
'https://www.googleapis.com/auth/presentations',
|
|
];
|
|
|
|
export class GoogleSlidesOAuth2Api implements ICredentialType {
|
|
name = 'googleSlidesOAuth2Api';
|
|
extends = [
|
|
'googleOAuth2Api',
|
|
];
|
|
displayName = 'Google Slides OAuth2 API';
|
|
documentationUrl = 'google';
|
|
properties = [
|
|
{
|
|
displayName: 'Scope',
|
|
name: 'scope',
|
|
type: 'hidden' as NodePropertyTypes,
|
|
default: scopes.join(' '),
|
|
},
|
|
];
|
|
}
|