feat(Data Table Node): Add Data Table Node (no-changelog) (#18556)

This commit is contained in:
Charlie Kolb
2025-08-25 15:57:55 +02:00
committed by GitHub
parent e6b6678128
commit 1777803e26
16 changed files with 741 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
import type { DataStoreColumnJsType } from 'n8n-workflow';
export const ANY_FILTER = 'anyFilter';
export const ALL_FILTERS = 'allFilters';
export type FilterType = typeof ANY_FILTER | typeof ALL_FILTERS;
export type FieldEntry = {
keyName: string;
condition: 'eq' | 'neq';
keyValue: DataStoreColumnJsType;
};