n8n-nodes-base
Version:
Base nodes of n8n
37 lines (32 loc) • 764 B
text/typescript
/**
* 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<string> | PlaceholderValue;
/** Value
*/
value?: string | Expression<string> | PlaceholderValue;
}>;
};
}
interface ExecutionDataV11NodeBase {
type: 'n8n-nodes-base.executionData';
version: 1.1;
}
export type ExecutionDataV11ParamsNode = ExecutionDataV11NodeBase & {
config: NodeConfig<ExecutionDataV11Params>;
};
export type ExecutionDataV11Node = ExecutionDataV11ParamsNode;