mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
d4f858db92
* 👕 Apply `node-param-operation-option-action-wrong-for-get-many` * 🔥 Remove `package-lock.json` * 📦 Re-add `package-lock.json` * ⚡ master update Co-authored-by: Michael Kret <michael.k@radency.com>
124 lines
2.4 KiB
TypeScript
124 lines
2.4 KiB
TypeScript
import { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const activityOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
default: 'getAll',
|
|
options: [
|
|
{
|
|
name: 'Get Many',
|
|
value: 'getAll',
|
|
action: 'Get many activities',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['activity'],
|
|
},
|
|
},
|
|
},
|
|
];
|
|
|
|
export const activityFields: INodeProperties[] = [
|
|
// ----------------------------------
|
|
// activity: getAll
|
|
// ----------------------------------
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['activity'],
|
|
operation: ['getAll'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
default: 5,
|
|
description: 'Max number of results to return',
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 1000,
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['activity'],
|
|
operation: ['getAll'],
|
|
returnAll: [false],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Filters',
|
|
name: 'filters',
|
|
type: 'collection',
|
|
placeholder: 'Add Filter',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['activity'],
|
|
operation: ['getAll'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Campaign Name or ID',
|
|
name: 'campaignId',
|
|
type: 'options',
|
|
default: '',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCampaigns',
|
|
},
|
|
description:
|
|
'ID of the campaign to retrieve activity for. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Type',
|
|
name: 'type',
|
|
type: 'options',
|
|
default: 'emailsOpened',
|
|
description: 'Type of activity to retrieve',
|
|
options: [
|
|
{
|
|
name: 'Emails Bounced',
|
|
value: 'emailsBounced',
|
|
},
|
|
{
|
|
name: 'Emails Clicked',
|
|
value: 'emailsClicked',
|
|
},
|
|
{
|
|
name: 'Emails Opened',
|
|
value: 'emailsOpened',
|
|
},
|
|
{
|
|
name: 'Emails Replied',
|
|
value: 'emailsReplied',
|
|
},
|
|
{
|
|
name: 'Emails Send Failed',
|
|
value: 'emailsSendFailed',
|
|
},
|
|
{
|
|
name: 'Emails Sent',
|
|
value: 'emailsSent',
|
|
},
|
|
{
|
|
name: 'Emails Unsubscribed',
|
|
value: 'emailsUnsubscribed',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|