@overmap-ai/core 1.0.53-add-agent-conversations.2 → 1.0.53-add-agent-conversations.3
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/overmap-core.js
CHANGED
|
@@ -4482,6 +4482,9 @@ const agentsSlice = createSlice({
|
|
|
4482
4482
|
});
|
|
4483
4483
|
const { setConversations, addConversation, setConversation } = agentsSlice.actions;
|
|
4484
4484
|
const selectConversationMapping = (state) => state.agentsReducer.conversations;
|
|
4485
|
+
const selectConversations = restructureCreateSelectorWithArgs(
|
|
4486
|
+
createSelector([selectConversationMapping], (conversationMapping) => Object.values(conversationMapping))
|
|
4487
|
+
);
|
|
4485
4488
|
const selectConversation = restructureCreateSelectorWithArgs(
|
|
4486
4489
|
createSelector(
|
|
4487
4490
|
[selectConversationMapping, (_state, conversationId) => conversationId],
|
|
@@ -16946,6 +16949,7 @@ export {
|
|
|
16946
16949
|
selectComponentsMapping,
|
|
16947
16950
|
selectConversation,
|
|
16948
16951
|
selectConversationMapping,
|
|
16952
|
+
selectConversations,
|
|
16949
16953
|
selectCreateProjectType,
|
|
16950
16954
|
selectCurrentUser,
|
|
16951
16955
|
selectDeletedRequests,
|