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 .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ runs:
shell: ${{ runner.os == 'Windows' && 'pwsh' || 'bash' }}
env:
BP_VERBOSE: 'true'
run: pnpm build ${{ inputs.extra_filters }}
run: pnpm turbo run build ${{ inputs.extra_filters }}
12 changes: 6 additions & 6 deletions .github/scripts/update-linear.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ async function getStates(targetTeam: Team): Promise<{ sourceState: WorkflowState
if (!sourceState) throw new Error(`Could not find workflow state ${SOURCE_STATE_NAME}`)
if (!targetState) throw new Error(`Could not find workflow state ${TARGET_STATE_NAME}`)

console.log(`Found source state: ${sourceState.name} (${sourceState.id})`)
console.log(`Found target state: ${targetState.name} (${targetState.id})`)
console.info(`Found source state: ${sourceState.name} (${sourceState.id})`)
console.info(`Found target state: ${targetState.name} (${targetState.id})`)

return { sourceState, targetState }
}
Expand All @@ -60,9 +60,9 @@ async function getTargetLabels(targetTeam: Team): Promise<IssueLabel[]> {
throw new Error(`Could not find any labels matching ${TARGET_LABEL}`)
}

console.log(`Found ${targetLabels.length} matching label(s):`)
console.info(`Found ${targetLabels.length} matching label(s):`)
targetLabels.forEach((label) => {
console.log(` - ${label.name} (${label.id})`)
console.info(` - ${label.name} (${label.id})`)
})

return targetLabels
Expand All @@ -82,11 +82,11 @@ async function updateLinearIssues() {
},
})

console.log(`Found ${issues.nodes.length} issue(s) in state "${SOURCE_STATE_NAME}"`)
console.info(`Found ${issues.nodes.length} issue(s) in state "${SOURCE_STATE_NAME}"`)

await Promise.all(
issues.nodes.map(async (issue) => {
console.log(`Updating issue ${issue.identifier} to ${TARGET_STATE_NAME}`)
console.info(`Updating issue ${issue.identifier} to ${TARGET_STATE_NAME}`)
await issue.update({ stateId: targetState.id })
})
)
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/run-cli-tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
- uses: actions/checkout@v2
- name: Setup
uses: ./.github/actions/setup
with:
extra_filters: '-F @botpress/cli'
- run: |
pnpm run -F cli test:e2e -v `
--api-url https://api.botpress.dev `
Expand Down
1 change: 1 addition & 0 deletions bots/bugbuster/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/github": "workspace:*",
"@botpresshub/linear": "workspace:*",
"@botpresshub/slack": "workspace:*",
Expand Down
2 changes: 2 additions & 0 deletions bots/clog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
"cheerio": "^1.1.2"
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/slack": "workspace:*"
},
"bpDependencies": {
Expand Down
1 change: 1 addition & 0 deletions bots/doppel-doer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/todoist": "workspace:*",
"@bpinternal/genenv": "0.0.1"
},
Expand Down
1 change: 1 addition & 0 deletions bots/hello-world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/logger": "workspace:*",
"@botpresshub/telegram": "workspace:*",
"@botpresshub/webhook": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions bots/hit-looper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/chat": "workspace:*",
"@botpresshub/hitl-plugin": "workspace:*",
"@botpresshub/zendesk": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions bots/knowledgiani/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/knowledge": "workspace:*",
"@botpresshub/openai": "workspace:*",
"@botpresshub/personality": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions bots/notionaut/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/chat": "workspace:*",
"@botpresshub/file-synchronizer": "workspace:*",
"@botpresshub/notion": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions bots/sheetzy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/gsheets": "workspace:*",
"@botpresshub/telegram": "workspace:*",
"@bpinternal/genenv": "0.0.1"
Expand Down
1 change: 1 addition & 0 deletions bots/sinlin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/chat": "workspace:*",
"@botpresshub/linear": "workspace:*",
"@botpresshub/synchronizer": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions bots/synchrotron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/chat": "workspace:*",
"@botpresshub/dropbox": "workspace:*",
"@botpresshub/file-synchronizer": "workspace:*",
Expand Down
3 changes: 2 additions & 1 deletion integrations/airtable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*"
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*"
}
}
1 change: 1 addition & 0 deletions integrations/anthropic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/llm": "workspace:*"
},
"bpDependencies": {
Expand Down
1 change: 1 addition & 0 deletions integrations/asana/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"@botpress/cli": "workspace:*",
"@botpress/client": "workspace:*",
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*",
"@sentry/cli": "^2.39.1",
"@types/asana": "^0.18.12"
}
Expand Down
2 changes: 2 additions & 0 deletions integrations/attio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
"@botpress/sdk": "workspace:*"
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@types/node": "^22.16.4",
"typescript": "^5.6.3"
}
Expand Down
2 changes: 2 additions & 0 deletions integrations/bamboohr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
"lodash": "^4.17.21"
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@types/jsonwebtoken": "^9.0.3",
"@types/lodash": "^4.14.191",
"@types/node": "^22.16.4",
Expand Down
3 changes: 2 additions & 1 deletion integrations/bigcommerce-sync/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"axios": "^1.7.2"
},
"devDependencies": {
"@botpress/cli": "workspace:*"
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*"
}
}
3 changes: 2 additions & 1 deletion integrations/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*"
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*"
}
}
3 changes: 2 additions & 1 deletion integrations/calcom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"axios": "^1.11.0"
},
"devDependencies": {
"@botpress/cli": "workspace:*"
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*"
}
}
4 changes: 4 additions & 0 deletions integrations/calendly/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,9 @@
"@botpress/client": "workspace:*",
"@botpress/sdk": "workspace:*",
"axios": "^1.11.0"
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*"
}
}
4 changes: 4 additions & 0 deletions integrations/canny/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,9 @@
"@botpress/client": "workspace:*",
"@botpress/sdk": "workspace:*",
"axios": "^1.6.0"
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*"
}
}
1 change: 1 addition & 0 deletions integrations/cerebras/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/llm": "workspace:*"
},
"bpDependencies": {
Expand Down
1 change: 1 addition & 0 deletions integrations/charts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*",
"chart.js": "^3.9.1"
}
}
1 change: 1 addition & 0 deletions integrations/chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"devDependencies": {
"@botpress/chat-api": "workspace:*",
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@types/json-schema": "^7.0.12",
"@types/jsonwebtoken": "^9.0.3",
"@types/lodash": "^4.14.191",
Expand Down
3 changes: 2 additions & 1 deletion integrations/clickup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*"
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*"
}
}
3 changes: 2 additions & 1 deletion integrations/confluence/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"unified": "^11.0.5"
},
"devDependencies": {
"@botpress/cli": "workspace:*"
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*"
},
"bpDependencies": {
"files-readonly": "../../interfaces/files-readonly",
Expand Down
3 changes: 2 additions & 1 deletion integrations/dalle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*"
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*"
}
}
2 changes: 2 additions & 0 deletions integrations/docusign/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
"docusign-esign": "^8.4.0"
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@types/docusign-esign": "^5.19.9"
}
}
1 change: 1 addition & 0 deletions integrations/dropbox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@sentry/cli": "^2.39.1"
},
"private": true,
Expand Down
2 changes: 2 additions & 0 deletions integrations/email/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
"nodemailer": "^6.7.2"
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@types/imap": "^0.8.42",
"@types/nodemailer": "^6.4.4"
}
Expand Down
2 changes: 2 additions & 0 deletions integrations/feature-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
"axios": "^1.11.0"
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@types/node": "^22.16.4",
"typescript": "^5.6.3"
}
Expand Down
1 change: 1 addition & 0 deletions integrations/fireworks-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/llm": "workspace:*",
"@botpresshub/speech-to-text": "workspace:*"
},
Expand Down
1 change: 1 addition & 0 deletions integrations/freshchat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/hitl": "workspace:*",
"@sentry/cli": "^2.39.1",
"@types/lodash": "^4.14.191"
Expand Down
1 change: 1 addition & 0 deletions integrations/github/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/client": "workspace:*",
"@botpress/sdk": "workspace:*",
"@sentry/cli": "^2.39.1"
}
}
1 change: 1 addition & 0 deletions integrations/gmail/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@sentry/cli": "^2.39.1",
"@types/nodemailer": "^6.4.4",
"@types/react": "^18.3.11",
Expand Down
1 change: 1 addition & 0 deletions integrations/google-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/llm": "workspace:*"
},
"bpDependencies": {
Expand Down
1 change: 1 addition & 0 deletions integrations/googlecalendar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/creatable": "workspace:*",
"@botpresshub/deletable": "workspace:*",
"@botpresshub/listable": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions integrations/googledrive/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@sentry/cli": "^2.39.1",
"@types/jsonwebtoken": "^9.0.3",
"@types/uuid": "^9.0.1",
Expand Down
1 change: 1 addition & 0 deletions integrations/groq/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*",
"@botpresshub/llm": "workspace:*",
"@botpresshub/speech-to-text": "workspace:*"
},
Expand Down
1 change: 1 addition & 0 deletions integrations/gsheets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"devDependencies": {
"@botpress/cli": "workspace:*",
"@botpress/common": "workspace:*",
"@botpress/sdk": "workspace:*",
"@sentry/cli": "^2.39.1"
}
}
3 changes: 2 additions & 1 deletion integrations/hubspot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"@hubspot/api-client": "^13.1.0"
},
"devDependencies": {
"@botpress/cli": "workspace:*"
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:*"
}
}
Loading
Loading