n8n-nodes-base
Version:
Base nodes of n8n
28 lines • 1.4 kB
TypeScript
import { type CodeExecutionMode, type IExecuteFunctions, type INodeExecutionData, type WorkflowExecuteMode } from 'n8n-workflow';
export declare class PythonTaskRunnerSandbox {
private readonly pythonCode;
private readonly nodeMode;
private readonly workflowMode;
private readonly executeFunctions;
private readonly additionalProperties;
constructor(pythonCode: string, nodeMode: CodeExecutionMode, workflowMode: WorkflowExecuteMode, executeFunctions: IExecuteFunctions, additionalProperties?: Record<string, unknown>);
private validateCode;
/**
* Run a script by forwarding it to a Python task runner, together with input items.
*
* The Python runner receives input items together with the task, whereas the
* JavaScript runner does _not_ receive input items together with the task and
* instead retrieves them later, only if needed, via an RPC request.
*/
runUsingIncomingItems(): Promise<INodeExecutionData[]>;
/**
* Run a script for tool execution.
*
* Unlike `runUsingIncomingItems`, this method:
* - Sends empty items (tools don't process workflow items)
* - Passes `query` from `additionalProperties` to the runner
* - Does not validate the result from the runner (tools can return any type)
*/
runCodeForTool(): Promise<unknown>;
}
//# sourceMappingURL=PythonTaskRunnerSandbox.d.ts.map