n8n/packages/nodes-base/nodes/BambooHr/v1/actions/employee/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

53 lines
1.1 KiB
TypeScript

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