import { INodeParams, INodeCredential } from '../src/Interface' class LunaryApi implements INodeCredential { label: string name: string version: number description: string inputs: INodeParams[] constructor() { this.label = 'Lunary API' this.name = 'lunaryApi' this.version = 1.0 this.description = 'Refer to official guide to get APP ID' this.inputs = [ { label: 'APP ID', name: 'lunaryAppId', type: 'password', placeholder: '' }, { label: 'Endpoint', name: 'lunaryEndpoint', type: 'string', default: 'https://app.lunary.ai' } ] } } module.exports = { credClass: LunaryApi }