Files
alighasami 3d5eaf9445
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

202 lines
4.0 KiB
TypeScript

import type { 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: 'Track an event for a specific customer',
action: 'Track an event',
},
],
default: 'track',
},
];
export const eventFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* event:track */
/* -------------------------------------------------------------------------- */
{
displayName: 'ID',
name: 'id',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['event'],
operation: ['track'],
},
},
description: 'The unique identifier of the customer',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
placeholder: 'name@email.com',
default: '',
required: true,
displayOptions: {
show: {
resource: ['event'],
operation: ['track'],
},
},
},
{
displayName: 'Event Name',
name: 'eventName',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: ['event'],
operation: ['track'],
},
},
description: 'The name of the event tracked',
},
{
displayName: 'JSON Parameters',
name: 'jsonParameters',
type: 'boolean',
default: false,
displayOptions: {
show: {
resource: ['event'],
operation: ['track'],
},
},
},
{
displayName: 'Data',
name: 'dataAttributesUi',
placeholder: 'Add Data',
description: 'Key value pairs that represent any properties you want to track with this event',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
},
default: {},
displayOptions: {
show: {
resource: ['event'],
operation: ['track'],
jsonParameters: [false],
},
},
options: [
{
name: 'dataAttributesValues',
displayName: 'Data',
values: [
{
displayName: 'Key',
name: 'key',
type: 'string',
default: '',
description: 'Name of the property to set',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
description: 'Value of the property to set',
},
],
},
],
},
{
displayName: 'Extra',
name: 'extraAttributesUi',
placeholder: 'Add Extra',
description:
'Key value pairs that represent reserved, Vero-specific operators. Refer to the note on “deduplication” below.',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
},
default: {},
displayOptions: {
show: {
resource: ['event'],
operation: ['track'],
jsonParameters: [false],
},
},
options: [
{
name: 'extraAttributesValues',
displayName: 'Extra',
values: [
{
displayName: 'Key',
name: 'key',
type: 'string',
default: '',
description: 'Name of the property to set',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
description: 'Value of the property to set',
},
],
},
],
},
{
displayName: 'Data',
name: 'dataAttributesJson',
type: 'json',
default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
description: 'Key value pairs that represent the custom user properties you want to update',
displayOptions: {
show: {
resource: ['event'],
operation: ['track'],
jsonParameters: [true],
},
},
},
{
displayName: 'Extra',
name: 'extraAttributesJson',
type: 'json',
default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
description:
'Key value pairs that represent reserved, Vero-specific operators. Refer to the note on “deduplication” below.',
displayOptions: {
show: {
resource: ['event'],
operation: ['track'],
jsonParameters: [true],
},
},
},
];