UNPKG

@bedrijfsdatanl/n8n-nodes-bedrijfsdata

Version:

n8n node for Bedrijfsdata.nl API - Search and retrieve Dutch company information

67 lines 2 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.relatedSharedAddressGetOperationProperties = void 0; exports.relatedSharedAddressGetOperationProperties = [ { displayName: 'Bedrijfsdata.nl ID', name: 'id', type: 'string', default: '', required: true, displayOptions: { show: { resource: ['companies_related'], operation: ['get_same_address'] }, }, routing: { request: { qs: { id: '={{ $value ? $value : undefined }}', }, }, }, description: 'Bedrijfsdata.nl ID of a specific company', }, { displayName: 'Max. Number of Results', name: 'rows', type: 'number', default: 10, displayOptions: { show: { resource: ['companies_related'], operation: ['get_same_address'] }, }, routing: { request: { qs: { rows: '={{ ($value || $value === 0) ? $value : 10 }}', }, }, }, description: 'Number of company profiles to return', }, { displayName: 'Detailed Output', name: 'details', type: 'boolean', default: false, description: 'Whether to add details such as the total number of companies found & credit usage. WARNING: This returns 1 item in stead of an array of items.', displayOptions: { show: { resource: ['companies_related'], operation: ['get_same_address'] }, }, routing: { request: { qs: { no_header: '={{ $value && $value === true ? undefined : 1 }}' }, }, }, }, ]; //# sourceMappingURL=RelatedSharedAddressGet.properties.js.map