mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 13:27:31 -08:00
feat(Pipedrive Node): Add busy and description options to activities (#9208)
This commit is contained in:
parent
22b2afdd23
commit
9b3ac1648f
|
@ -818,6 +818,13 @@ export class Pipedrive implements INodeType {
|
||||||
},
|
},
|
||||||
default: {},
|
default: {},
|
||||||
options: [
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Busy Flag',
|
||||||
|
name: 'busy_flag',
|
||||||
|
type: 'boolean',
|
||||||
|
default: false,
|
||||||
|
description: 'Whether the user is set to busy during the activity',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Deal ID',
|
displayName: 'Deal ID',
|
||||||
name: 'deal_id',
|
name: 'deal_id',
|
||||||
|
@ -849,7 +856,6 @@ export class Pipedrive implements INodeType {
|
||||||
default: '0',
|
default: '0',
|
||||||
description: 'Whether the activity is done or not',
|
description: 'Whether the activity is done or not',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
displayName: 'Note',
|
displayName: 'Note',
|
||||||
name: 'note',
|
name: 'note',
|
||||||
|
@ -878,6 +884,14 @@ export class Pipedrive implements INodeType {
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'ID of the person this activity will be associated with',
|
description: 'ID of the person this activity will be associated with',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Public Description',
|
||||||
|
name: 'public_description',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description:
|
||||||
|
'Additional details about the activity that is synced to your external calendar',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Subject',
|
displayName: 'Subject',
|
||||||
name: 'subject',
|
name: 'subject',
|
||||||
|
|
Loading…
Reference in a new issue