UNPKG

n8n-nodes-selfhosthub

Version:

Collection of n8n nodes for self-hosted AI services, including Leonardo.ai integration for AI image and content generation capabilities.

23 lines 786 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LeonardoAiApi = void 0; class LeonardoAiApi { constructor() { this.name = 'leonardoAiApi'; this.displayName = 'Self-Host Hub - Leonardo API'; this.documentationUrl = 'https://docs.leonardo.ai/docs'; this.properties = [ { displayName: 'API Key', name: 'apiKey', type: 'string', typeOptions: { password: true }, default: '', required: true, description: 'Your Leonardo API key, available from your Account Settings', }, ]; } } exports.LeonardoAiApi = LeonardoAiApi; //# sourceMappingURL=LeonardoAiApi.credentials.js.map