10 lines
296 B
TypeScript
10 lines
296 B
TypeScript
|
|
import type { INodeProperties } from 'n8n-workflow';
|
||
|
|
|
||
|
|
export const includeInputFields: INodeProperties = {
|
||
|
|
displayName: 'Include Input Fields',
|
||
|
|
name: 'includeInputFields',
|
||
|
|
type: 'boolean',
|
||
|
|
default: false,
|
||
|
|
description: 'Whether to include all fields of the input item in the output item',
|
||
|
|
};
|