mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
feat(HubSpot Trigger Node): Add support for ticket related events (#7156)
This commit is contained in:
@@ -151,6 +151,22 @@ export class HubspotTrigger implements INodeType {
|
|||||||
description:
|
description:
|
||||||
"To get notified if a specified property is changed for any deal in a customer's account",
|
"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',
|
default: 'contact.creation',
|
||||||
required: true,
|
required: true,
|
||||||
|
|||||||
Reference in New Issue
Block a user