@overmap-ai/core 1.0.78-improvements.1 → 1.0.78-issue-update-typing-fix.1
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/README.md +0 -0
- package/dist/constants/defaults.d.ts +1 -2
- package/dist/enums/access.d.ts +0 -5
- package/dist/enums/asset.d.ts +8 -0
- package/dist/enums/index.d.ts +2 -1
- package/dist/enums/issue.d.ts +7 -6
- package/dist/enums/procedures.d.ts +11 -0
- package/dist/overmap-core.js +10986 -7208
- package/dist/overmap-core.umd.cjs +10 -11
- package/dist/sdk/base.d.ts +6 -2
- package/dist/sdk/constants.d.ts +4 -0
- package/dist/sdk/errors.d.ts +5 -0
- package/dist/sdk/index.d.ts +6 -1
- package/dist/sdk/middleware/OfflineAnalyticsMiddleware.d.ts +6 -0
- package/dist/sdk/middleware/OfflineMiddleware.d.ts +13 -0
- package/dist/sdk/middleware/RateLimitingMiddleware.d.ts +6 -0
- package/dist/sdk/middleware/constants.d.ts +1 -0
- package/dist/sdk/middleware/index.d.ts +5 -0
- package/dist/sdk/middleware/utils.d.ts +2 -0
- package/dist/sdk/outbox/globals.d.ts +2 -0
- package/dist/sdk/{classes → outbox}/index.d.ts +1 -0
- package/dist/sdk/performRequest.d.ts +6 -0
- package/dist/sdk/services/AgentService.d.ts +3 -2
- package/dist/sdk/services/AssetAttachmentService.d.ts +25 -36
- package/dist/sdk/services/AssetCommentService.d.ts +28 -0
- package/dist/sdk/services/AssetService.d.ts +25 -7
- package/dist/sdk/services/AssetTypeAttachmentService.d.ts +25 -35
- package/dist/sdk/services/AssetTypeFieldValuesAttachmentService.d.ts +28 -10
- package/dist/sdk/services/AssetTypeFieldValuesService.d.ts +23 -11
- package/dist/sdk/services/AssetTypeFieldsAttachmentService.d.ts +28 -11
- package/dist/sdk/services/AssetTypeFieldsService.d.ts +21 -4
- package/dist/sdk/services/AssetTypeIdentifierService.d.ts +28 -0
- package/dist/sdk/services/AssetTypeIdentifierValueService.d.ts +28 -0
- package/dist/sdk/services/AssetTypeService.d.ts +22 -5
- package/dist/sdk/services/AssetTypeStatusService.d.ts +28 -0
- package/dist/sdk/services/BaseModelApiService.d.ts +27 -0
- package/dist/sdk/services/BaseOfflineFileModelApiService.d.ts +17 -0
- package/dist/sdk/services/BaseOfflineModelApiService.d.ts +27 -0
- package/dist/sdk/services/BaseService.d.ts +7 -3
- package/dist/sdk/services/DocumentAttachmentService.d.ts +27 -35
- package/dist/sdk/services/DocumentService.d.ts +23 -7
- package/dist/sdk/services/EmailDomainsService.d.ts +22 -5
- package/dist/sdk/services/FileService.d.ts +8 -26
- package/dist/sdk/services/FormIdentifierService.d.ts +28 -0
- package/dist/sdk/services/FormIdentifierValueService.d.ts +27 -0
- package/dist/sdk/services/FormRevisionAttachmentService.d.ts +28 -11
- package/dist/sdk/services/FormRevisionService.d.ts +21 -4
- package/dist/sdk/services/FormService.d.ts +25 -6
- package/dist/sdk/services/FormSubmissionAttachmentService.d.ts +28 -11
- package/dist/sdk/services/FormSubmissionService.d.ts +22 -5
- package/dist/sdk/services/GeoImageService.d.ts +29 -9
- package/dist/sdk/services/IssueAssociationService.d.ts +24 -6
- package/dist/sdk/services/IssueAttachmentService.d.ts +25 -36
- package/dist/sdk/services/IssueCommentAttachmentService.d.ts +25 -36
- package/dist/sdk/services/IssueCommentService.d.ts +23 -6
- package/dist/sdk/services/IssueService.d.ts +25 -6
- package/dist/sdk/services/IssueTypeAttachmentService.d.ts +25 -36
- package/dist/sdk/services/IssueTypeFieldValuesAttachmentService.d.ts +28 -11
- package/dist/sdk/services/IssueTypeFieldValuesService.d.ts +22 -5
- package/dist/sdk/services/IssueTypeFieldsAttachmentService.d.ts +28 -11
- package/dist/sdk/services/IssueTypeFieldsService.d.ts +22 -5
- package/dist/sdk/services/IssueTypeIdentifierService.d.ts +28 -0
- package/dist/sdk/services/IssueTypeIdentifierValueService.d.ts +27 -0
- package/dist/sdk/services/IssueTypeService.d.ts +22 -5
- package/dist/sdk/services/IssueTypeStatusService.d.ts +28 -0
- package/dist/sdk/services/IssueUpdateService.d.ts +174 -5
- package/dist/sdk/services/JWTAuthService.d.ts +1 -1
- package/dist/sdk/services/OrganizationAccessService.d.ts +25 -7
- package/dist/sdk/services/OrganizationService.d.ts +24 -7
- package/dist/sdk/services/ProcdureInitiativeService.d.ts +28 -0
- package/dist/sdk/services/ProcedureFieldValuesAttachmentService.d.ts +31 -0
- package/dist/sdk/services/ProcedureFieldValuesService.d.ts +29 -0
- package/dist/sdk/services/ProcedureService.d.ts +30 -0
- package/dist/sdk/services/ProcedureStepAssigneeService.d.ts +29 -0
- package/dist/sdk/services/ProcedureStepCommentService.d.ts +28 -0
- package/dist/sdk/services/ProcedureStepDefaultAssigneeService.d.ts +27 -0
- package/dist/sdk/services/ProcedureStepDefaultReviewerService.d.ts +27 -0
- package/dist/sdk/services/ProcedureStepEventService.d.ts +24 -0
- package/dist/sdk/services/ProcedureStepFieldValuesAttachmentService.d.ts +31 -0
- package/dist/sdk/services/ProcedureStepFieldValuesReviewService.d.ts +28 -0
- package/dist/sdk/services/ProcedureStepFieldValuesService.d.ts +29 -0
- package/dist/sdk/services/ProcedureStepFieldsAttachmentService.d.ts +30 -0
- package/dist/sdk/services/ProcedureStepFieldsService.d.ts +27 -0
- package/dist/sdk/services/ProcedureStepReviewerService.d.ts +29 -0
- package/dist/sdk/services/ProcedureStepService.d.ts +28 -0
- package/dist/sdk/services/ProcedureTypeAttachmentService.d.ts +30 -0
- package/dist/sdk/services/ProcedureTypeFieldsAttachmentService.d.ts +30 -0
- package/dist/sdk/services/ProcedureTypeFieldsService.d.ts +26 -0
- package/dist/sdk/services/ProcedureTypeService.d.ts +28 -0
- package/dist/sdk/services/ProjectAccessService.d.ts +27 -7
- package/dist/sdk/services/ProjectAttachmentService.d.ts +25 -35
- package/dist/sdk/services/ProjectFileService.d.ts +30 -12
- package/dist/sdk/services/ProjectService.d.ts +23 -12
- package/dist/sdk/services/TeamMembershipService.d.ts +28 -0
- package/dist/sdk/services/TeamService.d.ts +22 -8
- package/dist/sdk/services/UserService.d.ts +26 -5
- package/dist/sdk/services/index.d.ts +33 -16
- package/dist/sdk/typings.d.ts +33 -59
- package/dist/sdk/utils.d.ts +2 -0
- package/dist/store/adapters/modelAdapter.d.ts +13 -14
- package/dist/store/adapters/selectionAdapter.d.ts +9 -10
- package/dist/store/adapters/typings.d.ts +20 -3
- package/dist/store/constants.d.ts +3 -1
- package/dist/store/index.d.ts +1 -0
- package/dist/store/reducers.d.ts +90 -48
- package/dist/store/selectors/SelectorBuilder.d.ts +24 -0
- package/dist/store/selectors/hooks.d.ts +13 -0
- package/dist/store/selectors/index.d.ts +3 -0
- package/dist/store/selectors/utils.d.ts +1 -0
- package/dist/store/slices/agentsSlice.d.ts +12 -19
- package/dist/store/slices/assetAttachmentSlice.d.ts +13 -39
- package/dist/store/slices/assetCommentSlice.d.ts +23 -0
- package/dist/store/slices/assetSlice.d.ts +42 -55
- package/dist/store/slices/assetTypeAttachmentSlice.d.ts +12 -38
- package/dist/store/slices/assetTypeFieldValuesAttachmentSlice.d.ts +41 -54
- package/dist/store/slices/assetTypeFieldValuesSlice.d.ts +41 -53
- package/dist/store/slices/assetTypeFieldsAttachmentSlice.d.ts +41 -53
- package/dist/store/slices/assetTypeFieldsSlice.d.ts +41 -53
- package/dist/store/slices/assetTypeIdentifierSlice.d.ts +22 -0
- package/dist/store/slices/assetTypeIdentifierValueSlice.d.ts +23 -0
- package/dist/store/slices/assetTypeSlice.d.ts +13 -39
- package/dist/store/slices/assetTypeStatusSlice.d.ts +118 -0
- package/dist/store/slices/documentAttachmentSlice.d.ts +13 -39
- package/dist/store/slices/documentSlice.d.ts +19 -111
- package/dist/store/slices/emailDomainsSlice.d.ts +48 -35
- package/dist/store/slices/fileSlice.d.ts +0 -3
- package/dist/store/slices/formIdentifierSlice.d.ts +22 -0
- package/dist/store/slices/formIdentifierValueSlice.d.ts +23 -0
- package/dist/store/slices/formRevisionAttachmentSlice.d.ts +109 -37
- package/dist/store/slices/formRevisionSlice.d.ts +42 -42
- package/dist/store/slices/formSlice.d.ts +44 -43
- package/dist/store/slices/formSubmissionAttachmentSlice.d.ts +14 -38
- package/dist/store/slices/formSubmissionSlice.d.ts +11 -39
- package/dist/store/slices/geoImageSlice.d.ts +43 -55
- package/dist/store/slices/index.d.ts +30 -16
- package/dist/store/slices/issueAssociationSlice.d.ts +46 -57
- package/dist/store/slices/issueAttachmentSlice.d.ts +13 -39
- package/dist/store/slices/issueCommentAttachmentSlice.d.ts +13 -39
- package/dist/store/slices/issueCommentSlice.d.ts +13 -27
- package/dist/store/slices/issueSlice.d.ts +17 -29
- package/dist/store/slices/issueTypeAttachmentSlice.d.ts +12 -38
- package/dist/store/slices/issueTypeFieldValuesAttachmentSlice.d.ts +41 -54
- package/dist/store/slices/issueTypeFieldValuesSlice.d.ts +41 -53
- package/dist/store/slices/issueTypeFieldsAttachmentSlice.d.ts +41 -53
- package/dist/store/slices/issueTypeFieldsSlice.d.ts +41 -53
- package/dist/store/slices/issueTypeIdentifierSlice.d.ts +22 -0
- package/dist/store/slices/issueTypeIdentifierValueSlice.d.ts +23 -0
- package/dist/store/slices/issueTypeSlice.d.ts +13 -26
- package/dist/store/slices/issueTypeStatusSlice.d.ts +118 -0
- package/dist/store/slices/issueUpdateSlice.d.ts +243 -27
- package/dist/store/slices/organizationAccessSlice.d.ts +18 -20
- package/dist/store/slices/organizationSlice.d.ts +42 -60
- package/dist/store/slices/outboxSlice.d.ts +6 -7
- package/dist/store/slices/procedureFieldValuesSlice.d.ts +118 -0
- package/dist/store/slices/procedureInitiativeSlice.d.ts +23 -0
- package/dist/store/slices/procedureSlice.d.ts +26 -0
- package/dist/store/slices/procedureStepAssigneeSlice.d.ts +120 -0
- package/dist/store/slices/procedureStepCommentSlice.d.ts +120 -0
- package/dist/store/slices/procedureStepDefaultAssigneeSlice.d.ts +118 -0
- package/dist/store/slices/procedureStepDefaultReviewerSlice.d.ts +118 -0
- package/dist/store/slices/procedureStepEventSlice.d.ts +120 -0
- package/dist/store/slices/procedureStepFieldValuesAttachmentSlice.d.ts +118 -0
- package/dist/store/slices/procedureStepFieldValuesReviewSlice.d.ts +122 -0
- package/dist/store/slices/procedureStepFieldValuesSlice.d.ts +120 -0
- package/dist/store/slices/procedureStepFieldsAttachmentSlice.d.ts +118 -0
- package/dist/store/slices/procedureStepFieldsSlice.d.ts +216 -0
- package/dist/store/slices/procedureStepReviewerSlice.d.ts +120 -0
- package/dist/store/slices/procedureStepSlice.d.ts +119 -0
- package/dist/store/slices/procedureTypeAttachmentSlice.d.ts +98 -0
- package/dist/store/slices/procedureTypeFieldValuesAttachmentSlice.d.ts +118 -0
- package/dist/store/slices/procedureTypeFieldsAttachmentSlice.d.ts +118 -0
- package/dist/store/slices/procedureTypeFieldsSlice.d.ts +23 -0
- package/dist/store/slices/procedureTypeSlice.d.ts +22 -0
- package/dist/store/slices/projectAccessSlice.d.ts +18 -23
- package/dist/store/slices/projectAttachmentSlice.d.ts +14 -40
- package/dist/store/slices/projectFileSlice.d.ts +43 -70
- package/dist/store/slices/projectSlice.d.ts +45 -60
- package/dist/store/slices/teamMembershipSlice.d.ts +23 -0
- package/dist/store/slices/teamSlice.d.ts +13 -25
- package/dist/store/slices/userSlice.d.ts +111 -51
- package/dist/store/store.d.ts +4 -14
- package/dist/store/typings.d.ts +18 -1
- package/dist/typings/files.d.ts +32 -18
- package/dist/typings/index.d.ts +0 -3
- package/dist/typings/models/agents.d.ts +2 -1
- package/dist/typings/models/assets.d.ts +38 -67
- package/dist/typings/models/base.d.ts +22 -13
- package/dist/typings/models/documents.d.ts +9 -4
- package/dist/typings/models/emailDomain.d.ts +2 -1
- package/dist/typings/models/emailVerification.d.ts +7 -5
- package/dist/typings/models/fields.d.ts +7 -7
- package/dist/typings/models/forms.d.ts +18 -12
- package/dist/typings/models/geoImages.d.ts +8 -8
- package/dist/typings/models/index.d.ts +1 -4
- package/dist/typings/models/issues.d.ts +67 -38
- package/dist/typings/models/organizations.d.ts +4 -5
- package/dist/typings/models/procedures.d.ts +105 -0
- package/dist/typings/models/projects.d.ts +11 -10
- package/dist/typings/models/teams.d.ts +8 -5
- package/dist/typings/models/users.d.ts +4 -3
- package/dist/utils/file.d.ts +7 -11
- package/dist/utils/index.d.ts +2 -2
- package/dist/utils/models/assets.d.ts +2 -0
- package/dist/utils/models/base.d.ts +2 -0
- package/dist/utils/models/documents.d.ts +4 -0
- package/dist/utils/models/index.d.ts +4 -0
- package/dist/utils/models/issues.d.ts +2 -0
- package/dist/utils/utils.d.ts +0 -7
- package/dist/utils/uuid.d.ts +7 -0
- package/package.json +36 -54
- package/dist/enums/licenses.d.ts +0 -14
- package/dist/sdk/services/AssetProcedureAttachmentService.d.ts +0 -40
- package/dist/sdk/services/AssetProcedureFieldValuesAttachmentService.d.ts +0 -16
- package/dist/sdk/services/AssetProcedureFieldValuesService.d.ts +0 -22
- package/dist/sdk/services/AssetProcedureFieldsAttachmentService.d.ts +0 -13
- package/dist/sdk/services/AssetProcedureFieldsService.d.ts +0 -9
- package/dist/sdk/services/AssetProcedureInstanceService.d.ts +0 -11
- package/dist/sdk/services/AssetProcedureService.d.ts +0 -11
- package/dist/sdk/services/AssetProcedureStepFieldValuesAttachmentService.d.ts +0 -16
- package/dist/sdk/services/AssetProcedureStepFieldValuesService.d.ts +0 -23
- package/dist/sdk/services/AssetProcedureStepFieldsAttachmentService.d.ts +0 -13
- package/dist/sdk/services/AssetProcedureStepFieldsService.d.ts +0 -11
- package/dist/sdk/services/AssetProcedureStepService.d.ts +0 -12
- package/dist/sdk/services/AssetStageCompletionService.d.ts +0 -12
- package/dist/sdk/services/AssetStageService.d.ts +0 -12
- package/dist/sdk/services/BaseAttachmentService.d.ts +0 -38
- package/dist/sdk/services/BaseUploadService.d.ts +0 -10
- package/dist/sdk/services/CategoryService.d.ts +0 -11
- package/dist/sdk/services/LicenseService.d.ts +0 -14
- package/dist/store/slices/assetProcedureAttachmentSlice.d.ts +0 -48
- package/dist/store/slices/assetProcedureFieldValuesAttachmentSlice.d.ts +0 -131
- package/dist/store/slices/assetProcedureFieldValuesSlice.d.ts +0 -131
- package/dist/store/slices/assetProcedureFieldsAttachmentSlice.d.ts +0 -130
- package/dist/store/slices/assetProcedureFieldsSlice.d.ts +0 -131
- package/dist/store/slices/assetProcedureInstanceSlice.d.ts +0 -132
- package/dist/store/slices/assetProcedureSlice.d.ts +0 -131
- package/dist/store/slices/assetProcedureStepFieldValuesAttachmentSlice.d.ts +0 -131
- package/dist/store/slices/assetProcedureStepFieldValuesSlice.d.ts +0 -132
- package/dist/store/slices/assetProcedureStepFieldsAttachmentSlice.d.ts +0 -130
- package/dist/store/slices/assetProcedureStepFieldsSlice.d.ts +0 -214
- package/dist/store/slices/assetProcedureStepSlice.d.ts +0 -132
- package/dist/store/slices/assetStageCompletionSlice.d.ts +0 -122
- package/dist/store/slices/assetStageSlice.d.ts +0 -132
- package/dist/store/slices/categorySlice.d.ts +0 -111
- package/dist/store/slices/licenseSlice.d.ts +0 -25
- package/dist/typings/colors.d.ts +0 -8
- package/dist/typings/json.d.ts +0 -6
- package/dist/typings/memoization.d.ts +0 -1
- package/dist/typings/models/attachments.d.ts +0 -31
- package/dist/typings/models/categories.d.ts +0 -8
- package/dist/typings/models/issueTypes.d.ts +0 -7
- package/dist/typings/models/license.d.ts +0 -13
- package/dist/typings/models/store.d.ts +0 -0
- package/dist/typings/search.d.ts +0 -23
- package/dist/utils/coordinates.d.ts +0 -4
- package/dist/utils/offline.d.ts +0 -13
- /package/dist/sdk/{classes → outbox}/OutboxCoordinator.d.ts +0 -0
- /package/dist/sdk/{classes → outbox}/OutboxCoordinator.spec.d.ts +0 -0
|
@@ -1,54 +1,25 @@
|
|
|
1
1
|
import { AssetType, AssetTypeFields, Stored } from '../../typings';
|
|
2
|
-
import { ModelState } from '../adapters';
|
|
3
2
|
import { OvermapRootState, OvermapSelectorWithArgs } from '../typings';
|
|
3
|
+
import { ModelState } from '../adapters';
|
|
4
4
|
export type AssetTypeFieldsState = ModelState<AssetTypeFields["uuid"], Stored<AssetTypeFields>>;
|
|
5
5
|
export declare const assetTypeFieldsSlice: import('@reduxjs/toolkit').Slice<AssetTypeFieldsState, {
|
|
6
|
-
initializeAssetTypeFields: (
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
payload: Stored<AssetTypeFields>[];
|
|
16
|
-
type: string;
|
|
17
|
-
}) => void;
|
|
18
|
-
setAssetTypeFields: (state: ModelState<string, Stored<AssetTypeFields>>, action: {
|
|
19
|
-
payload: Stored<AssetTypeFields>;
|
|
20
|
-
type: string;
|
|
21
|
-
}) => void;
|
|
22
|
-
setAssetTypeFieldsMany: (state: ModelState<string, Stored<AssetTypeFields>>, action: {
|
|
23
|
-
payload: Stored<AssetTypeFields>[];
|
|
24
|
-
type: string;
|
|
25
|
-
}) => void;
|
|
26
|
-
updateAssetTypeFields: (state: ModelState<string, Stored<AssetTypeFields>>, action: {
|
|
27
|
-
payload: Stored<AssetTypeFields>;
|
|
28
|
-
type: string;
|
|
29
|
-
}) => void;
|
|
30
|
-
updateAssetTypeFieldsMany: (state: ModelState<string, Stored<AssetTypeFields>>, action: {
|
|
31
|
-
payload: Stored<AssetTypeFields>[];
|
|
32
|
-
type: string;
|
|
33
|
-
}) => void;
|
|
34
|
-
deleteAssetTypeFields: (state: ModelState<string, Stored<AssetTypeFields>>, action: {
|
|
35
|
-
payload: string;
|
|
36
|
-
type: string;
|
|
37
|
-
}) => void;
|
|
38
|
-
deleteAssetTypeFieldsMany: (state: ModelState<string, Stored<AssetTypeFields>>, action: {
|
|
39
|
-
payload: string[];
|
|
40
|
-
type: string;
|
|
41
|
-
}) => void;
|
|
6
|
+
initializeAssetTypeFields: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsState, import('..').InitializePayloadAction<Stored<AssetTypeFields>>>;
|
|
7
|
+
addAssetTypeFields: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsState, import('..').AddOnePayloadAction<Stored<AssetTypeFields>>>;
|
|
8
|
+
addAssetTypeFieldsMany: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsState, import('..').AddManyPayloadAction<Stored<AssetTypeFields>>>;
|
|
9
|
+
setAssetTypeFields: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsState, import('..').SetOnePayloadAction<Stored<AssetTypeFields>>>;
|
|
10
|
+
setAssetTypeFieldsMany: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsState, import('..').SetManyPayloadAction<Stored<AssetTypeFields>>>;
|
|
11
|
+
updateAssetTypeFields: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsState, import('..').UpdateOnePayloadAction<Stored<AssetTypeFields>>>;
|
|
12
|
+
updateAssetTypeFieldsMany: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsState, import('..').UpdateManyPayloadAction<Stored<AssetTypeFields>>>;
|
|
13
|
+
deleteAssetTypeFields: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsState, import('..').DeleteOnePayloadAction<string>>;
|
|
14
|
+
deleteAssetTypeFieldsMany: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsState, import('..').DeleteManyPayloadAction<string>>;
|
|
42
15
|
}, "assetTypeFields", "assetTypeFields", import('@reduxjs/toolkit').SliceSelectors<AssetTypeFieldsState>>;
|
|
43
16
|
export declare const initializeAssetTypeFields: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFields>[], "assetTypeFields/initializeAssetTypeFields">, addAssetTypeFields: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFields>, "assetTypeFields/addAssetTypeFields">, addAssetTypeFieldsMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFields>[], "assetTypeFields/addAssetTypeFieldsMany">, setAssetTypeFields: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFields>, "assetTypeFields/setAssetTypeFields">, setAssetTypeFieldsMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFields>[], "assetTypeFields/setAssetTypeFieldsMany">, updateAssetTypeFields: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFields>, "assetTypeFields/updateAssetTypeFields">, updateAssetTypeFieldsMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFields>[], "assetTypeFields/updateAssetTypeFieldsMany">, deleteAssetTypeFields: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "assetTypeFields/deleteAssetTypeFields">, deleteAssetTypeFieldsMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "assetTypeFields/deleteAssetTypeFieldsMany">;
|
|
44
17
|
export declare const selectAssetTypeFieldsMapping: (state: OvermapRootState) => Record<string, Stored<AssetTypeFields>>;
|
|
45
18
|
export declare const selectAssetTypeFields: ((state: {
|
|
46
19
|
versioning: import('./versioningSlice').VersioningState;
|
|
47
|
-
categoryReducer: import('./categorySlice').CategoryState;
|
|
48
20
|
assetReducer: import('./assetSlice').AssetState;
|
|
49
21
|
assetAttachmentReducer: import('./assetAttachmentSlice').AssetAttachmentState;
|
|
50
|
-
|
|
51
|
-
assetStageReducer: import('./assetStageSlice').AssetStageState;
|
|
22
|
+
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
52
23
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
53
24
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
54
25
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -61,15 +32,36 @@ export declare const selectAssetTypeFields: ((state: {
|
|
|
61
32
|
projectAccessReducer: import('./projectAccessSlice').ProjectAccessState;
|
|
62
33
|
organizationAccessReducer: import('./organizationAccessSlice').OrganizationAccessState;
|
|
63
34
|
projectFileReducer: import('./projectFileSlice').ProjectFileState;
|
|
35
|
+
procedureTypeReducer: import('./procedureTypeSlice').ProcedureTypeState;
|
|
36
|
+
procedureInitiativeReducer: import('./procedureInitiativeSlice').ProcedureInitiativeState;
|
|
37
|
+
procedureReducer: import('./procedureSlice').ProcedureState;
|
|
38
|
+
procedureTypeFieldsReducer: import('./procedureTypeFieldsSlice').ProcedureTypeFieldsState;
|
|
39
|
+
procedureFieldValuesReducer: import('./procedureFieldValuesSlice').ProcedureFieldValuesState;
|
|
40
|
+
procedureTypeAttachmentReducer: import('./procedureTypeAttachmentSlice').ProcedureTypeAttachmentState;
|
|
41
|
+
procedureTypeFieldsAttachmentReducer: import('./procedureTypeFieldsAttachmentSlice').ProcedureTypeFieldsAttachmentState;
|
|
42
|
+
procedureFieldValuesAttachmentReducer: import('./procedureTypeFieldValuesAttachmentSlice').ProcedureFieldValuesAttachmentState;
|
|
43
|
+
procedureStepFieldsAttachmentReducer: import('./procedureStepFieldsAttachmentSlice').ProcedureStepFieldsAttachmentState;
|
|
44
|
+
procedureStepFieldsReducer: import('./procedureStepFieldsSlice').ProcedureStepFieldsState;
|
|
45
|
+
procedureStepFieldValuesAttachmentReducer: import('./procedureStepFieldValuesAttachmentSlice').ProcedureStepFieldValuesAttachmentState;
|
|
46
|
+
procedureStepFieldValuesReducer: import('./procedureStepFieldValuesSlice').ProcedureStepFieldValuesState;
|
|
47
|
+
procedureStepFieldValuesReviewReducer: import('./procedureStepFieldValuesReviewSlice').ProcedureStepFieldValuesReviewState;
|
|
48
|
+
procedureStepAssigneeReducer: import('./procedureStepAssigneeSlice').ProcedureStepAssigneeState;
|
|
49
|
+
procedureStepCommentReducer: import('./procedureStepCommentSlice').ProcedureStepCommentState;
|
|
50
|
+
procedureStepDefaultAssigneeReducer: import('./procedureStepDefaultAssigneeSlice').ProcedureStepDefaultAssigneeState;
|
|
51
|
+
procedureStepDefaultReviewerReducer: import('./procedureStepDefaultReviewerSlice').ProcedureStepDefaultReviewerState;
|
|
52
|
+
procedureStepEventReducer: import('./procedureStepEventSlice').ProcedureStepEventState;
|
|
53
|
+
procedureStepReviewerReducer: import('./procedureStepReviewerSlice').ProcedureStepReviewerState;
|
|
54
|
+
procedureStepReducer: import('./procedureStepSlice').ProcedureStepState;
|
|
64
55
|
rehydratedReducer: import('./rehydratedSlice').RehydratedState;
|
|
65
56
|
formReducer: import('./formSlice').FormState;
|
|
66
57
|
formRevisionReducer: import('./formRevisionSlice').FormRevisionState;
|
|
67
58
|
formRevisionAttachmentReducer: import('./formRevisionAttachmentSlice').FormRevisionAttachmentState;
|
|
68
59
|
formSubmissionAttachmentReducer: import('./formSubmissionAttachmentSlice').FormSubmissionAttachmentState;
|
|
69
60
|
formSubmissionReducer: import('./formSubmissionSlice').FormSubmissionState;
|
|
61
|
+
formIdentifierReducer: import('./formIdentifierSlice').FormIdentifierState;
|
|
62
|
+
formIdentifierValueReducer: import('./formIdentifierValueSlice').FormIdentifierValueState;
|
|
70
63
|
userReducer: import('./userSlice').UserState;
|
|
71
64
|
emailDomainsReducer: import('./emailDomainsSlice').EmailDomainState;
|
|
72
|
-
licenseReducer: import('./licenseSlice').LicenseState;
|
|
73
65
|
documentsReducer: import('./documentSlice').DocumentState;
|
|
74
66
|
documentAttachmentReducer: import('./documentAttachmentSlice').DocumentAttachmentState;
|
|
75
67
|
teamReducer: import('./teamSlice').TeamState;
|
|
@@ -83,22 +75,17 @@ export declare const selectAssetTypeFields: ((state: {
|
|
|
83
75
|
issueTypeFieldValuesReducer: import('./issueTypeFieldValuesSlice').IssueTypeFieldValuesState;
|
|
84
76
|
issueTypeFieldsAttachmentReducer: import('./issueTypeFieldsAttachmentSlice').IssueTypeFieldsAttachmentState;
|
|
85
77
|
issueTypeFieldValuesAttachmentReducer: import('./issueTypeFieldValuesAttachmentSlice').IssueTypeFieldValuesAttachmentState;
|
|
78
|
+
issueTypeIdentifierReducer: import('./issueTypeIdentifierSlice').IssueTypeIdentifierState;
|
|
79
|
+
issueTypeIdentifierValueReducer: import('./issueTypeIdentifierValueSlice').IssueTypeIdentifierValueState;
|
|
80
|
+
issueTypeStatusReducer: import('./issueTypeStatusSlice').IssueTypeStatusState;
|
|
86
81
|
assetTypeFieldsReducer: AssetTypeFieldsState;
|
|
87
82
|
assetTypeFieldValuesReducer: import('./assetTypeFieldValuesSlice').AssetTypeFieldValuesState;
|
|
88
83
|
assetTypeFieldsAttachmentReducer: import('./assetTypeFieldsAttachmentSlice').AssetTypeFieldsAttachmentState;
|
|
89
84
|
assetTypeFieldValuesAttachmentReducer: import('./assetTypeFieldValuesAttachmentSlice').AssetTypeFieldValuesAttachmentState;
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
assetProcedureFieldsAttachmentReducer: import('./assetProcedureFieldsAttachmentSlice').AssetProcedureFieldsAttachmentState;
|
|
95
|
-
assetProcedureFieldValuesAttachmentReducer: import('./assetProcedureFieldValuesAttachmentSlice').AssetProcedureFieldValuesAttachmentState;
|
|
96
|
-
assetProcedureAttachmentReducer: import('./assetProcedureAttachmentSlice').AssetProcedureAttachmentState;
|
|
97
|
-
assetProcedureStepFieldsAttachmentReducer: import('./assetProcedureStepFieldsAttachmentSlice').AssetProcedureStepFieldsAttachmentState;
|
|
98
|
-
assetProcedureStepFieldsReducer: import('./assetProcedureStepFieldsSlice').AssetProcedureStepFieldsState;
|
|
99
|
-
assetProcedureStepFieldValuesAttachmentReducer: import('./assetProcedureStepFieldValuesAttachmentSlice').AssetProcedureStepFieldValuesAttachmentState;
|
|
100
|
-
assetProcedureStepFieldValuesReducer: import('./assetProcedureStepFieldValuesSlice').AssetProcedureStepFieldValuesState;
|
|
101
|
-
assetProcedureStepReducer: import('./assetProcedureStepSlice').AssetProcedureStepState;
|
|
85
|
+
assetTypeIdentifierReducer: import('./assetTypeIdentifierSlice').AssetTypeIdentifierState;
|
|
86
|
+
assetTypeIdentifierValueReducer: import('./assetTypeIdentifierValueSlice').AssetTypeIdentifierValueState;
|
|
87
|
+
assetTypeStatusReducer: import('./assetTypeStatusSlice').AssetTypeStatusState;
|
|
88
|
+
teamMembershipReducer: import('./teamMembershipSlice').TeamMembershipState;
|
|
102
89
|
outboxReducer: import('./outboxSlice').OutboxState;
|
|
103
90
|
fileReducer: import('./fileSlice').FileState;
|
|
104
91
|
authReducer: import('./authSlice').AuthState;
|
|
@@ -128,4 +115,5 @@ export declare const selectAssetTypeFields: ((state: {
|
|
|
128
115
|
export declare const selectAssetTypeFieldsOfAssetType: OvermapSelectorWithArgs<AssetType["uuid"], Stored<AssetTypeFields>[]>;
|
|
129
116
|
export declare const selectLatestAssetTypeFieldsOfAssetType: OvermapSelectorWithArgs<AssetType["uuid"], Stored<AssetTypeFields> | undefined>;
|
|
130
117
|
export declare const selectAssetTypeFieldsById: OvermapSelectorWithArgs<AssetTypeFields["uuid"], Stored<AssetTypeFields> | undefined>;
|
|
118
|
+
export declare const selectAssetTypeFieldsByIds: (uuids: string[]) => (state: any) => Stored<AssetTypeFields>[];
|
|
131
119
|
export declare const assetTypeFieldsReducer: import('redux').Reducer<AssetTypeFieldsState>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { AssetType, AssetTypeIdentifier, Stored } from '../../typings';
|
|
2
|
+
import { OvermapSelector, OvermapSelectorWithArgs } from '../typings';
|
|
3
|
+
import { ModelState } from '../adapters';
|
|
4
|
+
export type AssetTypeIdentifierState = ModelState<AssetTypeIdentifier["uuid"], Stored<AssetTypeIdentifier>>;
|
|
5
|
+
export declare const assetTypeIdentifierSlice: import('@reduxjs/toolkit').Slice<AssetTypeIdentifierState, {
|
|
6
|
+
initializeAssetTypeIdentifiers: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierState, import('..').InitializePayloadAction<Stored<AssetTypeIdentifier>>>;
|
|
7
|
+
addAssetTypeIdentifier: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierState, import('..').AddOnePayloadAction<Stored<AssetTypeIdentifier>>>;
|
|
8
|
+
addAssetTypeIdentifiers: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierState, import('..').AddManyPayloadAction<Stored<AssetTypeIdentifier>>>;
|
|
9
|
+
setAssetTypeIdentifier: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierState, import('..').SetOnePayloadAction<Stored<AssetTypeIdentifier>>>;
|
|
10
|
+
setAssetTypeIdentifiers: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierState, import('..').SetManyPayloadAction<Stored<AssetTypeIdentifier>>>;
|
|
11
|
+
updateAssetTypeIdentifier: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierState, import('..').UpdateOnePayloadAction<Stored<AssetTypeIdentifier>>>;
|
|
12
|
+
updateAssetTypeIdentifiers: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierState, import('..').UpdateManyPayloadAction<Stored<AssetTypeIdentifier>>>;
|
|
13
|
+
deleteAssetTypeIdentifier: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierState, import('..').DeleteOnePayloadAction<string>>;
|
|
14
|
+
deleteAssetTypeIdentifiers: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierState, import('..').DeleteManyPayloadAction<string>>;
|
|
15
|
+
}, "assetTypeIdentifiers", "assetTypeIdentifiers", import('@reduxjs/toolkit').SliceSelectors<AssetTypeIdentifierState>>;
|
|
16
|
+
export declare const initializeAssetTypeIdentifiers: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifier>[], "assetTypeIdentifiers/initializeAssetTypeIdentifiers">, addAssetTypeIdentifier: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifier>, "assetTypeIdentifiers/addAssetTypeIdentifier">, addAssetTypeIdentifiers: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifier>[], "assetTypeIdentifiers/addAssetTypeIdentifiers">, setAssetTypeIdentifier: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifier>, "assetTypeIdentifiers/setAssetTypeIdentifier">, setAssetTypeIdentifiers: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifier>[], "assetTypeIdentifiers/setAssetTypeIdentifiers">, updateAssetTypeIdentifier: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifier>, "assetTypeIdentifiers/updateAssetTypeIdentifier">, updateAssetTypeIdentifiers: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifier>[], "assetTypeIdentifiers/updateAssetTypeIdentifiers">, deleteAssetTypeIdentifier: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "assetTypeIdentifiers/deleteAssetTypeIdentifier">, deleteAssetTypeIdentifiers: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "assetTypeIdentifiers/deleteAssetTypeIdentifiers">;
|
|
17
|
+
export declare const selectAssetTypeIdentifierMapping: OvermapSelector<AssetTypeIdentifierState["instances"]>;
|
|
18
|
+
export declare const selectAssetTypeIdentifiers: OvermapSelector<Stored<AssetTypeIdentifier>[]>;
|
|
19
|
+
export declare const selectAssetTypeIdentifierById: OvermapSelectorWithArgs<AssetTypeIdentifier["uuid"], Stored<AssetTypeIdentifier> | undefined>;
|
|
20
|
+
export declare const selectAssetTypeIdentifiersByIds: (uuids: string[]) => (state: any) => Stored<AssetTypeIdentifier>[];
|
|
21
|
+
export declare const selectAssetTypeIdentifiersOfAssetType: OvermapSelectorWithArgs<AssetType["uuid"], Stored<AssetTypeIdentifier>[]>;
|
|
22
|
+
export declare const assetTypeIdentifierReducer: import('redux').Reducer<AssetTypeIdentifierState>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Asset, AssetTypeIdentifier, AssetTypeIdentifierValue, Stored } from '../../typings';
|
|
2
|
+
import { OvermapSelector, OvermapSelectorWithArgs } from '../typings';
|
|
3
|
+
import { ModelState } from '../adapters';
|
|
4
|
+
export type AssetTypeIdentifierValueState = ModelState<AssetTypeIdentifierValue["uuid"], Stored<AssetTypeIdentifierValue>>;
|
|
5
|
+
export declare const assetTypeIdentifierValueSlice: import('@reduxjs/toolkit').Slice<AssetTypeIdentifierValueState, {
|
|
6
|
+
initializeAssetTypeIdentifierValues: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierValueState, import('..').InitializePayloadAction<Stored<AssetTypeIdentifierValue>>>;
|
|
7
|
+
addAssetTypeIdentifierValue: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierValueState, import('..').AddOnePayloadAction<Stored<AssetTypeIdentifierValue>>>;
|
|
8
|
+
addAssetTypeIdentifierValues: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierValueState, import('..').AddManyPayloadAction<Stored<AssetTypeIdentifierValue>>>;
|
|
9
|
+
setAssetTypeIdentifierValue: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierValueState, import('..').SetOnePayloadAction<Stored<AssetTypeIdentifierValue>>>;
|
|
10
|
+
setAssetTypeIdentifierValues: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierValueState, import('..').SetManyPayloadAction<Stored<AssetTypeIdentifierValue>>>;
|
|
11
|
+
updateAssetTypeIdentifierValue: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierValueState, import('..').UpdateOnePayloadAction<Stored<AssetTypeIdentifierValue>>>;
|
|
12
|
+
updateAssetTypeIdentifierValues: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierValueState, import('..').UpdateManyPayloadAction<Stored<AssetTypeIdentifierValue>>>;
|
|
13
|
+
deleteAssetTypeIdentifierValue: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierValueState, import('..').DeleteOnePayloadAction<string>>;
|
|
14
|
+
deleteAssetTypeIdentifierValues: import('@reduxjs/toolkit').CaseReducer<AssetTypeIdentifierValueState, import('..').DeleteManyPayloadAction<string>>;
|
|
15
|
+
}, "assetTypeIdentifierValues", "assetTypeIdentifierValues", import('@reduxjs/toolkit').SliceSelectors<AssetTypeIdentifierValueState>>;
|
|
16
|
+
export declare const initializeAssetTypeIdentifierValues: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifierValue>[], "assetTypeIdentifierValues/initializeAssetTypeIdentifierValues">, addAssetTypeIdentifierValue: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifierValue>, "assetTypeIdentifierValues/addAssetTypeIdentifierValue">, addAssetTypeIdentifierValues: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifierValue>[], "assetTypeIdentifierValues/addAssetTypeIdentifierValues">, setAssetTypeIdentifierValue: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifierValue>, "assetTypeIdentifierValues/setAssetTypeIdentifierValue">, setAssetTypeIdentifierValues: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifierValue>[], "assetTypeIdentifierValues/setAssetTypeIdentifierValues">, updateAssetTypeIdentifierValue: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifierValue>, "assetTypeIdentifierValues/updateAssetTypeIdentifierValue">, updateAssetTypeIdentifierValues: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeIdentifierValue>[], "assetTypeIdentifierValues/updateAssetTypeIdentifierValues">, deleteAssetTypeIdentifierValue: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "assetTypeIdentifierValues/deleteAssetTypeIdentifierValue">, deleteAssetTypeIdentifierValues: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "assetTypeIdentifierValues/deleteAssetTypeIdentifierValues">;
|
|
17
|
+
export declare const selectAssetTypeIdentifierValueMapping: OvermapSelector<AssetTypeIdentifierValueState["instances"]>;
|
|
18
|
+
export declare const selectAssetTypeIdentifierValues: OvermapSelector<Stored<AssetTypeIdentifierValue>[]>;
|
|
19
|
+
export declare const selectAssetTypeIdentifierValueById: OvermapSelectorWithArgs<AssetTypeIdentifierValue["uuid"], Stored<AssetTypeIdentifierValue> | undefined>;
|
|
20
|
+
export declare const selectAssetTypeIdentifierValuesByIds: (uuids: string[]) => (state: any) => Stored<AssetTypeIdentifierValue>[];
|
|
21
|
+
export declare const selectAssetTypeIdentifierValuesOfAsset: OvermapSelectorWithArgs<Asset["uuid"], Stored<AssetTypeIdentifierValue>[]>;
|
|
22
|
+
export declare const selectAssetTypeIdentifierValuesOfIdentifier: OvermapSelectorWithArgs<AssetTypeIdentifier["uuid"], Stored<AssetTypeIdentifierValue>[]>;
|
|
23
|
+
export declare const assetTypeIdentifierValueReducer: import('redux').Reducer<AssetTypeIdentifierValueState>;
|
|
@@ -1,48 +1,22 @@
|
|
|
1
|
-
import { AssetType, Stored } from '../../typings';
|
|
1
|
+
import { AssetType, Organization, Stored } from '../../typings';
|
|
2
|
+
import { OvermapSelector, OvermapSelectorWithArgs } from '../typings';
|
|
2
3
|
import { ModelState } from '../adapters';
|
|
3
|
-
import { OvermapRootState, OvermapSelector, OvermapSelectorWithArgs } from '../typings';
|
|
4
4
|
export type AssetTypeState = ModelState<AssetType["uuid"], Stored<AssetType>>;
|
|
5
5
|
export declare const assetTypeSlice: import('@reduxjs/toolkit').Slice<AssetTypeState, {
|
|
6
|
-
initializeAssetTypes: (
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
payload: Stored<AssetType>[];
|
|
16
|
-
type: string;
|
|
17
|
-
}) => void;
|
|
18
|
-
addAssetType: (state: ModelState<string, Stored<AssetType>>, action: {
|
|
19
|
-
payload: Stored<AssetType>;
|
|
20
|
-
type: string;
|
|
21
|
-
}) => void;
|
|
22
|
-
addAssetTypes: (state: ModelState<string, Stored<AssetType>>, action: {
|
|
23
|
-
payload: Stored<AssetType>[];
|
|
24
|
-
type: string;
|
|
25
|
-
}) => void;
|
|
26
|
-
updateAssetType: (state: ModelState<string, Stored<AssetType>>, action: {
|
|
27
|
-
payload: Stored<AssetType>;
|
|
28
|
-
type: string;
|
|
29
|
-
}) => void;
|
|
30
|
-
updateAssetTypes: (state: ModelState<string, Stored<AssetType>>, action: {
|
|
31
|
-
payload: Stored<AssetType>[];
|
|
32
|
-
type: string;
|
|
33
|
-
}) => void;
|
|
34
|
-
deleteAssetType: (state: ModelState<string, Stored<AssetType>>, action: {
|
|
35
|
-
payload: string;
|
|
36
|
-
type: string;
|
|
37
|
-
}) => void;
|
|
38
|
-
deleteAssetTypes: (state: ModelState<string, Stored<AssetType>>, action: {
|
|
39
|
-
payload: string[];
|
|
40
|
-
type: string;
|
|
41
|
-
}) => void;
|
|
6
|
+
initializeAssetTypes: import('@reduxjs/toolkit').CaseReducer<AssetTypeState, import('..').InitializePayloadAction<Stored<AssetType>>>;
|
|
7
|
+
setAssetType: import('@reduxjs/toolkit').CaseReducer<AssetTypeState, import('..').SetOnePayloadAction<Stored<AssetType>>>;
|
|
8
|
+
setAssetTypes: import('@reduxjs/toolkit').CaseReducer<AssetTypeState, import('..').SetManyPayloadAction<Stored<AssetType>>>;
|
|
9
|
+
addAssetType: import('@reduxjs/toolkit').CaseReducer<AssetTypeState, import('..').AddOnePayloadAction<Stored<AssetType>>>;
|
|
10
|
+
addAssetTypes: import('@reduxjs/toolkit').CaseReducer<AssetTypeState, import('..').AddManyPayloadAction<Stored<AssetType>>>;
|
|
11
|
+
updateAssetType: import('@reduxjs/toolkit').CaseReducer<AssetTypeState, import('..').UpdateOnePayloadAction<Stored<AssetType>>>;
|
|
12
|
+
updateAssetTypes: import('@reduxjs/toolkit').CaseReducer<AssetTypeState, import('..').UpdateManyPayloadAction<Stored<AssetType>>>;
|
|
13
|
+
deleteAssetType: import('@reduxjs/toolkit').CaseReducer<AssetTypeState, import('..').DeleteOnePayloadAction<string>>;
|
|
14
|
+
deleteAssetTypes: import('@reduxjs/toolkit').CaseReducer<AssetTypeState, import('..').DeleteManyPayloadAction<string>>;
|
|
42
15
|
}, "assetTypes", "assetTypes", import('@reduxjs/toolkit').SliceSelectors<AssetTypeState>>;
|
|
43
16
|
export declare const initializeAssetTypes: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetType>[], "assetTypes/initializeAssetTypes">, setAssetType: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetType>, "assetTypes/setAssetType">, setAssetTypes: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetType>[], "assetTypes/setAssetTypes">, addAssetType: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetType>, "assetTypes/addAssetType">, addAssetTypes: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetType>[], "assetTypes/addAssetTypes">, updateAssetType: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetType>, "assetTypes/updateAssetType">, updateAssetTypes: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetType>[], "assetTypes/updateAssetTypes">, deleteAssetType: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "assetTypes/deleteAssetType">, deleteAssetTypes: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "assetTypes/deleteAssetTypes">;
|
|
44
17
|
export declare const selectAssetTypesMapping: OvermapSelector<Record<string, Stored<AssetType>>>;
|
|
45
18
|
export declare const selectAssetTypes: OvermapSelector<Stored<AssetType>[]>;
|
|
46
19
|
export declare const selectAssetTypeById: OvermapSelectorWithArgs<AssetType["uuid"], Stored<AssetType> | undefined>;
|
|
47
|
-
export declare const selectAssetTypesByIds: (
|
|
20
|
+
export declare const selectAssetTypesByIds: (uuids: string[]) => (state: any) => Stored<AssetType>[];
|
|
21
|
+
export declare const selectAssetTypesOfOrganization: OvermapSelectorWithArgs<Organization["uuid"], Stored<AssetType>[]>;
|
|
48
22
|
export declare const assetTypeReducer: import('redux').Reducer<AssetTypeState>;
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import { AssetType, AssetTypeStatus, Stored } from '../../typings';
|
|
2
|
+
import { OvermapRootState, OvermapSelectorWithArgs } from '../typings';
|
|
3
|
+
import { ModelState } from '../adapters';
|
|
4
|
+
export type AssetTypeStatusState = ModelState<AssetTypeStatus["uuid"], Stored<AssetTypeStatus>>;
|
|
5
|
+
export declare const assetTypeStatusSlice: import('@reduxjs/toolkit').Slice<AssetTypeStatusState, {
|
|
6
|
+
initializeAssetTypeStatuses: import('@reduxjs/toolkit').CaseReducer<AssetTypeStatusState, import('..').InitializePayloadAction<Stored<AssetTypeStatus>>>;
|
|
7
|
+
addAssetTypeStatus: import('@reduxjs/toolkit').CaseReducer<AssetTypeStatusState, import('..').AddOnePayloadAction<Stored<AssetTypeStatus>>>;
|
|
8
|
+
addAssetTypeStatuses: import('@reduxjs/toolkit').CaseReducer<AssetTypeStatusState, import('..').AddManyPayloadAction<Stored<AssetTypeStatus>>>;
|
|
9
|
+
setAssetTypeStatus: import('@reduxjs/toolkit').CaseReducer<AssetTypeStatusState, import('..').SetOnePayloadAction<Stored<AssetTypeStatus>>>;
|
|
10
|
+
setAssetTypeStatuses: import('@reduxjs/toolkit').CaseReducer<AssetTypeStatusState, import('..').SetManyPayloadAction<Stored<AssetTypeStatus>>>;
|
|
11
|
+
updateAssetTypeStatus: import('@reduxjs/toolkit').CaseReducer<AssetTypeStatusState, import('..').UpdateOnePayloadAction<Stored<AssetTypeStatus>>>;
|
|
12
|
+
updateAssetTypeStatuses: import('@reduxjs/toolkit').CaseReducer<AssetTypeStatusState, import('..').UpdateManyPayloadAction<Stored<AssetTypeStatus>>>;
|
|
13
|
+
deleteAssetTypeStatus: import('@reduxjs/toolkit').CaseReducer<AssetTypeStatusState, import('..').DeleteOnePayloadAction<string>>;
|
|
14
|
+
deleteAssetTypeStatuses: import('@reduxjs/toolkit').CaseReducer<AssetTypeStatusState, import('..').DeleteManyPayloadAction<string>>;
|
|
15
|
+
}, "assetTypeStatuses", "assetTypeStatuses", import('@reduxjs/toolkit').SliceSelectors<AssetTypeStatusState>>;
|
|
16
|
+
export declare const initializeAssetTypeStatuses: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeStatus>[], "assetTypeStatuses/initializeAssetTypeStatuses">, addAssetTypeStatus: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeStatus>, "assetTypeStatuses/addAssetTypeStatus">, addAssetTypeStatuses: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeStatus>[], "assetTypeStatuses/addAssetTypeStatuses">, setAssetTypeStatus: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeStatus>, "assetTypeStatuses/setAssetTypeStatus">, setAssetTypeStatuses: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeStatus>[], "assetTypeStatuses/setAssetTypeStatuses">, updateAssetTypeStatus: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeStatus>, "assetTypeStatuses/updateAssetTypeStatus">, updateAssetTypeStatuses: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeStatus>[], "assetTypeStatuses/updateAssetTypeStatuses">, deleteAssetTypeStatus: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "assetTypeStatuses/deleteAssetTypeStatus">, deleteAssetTypeStatuses: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "assetTypeStatuses/deleteAssetTypeStatuses">;
|
|
17
|
+
export declare const selectAssetTypeStatusMapping: (state: OvermapRootState) => Record<string, Stored<AssetTypeStatus>>;
|
|
18
|
+
export declare const selectAssetTypeStatuses: ((state: {
|
|
19
|
+
versioning: import('./versioningSlice').VersioningState;
|
|
20
|
+
assetReducer: import('./assetSlice').AssetState;
|
|
21
|
+
assetAttachmentReducer: import('./assetAttachmentSlice').AssetAttachmentState;
|
|
22
|
+
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
23
|
+
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
24
|
+
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
25
|
+
issueReducer: import('./issueSlice').IssueState;
|
|
26
|
+
issueAttachmentReducer: import('./issueAttachmentSlice').IssueAttachmentState;
|
|
27
|
+
issueTypeReducer: import('./issueTypeSlice').IssueTypeState;
|
|
28
|
+
issueTypeAttachmentReducer: import('./issueTypeAttachmentSlice').IssueTypeAttachmentState;
|
|
29
|
+
organizationReducer: import('./organizationSlice').OrganizationState;
|
|
30
|
+
projectReducer: import('./projectSlice').ProjectState;
|
|
31
|
+
projectAttachmentReducer: import('./projectAttachmentSlice').ProjectAttachmentState;
|
|
32
|
+
projectAccessReducer: import('./projectAccessSlice').ProjectAccessState;
|
|
33
|
+
organizationAccessReducer: import('./organizationAccessSlice').OrganizationAccessState;
|
|
34
|
+
projectFileReducer: import('./projectFileSlice').ProjectFileState;
|
|
35
|
+
procedureTypeReducer: import('./procedureTypeSlice').ProcedureTypeState;
|
|
36
|
+
procedureInitiativeReducer: import('./procedureInitiativeSlice').ProcedureInitiativeState;
|
|
37
|
+
procedureReducer: import('./procedureSlice').ProcedureState;
|
|
38
|
+
procedureTypeFieldsReducer: import('./procedureTypeFieldsSlice').ProcedureTypeFieldsState;
|
|
39
|
+
procedureFieldValuesReducer: import('./procedureFieldValuesSlice').ProcedureFieldValuesState;
|
|
40
|
+
procedureTypeAttachmentReducer: import('./procedureTypeAttachmentSlice').ProcedureTypeAttachmentState;
|
|
41
|
+
procedureTypeFieldsAttachmentReducer: import('./procedureTypeFieldsAttachmentSlice').ProcedureTypeFieldsAttachmentState;
|
|
42
|
+
procedureFieldValuesAttachmentReducer: import('./procedureTypeFieldValuesAttachmentSlice').ProcedureFieldValuesAttachmentState;
|
|
43
|
+
procedureStepFieldsAttachmentReducer: import('./procedureStepFieldsAttachmentSlice').ProcedureStepFieldsAttachmentState;
|
|
44
|
+
procedureStepFieldsReducer: import('./procedureStepFieldsSlice').ProcedureStepFieldsState;
|
|
45
|
+
procedureStepFieldValuesAttachmentReducer: import('./procedureStepFieldValuesAttachmentSlice').ProcedureStepFieldValuesAttachmentState;
|
|
46
|
+
procedureStepFieldValuesReducer: import('./procedureStepFieldValuesSlice').ProcedureStepFieldValuesState;
|
|
47
|
+
procedureStepFieldValuesReviewReducer: import('./procedureStepFieldValuesReviewSlice').ProcedureStepFieldValuesReviewState;
|
|
48
|
+
procedureStepAssigneeReducer: import('./procedureStepAssigneeSlice').ProcedureStepAssigneeState;
|
|
49
|
+
procedureStepCommentReducer: import('./procedureStepCommentSlice').ProcedureStepCommentState;
|
|
50
|
+
procedureStepDefaultAssigneeReducer: import('./procedureStepDefaultAssigneeSlice').ProcedureStepDefaultAssigneeState;
|
|
51
|
+
procedureStepDefaultReviewerReducer: import('./procedureStepDefaultReviewerSlice').ProcedureStepDefaultReviewerState;
|
|
52
|
+
procedureStepEventReducer: import('./procedureStepEventSlice').ProcedureStepEventState;
|
|
53
|
+
procedureStepReviewerReducer: import('./procedureStepReviewerSlice').ProcedureStepReviewerState;
|
|
54
|
+
procedureStepReducer: import('./procedureStepSlice').ProcedureStepState;
|
|
55
|
+
rehydratedReducer: import('./rehydratedSlice').RehydratedState;
|
|
56
|
+
formReducer: import('./formSlice').FormState;
|
|
57
|
+
formRevisionReducer: import('./formRevisionSlice').FormRevisionState;
|
|
58
|
+
formRevisionAttachmentReducer: import('./formRevisionAttachmentSlice').FormRevisionAttachmentState;
|
|
59
|
+
formSubmissionAttachmentReducer: import('./formSubmissionAttachmentSlice').FormSubmissionAttachmentState;
|
|
60
|
+
formSubmissionReducer: import('./formSubmissionSlice').FormSubmissionState;
|
|
61
|
+
formIdentifierReducer: import('./formIdentifierSlice').FormIdentifierState;
|
|
62
|
+
formIdentifierValueReducer: import('./formIdentifierValueSlice').FormIdentifierValueState;
|
|
63
|
+
userReducer: import('./userSlice').UserState;
|
|
64
|
+
emailDomainsReducer: import('./emailDomainsSlice').EmailDomainState;
|
|
65
|
+
documentsReducer: import('./documentSlice').DocumentState;
|
|
66
|
+
documentAttachmentReducer: import('./documentAttachmentSlice').DocumentAttachmentState;
|
|
67
|
+
teamReducer: import('./teamSlice').TeamState;
|
|
68
|
+
agentsReducer: import('./agentsSlice').AgentsState;
|
|
69
|
+
issueCommentReducer: import('./issueCommentSlice').IssueCommentState;
|
|
70
|
+
issueCommentAttachmentReducer: import('./issueCommentAttachmentSlice').IssueCommentAttachmentState;
|
|
71
|
+
issueUpdateReducer: import('./issueUpdateSlice').IssueUpdateState;
|
|
72
|
+
geoImageReducer: import('./geoImageSlice').GeoImageSliceState;
|
|
73
|
+
issueAssociationReducer: import('./issueAssociationSlice').IssueAssociationSliceState;
|
|
74
|
+
issueTypeFieldsReducer: import('./issueTypeFieldsSlice').IssueTypeFieldsState;
|
|
75
|
+
issueTypeFieldValuesReducer: import('./issueTypeFieldValuesSlice').IssueTypeFieldValuesState;
|
|
76
|
+
issueTypeFieldsAttachmentReducer: import('./issueTypeFieldsAttachmentSlice').IssueTypeFieldsAttachmentState;
|
|
77
|
+
issueTypeFieldValuesAttachmentReducer: import('./issueTypeFieldValuesAttachmentSlice').IssueTypeFieldValuesAttachmentState;
|
|
78
|
+
issueTypeIdentifierReducer: import('./issueTypeIdentifierSlice').IssueTypeIdentifierState;
|
|
79
|
+
issueTypeIdentifierValueReducer: import('./issueTypeIdentifierValueSlice').IssueTypeIdentifierValueState;
|
|
80
|
+
issueTypeStatusReducer: import('./issueTypeStatusSlice').IssueTypeStatusState;
|
|
81
|
+
assetTypeFieldsReducer: import('./assetTypeFieldsSlice').AssetTypeFieldsState;
|
|
82
|
+
assetTypeFieldValuesReducer: import('./assetTypeFieldValuesSlice').AssetTypeFieldValuesState;
|
|
83
|
+
assetTypeFieldsAttachmentReducer: import('./assetTypeFieldsAttachmentSlice').AssetTypeFieldsAttachmentState;
|
|
84
|
+
assetTypeFieldValuesAttachmentReducer: import('./assetTypeFieldValuesAttachmentSlice').AssetTypeFieldValuesAttachmentState;
|
|
85
|
+
assetTypeIdentifierReducer: import('./assetTypeIdentifierSlice').AssetTypeIdentifierState;
|
|
86
|
+
assetTypeIdentifierValueReducer: import('./assetTypeIdentifierValueSlice').AssetTypeIdentifierValueState;
|
|
87
|
+
assetTypeStatusReducer: AssetTypeStatusState;
|
|
88
|
+
teamMembershipReducer: import('./teamMembershipSlice').TeamMembershipState;
|
|
89
|
+
outboxReducer: import('./outboxSlice').OutboxState;
|
|
90
|
+
fileReducer: import('./fileSlice').FileState;
|
|
91
|
+
authReducer: import('./authSlice').AuthState;
|
|
92
|
+
} & {
|
|
93
|
+
offline: import('@redux-offline/redux-offline/lib/types').OfflineState;
|
|
94
|
+
}) => Stored<AssetTypeStatus>[]) & {
|
|
95
|
+
clearCache: () => void;
|
|
96
|
+
resultsCount: () => number;
|
|
97
|
+
resetResultsCount: () => void;
|
|
98
|
+
} & {
|
|
99
|
+
resultFunc: (resultFuncArgs_0: Record<string, Stored<AssetTypeStatus>>) => Stored<AssetTypeStatus>[];
|
|
100
|
+
memoizedResultFunc: ((resultFuncArgs_0: Record<string, Stored<AssetTypeStatus>>) => Stored<AssetTypeStatus>[]) & {
|
|
101
|
+
clearCache: () => void;
|
|
102
|
+
resultsCount: () => number;
|
|
103
|
+
resetResultsCount: () => void;
|
|
104
|
+
};
|
|
105
|
+
lastResult: () => Stored<AssetTypeStatus>[];
|
|
106
|
+
dependencies: [(state: OvermapRootState) => Record<string, Stored<AssetTypeStatus>>];
|
|
107
|
+
recomputations: () => number;
|
|
108
|
+
resetRecomputations: () => void;
|
|
109
|
+
dependencyRecomputations: () => number;
|
|
110
|
+
resetDependencyRecomputations: () => void;
|
|
111
|
+
} & {
|
|
112
|
+
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
113
|
+
memoize: typeof import('reselect').weakMapMemoize;
|
|
114
|
+
};
|
|
115
|
+
export declare const selectAssetTypeStatusById: OvermapSelectorWithArgs<AssetTypeStatus["uuid"], Stored<AssetTypeStatus> | undefined>;
|
|
116
|
+
export declare const selectAssetTypeStatusesByIds: (uuids: string[]) => (state: any) => Stored<AssetTypeStatus>[];
|
|
117
|
+
export declare const selectAssetTypeStatusesOfAssetType: OvermapSelectorWithArgs<AssetType["uuid"], Stored<AssetTypeStatus>[]>;
|
|
118
|
+
export declare const assetTypeStatusReducer: import('redux').Reducer<AssetTypeStatusState>;
|
|
@@ -1,48 +1,22 @@
|
|
|
1
|
-
import { DocumentAttachment, Stored } from '../../typings';
|
|
2
|
-
import { ModelState } from '../adapters';
|
|
1
|
+
import { Document, DocumentAttachment, Stored } from '../../typings';
|
|
3
2
|
import { OvermapRootState, OvermapSelector, OvermapSelectorWithArgs } from '../typings';
|
|
3
|
+
import { ModelState } from '../adapters';
|
|
4
4
|
export type DocumentAttachmentState = ModelState<DocumentAttachment["uuid"], Stored<DocumentAttachment>>;
|
|
5
5
|
export declare const documentAttachmentSlice: import('@reduxjs/toolkit').Slice<DocumentAttachmentState, {
|
|
6
|
-
initializeDocumentAttachments: (
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
payload: Stored<DocumentAttachment>[];
|
|
16
|
-
type: string;
|
|
17
|
-
}) => void;
|
|
18
|
-
setDocumentAttachment: (state: ModelState<string, Stored<DocumentAttachment>>, action: {
|
|
19
|
-
payload: Stored<DocumentAttachment>;
|
|
20
|
-
type: string;
|
|
21
|
-
}) => void;
|
|
22
|
-
setDocumentAttachments: (state: ModelState<string, Stored<DocumentAttachment>>, action: {
|
|
23
|
-
payload: Stored<DocumentAttachment>[];
|
|
24
|
-
type: string;
|
|
25
|
-
}) => void;
|
|
26
|
-
updateDocumentAttachment: (state: ModelState<string, Stored<DocumentAttachment>>, action: {
|
|
27
|
-
payload: Stored<DocumentAttachment>;
|
|
28
|
-
type: string;
|
|
29
|
-
}) => void;
|
|
30
|
-
updateDocumentAttachments: (state: ModelState<string, Stored<DocumentAttachment>>, action: {
|
|
31
|
-
payload: Stored<DocumentAttachment>[];
|
|
32
|
-
type: string;
|
|
33
|
-
}) => void;
|
|
34
|
-
deleteDocumentAttachment: (state: ModelState<string, Stored<DocumentAttachment>>, action: {
|
|
35
|
-
payload: string;
|
|
36
|
-
type: string;
|
|
37
|
-
}) => void;
|
|
38
|
-
deleteDocumentAttachments: (state: ModelState<string, Stored<DocumentAttachment>>, action: {
|
|
39
|
-
payload: string[];
|
|
40
|
-
type: string;
|
|
41
|
-
}) => void;
|
|
6
|
+
initializeDocumentAttachments: import('@reduxjs/toolkit').CaseReducer<DocumentAttachmentState, import('..').InitializePayloadAction<Stored<DocumentAttachment>>>;
|
|
7
|
+
addDocumentAttachment: import('@reduxjs/toolkit').CaseReducer<DocumentAttachmentState, import('..').AddOnePayloadAction<Stored<DocumentAttachment>>>;
|
|
8
|
+
addDocumentAttachments: import('@reduxjs/toolkit').CaseReducer<DocumentAttachmentState, import('..').AddManyPayloadAction<Stored<DocumentAttachment>>>;
|
|
9
|
+
setDocumentAttachment: import('@reduxjs/toolkit').CaseReducer<DocumentAttachmentState, import('..').SetOnePayloadAction<Stored<DocumentAttachment>>>;
|
|
10
|
+
setDocumentAttachments: import('@reduxjs/toolkit').CaseReducer<DocumentAttachmentState, import('..').SetManyPayloadAction<Stored<DocumentAttachment>>>;
|
|
11
|
+
updateDocumentAttachment: import('@reduxjs/toolkit').CaseReducer<DocumentAttachmentState, import('..').UpdateOnePayloadAction<Stored<DocumentAttachment>>>;
|
|
12
|
+
updateDocumentAttachments: import('@reduxjs/toolkit').CaseReducer<DocumentAttachmentState, import('..').UpdateManyPayloadAction<Stored<DocumentAttachment>>>;
|
|
13
|
+
deleteDocumentAttachment: import('@reduxjs/toolkit').CaseReducer<DocumentAttachmentState, import('..').DeleteOnePayloadAction<string>>;
|
|
14
|
+
deleteDocumentAttachments: import('@reduxjs/toolkit').CaseReducer<DocumentAttachmentState, import('..').DeleteManyPayloadAction<string>>;
|
|
42
15
|
}, "documentAttachments", "documentAttachments", import('@reduxjs/toolkit').SliceSelectors<DocumentAttachmentState>>;
|
|
43
16
|
export declare const initializeDocumentAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<DocumentAttachment>[], "documentAttachments/initializeDocumentAttachments">, addDocumentAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<DocumentAttachment>, "documentAttachments/addDocumentAttachment">, addDocumentAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<DocumentAttachment>[], "documentAttachments/addDocumentAttachments">, setDocumentAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<DocumentAttachment>, "documentAttachments/setDocumentAttachment">, setDocumentAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<DocumentAttachment>[], "documentAttachments/setDocumentAttachments">, updateDocumentAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<DocumentAttachment>, "documentAttachments/updateDocumentAttachment">, updateDocumentAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<DocumentAttachment>[], "documentAttachments/updateDocumentAttachments">, deleteDocumentAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "documentAttachments/deleteDocumentAttachment">, deleteDocumentAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "documentAttachments/deleteDocumentAttachments">;
|
|
44
17
|
export declare const selectDocumentAttachmentMapping: (state: OvermapRootState) => Record<string, Stored<DocumentAttachment>>;
|
|
45
18
|
export declare const selectAllDocumentAttachments: OvermapSelector<Stored<DocumentAttachment>[]>;
|
|
46
19
|
export declare const selectDocumentAttachmentById: OvermapSelectorWithArgs<DocumentAttachment["uuid"], Stored<DocumentAttachment> | undefined>;
|
|
47
|
-
export declare const
|
|
20
|
+
export declare const selectDocumentAttachmentsByIds: (uuids: string[]) => (state: any) => Stored<DocumentAttachment>[];
|
|
21
|
+
export declare const selectAttachmentsOfDocument: OvermapSelectorWithArgs<Document["uuid"], Stored<DocumentAttachment>[]>;
|
|
48
22
|
export declare const documentAttachmentReducer: import('redux').Reducer<DocumentAttachmentState>;
|