feat(HubSpot Trigger Node): Add conversation events (#5408)

This commit is contained in:
Bram Kn 2023-02-08 13:36:05 +01:00 committed by GitHub
parent b16d9d0f8c
commit aeaa663620
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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',