mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const DATA_TABLE_ID_FIELD = 'dataTableId';
|
|
|
|
export const DRY_RUN = {
|
|
displayName: 'Dry Run',
|
|
name: 'dryRun',
|
|
type: 'boolean',
|
|
default: false,
|
|
description:
|
|
'Whether the operation should only be simulated, returning the rows that would have been affected',
|
|
} satisfies INodeProperties;
|