n8n-nodes-tavilyapi
Version:
n8n Community Nodes for Tavily API integration
20 lines (19 loc) • 565 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TavilyApi = void 0;
class TavilyApi {
constructor() {
this.name = 'tavilyApi';
this.displayName = 'Tavily API';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
description: 'Enter your Tavily API key here (e.g., tvly-abcdef123456)',
},
];
}
}
exports.TavilyApi = TavilyApi;