19 lines
483 B
TypeScript
19 lines
483 B
TypeScript
import { z } from '@botpress/sdk'
|
|
|
|
export { actions } from './actions'
|
|
export { events } from './events'
|
|
export { states } from './states'
|
|
export * as schemas from './schemas'
|
|
|
|
export const configuration = {
|
|
identifier: {
|
|
linkTemplateScript: 'linkTemplate.vrl',
|
|
},
|
|
schema: z.object({}),
|
|
}
|
|
|
|
export const secrets = {
|
|
SHOPIFY_CLIENT_ID: { description: 'The Client ID of the Shopify app' },
|
|
SHOPIFY_CLIENT_SECRET: { description: 'The Client Secret of the Shopify app' },
|
|
}
|