n8n/packages/nodes-base/nodes/SyncroMSP/v1/actions/contact/index.ts
Iván Ovejero 62c096710f
refactor: Run lintfix (no-changelog) (#7537)
- Fix autofixable violations
- Remove unused directives
- Allow for PascalCased variables - needed for dynamically imported or
assigned classes, decorators, routers, etc.
2023-10-27 14:15:02 +02:00

61 lines
1.2 KiB
TypeScript

import type { INodeProperties } from 'n8n-workflow';
import * as getAll from './getAll';
import * as create from './create';
import * as get from './get';
import * as update from './update';
import * as del from './del';
export { getAll, create, del as delete, update, get };
export const descriptions = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['contact'],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create new contact',
action: 'Create a contact',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete contact',
action: 'Delete a contact',
},
{
name: 'Get',
value: 'get',
description: 'Retrieve contact',
action: 'Get a contact',
},
{
name: 'Get Many',
value: 'getAll',
description: 'Retrieve many contacts',
action: 'Get many contacts',
},
{
name: 'Update',
value: 'update',
description: 'Update contact',
action: 'Update a contact',
},
],
default: 'getAll',
},
...getAll.description,
...create.description,
...get.description,
...update.description,
...del.description,
] as INodeProperties[];