n8n/packages/nodes-base/nodes/BambooHr/v1/actions/file/index.ts
Iván Ovejero d4f858db92
refactor(nodes-base): Apply lint rule node-param-operation-option-action-wrong-for-get-many (#4055)
* 👕 Apply `node-param-operation-option-action-wrong-for-get-many`

* 🔥 Remove `package-lock.json`

* 📦 Re-add `package-lock.json`

*  master update

Co-authored-by: Michael Kret <michael.k@radency.com>
2022-09-08 17:10:13 +02:00

62 lines
1.3 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: ['file'],
},
},
options: [
{
name: 'Delete',
value: 'delete',
description: 'Delete a company file',
action: 'Delete a file',
},
{
name: 'Download',
value: 'download',
description: 'Download a company file',
action: 'Download a file',
},
{
name: 'Get Many',
value: 'getAll',
description: 'Get all company files',
action: 'Get many files',
},
{
name: 'Update',
value: 'update',
description: 'Update a company file',
action: 'Update a file',
},
{
name: 'Upload',
value: 'upload',
description: 'Upload a company file',
action: 'Upload a file',
},
],
default: 'delete',
},
...del.description,
...download.description,
...getAll.description,
...update.description,
...upload.description,
];