Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion integrations/airtable/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default new IntegrationDefinition({
title: 'Airtable',
description:
'Access and manage Airtable data to allow your chatbot to retrieve details, update records, and organize information.',
version: '1.0.2',
version: '1.0.3',
readme: 'hub.md',
icon: 'icon.svg',
configuration: {
Expand Down Expand Up @@ -102,4 +102,7 @@ export default new IntegrationDefinition({
},
events: {},
states: {},
attributes: {
category: 'Project Management',
},
})
5 changes: 4 additions & 1 deletion integrations/anthropic/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default new IntegrationDefinition({
name: 'anthropic',
title: 'Anthropic',
description: 'Access a curated list of Claude models to set as your chosen LLM.',
version: '13.0.0',
version: '13.0.1',
readme: 'hub.md',
icon: 'icon.svg',
entities: {
Expand All @@ -21,6 +21,9 @@ export default new IntegrationDefinition({
description: 'Anthropic API key',
},
},
attributes: {
category: 'AI Models',
},
}).extend(llm, ({ entities }) => ({
entities: { modelRef: entities.modelRef },
}))
5 changes: 4 additions & 1 deletion integrations/asana/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { configuration, states, user, channels, actions } from './src/definition

export default new IntegrationDefinition({
name: INTEGRATION_NAME,
version: '0.3.11',
version: '0.3.12',
title: 'Asana',
readme: 'hub.md',
description: 'Connect your bot to your Asana inbox, create and update tasks, add comments, and locate users.',
Expand All @@ -17,4 +17,7 @@ export default new IntegrationDefinition({
actions,
states,
secrets: sentryHelpers.COMMON_SECRET_NAMES,
attributes: {
category: 'Project Management',
},
})
5 changes: 4 additions & 1 deletion integrations/attio/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { actions, states, events } from './definitions'

export default new IntegrationDefinition({
name: 'attio',
version: '1.0.1',
version: '1.0.2',

title: 'Attio',
readme: 'hub.md',
Expand All @@ -20,4 +20,7 @@ export default new IntegrationDefinition({
__advanced: {
useLegacyZuiTransformer: true,
},
attributes: {
category: 'CRM & Sales',
},
})
5 changes: 4 additions & 1 deletion integrations/bamboohr/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { IntegrationDefinition, z } from '@botpress/sdk'
import { actions, events, subdomain } from './definitions'

export const INTEGRATION_NAME = 'bamboohr'
export const INTEGRATION_VERSION = '2.1.0'
export const INTEGRATION_VERSION = '2.1.1'

export default new IntegrationDefinition({
name: INTEGRATION_NAME,
Expand Down Expand Up @@ -75,4 +75,7 @@ export default new IntegrationDefinition({
}),
},
},
attributes: {
category: 'Business Operations',
},
})
5 changes: 4 additions & 1 deletion integrations/bigcommerce-sync/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { configuration, states, actions } from './src/definitions/index'
export default new IntegrationDefinition({
name: 'bigcommerce',
title: 'BigCommerce',
version: '3.2.2',
version: '3.2.3',
readme: 'hub.md',
icon: 'icon.svg',
description: 'Sync products from BigCommerce to Botpress',
Expand All @@ -13,4 +13,7 @@ export default new IntegrationDefinition({
syncProducts: actions.syncProducts,
},
states,
attributes: {
category: 'CRM & Sales',
},
})
5 changes: 4 additions & 1 deletion integrations/browser/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { IntegrationDefinition } from '@botpress/sdk'
import { actionDefinitions } from 'src/definitions/actions'

export const INTEGRATION_NAME = 'browser'
export const INTEGRATION_VERSION = '0.8.3'
export const INTEGRATION_VERSION = '0.8.4'

export default new IntegrationDefinition({
name: INTEGRATION_NAME,
Expand All @@ -26,4 +26,7 @@ export default new IntegrationDefinition({
description: 'Logo key',
},
},
attributes: {
category: 'Developer Tools',
},
})
5 changes: 4 additions & 1 deletion integrations/calcom/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
export default new IntegrationDefinition({
name: 'calcom',
title: 'Cal.com',
version: '0.4.0',
version: '0.4.1',
readme: 'hub.md',
icon: 'icon.svg',
description: 'Schedule meetings and manage events using the Cal.com scheduling platform.',
Expand Down Expand Up @@ -61,4 +61,7 @@ export default new IntegrationDefinition({
__advanced: {
useLegacyZuiTransformer: true,
},
attributes: {
category: 'Business Operations',
},
})
5 changes: 4 additions & 1 deletion integrations/calendly/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { inviteeEventOutputSchema } from 'definitions/events'
export default new IntegrationDefinition({
name: 'calendly',
title: 'Calendly',
version: '0.0.1',
version: '0.0.2',
readme: 'hub.md',
icon: 'icon.svg',
description: 'Schedule meetings and manage events using the Calendly scheduling platform.',
Expand Down Expand Up @@ -103,4 +103,7 @@ export default new IntegrationDefinition({
__advanced: {
useLegacyZuiTransformer: true,
},
attributes: {
category: 'Business Operations',
},
})
5 changes: 4 additions & 1 deletion integrations/canny/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { z, IntegrationDefinition } from '@botpress/sdk'

export default new IntegrationDefinition({
name: 'canny',
version: '0.2.1',
version: '0.2.2',
title: 'Canny',
description: 'Connect your Botpress bot to Canny for feature request management and customer feedback collection',
readme: 'hub.md',
Expand Down Expand Up @@ -400,4 +400,7 @@ export default new IntegrationDefinition({
},
},
},
attributes: {
category: 'Project Management',
},
})
5 changes: 4 additions & 1 deletion integrations/cerebras/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default new IntegrationDefinition({
title: 'Cerebras',
description:
'Get access to a curated list of Cerebras models for content generation and chat completions within your bot.',
version: '8.0.1',
version: '8.0.2',
readme: 'hub.md',
icon: 'icon.svg',
entities: {
Expand All @@ -22,6 +22,9 @@ export default new IntegrationDefinition({
description: 'Cerebras API key',
},
},
attributes: {
category: 'AI Models',
},
}).extend(llm, ({ entities: { modelRef } }) => ({
entities: { modelRef },
}))
5 changes: 4 additions & 1 deletion integrations/charts/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default new IntegrationDefinition({
name: 'charts',
title: 'Charts',
description: 'Easily generate a variety of charts, including line, bar, pie, and scatter plots, etc.',
version: '0.2.6',
version: '0.2.7',
readme: 'hub.md',
icon: 'icon.svg',
actions: actionDefinitions,
Expand All @@ -17,4 +17,7 @@ export default new IntegrationDefinition({
__advanced: {
useLegacyZuiTransformer: true,
},
attributes: {
category: 'Other',
},
})
3 changes: 3 additions & 0 deletions integrations/chat/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,7 @@ export default new sdk.IntegrationDefinition({
optional: true,
},
},
attributes: {
category: 'Communication & Channels',
},
})
5 changes: 4 additions & 1 deletion integrations/clickup/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { IntegrationDefinition, z } from '@botpress/sdk'
export default new IntegrationDefinition({
name: 'clickup',
title: 'ClickUp',
version: '0.0.1',
version: '0.0.2',
description: 'Create and update tasks, and add comments from your chatbot.',
readme: 'hub.md',
icon: 'icon.svg',
Expand Down Expand Up @@ -158,4 +158,7 @@ export default new IntegrationDefinition({
},
},
},
attributes: {
category: 'Project Management',
},
})
5 changes: 4 additions & 1 deletion integrations/confluence/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ import { entities } from './definitions'

export default new sdk.IntegrationDefinition({
name: 'confluence',
version: '3.3.2',
version: '3.3.3',
readme: 'hub.md',
icon: 'icon.svg',
title: 'Confluence',
description: 'Manage your files and folders effortlessly.',
attributes: {
category: 'File Management',
},
configuration: {
schema: sdk.z.object({
host: sdk.z.string().describe('Host URI. Format is https://your_workspace_name.atlassian.net').title('Host'),
Expand Down
5 changes: 4 additions & 1 deletion integrations/dalle/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const modelDescription = 'Model to use for image generation. Defaults to "dall-e

export default new IntegrationDefinition({
name: 'dalle',
version: '0.3.6',
version: '0.3.7',
icon: 'icon.svg',
title: 'DALL-E (Deprecated)',
description: 'Integrate DALL-E to generate images directly within your chatbot conversations.',
Expand Down Expand Up @@ -39,4 +39,7 @@ export default new IntegrationDefinition({
},
},
},
attributes: {
category: 'AI Models',
},
})
5 changes: 4 additions & 1 deletion integrations/docusign/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { envelopeEventSchema } from 'definitions/events'
export default new IntegrationDefinition({
name: 'docusign',
title: 'Docusign',
version: '2.1.0',
version: '2.1.1',
readme: 'hub.md',
icon: 'icon.svg',
description:
Expand Down Expand Up @@ -134,4 +134,7 @@ export default new IntegrationDefinition({
}),
},
},
attributes: {
category: 'Business Operations',
},
})
5 changes: 4 additions & 1 deletion integrations/dropbox/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { actions, configuration, entities, secrets, states } from './definitions
export default new sdk.IntegrationDefinition({
name: 'dropbox',
title: 'Dropbox',
version: '1.2.1',
version: '1.2.2',
description: 'Manage your files and folders effortlessly.',
readme: 'hub.md',
icon: 'icon.svg',
Expand All @@ -14,6 +14,9 @@ export default new sdk.IntegrationDefinition({
entities,
secrets,
states,
attributes: {
category: 'File Management',
},
}).extend(filesReadonly, ({}) => ({
entities: {},
actions: {
Expand Down
5 changes: 4 additions & 1 deletion integrations/email/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const emailSchema = z.object({

export default new IntegrationDefinition({
name: 'email',
version: '0.1.2',
version: '0.1.3',
title: 'Email',
description: 'Send and receive emails using IMAP and SMTP protocols',
readme: 'hub.md',
Expand Down Expand Up @@ -150,4 +150,7 @@ export default new IntegrationDefinition({
email: { title: 'User email', description: 'Required' },
},
},
attributes: {
category: 'Marketing & Email',
},
})
5 changes: 4 additions & 1 deletion integrations/feature-base/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { postCreated, postUpdated, postDeleted, postVoted } from 'definitions/ev

export default new IntegrationDefinition({
name: 'feature-base',
version: '1.0.1',
version: '1.0.2',
title: 'Feature Base',
description: 'Integration with Feature Base for Botpress',
readme: 'hub.md',
Expand Down Expand Up @@ -49,4 +49,7 @@ export default new IntegrationDefinition({
__advanced: {
useLegacyZuiTransformer: true,
},
attributes: {
category: 'Project Management',
},
})
5 changes: 4 additions & 1 deletion integrations/fireworks-ai/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default new IntegrationDefinition({
title: 'Fireworks AI',
description:
'Choose from curated Fireworks AI models for content generation, chat completions, and audio transcription.',
version: '10.0.1',
version: '10.0.2',
readme: 'hub.md',
icon: 'icon.svg',
entities: {
Expand All @@ -28,6 +28,9 @@ export default new IntegrationDefinition({
description: 'Fireworks AI API key',
},
},
attributes: {
category: 'AI Models',
},
})
.extend(llm, ({ entities: { modelRef } }) => ({ entities: { modelRef } }))
.extend(stt, ({ entities: { speechToTextModelRef } }) => ({ entities: { speechToTextModelRef } }))
5 changes: 4 additions & 1 deletion integrations/freshchat/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { events, configuration, channels, states, user } from './src/definitions
export default new sdk.IntegrationDefinition({
name: INTEGRATION_NAME,
title: 'Freshchat',
version: '1.5.3',
version: '1.5.4',
icon: 'icon.svg',
description: 'This integration allows your bot to use Freshchat as a HITL Provider',
readme: 'hub.md',
Expand All @@ -28,6 +28,9 @@ export default new sdk.IntegrationDefinition({
}),
},
},
attributes: {
category: 'Communication & Channels',
},
}).extend(hitl, (self) => ({
entities: { hitlSession: self.entities.hitlConversation },
channels: {
Expand Down
5 changes: 4 additions & 1 deletion integrations/github/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { actions, events, configuration, configurations, channels, user, secrets
export default new sdk.IntegrationDefinition({
name: INTEGRATION_NAME,
title: 'GitHub',
version: '1.1.7',
version: '1.1.8',
icon: 'icon.svg',
readme: 'hub.md',
description: 'Manage GitHub issues, pull requests, and repositories.',
Expand All @@ -25,4 +25,7 @@ export default new sdk.IntegrationDefinition({
__advanced: {
useLegacyZuiTransformer: true,
},
attributes: {
category: 'Developer Tools',
},
})
Loading
Loading