@overmap-ai/core 1.0.63-selector-standardization.4 → 1.0.63-selector-standardization.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.
Files changed (42) hide show
  1. package/dist/overmap-core.js +15 -15
  2. package/dist/overmap-core.js.map +1 -1
  3. package/dist/overmap-core.umd.cjs +15 -15
  4. package/dist/overmap-core.umd.cjs.map +1 -1
  5. package/dist/store/adapter.d.ts +1 -1
  6. package/dist/store/slices/agentsSlice.d.ts +2 -2
  7. package/dist/store/slices/assetAttachmentSlice.d.ts +3 -3
  8. package/dist/store/slices/assetSlice.d.ts +2 -2
  9. package/dist/store/slices/assetStageCompletionSlice.d.ts +2 -2
  10. package/dist/store/slices/assetStageSlice.d.ts +2 -2
  11. package/dist/store/slices/assetTypeAttachmentSlice.d.ts +3 -3
  12. package/dist/store/slices/assetTypeSlice.d.ts +1 -1
  13. package/dist/store/slices/authSlice.d.ts +2 -2
  14. package/dist/store/slices/categorySlice.d.ts +2 -2
  15. package/dist/store/slices/documentAttachmentSlice.d.ts +3 -3
  16. package/dist/store/slices/documentSlice.d.ts +1 -1
  17. package/dist/store/slices/emailDomainsSlice.d.ts +2 -2
  18. package/dist/store/slices/fileSlice.d.ts +1 -1
  19. package/dist/store/slices/formRevisionAttachmentSlice.d.ts +2 -2
  20. package/dist/store/slices/formRevisionSlice.d.ts +2 -2
  21. package/dist/store/slices/formSlice.d.ts +5 -5
  22. package/dist/store/slices/formSubmissionAttachmentSlice.d.ts +2 -2
  23. package/dist/store/slices/formSubmissionSlice.d.ts +2 -2
  24. package/dist/store/slices/geoImageSlice.d.ts +2 -2
  25. package/dist/store/slices/issueAttachmentSlice.d.ts +2 -2
  26. package/dist/store/slices/issueCommentSlice.d.ts +2 -2
  27. package/dist/store/slices/issueSlice.d.ts +2 -2
  28. package/dist/store/slices/issueTypeSlice.d.ts +2 -2
  29. package/dist/store/slices/issueUpdateSlice.d.ts +2 -2
  30. package/dist/store/slices/licenseSlice.d.ts +2 -2
  31. package/dist/store/slices/organizationAccessSlice.d.ts +3 -3
  32. package/dist/store/slices/organizationSlice.d.ts +2 -2
  33. package/dist/store/slices/outboxSlice.d.ts +1 -1
  34. package/dist/store/slices/projectAccessSlice.d.ts +2 -2
  35. package/dist/store/slices/projectAttachmentSlice.d.ts +3 -3
  36. package/dist/store/slices/projectFileSlice.d.ts +1 -1
  37. package/dist/store/slices/projectSlice.d.ts +1 -1
  38. package/dist/store/slices/rehydratedSlice.d.ts +1 -1
  39. package/dist/store/slices/teamSlice.d.ts +2 -2
  40. package/dist/store/slices/userSlice.d.ts +1 -1
  41. package/dist/store/slices/workspaceSlice.d.ts +2 -2
  42. package/package.json +1 -1
@@ -1071,8 +1071,8 @@ var __publicField = (obj, key, value) => {
1071
1071
  [selectAssetAttachmentMapping],
1072
1072
  (mapping) => Object.values(mapping)
1073
1073
  );
1074
- const selectAssetAttachment = (attachmentId) => (state) => {
1075
- return state.assetAttachmentReducer.instances[attachmentId];
1074
+ const selectAssetAttachmentById = (id) => (state) => {
1075
+ return state.assetAttachmentReducer.instances[id];
1076
1076
  };
1077
1077
  const selectAttachmentsOfAsset = restructureCreateSelectorWithArgs(
1078
1078
  toolkit.createSelector(
@@ -1282,8 +1282,8 @@ var __publicField = (obj, key, value) => {
1282
1282
  [selectAssetTypeAttachmentMapping],
1283
1283
  (mapping) => Object.values(mapping)
1284
1284
  );
1285
- const selectAssetTypeAttachment = (attachmentId) => (state) => {
1286
- return state.assetTypeAttachmentReducer.instances[attachmentId];
1285
+ const selectAssetTypeAttachmentById = (id) => (state) => {
1286
+ return state.assetTypeAttachmentReducer.instances[id];
1287
1287
  };
1288
1288
  const selectAttachmentsOfAssetType = restructureCreateSelectorWithArgs(
1289
1289
  toolkit.createSelector(
@@ -2244,7 +2244,7 @@ var __publicField = (obj, key, value) => {
2244
2244
  [selectProjectAttachmentMapping],
2245
2245
  (mapping) => Object.values(mapping)
2246
2246
  );
2247
- const selectProjectAttachment = (id) => (state) => {
2247
+ const selectProjectAttachmentById = (id) => (state) => {
2248
2248
  return state.projectAttachmentReducer.instances[id];
2249
2249
  };
2250
2250
  const selectAttachmentsOfProject = restructureCreateSelectorWithArgs(
@@ -3044,8 +3044,8 @@ var __publicField = (obj, key, value) => {
3044
3044
  [selectDocumentAttachmentMapping],
3045
3045
  (mapping) => Object.values(mapping)
3046
3046
  );
3047
- const selectDocumentAttachment = (attachmentId) => (state) => {
3048
- return state.documentAttachmentReducer.instances[attachmentId];
3047
+ const selectDocumentAttachmentById = (id) => (state) => {
3048
+ return state.documentAttachmentReducer.instances[id];
3049
3049
  };
3050
3050
  const selectAttachmentsOfDocument = restructureCreateSelectorWithArgs(
3051
3051
  toolkit.createSelector(
@@ -4738,7 +4738,7 @@ var __publicField = (obj, key, value) => {
4738
4738
  __publicField(this, "removeAttachments", deleteAssetAttachments);
4739
4739
  __publicField(this, "removeAttachment", deleteAssetAttachment);
4740
4740
  __publicField(this, "setAttachment", setAssetAttachment);
4741
- __publicField(this, "selectAttachment", selectAssetAttachment);
4741
+ __publicField(this, "selectAttachment", selectAssetAttachmentById);
4742
4742
  }
4743
4743
  buildOfflineAttachment(data) {
4744
4744
  return offline({
@@ -4838,7 +4838,7 @@ var __publicField = (obj, key, value) => {
4838
4838
  __publicField(this, "removeAttachments", deleteAssetTypeAttachments);
4839
4839
  __publicField(this, "removeAttachment", deleteAssetTypeAttachment);
4840
4840
  __publicField(this, "setAttachment", setAssetTypeAttachment);
4841
- __publicField(this, "selectAttachment", selectAssetTypeAttachment);
4841
+ __publicField(this, "selectAttachment", selectAssetTypeAttachmentById);
4842
4842
  }
4843
4843
  buildOfflineAttachment(data) {
4844
4844
  return offline({
@@ -5438,7 +5438,7 @@ var __publicField = (obj, key, value) => {
5438
5438
  __publicField(this, "removeAttachments", deleteProjectAttachments);
5439
5439
  __publicField(this, "removeAttachment", deleteProjectAttachment);
5440
5440
  __publicField(this, "setAttachment", setProjectAttachment);
5441
- __publicField(this, "selectAttachment", selectProjectAttachment);
5441
+ __publicField(this, "selectAttachment", selectProjectAttachmentById);
5442
5442
  }
5443
5443
  buildOfflineAttachment(data) {
5444
5444
  return offline({
@@ -6981,7 +6981,7 @@ var __publicField = (obj, key, value) => {
6981
6981
  __publicField(this, "removeAttachments", deleteDocumentAttachments);
6982
6982
  __publicField(this, "removeAttachment", deleteDocumentAttachment);
6983
6983
  __publicField(this, "setAttachment", setDocumentAttachment);
6984
- __publicField(this, "selectAttachment", selectDocumentAttachment);
6984
+ __publicField(this, "selectAttachment", selectDocumentAttachmentById);
6985
6985
  }
6986
6986
  buildOfflineAttachment(data) {
6987
6987
  return offline({
@@ -7827,7 +7827,7 @@ var __publicField = (obj, key, value) => {
7827
7827
  exports2.selectAllDocumentAttachments = selectAllDocumentAttachments;
7828
7828
  exports2.selectAllProjectAttachments = selectAllProjectAttachments;
7829
7829
  exports2.selectAncestorIdsOfDocument = selectAncestorIdsOfDocument;
7830
- exports2.selectAssetAttachment = selectAssetAttachment;
7830
+ exports2.selectAssetAttachmentById = selectAssetAttachmentById;
7831
7831
  exports2.selectAssetAttachmentMapping = selectAssetAttachmentMapping;
7832
7832
  exports2.selectAssetAttachments = selectAssetAttachments;
7833
7833
  exports2.selectAssetById = selectAssetById;
@@ -7835,7 +7835,7 @@ var __publicField = (obj, key, value) => {
7835
7835
  exports2.selectAssetStages = selectAssetStages;
7836
7836
  exports2.selectAssetStagesByIds = selectAssetStagesByIds;
7837
7837
  exports2.selectAssetToAssetTypeMapping = selectAssetToAssetTypeMapping;
7838
- exports2.selectAssetTypeAttachment = selectAssetTypeAttachment;
7838
+ exports2.selectAssetTypeAttachmentById = selectAssetTypeAttachmentById;
7839
7839
  exports2.selectAssetTypeAttachmentMapping = selectAssetTypeAttachmentMapping;
7840
7840
  exports2.selectAssetTypeAttachments = selectAssetTypeAttachments;
7841
7841
  exports2.selectAssetTypeById = selectAssetTypeById;
@@ -7874,7 +7874,7 @@ var __publicField = (obj, key, value) => {
7874
7874
  exports2.selectConversations = selectConversations;
7875
7875
  exports2.selectCurrentUser = selectCurrentUser;
7876
7876
  exports2.selectDeletedRequests = selectDeletedRequests;
7877
- exports2.selectDocumentAttachment = selectDocumentAttachment;
7877
+ exports2.selectDocumentAttachmentById = selectDocumentAttachmentById;
7878
7878
  exports2.selectDocumentAttachmentMapping = selectDocumentAttachmentMapping;
7879
7879
  exports2.selectDocumentById = selectDocumentById;
7880
7880
  exports2.selectDocuments = selectDocuments;
@@ -7965,7 +7965,7 @@ var __publicField = (obj, key, value) => {
7965
7965
  exports2.selectProjectAccessMapping = selectProjectAccessMapping;
7966
7966
  exports2.selectProjectAccessUserMapping = selectProjectAccessUserMapping;
7967
7967
  exports2.selectProjectAccesses = selectProjectAccesses;
7968
- exports2.selectProjectAttachment = selectProjectAttachment;
7968
+ exports2.selectProjectAttachmentById = selectProjectAttachmentById;
7969
7969
  exports2.selectProjectAttachmentMapping = selectProjectAttachmentMapping;
7970
7970
  exports2.selectProjectById = selectProjectById;
7971
7971
  exports2.selectProjectFileById = selectProjectFileById;