mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(Salesforce Node): Add fax field to lead option (#7030)
Closes: https://community.n8n.io/t/there-is-no-fax-field-in-the-saleforce-lead-cretion/29829
This commit is contained in:
@@ -228,6 +228,13 @@ export const leadFields: INodeProperties[] = [
|
||||
default: '',
|
||||
description: 'Email address for the lead',
|
||||
},
|
||||
{
|
||||
displayName: 'Fax',
|
||||
name: 'fax',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Fax number of the lead',
|
||||
},
|
||||
{
|
||||
displayName: 'First Name',
|
||||
name: 'firstname',
|
||||
@@ -243,6 +250,14 @@ export const leadFields: INodeProperties[] = [
|
||||
description:
|
||||
'Whether the lead doesn’t want to receive email from Salesforce (true) or does (false). Label is Email Opt Out.',
|
||||
},
|
||||
{
|
||||
displayName: 'Has Opted Out of Fax',
|
||||
name: 'hasOptedOutOfFax',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description:
|
||||
'Whether the lead doesn’t want to receive fax from Salesforce (true) or does (false). Label is Email Opt Out.',
|
||||
},
|
||||
{
|
||||
displayName: 'Industry',
|
||||
name: 'industry',
|
||||
@@ -497,6 +512,13 @@ export const leadFields: INodeProperties[] = [
|
||||
default: '',
|
||||
description: 'Email address for the lead',
|
||||
},
|
||||
{
|
||||
displayName: 'Fax',
|
||||
name: 'fax',
|
||||
type: 'number',
|
||||
default: '',
|
||||
description: 'Fax Number of the lead',
|
||||
},
|
||||
{
|
||||
displayName: 'First Name',
|
||||
name: 'firstname',
|
||||
@@ -512,6 +534,14 @@ export const leadFields: INodeProperties[] = [
|
||||
description:
|
||||
'Whether the lead doesn’t want to receive email from Salesforce (true) or does (false). Label is Email Opt Out.',
|
||||
},
|
||||
{
|
||||
displayName: 'Has Opted Out of Fax',
|
||||
name: 'HasOptedOutOfFax',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description:
|
||||
'Whether the lead doesn’t want to receive fax from Salesforce (true) or does (false). Label is Fax Opt Out.',
|
||||
},
|
||||
{
|
||||
displayName: 'Industry',
|
||||
name: 'industry',
|
||||
|
||||
Reference in New Issue
Block a user