Flowise

Форк
0
/
NotionApi.credential.ts 
26 строк · 773.0 Байт
1
import { INodeParams, INodeCredential } from '../src/Interface'
2

3
class NotionApi implements INodeCredential {
4
    label: string
5
    name: string
6
    version: number
7
    description: string
8
    inputs: INodeParams[]
9

10
    constructor() {
11
        this.label = 'Notion API'
12
        this.name = 'notionApi'
13
        this.version = 1.0
14
        this.description =
15
            'You can find integration token <a target="_blank" href="https://developers.notion.com/docs/create-a-notion-integration#step-1-create-an-integration">here</a>'
16
        this.inputs = [
17
            {
18
                label: 'Notion Integration Token',
19
                name: 'notionIntegrationToken',
20
                type: 'password'
21
            }
22
        ]
23
    }
24
}
25

26
module.exports = { credClass: NotionApi }
27

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.