mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 12:35:46 +03:00
0ecbb4a19d
* 🔨 prettier formated nodes - A * 🔨 prettier formated nodes - B * ⚡ prettier formated nodes - C * ⚡ prettier formated nodes - D * ⚡ prettier formated nodes - E-F * 🎨 Adjust nodes-base formatting command (#3805) * Format additional files in nodes A-F (#3811) * ⚡ fixes * 🎨 Add Mindee to ignored dirs Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
179 lines
3.5 KiB
TypeScript
179 lines
3.5 KiB
TypeScript
import { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const campaignOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['campaign'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
action: 'Get a campaign',
|
|
},
|
|
{
|
|
name: 'Get All',
|
|
value: 'getAll',
|
|
action: 'Get all campaigns',
|
|
},
|
|
{
|
|
name: 'Get Metrics',
|
|
value: 'getMetrics',
|
|
action: 'Get metrics for a campaign',
|
|
},
|
|
],
|
|
default: 'get',
|
|
},
|
|
];
|
|
|
|
export const campaignFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* campaign:get */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Campaign ID',
|
|
name: 'campaignId',
|
|
type: 'number',
|
|
required: true,
|
|
default: 0,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['campaign'],
|
|
operation: ['get'],
|
|
},
|
|
},
|
|
description: 'The unique identifier for the campaign',
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* campaign:getMetrics */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Campaign ID',
|
|
name: 'campaignId',
|
|
type: 'number',
|
|
required: true,
|
|
default: 0,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['campaign'],
|
|
operation: ['getMetrics'],
|
|
},
|
|
},
|
|
description: 'The unique identifier for the campaign',
|
|
},
|
|
{
|
|
displayName: 'Period',
|
|
name: 'period',
|
|
type: 'options',
|
|
default: 'days',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['campaign'],
|
|
operation: ['getMetrics'],
|
|
},
|
|
},
|
|
description: 'Specify metric period',
|
|
options: [
|
|
{
|
|
name: 'Hours',
|
|
value: 'hours',
|
|
},
|
|
{
|
|
name: 'Days',
|
|
value: 'days',
|
|
},
|
|
{
|
|
name: 'Weeks',
|
|
value: 'weeks',
|
|
},
|
|
{
|
|
name: 'Months',
|
|
value: 'months',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'JSON Parameters',
|
|
name: 'jsonParameters',
|
|
type: 'boolean',
|
|
default: false,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['campaign'],
|
|
operation: ['getMetrics'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Additional Fields',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['campaign'],
|
|
operation: ['getMetrics'],
|
|
jsonParameters: [false],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Steps',
|
|
name: 'steps',
|
|
type: 'number',
|
|
default: 0,
|
|
description:
|
|
'Integer specifying how many steps to return. Defaults to the maximum number of timeperiods available, or 12 when using the months period. Maximum timeperiods available are 24 hours, 45 days, 12 weeks and 120 months',
|
|
typeOptions: {
|
|
minValue: 0,
|
|
maxValue: 120,
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Type',
|
|
name: 'type',
|
|
type: 'options',
|
|
default: 'empty',
|
|
description: 'Specify metric type',
|
|
options: [
|
|
{
|
|
name: 'Email',
|
|
value: 'email',
|
|
},
|
|
{
|
|
name: 'Empty',
|
|
value: 'empty',
|
|
},
|
|
{
|
|
name: 'Push',
|
|
value: 'push',
|
|
},
|
|
{
|
|
name: 'Slack',
|
|
value: 'slack',
|
|
},
|
|
{
|
|
name: 'Twilio',
|
|
value: 'twilio',
|
|
},
|
|
{
|
|
name: 'Urban Airship',
|
|
value: 'urbanAirship',
|
|
},
|
|
{
|
|
name: 'Webhook',
|
|
value: 'webhook',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|