@overmap-ai/core 1.0.53-add-agent-conversations.1 → 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.
|
@@ -4472,6 +4472,9 @@ var __publicField = (obj, key, value) => {
|
|
|
4472
4472
|
});
|
|
4473
4473
|
const { setConversations, addConversation, setConversation } = agentsSlice.actions;
|
|
4474
4474
|
const selectConversationMapping = (state) => state.agentsReducer.conversations;
|
|
4475
|
+
const selectConversations = restructureCreateSelectorWithArgs(
|
|
4476
|
+
toolkit.createSelector([selectConversationMapping], (conversationMapping) => Object.values(conversationMapping))
|
|
4477
|
+
);
|
|
4475
4478
|
const selectConversation = restructureCreateSelectorWithArgs(
|
|
4476
4479
|
toolkit.createSelector(
|
|
4477
4480
|
[selectConversationMapping, (_state, conversationId) => conversationId],
|
|
@@ -16935,6 +16938,7 @@ var __publicField = (obj, key, value) => {
|
|
|
16935
16938
|
exports2.selectComponentsMapping = selectComponentsMapping;
|
|
16936
16939
|
exports2.selectConversation = selectConversation;
|
|
16937
16940
|
exports2.selectConversationMapping = selectConversationMapping;
|
|
16941
|
+
exports2.selectConversations = selectConversations;
|
|
16938
16942
|
exports2.selectCreateProjectType = selectCreateProjectType;
|
|
16939
16943
|
exports2.selectCurrentUser = selectCurrentUser;
|
|
16940
16944
|
exports2.selectDeletedRequests = selectDeletedRequests;
|