@botpress/sdk 4.14.2 → 4.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +5 -5
- package/dist/bot/server/types.d.ts +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +2 -2
- package/dist/index.mjs +13 -13
- package/dist/index.mjs.map +3 -3
- package/dist/plugin/server/types.d.ts +1 -0
- package/package.json +2 -2
|
@@ -163,6 +163,7 @@ export type WorkflowPayloads<TPlugin extends common.BasePlugin> = {
|
|
|
163
163
|
[TWorkflowName in utils.StringKeys<TPlugin['workflows']>]: CommonHandlerProps<TPlugin> & {
|
|
164
164
|
conversation?: client.Conversation;
|
|
165
165
|
user?: client.User;
|
|
166
|
+
event: bot.WorkflowUpdateEvent;
|
|
166
167
|
/**
|
|
167
168
|
* # EXPERIMENTAL
|
|
168
169
|
* This API is experimental and may change in the future.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botpress/sdk",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.15.0",
|
|
4
4
|
"description": "Botpress SDK",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"author": "",
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@botpress/client": "1.
|
|
19
|
+
"@botpress/client": "1.20.0",
|
|
20
20
|
"browser-or-node": "^2.1.1"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|