import { INodeParams, INodeCredential } from '../src/Interface' class PerplexityApi implements INodeCredential { label: string name: string version: number description: string inputs: INodeParams[] constructor() { this.label = 'Perplexity API' this.name = 'perplexityApi' this.version = 1.0 this.description = 'Refer to official guide on how to get API key' this.inputs = [ { label: 'Perplexity API Key', name: 'perplexityApiKey', type: 'password', placeholder: '' } ] } } module.exports = { credClass: PerplexityApi }