mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(Telegram Node): New operation sendAndWait (#12771)
This commit is contained in:
22
packages/nodes-base/utils/sendAndWait/descriptions.ts
Normal file
22
packages/nodes-base/utils/sendAndWait/descriptions.ts
Normal 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,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user