@overmap-ai/core 1.0.63-form-submission-drafts.3 → 1.0.63-form-submission-drafts.4
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.
|
@@ -1453,6 +1453,17 @@ var __publicField = (obj, key, value) => {
|
|
|
1453
1453
|
}
|
|
1454
1454
|
)
|
|
1455
1455
|
);
|
|
1456
|
+
const selectIssuesByIds = restructureCreateSelectorWithArgs(
|
|
1457
|
+
toolkit.createSelector([selectIssueMapping, (_, issueIds) => issueIds], (issuesMapping, issueIds) => {
|
|
1458
|
+
const issues = [];
|
|
1459
|
+
for (const issueId of issueIds) {
|
|
1460
|
+
const issue = issuesMapping[issueId];
|
|
1461
|
+
if (issue)
|
|
1462
|
+
issues.push(issue);
|
|
1463
|
+
}
|
|
1464
|
+
return issues;
|
|
1465
|
+
})
|
|
1466
|
+
);
|
|
1456
1467
|
const selectRecentIssuesAsSearchResults = toolkit.createSelector(
|
|
1457
1468
|
[selectIssueMapping, selectRecentIssueIds, selectWorkspaceMapping],
|
|
1458
1469
|
(issueMapping, recentIssueIds, workspaceMapping) => {
|
|
@@ -7901,6 +7912,7 @@ var __publicField = (obj, key, value) => {
|
|
|
7901
7912
|
exports2.selectIssueTypesOfOrganization = selectIssueTypesOfOrganization;
|
|
7902
7913
|
exports2.selectIssueUpdateMapping = selectIssueUpdateMapping;
|
|
7903
7914
|
exports2.selectIssueUpdatesOfIssue = selectIssueUpdatesOfIssue;
|
|
7915
|
+
exports2.selectIssuesByIds = selectIssuesByIds;
|
|
7904
7916
|
exports2.selectIssuesOfIssueType = selectIssuesOfIssueType;
|
|
7905
7917
|
exports2.selectIssuesOfIssueTypeCount = selectIssuesOfIssueTypeCount;
|
|
7906
7918
|
exports2.selectLatestFormRevisionByForm = selectLatestFormRevisionByForm;
|