@inkeep/agents-ui-js 0.0.0-dev-20260430192548 → 0.0.0-dev-20260501170253
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/dist/embed.js +11 -11
- package/dist/types.d.ts +9 -1
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -931,7 +931,6 @@ export declare interface InkeepAIChatSettings {
|
|
|
931
931
|
*/
|
|
932
932
|
messageActions?: CustomMessageAction[]
|
|
933
933
|
|
|
934
|
-
|
|
935
934
|
/**
|
|
936
935
|
* Custom labels for the chat interface's action buttons.
|
|
937
936
|
* Use this for internationalization or to better match your application's terminology.
|
|
@@ -960,6 +959,15 @@ export declare interface InkeepAIChatSettings {
|
|
|
960
959
|
* @default true
|
|
961
960
|
*/
|
|
962
961
|
shouldAutoScroll?: boolean
|
|
962
|
+
|
|
963
|
+
/**
|
|
964
|
+
* The bot protection check level applied to BotID-protected requests.
|
|
965
|
+
* - `'basic'`: lightweight challenge suitable for most traffic.
|
|
966
|
+
* - `'deepAnalysis'`: stricter analysis for high-risk surfaces (requires Vercel BotID Pro).
|
|
967
|
+
* @see https://vercel.com/docs/botid/advanced-configuration
|
|
968
|
+
* @default 'basic'
|
|
969
|
+
*/
|
|
970
|
+
botProtectionLevel?: 'basic' | 'deepAnalysis'
|
|
963
971
|
}
|
|
964
972
|
|
|
965
973
|
export declare interface InkeepBaseSettings {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-ui-js",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20260501170253",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "Inkeep, Inc. Customer License (IICL) v1.1",
|
|
6
6
|
"homepage": "",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"vite": "5.4.11",
|
|
56
56
|
"vite-bundle-visualizer": "^1.2.1",
|
|
57
57
|
"vite-plugin-dts": "4.4.0",
|
|
58
|
-
"@inkeep/agents-ui": "0.0.0-dev-
|
|
58
|
+
"@inkeep/agents-ui": "0.0.0-dev-20260501170253"
|
|
59
59
|
},
|
|
60
60
|
"module": "./dist/embed.js",
|
|
61
61
|
"types": "./dist/types.d.ts",
|