mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
feat(Lemlist Trigger Node): Update Trigger events (#10311)
This commit is contained in:
@@ -71,16 +71,53 @@ export async function lemlistApiRequestAllItems(
|
|||||||
export function getEvents() {
|
export function getEvents() {
|
||||||
const events = [
|
const events = [
|
||||||
'*',
|
'*',
|
||||||
'emailsBounced',
|
'contacted',
|
||||||
|
'hooked',
|
||||||
|
'attracted',
|
||||||
|
'warmed',
|
||||||
|
'interested',
|
||||||
|
'skipped',
|
||||||
|
'notInterested',
|
||||||
|
'emailsSent',
|
||||||
|
'emailsOpened',
|
||||||
'emailsClicked',
|
'emailsClicked',
|
||||||
|
'emailsReplied',
|
||||||
|
'emailsBounced',
|
||||||
|
'emailsSendFailed',
|
||||||
'emailsFailed',
|
'emailsFailed',
|
||||||
|
'emailsUnsubscribed',
|
||||||
'emailsInterested',
|
'emailsInterested',
|
||||||
'emailsNotInterested',
|
'emailsNotInterested',
|
||||||
'emailsOpened',
|
'opportunitiesDone',
|
||||||
'emailsReplied',
|
'aircallCreated',
|
||||||
'emailsSendFailed',
|
'aircallEnded',
|
||||||
'emailsSent',
|
'aircallDone',
|
||||||
'emailsUnsubscribed',
|
'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) => ({
|
return events.map((event: string) => ({
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ export class LemlistTrigger implements INodeType {
|
|||||||
default: {},
|
default: {},
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
displayName: 'Campaing Name or ID',
|
displayName: 'Campaign Name or ID',
|
||||||
name: 'campaignId',
|
name: 'campaignId',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
|
|||||||
Reference in New Issue
Block a user