mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-31 16:57:08 +02:00
13 lines
350 B
TypeScript
13 lines
350 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 simulates and returns affected rows in their "before" and "after" states',
|
|
} satisfies INodeProperties;
|