* 🔨 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>
33 lines
633 B
TypeScript
33 lines
633 B
TypeScript
import { FileProperties } from '../../Interfaces';
|
|
|
|
export const fileDownloadDescription: FileProperties = [
|
|
{
|
|
displayName: 'File ID',
|
|
name: 'fileId',
|
|
type: 'string',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['download'],
|
|
resource: ['file'],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'ID of the file',
|
|
},
|
|
{
|
|
displayName: 'Put Output In Field',
|
|
name: 'output',
|
|
type: 'string',
|
|
default: 'data',
|
|
required: true,
|
|
description: 'The name of the output field to put the binary file data in',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['download'],
|
|
resource: ['file'],
|
|
},
|
|
},
|
|
},
|
|
];
|