Skip to content

Commit

Permalink
feat(Pipedrive Node): Add busy and description options to activities (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
bramkn authored Apr 25, 2024
1 parent 22b2afd commit 9b3ac16
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion packages/nodes-base/nodes/Pipedrive/Pipedrive.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -818,6 +818,13 @@ export class Pipedrive implements INodeType {
},
default: {},
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',
name: 'deal_id',
Expand Down Expand Up @@ -849,7 +856,6 @@ export class Pipedrive implements INodeType {
default: '0',
description: 'Whether the activity is done or not',
},

{
displayName: 'Note',
name: 'note',
Expand Down Expand Up @@ -878,6 +884,14 @@ export class Pipedrive implements INodeType {
default: 0,
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',
name: 'subject',
Expand Down

0 comments on commit 9b3ac16

Please sign in to comment.