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 customObjectOperations: INodeProperties[] = [
value: 'upsert',
description: 'Create a new record, or update the current one if it already exists (upsert)',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a custom object record',
},
{
name: 'Get',
value: 'get',
@@ -36,11 +41,6 @@ export const customObjectOperations: INodeProperties[] = [
value: 'getAll',
description: 'Get all custom object records',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a custom object record',
},
{
name: 'Update',
value: 'update',