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
2 changes: 1 addition & 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.0.3'
export const INTEGRATION_VERSION = '2.0.4'

export default new IntegrationDefinition({
name: INTEGRATION_NAME,
Expand Down
4 changes: 3 additions & 1 deletion integrations/bamboohr/src/wizard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ export const handler = async (props: bp.HandlerProps) => {
const _startHandler: WizardHandler = ({ responses }) => {
return responses.displayInput({
pageTitle: 'BambooHR Integration',
htmlOrMarkdownPageContents: 'Please enter your BambooHR subdomain to continue.',
htmlOrMarkdownPageContents: `Please enter your BambooHR subdomain to continue.

**Important:** BambooHR has a known OAuth bug that may cause the first connection attempt from Google to fail. If this happens, please try connecting again.`,
input: {
type: 'text',
label: 'Subdomain',
Expand Down
Loading