n8n-nodes-base
Version:
Base nodes of n8n
34 lines • 910 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.fileDownloadDescription = void 0;
exports.fileDownloadDescription = [
{
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'],
},
},
},
];
//# sourceMappingURL=description.js.map