feat(Telegram Node): New operation sendAndWait (#12771)

This commit is contained in:
Michael Kret
2025-01-24 13:44:05 +02:00
committed by GitHub
parent 5b760e7f7f
commit 2c58d47f8e
8 changed files with 269 additions and 124 deletions

View File

@@ -0,0 +1,22 @@
import type { IWebhookDescription } from 'n8n-workflow';
export const sendAndWaitWebhooks: IWebhookDescription[] = [
{
name: 'default',
httpMethod: 'GET',
responseMode: 'onReceived',
responseData: '',
path: '={{ $nodeId }}',
restartWebhook: true,
isFullPath: true,
},
{
name: 'default',
httpMethod: 'POST',
responseMode: 'onReceived',
responseData: '',
path: '={{ $nodeId }}',
restartWebhook: true,
isFullPath: true,
},
];