n8n-nodes-dumplingai
Version:
n8n community node for Dumpling AI integration
79 lines • 2.12 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.searchPlacesFields = void 0;
exports.searchPlacesFields = [
{
displayName: 'Query',
name: 'query',
type: 'string',
required: true,
displayOptions: {
show: {
resource: ['dataApi'],
operation: ['searchPlaces'],
},
},
default: '',
placeholder: 'pizza restaurants',
description: 'The search query for Google Places',
},
{
displayName: 'Country',
name: 'country',
type: 'string',
displayOptions: {
show: {
resource: ['dataApi'],
operation: ['searchPlaces'],
},
},
default: '',
placeholder: 'US',
description: 'Country code for location bias (e.g., "US" for United States)',
},
{
displayName: 'Location',
name: 'location',
type: 'string',
displayOptions: {
show: {
resource: ['dataApi'],
operation: ['searchPlaces'],
},
},
default: '',
placeholder: 'Chicago, IL',
description: 'Specific location to focus the search',
},
{
displayName: 'Language',
name: 'language',
type: 'string',
displayOptions: {
show: {
resource: ['dataApi'],
operation: ['searchPlaces'],
},
},
default: 'en',
placeholder: 'en',
description: 'Language code for the search results (e.g., "en" for English)',
},
{
displayName: 'Page',
name: 'page',
type: 'number',
displayOptions: {
show: {
resource: ['dataApi'],
operation: ['searchPlaces'],
},
},
default: 1,
description: 'Page number for paginated results',
typeOptions: {
minValue: 1,
},
},
];
//# sourceMappingURL=SearchPlacesDescription.js.map