add couchbase vectore store support (#2303)

* add couchbase vectore store support

* Updated on review comments
This commit is contained in:
Prajwal Pai
2024-05-06 15:56:54 +05:30
committed by GitHub
parent f9195b6a68
commit 09569d0b06
5 changed files with 32600 additions and 32197 deletions
@@ -0,0 +1,34 @@
import { INodeParams, INodeCredential } from '../src/Interface'
class CouchbaseApi implements INodeCredential {
label: string
name: string
version: number
description: string
inputs: INodeParams[]
constructor() {
this.label = 'Couchbase API'
this.name = 'couchbaseApi'
this.version = 1.0
this.inputs = [
{
label: 'Couchbase Connection String',
name: 'connectionString',
type: 'string'
},
{
label: 'Couchbase Username',
name: 'username',
type: 'string'
},
{
label: 'Couchbase Password',
name: 'password',
type: 'password'
}
]
}
}
module.exports = { credClass: CouchbaseApi }