feat(HubSpot Trigger Node): Add support for ticket related events (#7156)

This commit is contained in:
Damian Karzon 2023-10-14 01:52:22 +10:00 committed by GitHub
parent e01b9e5ae1
commit 57c609384a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -151,6 +151,22 @@ export class HubspotTrigger implements INodeType {
description:
"To get notified if a specified property is changed for any deal in a customer's account",
},
{
name: 'Ticket Created',
value: 'ticket.creation',
description: "To get notified if a ticket is created in a customer's account",
},
{
name: 'Ticket Deleted',
value: 'ticket.deletion',
description: "To get notified if any ticket is deleted in a customer's account",
},
{
name: 'Ticket Property Changed',
value: 'ticket.propertyChange',
description:
"To get notified if a specified property is changed for any ticket in a customer's account",
},
],
default: 'contact.creation',
required: true,