n8n/packages/nodes-base/nodes/ActiveCampaign/ListDescription.ts

39 lines
725 B
TypeScript
Raw Normal View History

import {
INodeProperties,
} from 'n8n-workflow';
import {
activeCampaignDefaultGetAllProperties,
} from './GenericFunctions';
export const listOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'list',
],
},
},
options: [
{
name: 'Get All',
value: 'getAll',
description: 'Get all lists',
},
],
default: 'getAll',
description: 'The operation to perform.',
},
] as INodeProperties[];
export const listFields = [
// ----------------------------------
// list:getAll
// ----------------------------------
...activeCampaignDefaultGetAllProperties('list', 'getAll'),
] as INodeProperties[];