UNPKG

n8n

Version:

n8n Workflow Automation Tool

40 lines (39 loc) 2.72 kB
import { GlobalConfig } from '@n8n/config'; import { ErrorReporter, Logger } from 'n8n-core'; import type { IDeferredPromise, IExecuteResponsePromiseData, INode, INodeExecutionData, IPinData, IWorkflowExecuteAdditionalData, WorkflowExecuteMode, IWorkflowBase } from 'n8n-workflow'; import type { Project } from '../databases/entities/project'; import type { User } from '../databases/entities/user'; import { ExecutionRepository } from '../databases/repositories/execution.repository'; import { WorkflowRepository } from '../databases/repositories/workflow.repository'; import { ExecutionDataService } from '../executions/execution-data.service'; import { SubworkflowPolicyChecker } from '../executions/pre-execution-checks'; import type { IWorkflowErrorData } from '../interfaces'; import { NodeTypes } from '../node-types'; import { TestWebhooks } from '../webhooks/test-webhooks'; import { WorkflowRunner } from '../workflow-runner'; import type { WorkflowRequest } from '../workflows/workflow.request'; export declare class WorkflowExecutionService { private readonly logger; private readonly errorReporter; private readonly executionRepository; private readonly workflowRepository; private readonly nodeTypes; private readonly testWebhooks; private readonly workflowRunner; private readonly globalConfig; private readonly subworkflowPolicyChecker; private readonly executionDataService; constructor(logger: Logger, errorReporter: ErrorReporter, executionRepository: ExecutionRepository, workflowRepository: WorkflowRepository, nodeTypes: NodeTypes, testWebhooks: TestWebhooks, workflowRunner: WorkflowRunner, globalConfig: GlobalConfig, subworkflowPolicyChecker: SubworkflowPolicyChecker, executionDataService: ExecutionDataService); runWorkflow(workflowData: IWorkflowBase, node: INode, data: INodeExecutionData[][], additionalData: IWorkflowExecuteAdditionalData, mode: WorkflowExecuteMode, responsePromise?: IDeferredPromise<IExecuteResponsePromiseData>): Promise<string>; private isDestinationNodeATrigger; executeManually({ workflowData, runData, startNodes, destinationNode, dirtyNodeNames, triggerToStartFrom, }: WorkflowRequest.ManualRunPayload, user: User, pushRef?: string, partialExecutionVersion?: 1 | 2): Promise<{ waitingForWebhook: boolean; executionId?: undefined; } | { executionId: string; waitingForWebhook?: undefined; }>; executeErrorWorkflow(workflowId: string, workflowErrorData: IWorkflowErrorData, runningProject: Project): Promise<void>; selectPinnedActivatorStarter(workflow: IWorkflowBase, startNodes?: string[], pinData?: IPinData): INode | null; private findAllPinnedActivators; }