mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(Data Table Node): Add Data Table Node (no-changelog) (#18556)
This commit is contained in:
12
packages/nodes-base/nodes/DataTable/common/constants.ts
Normal file
12
packages/nodes-base/nodes/DataTable/common/constants.ts
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user