n8n/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/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 getAll from './getAll';
import * as create from './create';
import * as del from './del';
import * as update from './update';
import * as get from './get';
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: ['customer'],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create new customer',
action: 'Create a customer',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete customer',
action: 'Delete a customer',
},
{
name: 'Get',
value: 'get',
description: 'Retrieve customer',
action: 'Get a customer',
},
{
name: 'Get All',
value: 'getAll',
description: 'Retrieve all customers',
action: 'Get all customers',
},
{
name: 'Update',
value: 'update',
description: 'Update customer',
action: 'Update a customer',
},
],
default: 'getAll',
},
...getAll.description,
...get.description,
...create.description,
...del.description,
...update.description,
] as INodeProperties[];