fix(Google Sheets Node): Check for column names changes before upsert, append, update (#9649)

This commit is contained in:
Michael Kret
2024-06-20 16:19:16 +03:00
committed by GitHub
parent cdc2f9e7d3
commit 223488f190
7 changed files with 127 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ export class GoogleSheets extends VersionedNodeType {
name: 'googleSheets',
icon: 'file:googleSheets.svg',
group: ['input', 'output'],
defaultVersion: 4.3,
defaultVersion: 4.4,
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
description: 'Read, update and write data to Google Sheets',
};
@@ -24,6 +24,7 @@ export class GoogleSheets extends VersionedNodeType {
4.1: new GoogleSheetsV2(baseDescription),
4.2: new GoogleSheetsV2(baseDescription),
4.3: new GoogleSheetsV2(baseDescription),
4.4: new GoogleSheetsV2(baseDescription),
};
super(nodeVersions, baseDescription);