UNPKG

n8n-nodes-hotelplanet

Version:

n8n node for HotelPlanet booking operations - AI Agent compatible

33 lines 1.09 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HotelPlanetApi = void 0; class HotelPlanetApi { constructor() { this.name = 'hotelPlanetApi'; this.displayName = 'HotelPlanet API'; this.documentationUrl = 'https://docs.hotelplanet.com'; this.properties = [ { displayName: 'Base URL', name: 'baseUrl', type: 'string', default: 'http://localhost:3000', description: 'Base URL of the HotelPlanet API', required: true, }, { displayName: 'API Key (Optional)', name: 'apiKey', type: 'string', typeOptions: { password: true, }, default: '', description: 'API Key for authentication (if required)', required: false, }, ]; } } exports.HotelPlanetApi = HotelPlanetApi; //# sourceMappingURL=hotelPlanetApi.credentials.js.map