37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
import * as sdk from '@botpress/sdk'
|
|
|
|
export const configuration = {
|
|
schema: sdk.z.object({}),
|
|
identifier: {
|
|
linkTemplateScript: 'linkTemplate.vrl',
|
|
required: true,
|
|
},
|
|
} as const satisfies sdk.IntegrationDefinitionProps['configuration']
|
|
|
|
export const identifier = {
|
|
extractScript: 'extract.vrl',
|
|
fallbackHandlerScript: 'fallbackHandler.vrl',
|
|
} as const satisfies sdk.IntegrationDefinitionProps['identifier']
|
|
|
|
export const configurations = {
|
|
customApp: {
|
|
title: 'Manual configuration with a custom Notion integration',
|
|
description: 'Configure the integration using a Notion integration token.',
|
|
schema: sdk.z.object({
|
|
internalIntegrationSecret: sdk.z
|
|
.string()
|
|
.min(1)
|
|
.title('Internal Integration Secret')
|
|
.describe('Can be found on Notion in your integration settings under the Configuration tab.'),
|
|
webhookVerificationSecret: sdk.z
|
|
.string()
|
|
.min(1)
|
|
.optional()
|
|
.title('Webhook Verification Secret')
|
|
.describe(
|
|
'Note: Requires saving the integration in order to generate a new secret. Once the integration has been saved, configure the notion webhook, verify the webhook url, and copy the secret from the bot logs.'
|
|
),
|
|
}),
|
|
},
|
|
} as const satisfies sdk.IntegrationDefinitionProps['configurations']
|