chroma auth

This commit is contained in:
Henry
2023-08-01 12:23:25 +01:00
parent 7a3a5fe367
commit d8749bd495
3 changed files with 91 additions and 6 deletions
@@ -0,0 +1,24 @@
import { INodeParams, INodeCredential } from '../src/Interface'
class ChromaApi implements INodeCredential {
label: string
name: string
description: string
version: number
inputs: INodeParams[]
constructor() {
this.label = 'Chroma API'
this.name = 'chromaApi'
this.version = 1.0
this.inputs = [
{
label: 'Chroma Api Key',
name: 'chromaApiKey',
type: 'password'
}
]
}
}
module.exports = { credClass: ChromaApi }