mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
91d7e16c81
* 🔨 formatting nodes with prettier
137 lines
3.1 KiB
TypeScript
137 lines
3.1 KiB
TypeScript
import { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const eventOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['event'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Track',
|
|
value: 'track',
|
|
description: 'Record the actions a user perform',
|
|
action: 'Track an event',
|
|
},
|
|
],
|
|
default: 'track',
|
|
},
|
|
];
|
|
|
|
export const eventFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* event:track */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Name',
|
|
name: 'name',
|
|
type: 'string',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['event'],
|
|
operation: ['track'],
|
|
},
|
|
},
|
|
description: 'The name of the event to track',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Additional Fields',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['event'],
|
|
operation: ['track'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Campaign ID',
|
|
name: 'campaignId',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Campaign tied to conversion',
|
|
},
|
|
{
|
|
displayName: 'Created At',
|
|
name: 'createdAt',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Time event happened',
|
|
},
|
|
{
|
|
displayName: 'Data Fields',
|
|
name: 'dataFieldsUi',
|
|
type: 'fixedCollection',
|
|
default: {},
|
|
placeholder: 'Add Data Field',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
options: [
|
|
{
|
|
name: 'dataFieldValues',
|
|
displayName: 'Data Field',
|
|
values: [
|
|
{
|
|
displayName: 'Key',
|
|
name: 'key',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The end event specified key of the event defined data',
|
|
},
|
|
{
|
|
displayName: 'Value',
|
|
name: 'value',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The end event specified value of the event defined data',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Email',
|
|
name: 'email',
|
|
type: 'string',
|
|
placeholder: 'name@email.com',
|
|
default: '',
|
|
description:
|
|
'Either email or userId must be passed in to identify the user. If both are passed in, email takes precedence.',
|
|
},
|
|
{
|
|
displayName: 'ID',
|
|
name: 'id',
|
|
type: 'string',
|
|
default: '',
|
|
description:
|
|
'Optional event ID. If an event exists with that ID, the event will be updated. If none is specified, a new ID will automatically be generated and returned.',
|
|
},
|
|
{
|
|
displayName: 'Template ID',
|
|
name: 'templateId',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'User ID',
|
|
name: 'userId',
|
|
type: 'string',
|
|
default: '',
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-description-lowercase-first-char
|
|
description: 'userId that was passed into the updateUser call',
|
|
},
|
|
],
|
|
},
|
|
];
|