@overmap-ai/core 1.0.63-selector-standardization.0 → 1.0.63-selector-standardization.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 +52 -66
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +52 -66
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/sdk/services/AssetAttachmentService.d.ts +1 -1
- package/dist/sdk/services/AssetTypeAttachmentService.d.ts +1 -1
- package/dist/sdk/services/BaseAttachmentService.d.ts +1 -1
- package/dist/sdk/services/DocumentAttachmentService.d.ts +1 -1
- package/dist/sdk/services/IssueAttachmentService.d.ts +1 -1
- package/dist/sdk/services/ProjectAttachmentService.d.ts +1 -1
- package/dist/store/slices/assetAttachmentSlice.d.ts +1 -1
- package/dist/store/slices/assetSlice.d.ts +2 -3
- package/dist/store/slices/assetTypeAttachmentSlice.d.ts +1 -1
- package/dist/store/slices/assetTypeSlice.d.ts +1 -1
- package/dist/store/slices/categorySlice.d.ts +1 -1
- package/dist/store/slices/documentAttachmentSlice.d.ts +1 -1
- package/dist/store/slices/documentSlice.d.ts +1 -1
- package/dist/store/slices/fileSlice.d.ts +1 -1
- package/dist/store/slices/formRevisionSlice.d.ts +2 -2
- package/dist/store/slices/formSlice.d.ts +3 -3
- package/dist/store/slices/formSubmissionSlice.d.ts +1 -1
- package/dist/store/slices/issueAssociationSlice.d.ts +1 -1
- package/dist/store/slices/issueAttachmentSlice.d.ts +1 -1
- package/dist/store/slices/issueSlice.d.ts +1 -1
- package/dist/store/slices/issueTypeSlice.d.ts +1 -1
- package/dist/store/slices/licenseSlice.d.ts +1 -1
- package/dist/store/slices/organizationAccessSlice.d.ts +1 -1
- package/dist/store/slices/organizationSlice.d.ts +1 -1
- package/dist/store/slices/projectAccessSlice.d.ts +1 -1
- package/dist/store/slices/projectAttachmentSlice.d.ts +2 -2
- package/dist/store/slices/projectFileSlice.d.ts +1 -1
- package/dist/store/slices/projectSlice.d.ts +2 -2
- package/dist/store/slices/teamSlice.d.ts +1 -1
- package/dist/store/slices/userSlice.d.ts +2 -2
- package/dist/store/slices/workspaceSlice.d.ts +1 -1
- package/dist/typings/store.d.ts +1 -1
- package/package.json +1 -1
package/dist/overmap-core.js
CHANGED
|
@@ -1011,7 +1011,7 @@ const selectAssetTypes = createSelector(
|
|
|
1011
1011
|
[selectAssetTypesMapping],
|
|
1012
1012
|
(mapping) => Object.values(mapping)
|
|
1013
1013
|
);
|
|
1014
|
-
const
|
|
1014
|
+
const selectAssetTypeById = (id) => (state) => {
|
|
1015
1015
|
return state.assetTypeReducer.instances[id];
|
|
1016
1016
|
};
|
|
1017
1017
|
const selectAssetTypesByIds = restructureCreateSelectorWithArgs(
|
|
@@ -1135,19 +1135,7 @@ const selectAssetToAssetTypeMapping = createSelector(
|
|
|
1135
1135
|
}
|
|
1136
1136
|
);
|
|
1137
1137
|
const selectNumberOfAssetsOfAssetType = (assetTypeId) => (state) => {
|
|
1138
|
-
|
|
1139
|
-
if (!assetTypeId)
|
|
1140
|
-
return 0;
|
|
1141
|
-
return (_a2 = selectAssetsOfAssetType(assetTypeId)(state)) == null ? void 0 : _a2.length;
|
|
1142
|
-
};
|
|
1143
|
-
const selectAssetTypesFromIds = (assetTypeIds) => (state) => {
|
|
1144
|
-
return assetTypeIds.reduce((acc, assetTypeId) => {
|
|
1145
|
-
const assetType = state.assetTypeReducer.instances[assetTypeId];
|
|
1146
|
-
if (assetType) {
|
|
1147
|
-
acc.push(assetType);
|
|
1148
|
-
}
|
|
1149
|
-
return acc;
|
|
1150
|
-
}, []);
|
|
1138
|
+
return selectAssetsOfAssetType(assetTypeId)(state).length;
|
|
1151
1139
|
};
|
|
1152
1140
|
const assetReducer = assetSlice.reducer;
|
|
1153
1141
|
const assetAttachmentAdapter = createModelAdapter((attachment) => attachment.offline_id);
|
|
@@ -1357,8 +1345,8 @@ const selectMainWorkspace = createSelector(
|
|
|
1357
1345
|
return workspaces.find((workspace) => workspace.name.toLowerCase() === "main");
|
|
1358
1346
|
}
|
|
1359
1347
|
);
|
|
1360
|
-
const selectWorkspaceById = (
|
|
1361
|
-
return state.workspaceReducer.instances[
|
|
1348
|
+
const selectWorkspaceById = (id) => (state) => {
|
|
1349
|
+
return state.workspaceReducer.instances[id];
|
|
1362
1350
|
};
|
|
1363
1351
|
const selectPermittedWorkspaceIds = createSelector(
|
|
1364
1352
|
[selectWorkspaceMapping],
|
|
@@ -1559,8 +1547,8 @@ const selectIssueTypes = createSelector(
|
|
|
1559
1547
|
return Object.values(issueTypes);
|
|
1560
1548
|
}
|
|
1561
1549
|
);
|
|
1562
|
-
const selectIssueTypeById = (
|
|
1563
|
-
return state.issueTypeReducer.instances[
|
|
1550
|
+
const selectIssueTypeById = (id) => (state) => {
|
|
1551
|
+
return state.issueTypeReducer.instances[id];
|
|
1564
1552
|
};
|
|
1565
1553
|
const selectIssueTypesByIds = (issueTypeIds) => (state) => {
|
|
1566
1554
|
const issueTypes = [];
|
|
@@ -1591,8 +1579,7 @@ const selectIssuesOfIssueType = restructureCreateSelectorWithArgs(
|
|
|
1591
1579
|
)
|
|
1592
1580
|
);
|
|
1593
1581
|
const selectIssuesOfIssueTypeCount = (issueTypeId) => (state) => {
|
|
1594
|
-
|
|
1595
|
-
return ((_a2 = selectIssuesOfIssueType(issueTypeId)(state)) == null ? void 0 : _a2.length) ?? 0;
|
|
1582
|
+
return selectIssuesOfIssueType(issueTypeId)(state).length;
|
|
1596
1583
|
};
|
|
1597
1584
|
const issueTypeReducer = issueTypeSlice.reducer;
|
|
1598
1585
|
const initialState$q = {
|
|
@@ -1757,8 +1744,8 @@ const selectUser = (userId) => (state) => {
|
|
|
1757
1744
|
return void 0;
|
|
1758
1745
|
return state.userReducer.users[userId];
|
|
1759
1746
|
};
|
|
1760
|
-
const selectUserById = (
|
|
1761
|
-
return state.userReducer.users[
|
|
1747
|
+
const selectUserById = (id) => (state) => {
|
|
1748
|
+
return state.userReducer.users[id];
|
|
1762
1749
|
};
|
|
1763
1750
|
const selectUsersByIds = restructureCreateSelectorWithArgs(
|
|
1764
1751
|
createSelector([selectUsersMapping, (_state, userIds) => userIds], (usersMapping, userIds) => {
|
|
@@ -1793,8 +1780,8 @@ const { initializeOrganizationAccesses, updateOrganizationAccess, deleteOrganiza
|
|
|
1793
1780
|
const selectOrganizationAccesses = (state) => {
|
|
1794
1781
|
return state.organizationAccessReducer.instances;
|
|
1795
1782
|
};
|
|
1796
|
-
const
|
|
1797
|
-
return state.organizationAccessReducer.instances[
|
|
1783
|
+
const selectOrganizationAccessById = (id) => (state) => {
|
|
1784
|
+
return state.organizationAccessReducer.instances[id];
|
|
1798
1785
|
};
|
|
1799
1786
|
const selectActiveOrganizationAccess = createSelector(
|
|
1800
1787
|
[selectCurrentUser, selectOrganizationAccesses],
|
|
@@ -1834,7 +1821,7 @@ const { initializeLicences, addLicenses, updateLicense } = licenseSlice.actions;
|
|
|
1834
1821
|
const selectLicenses = (state) => {
|
|
1835
1822
|
return state.licenseReducer.instances;
|
|
1836
1823
|
};
|
|
1837
|
-
const selectLicense = (
|
|
1824
|
+
const selectLicense = (id) => (state) => state.licenseReducer.instances[id];
|
|
1838
1825
|
const selectActiveLicense = (state) => Object.values(state.licenseReducer.instances).find(
|
|
1839
1826
|
(license) => license.project === state.projectReducer.activeProjectId
|
|
1840
1827
|
) ?? null;
|
|
@@ -1871,8 +1858,8 @@ const selectProjectAccesses = createSelector(
|
|
|
1871
1858
|
return Object.values(projectAccesses);
|
|
1872
1859
|
}
|
|
1873
1860
|
);
|
|
1874
|
-
const selectProjectAccessById = (
|
|
1875
|
-
return state.projectAccessReducer.instances[
|
|
1861
|
+
const selectProjectAccessById = (id) => (state) => {
|
|
1862
|
+
return state.projectAccessReducer.instances[id];
|
|
1876
1863
|
};
|
|
1877
1864
|
const selectActiveProjectAccess = (state) => {
|
|
1878
1865
|
const currentUser = state.userReducer.currentUser;
|
|
@@ -1967,7 +1954,7 @@ const {
|
|
|
1967
1954
|
addActiveProjectFormSubmissionsCount
|
|
1968
1955
|
} = projectSlice.actions;
|
|
1969
1956
|
const projectReducer = projectSlice.reducer;
|
|
1970
|
-
const
|
|
1957
|
+
const selectProjectMapping = (state) => state.projectReducer.projects;
|
|
1971
1958
|
const selectActiveProjectId = (state) => state.projectReducer.activeProjectId;
|
|
1972
1959
|
const selectActiveProject = (state) => {
|
|
1973
1960
|
const activeProjectId = selectActiveProjectId(state);
|
|
@@ -1976,8 +1963,8 @@ const selectActiveProject = (state) => {
|
|
|
1976
1963
|
}
|
|
1977
1964
|
return state.projectReducer.projects[activeProjectId] ?? null;
|
|
1978
1965
|
};
|
|
1979
|
-
const selectProjectById = (
|
|
1980
|
-
return state.projectReducer.projects[
|
|
1966
|
+
const selectProjectById = (id) => (state) => {
|
|
1967
|
+
return state.projectReducer.projects[id];
|
|
1981
1968
|
};
|
|
1982
1969
|
const selectProjectUsersIds = createSelector(
|
|
1983
1970
|
[selectProjectAccessMapping],
|
|
@@ -1988,7 +1975,7 @@ const selectProjectUsersAsMapping = createSelector(
|
|
|
1988
1975
|
(projectUserIds, users) => projectUserIds.reduce((accum, userId) => ({ ...accum, [userId]: users[userId] }), {})
|
|
1989
1976
|
);
|
|
1990
1977
|
const selectProjectsWithAccess = createSelector(
|
|
1991
|
-
[
|
|
1978
|
+
[selectProjectMapping],
|
|
1992
1979
|
(projects) => Object.values(projects).filter((project) => !project.invited)
|
|
1993
1980
|
);
|
|
1994
1981
|
const selectSortedProjectUsers = createSelector(
|
|
@@ -2038,17 +2025,20 @@ const selectOrganizationsWithAccess = createSelector(
|
|
|
2038
2025
|
[selectOrganizations],
|
|
2039
2026
|
(organizations) => Object.values(organizations).filter((organization) => organization.has_access)
|
|
2040
2027
|
);
|
|
2041
|
-
const selectOrganizationById = (
|
|
2042
|
-
return state.organizationReducer.organizations[
|
|
2028
|
+
const selectOrganizationById = (id) => (state) => {
|
|
2029
|
+
return state.organizationReducer.organizations[id];
|
|
2043
2030
|
};
|
|
2044
2031
|
const selectOrganizationUsersIds = createSelector(
|
|
2045
2032
|
[selectOrganizationAccesses],
|
|
2046
2033
|
(organizationAccesses) => Object.values(organizationAccesses).map((organizationAccess) => organizationAccess.user)
|
|
2047
2034
|
);
|
|
2048
2035
|
const selectProjectsOfOrganization = restructureCreateSelectorWithArgs(
|
|
2049
|
-
createSelector(
|
|
2050
|
-
|
|
2051
|
-
|
|
2036
|
+
createSelector(
|
|
2037
|
+
[selectProjectMapping, (_, organizationId) => organizationId],
|
|
2038
|
+
(projects, organizationId) => {
|
|
2039
|
+
return Object.values(projects).filter((project) => project.organization_owner === organizationId);
|
|
2040
|
+
}
|
|
2041
|
+
)
|
|
2052
2042
|
);
|
|
2053
2043
|
const selectLicensesOfOrganization = restructureCreateSelectorWithArgs(
|
|
2054
2044
|
createSelector([selectLicenses, (_, organizationId) => organizationId], (licenses, organizationId) => {
|
|
@@ -2266,16 +2256,13 @@ const selectAllProjectAttachments = createSelector(
|
|
|
2266
2256
|
[selectProjectAttachmentMapping],
|
|
2267
2257
|
(mapping) => Object.values(mapping)
|
|
2268
2258
|
);
|
|
2269
|
-
const selectProjectAttachment = (
|
|
2270
|
-
return state.projectAttachmentReducer.instances[
|
|
2259
|
+
const selectProjectAttachment = (id) => (state) => {
|
|
2260
|
+
return state.projectAttachmentReducer.instances[id];
|
|
2271
2261
|
};
|
|
2272
2262
|
const selectAttachmentsOfProject = restructureCreateSelectorWithArgs(
|
|
2273
|
-
createSelector(
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
return attachments.filter(({ project }) => projectId === project);
|
|
2277
|
-
}
|
|
2278
|
-
)
|
|
2263
|
+
createSelector([selectAllProjectAttachments, (_, projectId) => projectId], (attachments, projectId) => {
|
|
2264
|
+
return attachments.filter(({ project }) => projectId === project);
|
|
2265
|
+
})
|
|
2279
2266
|
);
|
|
2280
2267
|
const selectAttachmentsOfProjectByType = restructureCreateSelectorWithArgs(
|
|
2281
2268
|
createSelector(
|
|
@@ -2352,7 +2339,7 @@ const selectFormRevisions = createSelector(
|
|
|
2352
2339
|
[selectFormRevisionMapping],
|
|
2353
2340
|
(formRevisions) => Object.values(formRevisions)
|
|
2354
2341
|
);
|
|
2355
|
-
const
|
|
2342
|
+
const selectFormRevisionById = (formRevisionId) => (state) => {
|
|
2356
2343
|
return state.formRevisionReducer.instances[formRevisionId];
|
|
2357
2344
|
};
|
|
2358
2345
|
const _selectLatestFormRevision = (formRevisions, formId) => {
|
|
@@ -3117,8 +3104,8 @@ const selectTeamsMapping = (state) => state.teamReducer.instances;
|
|
|
3117
3104
|
const selectTeams = createSelector([selectTeamsMapping], (teams) => {
|
|
3118
3105
|
return Object.values(teams);
|
|
3119
3106
|
});
|
|
3120
|
-
const selectTeamById = (
|
|
3121
|
-
return state.teamReducer.instances[
|
|
3107
|
+
const selectTeamById = (id) => (state) => {
|
|
3108
|
+
return state.teamReducer.instances[id];
|
|
3122
3109
|
};
|
|
3123
3110
|
const selectTeamsOfOrganization = restructureCreateSelectorWithArgs(
|
|
3124
3111
|
createSelector(
|
|
@@ -3270,8 +3257,8 @@ const selectAttachmentsOfIssue = restructureCreateSelectorWithArgs(
|
|
|
3270
3257
|
}
|
|
3271
3258
|
)
|
|
3272
3259
|
);
|
|
3273
|
-
const
|
|
3274
|
-
return root.issueAttachmentReducer.instances[
|
|
3260
|
+
const selectIssueAttachmentById = (id) => (root) => {
|
|
3261
|
+
return root.issueAttachmentReducer.instances[id];
|
|
3275
3262
|
};
|
|
3276
3263
|
const selectAttachmentsOfIssueByType = restructureCreateSelectorWithArgs(
|
|
3277
3264
|
createSelector(
|
|
@@ -3494,7 +3481,7 @@ function handleWorkspaceRemoval(draft, action) {
|
|
|
3494
3481
|
throw new Error("Tried to delete main workspace");
|
|
3495
3482
|
}
|
|
3496
3483
|
const categoriesInThisWorkspace = new Set(
|
|
3497
|
-
|
|
3484
|
+
selectCategoriesOfWorkspace(workspaceId)(draft).map((category) => category.offline_id)
|
|
3498
3485
|
);
|
|
3499
3486
|
for (const issue of issuesVisibleInWorkspace) {
|
|
3500
3487
|
if (issue.category && categoriesInThisWorkspace.has(issue.category)) {
|
|
@@ -4305,7 +4292,7 @@ class AssetService extends BaseApiService {
|
|
|
4305
4292
|
async deleteAllAssetsOfAssetType(assetTypeId) {
|
|
4306
4293
|
const { store } = this.client;
|
|
4307
4294
|
const state = store.getState();
|
|
4308
|
-
const allAssetsOfAssetType = selectAssetsOfAssetType(assetTypeId)(state)
|
|
4295
|
+
const allAssetsOfAssetType = selectAssetsOfAssetType(assetTypeId)(state);
|
|
4309
4296
|
const allAssetsOfAssetTypeIds = allAssetsOfAssetType.map((c) => c.offline_id);
|
|
4310
4297
|
const affectedOfflineIds = [assetTypeId, ...allAssetsOfAssetTypeIds];
|
|
4311
4298
|
store.dispatch(deleteAssets(allAssetsOfAssetTypeIds));
|
|
@@ -4814,11 +4801,11 @@ class AssetTypeService extends BaseApiService {
|
|
|
4814
4801
|
async delete(assetTypeId) {
|
|
4815
4802
|
const { store } = this.client;
|
|
4816
4803
|
const state = store.getState();
|
|
4817
|
-
const assetType =
|
|
4804
|
+
const assetType = selectAssetTypeById(assetTypeId)(state);
|
|
4818
4805
|
if (!assetType) {
|
|
4819
4806
|
throw new Error(`Expected asset type with offline_id ${assetTypeId} to exist`);
|
|
4820
4807
|
}
|
|
4821
|
-
const stagesOfAssetType = selectStagesOfAssetType(assetTypeId)(state)
|
|
4808
|
+
const stagesOfAssetType = selectStagesOfAssetType(assetTypeId)(state);
|
|
4822
4809
|
const attachmentsOfAssetType = selectAttachmentsOfAssetType(assetTypeId)(state);
|
|
4823
4810
|
this.dispatch(deleteAssetType(assetTypeId));
|
|
4824
4811
|
if (stagesOfAssetType.length > 0) {
|
|
@@ -4987,7 +4974,7 @@ class IssueAttachmentService extends BaseAttachmentService {
|
|
|
4987
4974
|
__publicField(this, "removeAttachments", deleteIssueAttachments);
|
|
4988
4975
|
__publicField(this, "removeAttachment", deleteIssueAttachment);
|
|
4989
4976
|
__publicField(this, "setAttachment", setIssueAttachment);
|
|
4990
|
-
__publicField(this, "selectAttachment",
|
|
4977
|
+
__publicField(this, "selectAttachment", selectIssueAttachmentById);
|
|
4991
4978
|
}
|
|
4992
4979
|
buildOfflineAttachment(data) {
|
|
4993
4980
|
return offline({
|
|
@@ -5290,7 +5277,7 @@ class IssueTypeService extends BaseApiService {
|
|
|
5290
5277
|
if (!issueTypeToDelete) {
|
|
5291
5278
|
throw new Error(`IssueType with offline_id ${issueTypeId} does not exist in the store.`);
|
|
5292
5279
|
}
|
|
5293
|
-
const issuesOfIssueType = selectIssuesOfIssueType(issueTypeId)(state)
|
|
5280
|
+
const issuesOfIssueType = selectIssuesOfIssueType(issueTypeId)(state);
|
|
5294
5281
|
this.dispatch(removeIssueType(issueTypeId));
|
|
5295
5282
|
this.dispatch(deleteIssues(issuesOfIssueType.map((issue) => issue.offline_id)));
|
|
5296
5283
|
const promise = this.enqueueRequest({
|
|
@@ -5534,7 +5521,7 @@ class ProjectService extends BaseApiService {
|
|
|
5534
5521
|
async delete(projectId) {
|
|
5535
5522
|
const { store } = this.client;
|
|
5536
5523
|
const state = store.getState();
|
|
5537
|
-
const projects =
|
|
5524
|
+
const projects = selectProjectMapping(state);
|
|
5538
5525
|
const project = projects[projectId];
|
|
5539
5526
|
if (!project) {
|
|
5540
5527
|
throw new Error("Expected project to exist");
|
|
@@ -5882,11 +5869,11 @@ class FormService extends BaseUploadService {
|
|
|
5882
5869
|
throw new Error("Expected form to exist");
|
|
5883
5870
|
}
|
|
5884
5871
|
const formSubmissions = selectFormSubmissionsOfForm(formId)(state);
|
|
5885
|
-
if (formSubmissions
|
|
5872
|
+
if (formSubmissions.length > 0) {
|
|
5886
5873
|
this.dispatch(deleteFormSubmissions(formSubmissions.map(({ offline_id }) => offline_id)));
|
|
5887
5874
|
}
|
|
5888
5875
|
const formRevisions = selectFormRevisionsOfForm(formId)(state);
|
|
5889
|
-
if (formRevisions
|
|
5876
|
+
if (formRevisions.length > 0) {
|
|
5890
5877
|
this.dispatch(deleteFormRevisions(formRevisions.map(({ offline_id }) => offline_id)));
|
|
5891
5878
|
}
|
|
5892
5879
|
this.dispatch(deleteForm(formId));
|
|
@@ -5900,10 +5887,10 @@ class FormService extends BaseUploadService {
|
|
|
5900
5887
|
});
|
|
5901
5888
|
} catch (e) {
|
|
5902
5889
|
this.dispatch(addForm(form));
|
|
5903
|
-
if (formRevisions
|
|
5890
|
+
if (formRevisions.length > 0) {
|
|
5904
5891
|
this.dispatch(addFormRevisions(formRevisions));
|
|
5905
5892
|
}
|
|
5906
|
-
if (formSubmissions
|
|
5893
|
+
if (formSubmissions.length > 0) {
|
|
5907
5894
|
this.dispatch(addFormSubmissions(formSubmissions));
|
|
5908
5895
|
}
|
|
5909
5896
|
throw e;
|
|
@@ -7864,11 +7851,10 @@ export {
|
|
|
7864
7851
|
selectAssetTypeAttachment,
|
|
7865
7852
|
selectAssetTypeAttachmentMapping,
|
|
7866
7853
|
selectAssetTypeAttachments,
|
|
7867
|
-
|
|
7854
|
+
selectAssetTypeById,
|
|
7868
7855
|
selectAssetTypeStagesMapping,
|
|
7869
7856
|
selectAssetTypes,
|
|
7870
7857
|
selectAssetTypesByIds,
|
|
7871
|
-
selectAssetTypesFromIds,
|
|
7872
7858
|
selectAssetTypesMapping,
|
|
7873
7859
|
selectAssets,
|
|
7874
7860
|
selectAssetsByIds,
|
|
@@ -7917,7 +7903,7 @@ export {
|
|
|
7917
7903
|
selectFormOfAssetType,
|
|
7918
7904
|
selectFormOfIssueType,
|
|
7919
7905
|
selectFormRevisionAttachmentsMapping,
|
|
7920
|
-
|
|
7906
|
+
selectFormRevisionById,
|
|
7921
7907
|
selectFormRevisionMapping,
|
|
7922
7908
|
selectFormRevisions,
|
|
7923
7909
|
selectFormRevisionsOfForm,
|
|
@@ -7947,7 +7933,7 @@ export {
|
|
|
7947
7933
|
selectIssueAssociationsOfAsset,
|
|
7948
7934
|
selectIssueAssociationsOfIssue,
|
|
7949
7935
|
selectIssueAssociationsToIssue,
|
|
7950
|
-
|
|
7936
|
+
selectIssueAttachmentById,
|
|
7951
7937
|
selectIssueAttachmentMapping,
|
|
7952
7938
|
selectIssueAttachments,
|
|
7953
7939
|
selectIssueById,
|
|
@@ -7976,7 +7962,7 @@ export {
|
|
|
7976
7962
|
selectMainWorkspace,
|
|
7977
7963
|
selectNumberOfAssetsOfAssetType,
|
|
7978
7964
|
selectOrganization,
|
|
7979
|
-
|
|
7965
|
+
selectOrganizationAccessById,
|
|
7980
7966
|
selectOrganizationAccessForUser,
|
|
7981
7967
|
selectOrganizationAccessUserMapping,
|
|
7982
7968
|
selectOrganizationAccesses,
|
|
@@ -7998,9 +7984,9 @@ export {
|
|
|
7998
7984
|
selectProjectFileById,
|
|
7999
7985
|
selectProjectFileMapping,
|
|
8000
7986
|
selectProjectFiles,
|
|
7987
|
+
selectProjectMapping,
|
|
8001
7988
|
selectProjectUsersAsMapping,
|
|
8002
7989
|
selectProjectUsersIds,
|
|
8003
|
-
selectProjects,
|
|
8004
7990
|
selectProjectsOfOrganization,
|
|
8005
7991
|
selectProjectsWithAccess,
|
|
8006
7992
|
selectRecentIssueIds,
|