mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
db47892e77
* ⬆️ Set google-fonts-webpack-plugin to latest version * ⚡ Add Contact List and List resources to Active Campaign Node
39 lines
725 B
TypeScript
39 lines
725 B
TypeScript
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[];
|