n8n/packages/nodes-base/nodes/SyncroMSP/v1/actions/contact/index.ts
Iván Ovejero d4f858db92
refactor(nodes-base): Apply lint rule node-param-operation-option-action-wrong-for-get-many (#4055)
* 👕 Apply `node-param-operation-option-action-wrong-for-get-many`

* 🔥 Remove `package-lock.json`

* 📦 Re-add `package-lock.json`

*  master update

Co-authored-by: Michael Kret <michael.k@radency.com>
2022-09-08 17:10:13 +02:00

62 lines
1.2 KiB
TypeScript

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';
import { INodeProperties } from 'n8n-workflow';
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 all 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[];