n8n/packages/nodes-base/nodes/Lemlist/descriptions/TeamDescription.ts
2021-12-03 09:44:16 +01:00

34 lines
530 B
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const teamOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
default: 'get',
description: 'Operation to perform',
options: [
{
name: 'Get',
value: 'get',
},
],
displayOptions: {
show: {
resource: [
'team',
],
},
},
},
];
export const teamFields: INodeProperties[] = [
// ----------------------------------
// team: get
// ----------------------------------
];