n8n/packages/nodes-base/nodes/BambooHr/v1/actions/employeeDocument/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.4 KiB
TypeScript

import type { INodeProperties } from 'n8n-workflow';
import * as del from './del';
import * as download from './download';
import * as getAll from './getAll';
import * as update from './update';
import * as upload from './upload';
export { del, download, getAll, update, upload };
export const descriptions: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['employeeDocument'],
},
},
options: [
{
name: 'Delete',
value: 'delete',
description: 'Delete an employee document',
action: 'Delete an employee document',
},
{
name: 'Download',
value: 'download',
description: 'Download an employee document',
action: 'Download an employee document',
},
{
name: 'Get Many',
value: 'getAll',
description: 'Get many employee documents',
action: 'Get many employee documents',
},
{
name: 'Update',
value: 'update',
description: 'Update an employee document',
action: 'Update an employee document',
},
{
name: 'Upload',
value: 'upload',
description: 'Upload an employee document',
action: 'Upload an employee document',
},
],
default: 'delete',
},
...del.description,
...download.description,
...getAll.description,
...update.description,
...upload.description,
];