mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
feat(Lemlist Trigger Node): Update Trigger events (#10311)
This commit is contained in:
parent
c9b3d34a54
commit
15f10ec325
|
@ -71,16 +71,53 @@ export async function lemlistApiRequestAllItems(
|
|||
export function getEvents() {
|
||||
const events = [
|
||||
'*',
|
||||
'emailsBounced',
|
||||
'contacted',
|
||||
'hooked',
|
||||
'attracted',
|
||||
'warmed',
|
||||
'interested',
|
||||
'skipped',
|
||||
'notInterested',
|
||||
'emailsSent',
|
||||
'emailsOpened',
|
||||
'emailsClicked',
|
||||
'emailsReplied',
|
||||
'emailsBounced',
|
||||
'emailsSendFailed',
|
||||
'emailsFailed',
|
||||
'emailsUnsubscribed',
|
||||
'emailsInterested',
|
||||
'emailsNotInterested',
|
||||
'emailsOpened',
|
||||
'emailsReplied',
|
||||
'emailsSendFailed',
|
||||
'emailsSent',
|
||||
'emailsUnsubscribed',
|
||||
'opportunitiesDone',
|
||||
'aircallCreated',
|
||||
'aircallEnded',
|
||||
'aircallDone',
|
||||
'aircallInterested',
|
||||
'aircallNotInterested',
|
||||
'apiDone',
|
||||
'apiInterested',
|
||||
'apiNotInterested',
|
||||
'apiFailed',
|
||||
'linkedinVisitDone',
|
||||
'linkedinVisitFailed',
|
||||
'linkedinInviteDone',
|
||||
'linkedinInviteFailed',
|
||||
'linkedinInviteAccepted',
|
||||
'linkedinReplied',
|
||||
'linkedinSent',
|
||||
'linkedinVoiceNoteDone',
|
||||
'linkedinVoiceNoteFailed',
|
||||
'linkedinInterested',
|
||||
'linkedinNotInterested',
|
||||
'linkedinSendFailed',
|
||||
'manualInterested',
|
||||
'manualNotInterested',
|
||||
'paused',
|
||||
'resumed',
|
||||
'customDomainErrors',
|
||||
'connectionIssue',
|
||||
'sendLimitReached',
|
||||
'lemwarmPaused',
|
||||
];
|
||||
|
||||
return events.map((event: string) => ({
|
||||
|
|
|
@ -55,7 +55,7 @@ export class LemlistTrigger implements INodeType {
|
|||
default: {},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Campaing Name or ID',
|
||||
displayName: 'Campaign Name or ID',
|
||||
name: 'campaignId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
Loading…
Reference in a new issue