@botfabrik/engine-webclient 4.93.7-alpha.1 → 4.94.1
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/README.md +4 -0
- package/dist/client/assets/{index-D7pX36P-.css → index-C8odGRBC.css} +1 -1
- package/dist/client/assets/index-DUMQmGi5.js +120 -0
- package/dist/client/assets/index-DUMQmGi5.js.map +1 -0
- package/dist/client/index.html +2 -2
- package/dist/index.d.ts +12 -0
- package/package.json +3 -3
- package/dist/client/assets/index-Bqevq7Rf.js +0 -119
- package/dist/client/assets/index-Bqevq7Rf.js.map +0 -1
package/dist/client/index.html
CHANGED
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
<meta name="theme-color" content="#000000" />
|
|
14
14
|
<meta name="google" content="notranslate" />
|
|
15
15
|
<title>Bubble Chat Client</title>
|
|
16
|
-
<script type="module" crossorigin src="./assets/index-
|
|
17
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
16
|
+
<script type="module" crossorigin src="./assets/index-DUMQmGi5.js"></script>
|
|
17
|
+
<link rel="stylesheet" crossorigin href="./assets/index-C8odGRBC.css">
|
|
18
18
|
</head>
|
|
19
19
|
|
|
20
20
|
<body>
|
package/dist/index.d.ts
CHANGED
|
@@ -31,12 +31,24 @@ type BaseMenuItem = {
|
|
|
31
31
|
*/
|
|
32
32
|
visibility: MenuItemVisibility;
|
|
33
33
|
};
|
|
34
|
+
/**
|
|
35
|
+
* Represents a menu item that points to a web link.
|
|
36
|
+
*/
|
|
34
37
|
type LinkMenuItem = BaseMenuItem & {
|
|
35
38
|
type: 'link';
|
|
39
|
+
/**
|
|
40
|
+
* The URL that the menu item points to.
|
|
41
|
+
*/
|
|
36
42
|
url: string;
|
|
37
43
|
};
|
|
44
|
+
/**
|
|
45
|
+
* Represents a menu item that triggers an action.
|
|
46
|
+
*/
|
|
38
47
|
type ActionMenuItem = BaseMenuItem & {
|
|
39
48
|
type: 'action';
|
|
49
|
+
/**
|
|
50
|
+
* The action to be executed when the menu item is clicked.
|
|
51
|
+
*/
|
|
40
52
|
action: Action;
|
|
41
53
|
};
|
|
42
54
|
export type MenuItem = LinkMenuItem | ActionMenuItem;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botfabrik/engine-webclient",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.94.1",
|
|
4
4
|
"description": "Webclient for Botfabriks Bot Engine",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@botfabrik/engine-domain": "^4.90.6",
|
|
24
|
-
"@botfabrik/engine-transcript-export": "^4.
|
|
24
|
+
"@botfabrik/engine-transcript-export": "^4.94.1",
|
|
25
25
|
"@botfabrik/engine-utils": "^4.90.6",
|
|
26
26
|
"@google-cloud/speech": "^7.1.0",
|
|
27
27
|
"accept-language-parser": "^1.5.0",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"tsx": "^4.20.3",
|
|
40
40
|
"typescript": "5.8.3"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "5611319105815c61625be97d05bf623f80061b85"
|
|
43
43
|
}
|