UNPKG

n8n

Version:

n8n Workflow Automation Tool

30 lines (29 loc) 1.55 kB
import { Logger } from '@n8n/backend-common'; import type { IExecutionResponse } from '@n8n/db'; import { ExecutionRepository } from '@n8n/db'; import type express from 'express'; import { NodeTypes } from '../node-types'; import { WebhookService } from './webhook.service'; import type { IWebhookResponseCallbackData, IWebhookManager, WaitingWebhookRequest } from './webhook.types'; export declare class WaitingWebhooks implements IWebhookManager { protected readonly logger: Logger; protected readonly nodeTypes: NodeTypes; private readonly executionRepository; private readonly webhookService; protected includeForms: boolean; constructor(logger: Logger, nodeTypes: NodeTypes, executionRepository: ExecutionRepository, webhookService: WebhookService); protected logReceivedWebhook(method: string, executionId: string): void; protected disableNode(execution: IExecutionResponse, _method?: string): void; private isSendAndWaitRequest; private createWorkflow; protected getExecution(executionId: string): Promise<IExecutionResponse | undefined>; executeWebhook(req: WaitingWebhookRequest, res: express.Response): Promise<IWebhookResponseCallbackData>; protected getWebhookExecutionData({ execution, req, res, lastNodeExecuted, executionId, suffix, }: { execution: IExecutionResponse; req: WaitingWebhookRequest; res: express.Response; lastNodeExecuted: string; executionId: string; suffix?: string; }): Promise<IWebhookResponseCallbackData>; }