mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
0712334679
* ✨ Autopilot Node & Trigger * 🎨 Replace PNG with SVG icon * 🚚 Rename description file * 🔨 Fix contact operations default * ✏️ Edit contact property descriptions * ✏️ Edit journey property descriptions * ✏️ Edit contact list property descriptions * ✏️ Edit list property descriptions * 🐛 Fix issue with a wrong named resource * ⚡ Fix Trigger-Node name and minor improvements * 🔨 Remove 404 from contactList:exist Co-authored-by: Iván Ovejero <ivov.src@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
74 lines
1.3 KiB
TypeScript
74 lines
1.3 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const contactJourneyOperations = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'contactJourney',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Add',
|
|
value: 'add',
|
|
description: 'Add contact to list',
|
|
},
|
|
],
|
|
default: 'add',
|
|
description: 'The operation to perform.',
|
|
},
|
|
] as INodeProperties[];
|
|
|
|
export const contactJourneyFields = [
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* contactJourney:add */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Trigger ID',
|
|
name: 'triggerId',
|
|
required: true,
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTriggers',
|
|
},
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'add',
|
|
],
|
|
resource: [
|
|
'contactJourney',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'List ID.',
|
|
},
|
|
{
|
|
displayName: 'Contact ID',
|
|
name: 'contactId',
|
|
required: true,
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'add',
|
|
],
|
|
resource: [
|
|
'contactJourney',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'Can be ID or email.',
|
|
},
|
|
] as INodeProperties[];
|