40 lines
667 B
TypeScript
40 lines
667 B
TypeScript
import * as sdk from '@botpress/sdk'
|
|
import {
|
|
actions,
|
|
channels,
|
|
configuration,
|
|
configurations,
|
|
entities,
|
|
events,
|
|
identifier,
|
|
secrets,
|
|
states,
|
|
user,
|
|
} from './definitions'
|
|
|
|
export default new sdk.IntegrationDefinition({
|
|
name: 'todoist',
|
|
title: 'Todoist',
|
|
description: 'Create and modify tasks, post comments and more.',
|
|
version: '1.0.7',
|
|
readme: 'hub.md',
|
|
icon: 'icon.svg',
|
|
actions,
|
|
channels,
|
|
configuration,
|
|
configurations,
|
|
entities,
|
|
events,
|
|
identifier,
|
|
secrets,
|
|
states,
|
|
user,
|
|
__advanced: {
|
|
useLegacyZuiTransformer: true,
|
|
},
|
|
attributes: {
|
|
category: 'Project Management',
|
|
repo: 'botpress',
|
|
},
|
|
})
|