@athenaintel/react 0.10.16 → 0.10.18
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.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -24718,8 +24718,9 @@ function useAthenaThreadListAdapter(config2) {
|
|
|
24718
24718
|
return { threads: [] };
|
|
24719
24719
|
}
|
|
24720
24720
|
},
|
|
24721
|
-
async initialize(
|
|
24722
|
-
|
|
24721
|
+
async initialize(_threadId) {
|
|
24722
|
+
const remoteId = typeof crypto !== "undefined" && "randomUUID" in crypto ? crypto.randomUUID() : `thread_${Date.now()}_${Math.random().toString(36).slice(2, 10)}`;
|
|
24723
|
+
return { remoteId, externalId: void 0 };
|
|
24723
24724
|
},
|
|
24724
24725
|
async rename(_remoteId, _newTitle) {
|
|
24725
24726
|
},
|