Files
2026-07-13 13:34:48 +08:00

57 lines
1.4 KiB
TypeScript

import { z, IntegrationDefinition } from '@botpress/sdk'
import { listBoards, getBoard, listPosts, createPost, deletePost, updatePost, getComments } from 'definitions/actions'
import { comments } from 'definitions/channels'
import { postCreated, postUpdated, postDeleted, postVoted } from 'definitions/events'
export default new IntegrationDefinition({
name: 'feature-base',
version: '1.0.3',
title: 'Feature Base',
description: 'Integration with Feature Base for Botpress',
readme: 'hub.md',
icon: 'icon.svg',
configuration: {
schema: z.object({
apiKey: z.string().min(1, 'API Key is required').describe('Your Feature Base API Key').title('API Key'),
webhookSecret: z
.string()
.min(1, 'Webhook signing secret is required')
.describe('The webhook signing secret')
.title('Webhook Signing Secret'),
}),
},
actions: {
listBoards,
getBoard,
createPost,
listPosts,
deletePost,
updatePost,
getComments,
},
events: {
postCreated,
postUpdated,
postDeleted,
postVoted,
},
channels: {
comments,
},
user: {
tags: {
id: {
title: 'ID',
description: 'The Feature Base ID of the user',
},
},
},
__advanced: {
useLegacyZuiTransformer: true,
},
attributes: {
category: 'Project Management',
repo: 'botpress',
},
})