@axiom-lattice/react-sdk 2.1.27 → 2.1.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/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +716 -725
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +776 -786
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -749,6 +749,11 @@ interface LatticeChatShellConfig {
|
|
|
749
749
|
enableThreadList?: boolean;
|
|
750
750
|
assistantId?: string;
|
|
751
751
|
showSideMenu?: boolean;
|
|
752
|
+
/**
|
|
753
|
+
* URL of the global shared sandbox, this is used to access the global shared sandbox
|
|
754
|
+
* if not provided, sandbox will be created in the agent's sandbox
|
|
755
|
+
*/
|
|
756
|
+
globalSharedSandboxURL?: string;
|
|
752
757
|
}
|
|
753
758
|
/**
|
|
754
759
|
* Lattice Chat Shell context value interface
|
package/dist/index.d.ts
CHANGED
|
@@ -749,6 +749,11 @@ interface LatticeChatShellConfig {
|
|
|
749
749
|
enableThreadList?: boolean;
|
|
750
750
|
assistantId?: string;
|
|
751
751
|
showSideMenu?: boolean;
|
|
752
|
+
/**
|
|
753
|
+
* URL of the global shared sandbox, this is used to access the global shared sandbox
|
|
754
|
+
* if not provided, sandbox will be created in the agent's sandbox
|
|
755
|
+
*/
|
|
756
|
+
globalSharedSandboxURL?: string;
|
|
752
757
|
}
|
|
753
758
|
/**
|
|
754
759
|
* Lattice Chat Shell context value interface
|