UNPKG

n8n-nodes-mallabe-images

Version:

n8n community node to alter images using Mallabe Images

62 lines 1.72 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.metadataFields = void 0; exports.metadataFields = [ { displayName: 'Image URL', name: 'url', type: 'string', required: true, displayOptions: { show: { operation: ['metadata'], resource: ['image'], }, }, default: '', description: 'Public URL of the image file to extract metadata from', }, { displayName: 'Download Image?', name: 'download', type: 'boolean', required: true, displayOptions: { show: { operation: ['metadata'], resource: ['image'], }, }, default: false, description: 'Whether to download the Image or return a link to it', }, { displayName: 'Put Output File In Field', name: 'output', type: 'string', required: true, displayOptions: { show: { operation: ['metadata'], resource: ['image'], download: [true], }, }, default: 'data', description: 'The name of the output field to put the binary file data in', }, { displayName: 'Webhook URL (Advanced)', name: 'webhookUrl', type: 'string', displayOptions: { show: { operation: ['metadata'], resource: ['image'], }, }, default: '', description: 'URL to send a webhook with the data of the operation', }, ]; //# sourceMappingURL=MetadataOperation.js.map