n8n/packages/nodes-base/nodes/SyncroMSP/v1/actions/rmm/index.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

62 lines
1.2 KiB
TypeScript

import * as get from './get';
import * as getAll from './getAll';
import * as create from './create';
import * as del from './del';
import * as mute from './mute';
import { INodeProperties } from 'n8n-workflow';
export { getAll, get, mute, del as delete, create };
export const descriptions = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['rmm'],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create new RMM Alert',
action: 'Create an RMM alert',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete RMM Alert',
action: 'Delete an RMM alert',
},
{
name: 'Get',
value: 'get',
description: 'Retrieve RMM Alert',
action: 'Get an RMM alert',
},
{
name: 'Get All',
value: 'getAll',
description: 'Retrieve all RMM Alerts',
action: 'Get all RMM alerts',
},
{
name: 'Mute',
value: 'mute',
description: 'Mute RMM Alert',
action: 'Mute an RMM alert',
},
],
default: 'getAll',
},
...getAll.description,
...get.description,
...create.description,
...del.description,
...mute.description,
] as INodeProperties[];