@overmap-ai/core 1.0.35-add-image-to-forms.5 → 1.0.35-add-image-to-forms.6

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.
@@ -3125,6 +3125,9 @@ const {
3125
3125
  const selectSubmissionAttachments = (submissionId) => (state) => {
3126
3126
  return state.userFormReducer.submissionAttachments[submissionId] || [];
3127
3127
  };
3128
+ const selectRevisionAttachments = (revisionId) => (state) => {
3129
+ return state.userFormReducer.revisionAttachments[revisionId] || [];
3130
+ };
3128
3131
  const selectFilteredUserForms = restructureCreateSelectorWithArgs(
3129
3132
  createSelector(
3130
3133
  [
@@ -11752,6 +11755,7 @@ export {
11752
11755
  selectRecentIssuesAsSearchResults,
11753
11756
  selectRecentProjects,
11754
11757
  selectRehydrated,
11758
+ selectRevisionAttachments,
11755
11759
  selectRevisionsForForm,
11756
11760
  selectShowTooltips,
11757
11761
  selectSortedEmailDomains,