feat: Send and wait operation - freeText and customForm response types (#12106)

This commit is contained in:
Michael Kret
2024-12-16 17:30:11 +02:00
committed by GitHub
parent 39462abe1f
commit e98c7f160b
13 changed files with 476 additions and 59 deletions

View File

@@ -3,6 +3,7 @@
"nodeVersion": "1.0",
"codexVersion": "1.0",
"categories": ["Communication"],
"alias": ["human", "form", "wait"],
"resources": {
"credentialDocumentation": [
{

View File

@@ -33,9 +33,9 @@ export const messageOperations: INodeProperties[] = [
action: 'Send a message',
},
{
name: 'Send and Wait for Approval',
name: 'Send and Wait for Response',
value: SEND_AND_WAIT_OPERATION,
action: 'Send a message and wait for approval',
action: 'Send message and wait for response',
},
{
name: 'Update',

View File

@@ -89,6 +89,15 @@ export class SlackV2 implements INodeType {
restartWebhook: true,
isFullPath: true,
},
{
name: 'default',
httpMethod: 'POST',
responseMode: 'onReceived',
responseData: '',
path: '={{ $nodeId }}',
restartWebhook: true,
isFullPath: true,
},
],
properties: [
{