Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
119 lines
3.3 KiB
TypeScript
119 lines
3.3 KiB
TypeScript
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
|
|
import type { INodeProperties, INodeTypeDescription } from 'n8n-workflow';
|
|
import { NodeConnectionTypes } from 'n8n-workflow';
|
|
|
|
import * as sheet from './sheet/Sheet.resource';
|
|
import * as spreadsheet from './spreadsheet/SpreadSheet.resource';
|
|
|
|
export const authentication: INodeProperties = {
|
|
displayName: 'Authentication',
|
|
name: 'authentication',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Service Account',
|
|
value: 'serviceAccount',
|
|
},
|
|
{
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
|
name: 'OAuth2 (recommended)',
|
|
value: 'oAuth2',
|
|
},
|
|
],
|
|
default: 'oAuth2',
|
|
};
|
|
|
|
export const versionDescription: INodeTypeDescription = {
|
|
displayName: 'Google Sheets',
|
|
name: 'googleSheets',
|
|
icon: 'file:googleSheets.svg',
|
|
group: ['input', 'output'],
|
|
version: [3, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7],
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Read, update and write data to Google Sheets',
|
|
defaults: {
|
|
name: 'Google Sheets',
|
|
},
|
|
inputs: [NodeConnectionTypes.Main],
|
|
outputs: [NodeConnectionTypes.Main],
|
|
usableAsTool: true,
|
|
hints: [
|
|
{
|
|
message:
|
|
"Use the 'Minimise API Calls' option for greater efficiency if your sheet is uniformly formatted without gaps between columns or rows",
|
|
displayCondition:
|
|
'={{$parameter["operation"] === "append" && !$parameter["options"]["useAppend"]}}',
|
|
whenToDisplay: 'beforeExecution',
|
|
location: 'outputPane',
|
|
},
|
|
{
|
|
message: 'No columns found in Google Sheet. All rows will be appended',
|
|
displayCondition:
|
|
'={{ ["appendOrUpdate", "append"].includes($parameter["operation"]) && $parameter?.columns?.mappingMode === "defineBelow" && !$parameter?.columns?.schema?.length }}',
|
|
whenToDisplay: 'beforeExecution',
|
|
location: 'outputPane',
|
|
},
|
|
{
|
|
type: 'info',
|
|
message:
|
|
'Note on using an expression for Sheet: It will be evaluated only once, so all items will use the <em>same</em> sheet. It will be calculated by evaluating the expression for the <strong>first input item</strong>.',
|
|
displayCondition:
|
|
'={{ $rawParameter.sheetName?.startsWith("=") && $input.all().length > 1 }}',
|
|
whenToDisplay: 'always',
|
|
location: 'outputPane',
|
|
},
|
|
{
|
|
type: 'info',
|
|
message:
|
|
'Note on using an expression for Document: It will be evaluated only once, so all items will use the <em>same</em> document. It will be calculated by evaluating the expression for the <strong>first input item</strong>.',
|
|
displayCondition:
|
|
'={{ $rawParameter.documentId?.startsWith("=") && $input.all().length > 1 }}',
|
|
whenToDisplay: 'always',
|
|
location: 'outputPane',
|
|
},
|
|
],
|
|
credentials: [
|
|
{
|
|
name: 'googleApi',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
authentication: ['serviceAccount'],
|
|
},
|
|
},
|
|
testedBy: 'googleApiCredentialTest',
|
|
},
|
|
{
|
|
name: 'googleSheetsOAuth2Api',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
authentication: ['oAuth2'],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
properties: [
|
|
authentication,
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Document',
|
|
value: 'spreadsheet',
|
|
},
|
|
{
|
|
name: 'Sheet Within Document',
|
|
value: 'sheet',
|
|
},
|
|
],
|
|
default: 'sheet',
|
|
},
|
|
...sheet.descriptions,
|
|
...spreadsheet.descriptions,
|
|
],
|
|
};
|