feat(Salesforce Node): Add country field (#3314)

This commit is contained in:
Michael Kret
2022-05-24 09:56:33 +03:00
committed by GitHub
parent 5c5de0c92c
commit 90a1bc120b
9 changed files with 102 additions and 88 deletions

View File

@@ -26,6 +26,11 @@ export const contactOperations: INodeProperties[] = [
value: 'addNote',
description: 'Add note to a contact',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a contact',
},
{
name: 'Create',
value: 'create',
@@ -36,11 +41,6 @@ export const contactOperations: INodeProperties[] = [
value: 'upsert',
description: 'Create a new contact, or update the current one if it already exists (upsert)',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a contact',
},
{
name: 'Get',
value: 'get',
@@ -575,7 +575,7 @@ export const contactFields: INodeProperties[] = [
name: 'jigsaw',
type: 'string',
default: '',
description: 'references the ID of a contact in Data.com. If a contact has a value in this field, it means that a contact was imported as a contact from Data.com.',
description: 'References the ID of a contact in Data.com. If a contact has a value in this field, it means that a contact was imported as a contact from Data.com.',
},
{
displayName: 'Last Name',
@@ -1032,7 +1032,7 @@ export const contactFields: INodeProperties[] = [
name: 'isPrivate',
type: 'boolean',
default: false,
description: 'If true, only the note owner or a user with the “Modify All Data” permission can view the note or query it via the API',
description: 'Whether only the note owner or a user with the “Modify All Data” permission can view the note or query it via the API',
},
{
displayName: 'Owner',