UNPKG

@bedrijfsdatanl/n8n-nodes-bedrijfsdata

Version:

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

47 lines 1.33 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.validationGeocodingGetOperationProperties = void 0; exports.validationGeocodingGetOperationProperties = [ { displayName: 'Geocoding', name: 'geo_q', type: 'string', default: '', required: true, displayOptions: { show: { resource: ['validation'], operation: ['get_geocoding'] }, }, routing: { request: { qs: { q: '={{ $value ? $value : undefined }}', }, }, }, description: '(Required) Enter a free form address', }, { displayName: 'Country (ISO 3166-1 Alpha-2)', name: 'country_code', type: 'string', default: 'NL', displayOptions: { show: { resource: ['validation'], operation: ['get_geocoding'] }, }, routing: { request: { qs: { country_code: '={{ $value ? $value : undefined }}', }, }, }, description: '(Optional) Enter a country code (ex: NL, BE)', } ]; //# sourceMappingURL=ValidationGeocodingGet.properties.js.map