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