Skip to content

Commit 6450b0d

Browse files
authored
Merge pull request #27 from botpress/dv_fix_salesforce
feat(salesforce-hitl): release 0.0.8
2 parents d6eabbd + 57ca376 commit 6450b0d

16 files changed

+1363
-1760
lines changed

integrations/hitl-salesforce/integration.definition.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { IntegrationDefinition, IntegrationDefinitionProps } from '@botpress/sdk'
22
import { INTEGRATION_NAME } from './src/const'
33
import hitl from './bp_modules/hitl'
4-
import { configuration, channels, states } from './src/definitions'
4+
import { configuration, channels, states, events, actions } from './src/definitions'
55

66
export const user = {
77
tags: {
@@ -14,12 +14,14 @@ export const user = {
1414
export default new IntegrationDefinition({
1515
name: INTEGRATION_NAME,
1616
title: 'SalesForce Messaging (Alpha)',
17-
version: '0.0.7',
17+
version: '0.0.8',
1818
icon: 'icon.svg',
1919
description:
2020
'This integration allows your bot to interact with Salesforce Messaging, this version uses the HITL Interface',
2121
readme: 'hub.md',
2222
configuration,
23+
actions,
24+
events,
2325
states,
2426
channels,
2527
user,

integrations/hitl-salesforce/package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hitl-salesforce",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"description": "Integration for HITL Salesforce Messaging",
55
"private": true,
66
"scripts": {
@@ -18,23 +18,24 @@
1818
"dependencies": {
1919
"@botpress/client": "0.35.0",
2020
"@botpress/sdk": "1.6.1",
21-
"axios": "^1.7.3",
22-
"lodash": "^4.17.21",
2321
"@typescript-eslint/eslint-plugin": "^5.47.0",
2422
"@typescript-eslint/parser": "^5.47.0",
23+
"axios": "^1.7.3",
2524
"eslint": "^8.30.0",
2625
"eslint-config-prettier": "^8.5.0",
2726
"eslint-plugin-import": "^2.26.0",
2827
"eslint-plugin-jsdoc": "^39.6.4",
2928
"eslint-plugin-prettier": "^4.2.1",
3029
"eslint-plugin-unused-imports": "^2.0.0",
30+
"lodash": "^4.17.21",
3131
"prettier": "2.8.1",
3232
"uuid": "^11.0.3",
3333
"zod": "^3.21.4"
3434
},
3535
"devDependencies": {
3636
"@botpress/cli": "1.4.7",
3737
"@types/lodash": "^4.14.191",
38+
"@types/ms": "^0.7.34",
3839
"@types/node": "^18.11.17",
3940
"@typescript-eslint/eslint-plugin": "^6.21.0",
4041
"eslint": "^8.57.1",

0 commit comments

Comments
 (0)