Add record type id to supported objects on Salesforce Node (#2056)

This commit is contained in:
Ricardo Espinoza
2021-08-07 03:41:00 -04:00
committed by GitHub
parent fa31c0c7b6
commit 244a2ba409
7 changed files with 192 additions and 1 deletions

View File

@@ -512,4 +512,67 @@ export const customObjectFields = [
},
],
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
displayOptions: {
show: {
operation: [
'create',
'upsert',
],
resource: [
'customObject',
],
},
},
default: {},
placeholder: 'Add Field',
options: [
{
displayName: 'Record Type ID',
name: 'recordTypeId',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getRecordTypes',
loadOptionsDependsOn: [
'customObject',
],
},
default: '',
},
],
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
displayOptions: {
show: {
operation: [
'update',
],
resource: [
'customObject',
],
},
},
default: {},
placeholder: 'Add Field',
options: [
{
displayName: 'Record Type ID',
name: 'recordTypeId',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getRecordTypes',
loadOptionsDependsOn: [
'customObject',
],
},
default: '',
},
],
},
] as INodeProperties[];