You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/nodes-base/nodes/Eventbrite/EventbriteTrigger.node.ts
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,7 @@ export class EventbriteTrigger implements INodeType {
26
26
group: ['trigger'],
27
27
version: 1,
28
28
description: 'Handle Eventbrite events via webhooks',
29
+
subtitle: '={{$parameter["event"]}}',
29
30
defaults: {
30
31
name: 'Eventbrite Trigger',
31
32
},
@@ -79,7 +80,6 @@ export class EventbriteTrigger implements INodeType {
79
80
},
80
81
],
81
82
default: 'privateKey',
82
-
description: 'The resource to operate on.',
83
83
},
84
84
{
85
85
displayName: 'Organization',
@@ -90,7 +90,7 @@ export class EventbriteTrigger implements INodeType {
90
90
loadOptionsMethod: 'getOrganizations',
91
91
},
92
92
default: '',
93
-
description: '',
93
+
description: 'The Eventbrite Organization to work on',
94
94
},
95
95
{
96
96
displayName: 'Event',
@@ -104,7 +104,7 @@ export class EventbriteTrigger implements INodeType {
104
104
loadOptionsMethod: 'getEvents',
105
105
},
106
106
default: '',
107
-
description: '',
107
+
description: 'Limit the triggers to this event',
108
108
},
109
109
{
110
110
displayName: 'Actions',
@@ -174,14 +174,14 @@ export class EventbriteTrigger implements INodeType {
174
174
],
175
175
required: true,
176
176
default: [],
177
-
description: '',
177
+
description: 'One or more action to subscribe to.',
178
178
},
179
179
{
180
180
displayName: 'Resolve Data',
181
181
name: 'resolveData',
182
182
type: 'boolean',
183
183
default: true,
184
-
description: 'By default does the webhook-data only contain the URL to receive the object data manually. If this option gets activated, it will resolve the data automatically.',
184
+
description: 'By default does the webhook-data only contain the URL to receive the object data manually. If this option gets activated, it will resolve the data automatically',
185
185
},
186
186
],
187
187
};
@@ -206,7 +206,7 @@ export class EventbriteTrigger implements INodeType {
206
206
// Get all the available events to display them to user so that he can
0 commit comments