mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-23 17:00:30 +03:00
dd284e37c3
* added Teradata MCP server * fixed * fixed lint issue * updated latest teradata icon * Added TD Referance guide url * Fix module export by adding missing newline * Fix formatting of description in TeradataBearerToken --------- Co-authored-by: vj255006 <vilash.jagani@teradata.com> Co-authored-by: Henry Heng <henryheng@flowiseai.com>
29 lines
726 B
TypeScript
29 lines
726 B
TypeScript
import { INodeParams, INodeCredential } from '../src/Interface'
|
|
|
|
class TeradataTD2Credential implements INodeCredential {
|
|
label: string
|
|
name: string
|
|
version: number
|
|
inputs: INodeParams[]
|
|
|
|
constructor() {
|
|
this.label = 'Teradata TD2 Auth'
|
|
this.name = 'teradataTD2Auth'
|
|
this.version = 1.0
|
|
this.inputs = [
|
|
{
|
|
label: 'Teradata TD2 Auth Username',
|
|
name: 'tdUsername',
|
|
type: 'string'
|
|
},
|
|
{
|
|
label: 'Teradata TD2 Auth Password',
|
|
name: 'tdPassword',
|
|
type: 'password'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
module.exports = { credClass: TeradataTD2Credential }
|