/** * Execution Data Node - Version 1.1 * Add execution data for search */ export interface ExecutionDataV11Params { operation?: 'save'; /** * Data to Save * @displayOptions.show { operation: ["save"] } * @default {} */ dataToSave?: { /** Values */ values?: Array<{ /** Key */ key?: string | Expression | PlaceholderValue; /** Value */ value?: string | Expression | PlaceholderValue; }>; }; } interface ExecutionDataV11NodeBase { type: 'n8n-nodes-base.executionData'; version: 1.1; } export type ExecutionDataV11ParamsNode = ExecutionDataV11NodeBase & { config: NodeConfig; }; export type ExecutionDataV11Node = ExecutionDataV11ParamsNode;