@axiom-lattice/react-sdk 2.1.26 → 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 +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +721 -723
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +784 -787
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -747,6 +747,13 @@ interface LatticeChatShellConfig {
|
|
|
747
747
|
* Defaults to true
|
|
748
748
|
*/
|
|
749
749
|
enableThreadList?: boolean;
|
|
750
|
+
assistantId?: string;
|
|
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;
|
|
750
757
|
}
|
|
751
758
|
/**
|
|
752
759
|
* Lattice Chat Shell context value interface
|
package/dist/index.d.ts
CHANGED
|
@@ -747,6 +747,13 @@ interface LatticeChatShellConfig {
|
|
|
747
747
|
* Defaults to true
|
|
748
748
|
*/
|
|
749
749
|
enableThreadList?: boolean;
|
|
750
|
+
assistantId?: string;
|
|
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;
|
|
750
757
|
}
|
|
751
758
|
/**
|
|
752
759
|
* Lattice Chat Shell context value interface
|