mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
deal-note-description
This commit is contained in:
parent
a1fed27229
commit
445384a590
|
@ -165,6 +165,16 @@ export class ActiveCampaign implements INodeType {
|
||||||
value: 'update',
|
value: 'update',
|
||||||
description: 'Update a deal',
|
description: 'Update a deal',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Create Note',
|
||||||
|
value: 'createNote',
|
||||||
|
description: 'Create a deal note',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Update deal note',
|
||||||
|
value: 'updateNote',
|
||||||
|
description: 'Update a deal note',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
default: 'create',
|
default: 'create',
|
||||||
description: 'The operation to perform.',
|
description: 'The operation to perform.',
|
||||||
|
@ -924,6 +934,85 @@ export class ActiveCampaign implements INodeType {
|
||||||
},
|
},
|
||||||
description: 'The status of the deal',
|
description: 'The status of the deal',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// ----------------------------------
|
||||||
|
// dealNote:create
|
||||||
|
// ----------------------------------
|
||||||
|
{
|
||||||
|
displayName: 'Deal ID',
|
||||||
|
name: 'dealId',
|
||||||
|
type: 'number',
|
||||||
|
default: '',
|
||||||
|
required: true,
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'createNote',
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'deal',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
description: 'The ID of the deal note',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Deal Note',
|
||||||
|
name: 'dealNote',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
required: true,
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'createNote',
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'deal',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
description: 'The content of the deal note',
|
||||||
|
},
|
||||||
|
|
||||||
|
// ----------------------------------
|
||||||
|
// dealNote:update
|
||||||
|
// ----------------------------------
|
||||||
|
{
|
||||||
|
displayName: 'Deal ID',
|
||||||
|
name: 'dealId',
|
||||||
|
type: 'number',
|
||||||
|
default: '',
|
||||||
|
required: true,
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'updateNote',
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'deal',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
description: 'The ID of the deal note',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Deal Note',
|
||||||
|
name: 'dealNote',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'updateNote',
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'deal',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
description: 'The content of the deal note',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue