Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Microsoft/Outlook/v2/actions/folderMessage/index.ts
2023-09-15 12:52:18 +03:00

30 lines
560 B
TypeScript

import type { INodeProperties } from 'n8n-workflow';
import * as getAll from './getAll.operation';
export { getAll };
export const description: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['folderMessage'],
},
},
options: [
{
name: 'Get Many',
value: 'getAll',
description: 'Retrieves the messages in a folder',
action: 'Get many folder messages',
},
],
default: 'getAll',
},
...getAll.description,
];