From 2125beb216e9ceed1549bd4b5e33fbd909c7da99 Mon Sep 17 00:00:00 2001 From: Tom <19203795+that-one-tom@users.noreply.github.com> Date: Thu, 4 Nov 2021 05:47:41 +0100 Subject: [PATCH] :zap: Add additional fields available through Lemlist API (#2377) --- .../Lemlist/descriptions/LeadDescription.ts | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/packages/nodes-base/nodes/Lemlist/descriptions/LeadDescription.ts b/packages/nodes-base/nodes/Lemlist/descriptions/LeadDescription.ts index 9c4fe039e8..d9cb1e5317 100644 --- a/packages/nodes-base/nodes/Lemlist/descriptions/LeadDescription.ts +++ b/packages/nodes-base/nodes/Lemlist/descriptions/LeadDescription.ts @@ -124,6 +124,34 @@ export const leadFields = [ default: '', description: 'Last name of the lead to create.', }, + { + displayName: 'Icebreaker', + name: 'icebreaker', + type: 'string', + default: '', + description: 'Icebreaker of the lead to create.', + }, + { + displayName: 'Phone', + name: 'phone', + type: 'string', + default: '', + description: 'Phone number of the lead to create.', + }, + { + displayName: 'Picture URL', + name: 'picture', + type: 'string', + default: '', + description: 'Picture url of the lead to create.', + }, + { + displayName: 'LinkedIn URL', + name: 'linkedinUrl', + type: 'string', + default: '', + description: 'LinkedIn url of the lead to create.', + }, ], },