mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
🔀 Merge branch 'master' of github.com:n8n-io/n8n
This commit is contained in:
commit
34503e1ce7
|
@ -1411,6 +1411,47 @@ export class Pipedrive implements INodeType {
|
||||||
},
|
},
|
||||||
description: 'The content of the note to create',
|
description: 'The content of the note to create',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Additional Fields',
|
||||||
|
name: 'additionalFields',
|
||||||
|
type: 'collection',
|
||||||
|
placeholder: 'Add Field',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'create',
|
||||||
|
'getAll'
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'note',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
default: {},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Deal ID',
|
||||||
|
name: 'deal_id',
|
||||||
|
type: 'number',
|
||||||
|
default: 0,
|
||||||
|
description: 'ID of the deal this note will be associated with',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Organization ID',
|
||||||
|
name: 'org_id',
|
||||||
|
type: 'number',
|
||||||
|
default: 0,
|
||||||
|
description: 'ID of the organization this note will be associated with.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Person ID',
|
||||||
|
name: 'person_id',
|
||||||
|
type: 'number',
|
||||||
|
default: 0,
|
||||||
|
description: 'ID of the person this note will be associated with.',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// note:delete
|
// note:delete
|
||||||
|
|
Loading…
Reference in a new issue