Skip to content

Commit

Permalink
Add needs escalation as a webview end fail (#2946)
Browse files Browse the repository at this point in the history
## Description

@botonic/plugin-hubtype-analytics published in 0.30.2
Add a `needs_escalation` as a new WebviewEndFileType

@botonic/plugin-flow-builder published in 0.30.8
export type HtBotActionNode
  • Loading branch information
Iru89 authored Dec 18, 2024
1 parent 502219e commit 7b6afe2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion packages/botonic-plugin-flow-builder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@botonic/plugin-flow-builder",
"version": "0.30.7",
"version": "0.30.8",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"description": "Use Flow Builder to show your contents",
Expand Down
1 change: 1 addition & 0 deletions packages/botonic-plugin-flow-builder/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ export default class BotonicPluginFlowBuilder implements Plugin {

export * from './action'
export * from './content-fields'
export { HtBotActionNode } from './content-fields/hubtype-fields'
export { trackFlowContent } from './tracking'
export {
BotonicPluginFlowBuilderOptions,
Expand Down
2 changes: 1 addition & 1 deletion packages/botonic-plugin-hubtype-analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@botonic/plugin-hubtype-analytics",
"version": "0.30.1",
"version": "0.30.2",
"description": "Plugin for tracking in the Hubtype backend to see the results in the Hubtype Dashbord",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
Expand Down
1 change: 1 addition & 0 deletions packages/botonic-plugin-hubtype-analytics/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ export interface EventWebviewEnd extends HtBaseEventProps {
export enum WebviewEndFailType {
CanceledByUser = 'canceled_by_user',
ApiError = 'api_error',
NeedsEscalation = 'needs_escalation',
}

export interface EventCustom extends HtBaseEventProps {
Expand Down

0 comments on commit 7b6afe2

Please sign in to comment.