mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
126 lines
2.4 KiB
TypeScript
126 lines
2.4 KiB
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const fileDescription: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Delete',
|
|
value: 'delete',
|
|
action: 'Delete a file',
|
|
},
|
|
{
|
|
name: 'Download',
|
|
value: 'download',
|
|
action: 'Download a file',
|
|
},
|
|
{
|
|
name: 'Upload',
|
|
value: 'upload',
|
|
action: 'Upload a file',
|
|
},
|
|
],
|
|
default: 'upload',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['file'],
|
|
},
|
|
},
|
|
},
|
|
// Upload --------------------------------------------------------------------------
|
|
{
|
|
displayName: 'File Location',
|
|
name: 'fileLocation',
|
|
type: 'string',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['upload'],
|
|
resource: ['file'],
|
|
},
|
|
},
|
|
default: '/nsconfig/ssl/',
|
|
},
|
|
{
|
|
displayName: 'Input Data Field Name',
|
|
name: 'binaryProperty',
|
|
type: 'string',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['upload'],
|
|
resource: ['file'],
|
|
},
|
|
},
|
|
default: 'data',
|
|
description: 'The name of the incoming field containing the binary file data to be processed',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Option',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['upload'],
|
|
resource: ['file'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'File Name',
|
|
name: 'fileName',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Name of the file. It should not include filepath.',
|
|
},
|
|
],
|
|
},
|
|
// Delete, Download ---------------------------------------------------------------
|
|
{
|
|
displayName: 'File Location',
|
|
name: 'fileLocation',
|
|
type: 'string',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['delete', 'download'],
|
|
resource: ['file'],
|
|
},
|
|
},
|
|
default: '/nsconfig/ssl/',
|
|
},
|
|
{
|
|
displayName: 'File Name',
|
|
name: 'fileName',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
description: 'Name of the file. It should not include filepath.',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['delete', 'download'],
|
|
resource: ['file'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Put Output in Field',
|
|
name: 'binaryProperty',
|
|
type: 'string',
|
|
required: true,
|
|
default: 'data',
|
|
description: 'The name of the output field to put the binary file data in',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['download'],
|
|
resource: ['file'],
|
|
},
|
|
},
|
|
},
|
|
];
|