/** * Execute Command Node - Version 1 * Executes a command on the host */ export interface ExecuteCommandV1Params { /** * Whether to execute only once instead of once for each entry * @default true */ executeOnce?: boolean | Expression; /** * The command to execute */ command?: string | Expression | PlaceholderValue; } interface ExecuteCommandV1NodeBase { type: 'n8n-nodes-base.executeCommand'; version: 1; } export type ExecuteCommandV1ParamsNode = ExecuteCommandV1NodeBase & { config: NodeConfig; }; export type ExecuteCommandV1Node = ExecuteCommandV1ParamsNode;