Add SearchApi documentloader, tool & podcast QA example

This commit is contained in:
SebastjanPrachovskij
2023-10-31 16:27:37 +02:00
parent 06552416bb
commit 7bc41939e4
6 changed files with 879 additions and 0 deletions
@@ -0,0 +1,24 @@
import { INodeParams, INodeCredential } from '../src/Interface'
class SearchApi implements INodeCredential {
label: string
name: string
version: number
description: string
inputs: INodeParams[]
constructor() {
this.label = 'Search API'
this.name = 'searchApi'
this.version = 1.0
this.inputs = [
{
label: 'SearchApi API Key',
name: 'searchApiKey',
type: 'password'
}
]
}
}
module.exports = { credClass: SearchApi }