mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ Add field AccountNumber to Salesforce Node (#2649)
This commit is contained in:
@@ -1956,6 +1956,9 @@ export class Salesforce implements INodeType {
|
||||
if (additionalFields.shippingCity !== undefined) {
|
||||
body.ShippingCity = additionalFields.shippingCity as string;
|
||||
}
|
||||
if (additionalFields.accountNumber !== undefined) {
|
||||
body.AccountNumber = additionalFields.accountNumber as string;
|
||||
}
|
||||
if (additionalFields.accountSource !== undefined) {
|
||||
body.AccountSource = additionalFields.accountSource as string;
|
||||
}
|
||||
@@ -2064,6 +2067,9 @@ export class Salesforce implements INodeType {
|
||||
if (updateFields.shippingCity !== undefined) {
|
||||
body.ShippingCity = updateFields.shippingCity as string;
|
||||
}
|
||||
if (updateFields.accountNumber !== undefined) {
|
||||
body.AccountNumber = updateFields.accountNumber as string;
|
||||
}
|
||||
if (updateFields.accountSource !== undefined) {
|
||||
body.AccountSource = updateFields.accountSource as string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user