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:
MC Naveen
2023-09-07 12:37:37 +05:30
committed by GitHub
parent 9af626a1b3
commit 01f875a94d
3 changed files with 44 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ export interface ILead {
Company?: string;
LastName?: string;
Email?: string;
Fax?: number;
City?: string;
Phone?: string;
State?: string;
@@ -25,4 +26,5 @@ export interface ILead {
NumberOfEmployees?: number;
MobilePhone?: string;
HasOptedOutOfEmail?: boolean;
HasOptedOutOfFax?: boolean;
}