Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f8a5e85
ref: use pnpm workspace and bump dependency versions
SimonNRisk Nov 19, 2025
b8d13fd
ref: use bp.IntegrationProps
SimonNRisk Nov 19, 2025
8c27e78
fix: bp integration types fpr register and unregister
SimonNRisk Nov 19, 2025
c532c6a
fix: channels configuration
SimonNRisk Nov 19, 2025
916d20f
ref: remove unused handler
SimonNRisk Nov 19, 2025
2b84d7a
chore: remove unused types for misc/types
SimonNRisk Nov 19, 2025
31520c5
ref: remove types.ts file
SimonNRisk Nov 19, 2025
fb7995e
chore: remove unused custom-types file
SimonNRisk Nov 19, 2025
c1f225c
fix: remove unused expand prop
SimonNRisk Nov 19, 2025
cc39e9e
chore: cleanup redundancies in find-all-users
SimonNRisk Nov 19, 2025
9f01182
chore: cleanup redundancies in new-issue.ts
SimonNRisk Nov 19, 2025
8fc1e1e
chore: cleanup update-issue
SimonNRisk Nov 19, 2025
e33837f
chore: cleanup linting issues
SimonNRisk Nov 19, 2025
ad3c2ed
ref: inline ui rather than seperate file
SimonNRisk Nov 19, 2025
8d1aed4
chore: update readme to hub.md
SimonNRisk Nov 19, 2025
a25263c
fix: simplify hub md
SimonNRisk Nov 19, 2025
9e4cde9
rev: remove channels files with no functionality
SimonNRisk Nov 19, 2025
092471b
ref: register and unregister into a single setup file
SimonNRisk Nov 19, 2025
164f8a9
chore: example to atlassian host domain
SimonNRisk Nov 20, 2025
35dd1f7
fix: only include fields when provided
SimonNRisk Nov 20, 2025
4cc4f9e
chore: run pnpm i
SimonNRisk Nov 20, 2025
f3da8ba
chore: remove unused states
SimonNRisk Nov 20, 2025
a5ad711
chore: remove unused user variable
SimonNRisk Nov 20, 2025
a5ce9dd
fix: error handling
SimonNRisk Nov 20, 2025
417ba1c
chore: run pnpm i after rebase
SimonNRisk Dec 1, 2025
c189937
fix: remove redundant input validation
SimonNRisk Dec 1, 2025
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
132 changes: 23 additions & 109 deletions integrations/intercom-hitl/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions integrations/jira/hub.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Botpress Jira Software Integration

This integration allows you to connect your Botpress chatbot with Jira Software, a popular platform for project management and issue tracking. With this integration, you can easily manage your projects and tasks directly from your chatbot.

## Actions

- **Find User** - Find user by Account ID
- **New Issue** - Create a new issue in Jira
- **Update Issue** - Update an issue in Jira
- **Add Comment To Issue** - Add comment to issue in Jira
- **Find All Users** - Find all users in Jira
21 changes: 6 additions & 15 deletions integrations/jira/integration.definition.ts
Original file line number Diff line number Diff line change
@@ -1,24 +1,15 @@
import { IntegrationDefinition } from '@botpress/sdk'

import {
configuration,
states,
user,
channels,
actions,
} from './src/definitions'
import { configuration, actions } from './src/definitions'

export default new IntegrationDefinition({
name: "plus/jira",
title: "Jira",
description: "This integration allows you to manipulate Jira issues and users.",
version: '0.2.3',
readme: 'readme.md',
name: 'plus/jira',
title: 'Jira',
description: 'This integration allows you to manipulate Jira issues and users.',
version: '1.0.0',
readme: 'hub.md',
icon: 'icon.svg',
configuration,
channels,
user,
actions,
events: {},
states,
})
12 changes: 6 additions & 6 deletions integrations/jira/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
"author": "",
"license": "MIT",
"dependencies": {
"@botpress/client": "^0.14.0",
"@botpress/sdk": "^0.6.15",
"@botpress/client": "1.27.1",
"@botpress/sdk": "4.15.6",
"jira.js": "^2.19.1",
"zod": "^3.20.6"
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^18.11.17",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
"@types/node": "^18.19.74",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}
Loading
Loading