mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
39 lines
721 B
TypeScript
39 lines
721 B
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
activeCampaignDefaultGetAllProperties,
|
|
} from './GenericFunctions';
|
|
|
|
export const listOperations: INodeProperties[] = [
|
|
{
|
|
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.',
|
|
},
|
|
];
|
|
|
|
export const listFields: INodeProperties[] = [
|
|
// ----------------------------------
|
|
// list:getAll
|
|
// ----------------------------------
|
|
...activeCampaignDefaultGetAllProperties('list', 'getAll'),
|
|
];
|