mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
3a9c7acb04
* 👕 Enable rule * ⬆️ Upgrade linter * 📦 Update `package-lock.json` * 👕 Apply rule * ✏️ Fix plurals * ✏️ More typos * ✏️ Final typos
62 lines
1.4 KiB
TypeScript
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 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,
|
|
];
|