48 lines
1.0 KiB
TypeScript
48 lines
1.0 KiB
TypeScript
import * as sdk from '@botpress/sdk'
|
|
import * as genenv from './.genenv'
|
|
import chat from './bp_modules/chat'
|
|
import hitl from './bp_modules/hitl'
|
|
import zendesk from './bp_modules/zendesk'
|
|
|
|
export default new sdk.BotDefinition({
|
|
configuration: {
|
|
schema: sdk.z.object({}),
|
|
},
|
|
states: {},
|
|
events: {},
|
|
recurringEvents: {},
|
|
user: {
|
|
tags: {
|
|
email: {
|
|
title: 'Email',
|
|
description: 'The email of the user',
|
|
},
|
|
},
|
|
},
|
|
conversation: {},
|
|
})
|
|
.addIntegration(chat, {
|
|
enabled: true,
|
|
configuration: {},
|
|
})
|
|
.addIntegration(zendesk, {
|
|
enabled: true,
|
|
configuration: {
|
|
apiToken: genenv.HITLOOPER_ZENDESK_API_TOKEN,
|
|
email: genenv.HITLOOPER_ZENDESK_EMAIL,
|
|
organizationSubdomain: genenv.HITLOOPER_ZENDESK_ORGANIZATION_SUBDOMAIN,
|
|
},
|
|
})
|
|
.addPlugin(hitl, {
|
|
configuration: {
|
|
flowOnHitlStopped: false,
|
|
useHumanAgentInfo: false,
|
|
},
|
|
dependencies: {
|
|
hitl: {
|
|
integrationAlias: 'zendesk',
|
|
integrationInterfaceAlias: 'hitl<hitlTicket>',
|
|
},
|
|
},
|
|
})
|