Skip to content

Commit

Permalink
feat(HubSpot Trigger Node): Add support for ticket related events (#7156
Browse files Browse the repository at this point in the history
)
  • Loading branch information
dkarzon authored and elsmr committed Oct 19, 2023
1 parent 0854d3f commit 90e9715
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions packages/nodes-base/nodes/Hubspot/HubspotTrigger.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 90e9715

Please sign in to comment.