mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
91 lines
1.8 KiB
TypeScript
91 lines
1.8 KiB
TypeScript
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
|
|
import type { INodeTypeDescription } from 'n8n-workflow';
|
|
|
|
import * as drive from './drive/Drive.resource';
|
|
import * as file from './file/File.resource';
|
|
import * as fileFolder from './fileFolder/FileFolder.resource';
|
|
import * as folder from './folder/Folder.resource';
|
|
|
|
export const versionDescription: INodeTypeDescription = {
|
|
displayName: 'Google Drive',
|
|
name: 'googleDrive',
|
|
icon: 'file:googleDrive.svg',
|
|
group: ['input'],
|
|
version: 3,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Access data on Google Drive',
|
|
defaults: {
|
|
name: 'Google Drive',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'googleApi',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
authentication: ['serviceAccount'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: 'googleDriveOAuth2Api',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
authentication: ['oAuth2'],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Authentication',
|
|
name: 'authentication',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
|
name: 'OAuth2 (recommended)',
|
|
value: 'oAuth2',
|
|
},
|
|
{
|
|
name: 'Service Account',
|
|
value: 'serviceAccount',
|
|
},
|
|
],
|
|
default: 'oAuth2',
|
|
},
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'File',
|
|
value: 'file',
|
|
},
|
|
{
|
|
name: 'File/Folder',
|
|
value: 'fileFolder',
|
|
},
|
|
{
|
|
name: 'Folder',
|
|
value: 'folder',
|
|
},
|
|
{
|
|
name: 'Shared Drive',
|
|
value: 'drive',
|
|
},
|
|
],
|
|
default: 'file',
|
|
},
|
|
...drive.description,
|
|
...file.description,
|
|
...fileFolder.description,
|
|
...folder.description,
|
|
],
|
|
};
|