mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
🔀 Merge branch 'rodrigoscdc-pit push origin masterpe_user'
This commit is contained in:
commit
2b3079a0a5
|
@ -3147,6 +3147,31 @@ export class Pipedrive implements INodeType {
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Marketing Status',
|
||||||
|
name: 'marketing_status',
|
||||||
|
type: 'options',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'No Consent',
|
||||||
|
value: 'no_consent',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Unsubscribed',
|
||||||
|
value: 'unsubscribed',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Subscribed',
|
||||||
|
value: 'subscribed',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Archived',
|
||||||
|
value: 'archived',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
default: 'subscribed',
|
||||||
|
description: 'Please be aware that it is only allowed once to change the marketing status from an old status to a new one.',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Organization ID',
|
displayName: 'Organization ID',
|
||||||
name: 'org_id',
|
name: 'org_id',
|
||||||
|
@ -3184,6 +3209,16 @@ export class Pipedrive implements INodeType {
|
||||||
default: '3',
|
default: '3',
|
||||||
description: 'Visibility of the person. If omitted, visibility will be set to the default visibility setting of this item type for the authorized user.',
|
description: 'Visibility of the person. If omitted, visibility will be set to the default visibility setting of this item type for the authorized user.',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'User ID',
|
||||||
|
name: 'owner_id',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getUserIds',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'ID of the User this deal will be associated with.',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -3325,6 +3360,31 @@ export class Pipedrive implements INodeType {
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Marketing Status',
|
||||||
|
name: 'marketing_status',
|
||||||
|
type: 'options',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'No Consent',
|
||||||
|
value: 'no_consent',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Unsubscribed',
|
||||||
|
value: 'unsubscribed',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Subscribed',
|
||||||
|
value: 'subscribed',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Archived',
|
||||||
|
value: 'archived',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
default: 'subscribed',
|
||||||
|
description: 'Please be aware that it is only allowed once to change the marketing status from an old status to a new one.',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Name',
|
displayName: 'Name',
|
||||||
name: 'name',
|
name: 'name',
|
||||||
|
@ -3352,6 +3412,16 @@ export class Pipedrive implements INodeType {
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Phone number of the person.',
|
description: 'Phone number of the person.',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'User ID',
|
||||||
|
name: 'owner_id',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getUserIds',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'ID of the User this person will be associated with.',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Visible to',
|
displayName: 'Visible to',
|
||||||
name: 'visible_to',
|
name: 'visible_to',
|
||||||
|
|
Loading…
Reference in a new issue