mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
feat(HubSpot Trigger Node): Add conversation events (#5408)
This commit is contained in:
parent
b16d9d0f8c
commit
aeaa663620
|
@ -109,6 +109,32 @@ export class HubspotTrigger implements INodeType {
|
|||
description:
|
||||
"To get notified if a specified property is changed for any contact in a customer's account",
|
||||
},
|
||||
{
|
||||
name: 'Conversation Creation',
|
||||
value: 'conversation.creation',
|
||||
description: 'To get notified if a new thread is created in an account',
|
||||
},
|
||||
{
|
||||
name: 'Conversation Deletion',
|
||||
value: 'conversation.deletion',
|
||||
description:
|
||||
'To get notified if a thread is archived or soft-deleted in an account',
|
||||
},
|
||||
{
|
||||
name: 'Conversation New Message',
|
||||
value: 'conversation.newMessage',
|
||||
description: 'To get notified if a new message on a thread has been received',
|
||||
},
|
||||
{
|
||||
name: 'Conversation Privacy Deletion',
|
||||
value: 'conversation.privacyDeletion',
|
||||
description: 'To get notified if a thread is permanently deleted in an account',
|
||||
},
|
||||
{
|
||||
name: 'Conversation Property Change',
|
||||
value: 'conversation.propertyChange',
|
||||
description: 'To get notified if a property on a thread has been changed',
|
||||
},
|
||||
{
|
||||
name: 'Deal Created',
|
||||
value: 'deal.creation',
|
||||
|
|
Loading…
Reference in a new issue