@inkeep/agents-ui-js 0.15.27 → 0.15.28
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 +2 -2
- package/dist/types.d.ts +8 -0
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -879,9 +879,17 @@ export declare interface InkeepAIChatSettings {
|
|
|
879
879
|
/**
|
|
880
880
|
* Unique identifier for loading a specific conversation.
|
|
881
881
|
* Use this to restore a previous conversation state.
|
|
882
|
+
* If the conversation is not found, a new conversation is started.
|
|
882
883
|
*/
|
|
883
884
|
conversationId?: string
|
|
884
885
|
|
|
886
|
+
/**
|
|
887
|
+
* @deprecated Internal use only. Bypasses conversation loading and sets the
|
|
888
|
+
* conversation ID directly without fetching. Use `conversationId` instead to
|
|
889
|
+
* restore a previous conversation state.
|
|
890
|
+
*/
|
|
891
|
+
conversationIdOverride?: string
|
|
892
|
+
|
|
885
893
|
/**
|
|
886
894
|
* When enabled, prevents users from sending new messages.
|
|
887
895
|
* Useful for displaying archived or shared chat sessions.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-ui-js",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.28",
|
|
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.15.
|
|
58
|
+
"@inkeep/agents-ui": "0.15.28"
|
|
59
59
|
},
|
|
60
60
|
"module": "./dist/embed.js",
|
|
61
61
|
"types": "./dist/types.d.ts",
|