25 lines
605 B
TypeScript
25 lines
605 B
TypeScript
import { IntegrationDefinition } from '@botpress/sdk'
|
|
import { actionDefinitions } from 'src/definitions/actions'
|
|
|
|
export default new IntegrationDefinition({
|
|
name: 'charts',
|
|
title: 'Charts',
|
|
description: 'Easily generate a variety of charts, including line, bar, pie, and scatter plots, etc.',
|
|
version: '0.2.8',
|
|
readme: 'hub.md',
|
|
icon: 'icon.svg',
|
|
actions: actionDefinitions,
|
|
secrets: {
|
|
QUICKCHARTS_API_KEY: {
|
|
description: 'Quickcharts key',
|
|
},
|
|
},
|
|
__advanced: {
|
|
useLegacyZuiTransformer: true,
|
|
},
|
|
attributes: {
|
|
category: 'Other',
|
|
repo: 'botpress',
|
|
},
|
|
})
|