pull:初次提交
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
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,
|
||||
];
|
||||
Reference in New Issue
Block a user