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.

24 lines 930 B
"use strict"; // CreateLeonardoImageCredentials.credentials.ts Object.defineProperty(exports, "__esModule", { value: true }); exports.CreateLeonardoImageCredentials = void 0; class CreateLeonardoImageCredentials { constructor() { this.name = 'createLeonardoImageCredentials'; this.displayName = 'Self-Host Hub - Leonardo Image Creator'; 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 for image generation', }, ]; } } exports.CreateLeonardoImageCredentials = CreateLeonardoImageCredentials; //# sourceMappingURL=CreateLeonardoImageCredentials.credentials.js.map