@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.js
CHANGED
|
@@ -24679,8 +24679,9 @@ function useAthenaThreadListAdapter(config2) {
|
|
|
24679
24679
|
return { threads: [] };
|
|
24680
24680
|
}
|
|
24681
24681
|
},
|
|
24682
|
-
async initialize(
|
|
24683
|
-
|
|
24682
|
+
async initialize(_threadId) {
|
|
24683
|
+
const remoteId = typeof crypto !== "undefined" && "randomUUID" in crypto ? crypto.randomUUID() : `thread_${Date.now()}_${Math.random().toString(36).slice(2, 10)}`;
|
|
24684
|
+
return { remoteId, externalId: void 0 };
|
|
24684
24685
|
},
|
|
24685
24686
|
async rename(_remoteId, _newTitle) {
|
|
24686
24687
|
},
|