feat(Data Table Node): Add Update, Upsert operations (no-changelog) (#18820)

This commit is contained in:
Charlie Kolb
2025-08-28 13:20:29 +02:00
committed by GitHub
parent 0347c32cd5
commit 1b743ae251
12 changed files with 241 additions and 59 deletions

View File

@@ -3,7 +3,9 @@ import { NodeOperationError } from 'n8n-workflow';
import * as row from './row/Row.resource';
type DataTableNodeType = AllEntities<{ row: 'insert' | 'get' | 'deleteRows' }>;
type DataTableNodeType = AllEntities<{
row: 'insert' | 'get' | 'deleteRows' | 'update' | 'upsert';
}>;
export async function router(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
const operationResult: INodeExecutionData[] = [];