n8n/packages/nodes-base/nodes/BambooHr/v1/actions/employeeDocument/index.ts
Michael Kret 0ecbb4a19d
refactor: Format nodes-base package (A-F) (#3800)
* 🔨 prettier formated nodes - A

* 🔨 prettier formated nodes - B

*  prettier formated nodes - C

*  prettier formated nodes - D

*  prettier formated nodes - E-F

* 🎨 Adjust nodes-base formatting command (#3805)

* Format additional files in nodes A-F (#3811)

*  fixes

* 🎨 Add Mindee to ignored dirs

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
2022-08-01 22:47:55 +02:00

62 lines
1.4 KiB
TypeScript

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';
import { INodeProperties } from 'n8n-workflow';
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 All',
value: 'getAll',
description: 'Get all employee document',
action: 'Get all 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,
];