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

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',
},
})