Bugfix/update get chat messages chattype (#3881)

update get chat messages chattype
This commit is contained in:
Henry Heng
2025-01-16 14:53:36 +00:00
committed by GitHub
parent 62d5d1e8ef
commit c89be26024
6 changed files with 55 additions and 82 deletions
@@ -1,25 +0,0 @@
import { INodeParams, INodeCredential } from '../src/Interface'
class OpenAPIAuth implements INodeCredential {
label: string
name: string
version: number
description: string
inputs: INodeParams[]
constructor() {
this.label = 'OpenAPI Auth Token'
this.name = 'openAPIAuth'
this.version = 1.0
this.inputs = [
{
label: 'OpenAPI Token',
name: 'openAPIToken',
type: 'password',
description: 'Auth Token. For example: Bearer <TOKEN>'
}
]
}
}
module.exports = { credClass: OpenAPIAuth }