feat(Lemlist Node): Add V2 to support more API operations (#10615)

This commit is contained in:
Shireen Missi
2024-09-10 16:26:55 +01:00
committed by GitHub
parent 1b04be1240
commit 20b1cf2b75
18 changed files with 1939 additions and 315 deletions

View File

@@ -0,0 +1,34 @@
import type { INodeProperties } from 'n8n-workflow';
export const teamOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
default: 'get',
options: [
{
name: 'Get',
value: 'get',
action: 'Get a team',
},
{
name: 'Get Credits',
value: 'getCredits',
action: 'Get a team',
},
],
displayOptions: {
show: {
resource: ['team'],
},
},
},
];
export const teamFields: INodeProperties[] = [
// ----------------------------------
// team: get
// ----------------------------------
];