40 lines
724 B
TypeScript
40 lines
724 B
TypeScript
import * as sdk from '@botpress/sdk'
|
|
|
|
import {
|
|
actions,
|
|
channels,
|
|
configuration,
|
|
configurations,
|
|
events,
|
|
identifier,
|
|
secrets,
|
|
states,
|
|
user,
|
|
} from './definitions'
|
|
|
|
export const INTEGRATION_NAME = 'gsheets'
|
|
export const INTEGRATION_VERSION = '2.1.10'
|
|
|
|
export default new sdk.IntegrationDefinition({
|
|
name: INTEGRATION_NAME,
|
|
version: INTEGRATION_VERSION,
|
|
description: 'Access, update, and append Google Sheets data.',
|
|
title: 'Google Sheets',
|
|
readme: 'hub.md',
|
|
icon: 'icon.svg',
|
|
actions,
|
|
channels,
|
|
configuration,
|
|
configurations,
|
|
events,
|
|
identifier,
|
|
secrets,
|
|
states,
|
|
user,
|
|
attributes: {
|
|
category: 'Project Management',
|
|
guideSlug: 'gsheets',
|
|
repo: 'botpress',
|
|
},
|
|
})
|