UNPKG

n8n

Version:

n8n Workflow Automation Tool

23 lines (22 loc) 1.25 kB
import { ExecutionRequest } from './execution.types'; import { ExecutionService } from './execution.service'; import { EnterpriseExecutionsService } from './execution.service.ee'; import { License } from '../License'; import { WorkflowSharingService } from '../workflows/workflowSharing.service'; export declare class ExecutionsController { private readonly executionService; private readonly enterpriseExecutionService; private readonly workflowSharingService; private readonly license; constructor(executionService: ExecutionService, enterpriseExecutionService: EnterpriseExecutionsService, workflowSharingService: WorkflowSharingService, license: License); private getAccessibleWorkflowIds; getMany(req: ExecutionRequest.GetMany): Promise<{ results: import("n8n-workflow").ExecutionSummary[]; count: number; estimated: boolean; }>; getOne(req: ExecutionRequest.GetOne): Promise<import("../Interfaces").IExecutionResponse | import("../Interfaces").IExecutionFlattedResponse | undefined>; stop(req: ExecutionRequest.Stop): Promise<import("./execution.types").StopResult>; retry(req: ExecutionRequest.Retry): Promise<boolean>; delete(req: ExecutionRequest.Delete): Promise<void>; }