@overmap-ai/core 1.0.78-improvements.0 → 1.0.78-issue-bulk-delete.0
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/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 +1 -1
- package/dist/enums/issue.d.ts +7 -6
- package/dist/overmap-core.js +9313 -6700
- package/dist/overmap-core.umd.cjs +11 -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 +26 -28
- package/dist/sdk/services/AssetProcedureService.d.ts +23 -6
- package/dist/sdk/services/AssetProcedureStepFieldValuesAttachmentService.d.ts +21 -4
- package/dist/sdk/services/AssetProcedureStepFieldValuesService.d.ts +23 -13
- package/dist/sdk/services/AssetProcedureStepFieldsAttachmentService.d.ts +21 -4
- package/dist/sdk/services/AssetProcedureStepFieldsService.d.ts +22 -5
- package/dist/sdk/services/AssetProcedureStepService.d.ts +25 -9
- package/dist/sdk/services/AssetProcedureTypeAttachmentService.d.ts +39 -0
- package/dist/sdk/services/AssetProcedureTypeFieldValuesAttachmentService.d.ts +33 -0
- package/dist/sdk/services/AssetProcedureTypeFieldValuesService.d.ts +33 -0
- package/dist/sdk/services/AssetProcedureTypeFieldsAttachmentService.d.ts +30 -0
- package/dist/sdk/services/AssetProcedureTypeFieldsService.d.ts +26 -0
- package/dist/sdk/services/AssetProcedureTypeService.d.ts +28 -0
- package/dist/sdk/services/AssetService.d.ts +25 -7
- package/dist/sdk/services/AssetStageCompletionService.d.ts +22 -5
- package/dist/sdk/services/AssetStageService.d.ts +25 -9
- package/dist/sdk/services/AssetTypeAttachmentService.d.ts +26 -27
- package/dist/sdk/services/AssetTypeFieldValuesAttachmentService.d.ts +21 -4
- package/dist/sdk/services/AssetTypeFieldValuesService.d.ts +23 -11
- package/dist/sdk/services/AssetTypeFieldsAttachmentService.d.ts +22 -5
- 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 +27 -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/BaseOfflineAttachmentModelService.d.ts +23 -0
- package/dist/sdk/services/BaseOfflineModelApiService.d.ts +27 -0
- package/dist/sdk/services/BaseService.d.ts +5 -2
- package/dist/sdk/services/DocumentAttachmentService.d.ts +26 -27
- 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 +5 -1
- 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 +21 -4
- package/dist/sdk/services/FormRevisionService.d.ts +21 -4
- package/dist/sdk/services/FormService.d.ts +21 -4
- package/dist/sdk/services/FormSubmissionAttachmentService.d.ts +22 -5
- package/dist/sdk/services/FormSubmissionService.d.ts +22 -5
- package/dist/sdk/services/GeoImageService.d.ts +23 -6
- package/dist/sdk/services/IssueAssociationService.d.ts +22 -5
- package/dist/sdk/services/IssueAttachmentService.d.ts +26 -28
- package/dist/sdk/services/IssueCommentAttachmentService.d.ts +26 -28
- 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 +26 -28
- package/dist/sdk/services/IssueTypeFieldValuesAttachmentService.d.ts +21 -4
- package/dist/sdk/services/IssueTypeFieldValuesService.d.ts +22 -5
- package/dist/sdk/services/IssueTypeFieldsAttachmentService.d.ts +21 -4
- 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 +160 -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/ProjectAccessService.d.ts +27 -7
- package/dist/sdk/services/ProjectAttachmentService.d.ts +26 -27
- package/dist/sdk/services/ProjectFileService.d.ts +21 -7
- 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 +18 -8
- package/dist/sdk/typings.d.ts +21 -55
- package/dist/sdk/utils.d.ts +2 -0
- package/dist/store/adapters/modelAdapter.d.ts +13 -14
- package/dist/store/adapters/typings.d.ts +19 -0
- package/dist/store/constants.d.ts +3 -1
- package/dist/store/index.d.ts +1 -0
- package/dist/store/reducers.d.ts +45 -24
- 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/assetProcedureSlice.d.ts +30 -49
- package/dist/store/slices/assetProcedureStepFieldValuesAttachmentSlice.d.ts +26 -46
- package/dist/store/slices/assetProcedureStepFieldValuesSlice.d.ts +28 -47
- package/dist/store/slices/assetProcedureStepFieldsAttachmentSlice.d.ts +28 -47
- package/dist/store/slices/assetProcedureStepFieldsSlice.d.ts +41 -53
- package/dist/store/slices/assetProcedureStepSlice.d.ts +30 -49
- package/dist/store/slices/assetProcedureTypeAttachmentSlice.d.ts +91 -0
- package/dist/store/slices/assetProcedureTypeFieldValuesAttachmentSlice.d.ts +111 -0
- package/dist/store/slices/assetProcedureTypeFieldValuesSlice.d.ts +112 -0
- package/dist/store/slices/assetProcedureTypeFieldsAttachmentSlice.d.ts +111 -0
- package/dist/store/slices/assetProcedureTypeFieldsSlice.d.ts +23 -0
- package/dist/store/slices/assetProcedureTypeSlice.d.ts +22 -0
- package/dist/store/slices/assetSlice.d.ts +27 -47
- package/dist/store/slices/assetStageCompletionSlice.d.ts +27 -39
- package/dist/store/slices/assetStageSlice.d.ts +29 -49
- package/dist/store/slices/assetTypeAttachmentSlice.d.ts +12 -38
- package/dist/store/slices/assetTypeFieldValuesAttachmentSlice.d.ts +26 -46
- package/dist/store/slices/assetTypeFieldValuesSlice.d.ts +26 -45
- package/dist/store/slices/assetTypeFieldsAttachmentSlice.d.ts +26 -45
- package/dist/store/slices/assetTypeFieldsSlice.d.ts +26 -45
- 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 +111 -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 +33 -27
- 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 +102 -37
- package/dist/store/slices/formRevisionSlice.d.ts +27 -34
- package/dist/store/slices/formSlice.d.ts +29 -35
- 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 +28 -47
- package/dist/store/slices/index.d.ts +15 -8
- package/dist/store/slices/issueAssociationSlice.d.ts +32 -49
- 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 +26 -46
- package/dist/store/slices/issueTypeFieldValuesSlice.d.ts +26 -45
- package/dist/store/slices/issueTypeFieldsAttachmentSlice.d.ts +26 -45
- package/dist/store/slices/issueTypeFieldsSlice.d.ts +26 -45
- 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 +111 -0
- package/dist/store/slices/issueUpdateSlice.d.ts +222 -27
- package/dist/store/slices/organizationAccessSlice.d.ts +18 -20
- package/dist/store/slices/organizationSlice.d.ts +27 -52
- package/dist/store/slices/outboxSlice.d.ts +6 -7
- 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 +28 -48
- package/dist/store/slices/projectSlice.d.ts +30 -52
- 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 +102 -43
- package/dist/store/store.d.ts +4 -14
- package/dist/store/typings.d.ts +18 -1
- package/dist/typings/files.d.ts +15 -14
- package/dist/typings/index.d.ts +0 -3
- package/dist/typings/models/agents.d.ts +2 -1
- package/dist/typings/models/assets.d.ts +80 -51
- 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 +16 -11
- package/dist/typings/models/geoImages.d.ts +8 -8
- package/dist/typings/models/index.d.ts +0 -4
- package/dist/typings/models/issues.d.ts +65 -37
- package/dist/typings/models/organizations.d.ts +4 -5
- 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 -2
- package/dist/utils/index.d.ts +2 -2
- package/dist/utils/models/assets.d.ts +5 -0
- package/dist/utils/models/documents.d.ts +4 -0
- package/dist/utils/models/index.d.ts +3 -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 +34 -52
- 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/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/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,44 +1,17 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ModelState } from '../adapters';
|
|
1
|
+
import { AssetProcedureType, AssetStage, Stored } from '../../typings';
|
|
3
2
|
import { OvermapSelector, OvermapSelectorWithArgs } from '../typings';
|
|
3
|
+
import { ModelState } from '../adapters';
|
|
4
4
|
export type AssetStageState = ModelState<AssetStage["uuid"], Stored<AssetStage>>;
|
|
5
5
|
export declare const assetStageSlice: import('@reduxjs/toolkit').Slice<AssetStageState, {
|
|
6
|
-
initializeAssetStages: (
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
payload: Stored<AssetStage>[];
|
|
16
|
-
type: string;
|
|
17
|
-
}) => void;
|
|
18
|
-
addAssetStage: (state: ModelState<string, Stored<AssetStage>>, action: {
|
|
19
|
-
payload: Stored<AssetStage>;
|
|
20
|
-
type: string;
|
|
21
|
-
}) => void;
|
|
22
|
-
addAssetStages: (state: ModelState<string, Stored<AssetStage>>, action: {
|
|
23
|
-
payload: Stored<AssetStage>[];
|
|
24
|
-
type: string;
|
|
25
|
-
}) => void;
|
|
26
|
-
updateAssetStage: (state: ModelState<string, Stored<AssetStage>>, action: {
|
|
27
|
-
payload: Stored<AssetStage>;
|
|
28
|
-
type: string;
|
|
29
|
-
}) => void;
|
|
30
|
-
updateAssetStages: (state: ModelState<string, Stored<AssetStage>>, action: {
|
|
31
|
-
payload: Stored<AssetStage>[];
|
|
32
|
-
type: string;
|
|
33
|
-
}) => void;
|
|
34
|
-
deleteAssetStage: (state: ModelState<string, Stored<AssetStage>>, action: {
|
|
35
|
-
payload: string;
|
|
36
|
-
type: string;
|
|
37
|
-
}) => void;
|
|
38
|
-
deleteAssetStages: (state: ModelState<string, Stored<AssetStage>>, action: {
|
|
39
|
-
payload: string[];
|
|
40
|
-
type: string;
|
|
41
|
-
}) => void;
|
|
6
|
+
initializeAssetStages: import('@reduxjs/toolkit').CaseReducer<AssetStageState, import('..').InitializePayloadAction<Stored<AssetStage>>>;
|
|
7
|
+
setAssetStage: import('@reduxjs/toolkit').CaseReducer<AssetStageState, import('..').SetOnePayloadAction<Stored<AssetStage>>>;
|
|
8
|
+
setAssetStages: import('@reduxjs/toolkit').CaseReducer<AssetStageState, import('..').SetManyPayloadAction<Stored<AssetStage>>>;
|
|
9
|
+
addAssetStage: import('@reduxjs/toolkit').CaseReducer<AssetStageState, import('..').AddOnePayloadAction<Stored<AssetStage>>>;
|
|
10
|
+
addAssetStages: import('@reduxjs/toolkit').CaseReducer<AssetStageState, import('..').AddManyPayloadAction<Stored<AssetStage>>>;
|
|
11
|
+
updateAssetStage: import('@reduxjs/toolkit').CaseReducer<AssetStageState, import('..').UpdateOnePayloadAction<Stored<AssetStage>>>;
|
|
12
|
+
updateAssetStages: import('@reduxjs/toolkit').CaseReducer<AssetStageState, import('..').UpdateManyPayloadAction<Stored<AssetStage>>>;
|
|
13
|
+
deleteAssetStage: import('@reduxjs/toolkit').CaseReducer<AssetStageState, import('..').DeleteOnePayloadAction<string>>;
|
|
14
|
+
deleteAssetStages: import('@reduxjs/toolkit').CaseReducer<AssetStageState, import('..').DeleteManyPayloadAction<string>>;
|
|
42
15
|
}, "assetStages", "assetStages", import('@reduxjs/toolkit').SliceSelectors<AssetStageState>>;
|
|
43
16
|
export declare const initializeAssetStages: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetStage>[], "assetStages/initializeAssetStages">, setAssetStage: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetStage>, "assetStages/setAssetStage">, setAssetStages: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetStage>[], "assetStages/setAssetStages">, addAssetStage: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetStage>, "assetStages/addAssetStage">, addAssetStages: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetStage>[], "assetStages/addAssetStages">, updateAssetStage: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetStage>, "assetStages/updateAssetStage">, updateAssetStages: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetStage>[], "assetStages/updateAssetStages">, deleteAssetStage: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "assetStages/deleteAssetStage">, deleteAssetStages: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "assetStages/deleteAssetStages">;
|
|
44
17
|
export declare const assetStageReducer: import('redux').Reducer<AssetStageState>;
|
|
@@ -46,7 +19,6 @@ export declare const selectStageMapping: OvermapSelector<Record<AssetStage["uuid
|
|
|
46
19
|
export declare const selectAssetStageById: OvermapSelectorWithArgs<AssetStage["uuid"], Stored<AssetStage> | undefined>;
|
|
47
20
|
export declare const selectAssetStages: ((state: {
|
|
48
21
|
versioning: import('./versioningSlice').VersioningState;
|
|
49
|
-
categoryReducer: import('./categorySlice').CategoryState;
|
|
50
22
|
assetReducer: import('./assetSlice').AssetState;
|
|
51
23
|
assetAttachmentReducer: import('./assetAttachmentSlice').AssetAttachmentState;
|
|
52
24
|
assetStageCompletionReducer: import('./assetStageCompletionSlice').AssetStageCompletionState;
|
|
@@ -69,9 +41,10 @@ export declare const selectAssetStages: ((state: {
|
|
|
69
41
|
formRevisionAttachmentReducer: import('./formRevisionAttachmentSlice').FormRevisionAttachmentState;
|
|
70
42
|
formSubmissionAttachmentReducer: import('./formSubmissionAttachmentSlice').FormSubmissionAttachmentState;
|
|
71
43
|
formSubmissionReducer: import('./formSubmissionSlice').FormSubmissionState;
|
|
44
|
+
formIdentifierReducer: import('./formIdentifierSlice').FormIdentifierState;
|
|
45
|
+
formIdentifierValueReducer: import('./formIdentifierValueSlice').FormIdentifierValueState;
|
|
72
46
|
userReducer: import('./userSlice').UserState;
|
|
73
47
|
emailDomainsReducer: import('./emailDomainsSlice').EmailDomainState;
|
|
74
|
-
licenseReducer: import('./licenseSlice').LicenseState;
|
|
75
48
|
documentsReducer: import('./documentSlice').DocumentState;
|
|
76
49
|
documentAttachmentReducer: import('./documentAttachmentSlice').DocumentAttachmentState;
|
|
77
50
|
teamReducer: import('./teamSlice').TeamState;
|
|
@@ -85,22 +58,29 @@ export declare const selectAssetStages: ((state: {
|
|
|
85
58
|
issueTypeFieldValuesReducer: import('./issueTypeFieldValuesSlice').IssueTypeFieldValuesState;
|
|
86
59
|
issueTypeFieldsAttachmentReducer: import('./issueTypeFieldsAttachmentSlice').IssueTypeFieldsAttachmentState;
|
|
87
60
|
issueTypeFieldValuesAttachmentReducer: import('./issueTypeFieldValuesAttachmentSlice').IssueTypeFieldValuesAttachmentState;
|
|
61
|
+
issueTypeIdentifierReducer: import('./issueTypeIdentifierSlice').IssueTypeIdentifierState;
|
|
62
|
+
issueTypeIdentifierValueReducer: import('./issueTypeIdentifierValueSlice').IssueTypeIdentifierValueState;
|
|
63
|
+
issueTypeStatusReducer: import('./issueTypeStatusSlice').IssueTypeStatusState;
|
|
88
64
|
assetTypeFieldsReducer: import('./assetTypeFieldsSlice').AssetTypeFieldsState;
|
|
89
65
|
assetTypeFieldValuesReducer: import('./assetTypeFieldValuesSlice').AssetTypeFieldValuesState;
|
|
90
66
|
assetTypeFieldsAttachmentReducer: import('./assetTypeFieldsAttachmentSlice').AssetTypeFieldsAttachmentState;
|
|
91
67
|
assetTypeFieldValuesAttachmentReducer: import('./assetTypeFieldValuesAttachmentSlice').AssetTypeFieldValuesAttachmentState;
|
|
68
|
+
assetTypeIdentifierReducer: import('./assetTypeIdentifierSlice').AssetTypeIdentifierState;
|
|
69
|
+
assetTypeIdentifierValueReducer: import('./assetTypeIdentifierValueSlice').AssetTypeIdentifierValueState;
|
|
70
|
+
assetTypeStatusReducer: import('./assetTypeStatusSlice').AssetTypeStatusState;
|
|
71
|
+
assetProcedureTypeReducer: import('./assetProcedureTypeSlice').AssetProcedureTypeState;
|
|
92
72
|
assetProcedureReducer: import('./assetProcedureSlice').AssetProcedureState;
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
assetProcedureAttachmentReducer: import('./assetProcedureAttachmentSlice').AssetProcedureAttachmentState;
|
|
73
|
+
assetProcedureTypeFieldsReducer: import('./assetProcedureTypeFieldsSlice').AssetProcedureTypeFieldsState;
|
|
74
|
+
assetProcedureTypeFieldValuesReducer: import('./assetProcedureTypeFieldValuesSlice').AssetProcedureTypeFieldValuesState;
|
|
75
|
+
assetProcedureTypeFieldsAttachmentReducer: import('./assetProcedureTypeFieldsAttachmentSlice').AssetProcedureTypeFieldsAttachmentState;
|
|
76
|
+
assetProcedureTypeFieldValuesAttachmentReducer: import('./assetProcedureTypeFieldValuesAttachmentSlice').AssetProcedureTypeFieldValuesAttachmentState;
|
|
77
|
+
assetProcedureTypeAttachmentReducer: import('./assetProcedureTypeAttachmentSlice').AssetProcedureTypeAttachmentState;
|
|
99
78
|
assetProcedureStepFieldsAttachmentReducer: import('./assetProcedureStepFieldsAttachmentSlice').AssetProcedureStepFieldsAttachmentState;
|
|
100
79
|
assetProcedureStepFieldsReducer: import('./assetProcedureStepFieldsSlice').AssetProcedureStepFieldsState;
|
|
101
80
|
assetProcedureStepFieldValuesAttachmentReducer: import('./assetProcedureStepFieldValuesAttachmentSlice').AssetProcedureStepFieldValuesAttachmentState;
|
|
102
81
|
assetProcedureStepFieldValuesReducer: import('./assetProcedureStepFieldValuesSlice').AssetProcedureStepFieldValuesState;
|
|
103
82
|
assetProcedureStepReducer: import('./assetProcedureStepSlice').AssetProcedureStepState;
|
|
83
|
+
teamMembershipReducer: import('./teamMembershipSlice').TeamMembershipState;
|
|
104
84
|
outboxReducer: import('./outboxSlice').OutboxState;
|
|
105
85
|
fileReducer: import('./fileSlice').FileState;
|
|
106
86
|
authReducer: import('./authSlice').AuthState;
|
|
@@ -127,6 +107,6 @@ export declare const selectAssetStages: ((state: {
|
|
|
127
107
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
128
108
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
129
109
|
};
|
|
130
|
-
export declare const
|
|
131
|
-
export declare const
|
|
132
|
-
export declare const selectAssetStagesByIds: (
|
|
110
|
+
export declare const selectAssetStagesMappingOfAssetProcedureType: OvermapSelectorWithArgs<AssetProcedureType["uuid"], Record<string, Stored<AssetStage>>>;
|
|
111
|
+
export declare const selectAssetStagesOfAssetProcedureType: OvermapSelectorWithArgs<AssetProcedureType["uuid"], Stored<AssetStage>[]>;
|
|
112
|
+
export declare const selectAssetStagesByIds: (uuids: string[]) => (state: any) => Stored<AssetStage>[];
|
|
@@ -1,48 +1,22 @@
|
|
|
1
1
|
import { AssetTypeAttachment, Stored } from '../../typings';
|
|
2
|
-
import { ModelState } from '../adapters';
|
|
3
2
|
import { OvermapRootState, OvermapSelector, OvermapSelectorWithArgs } from '../typings';
|
|
3
|
+
import { ModelState } from '../adapters';
|
|
4
4
|
export type AssetTypeAttachmentState = ModelState<AssetTypeAttachment["uuid"], Stored<AssetTypeAttachment>>;
|
|
5
5
|
export declare const assetTypeAttachmentSlice: import('@reduxjs/toolkit').Slice<AssetTypeAttachmentState, {
|
|
6
|
-
initializeAssetTypeAttachments: (
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
payload: Stored<AssetTypeAttachment>[];
|
|
16
|
-
type: string;
|
|
17
|
-
}) => void;
|
|
18
|
-
setAssetTypeAttachment: (state: ModelState<string, Stored<AssetTypeAttachment>>, action: {
|
|
19
|
-
payload: Stored<AssetTypeAttachment>;
|
|
20
|
-
type: string;
|
|
21
|
-
}) => void;
|
|
22
|
-
setAssetTypeAttachments: (state: ModelState<string, Stored<AssetTypeAttachment>>, action: {
|
|
23
|
-
payload: Stored<AssetTypeAttachment>[];
|
|
24
|
-
type: string;
|
|
25
|
-
}) => void;
|
|
26
|
-
updateAssetTypeAttachment: (state: ModelState<string, Stored<AssetTypeAttachment>>, action: {
|
|
27
|
-
payload: Stored<AssetTypeAttachment>;
|
|
28
|
-
type: string;
|
|
29
|
-
}) => void;
|
|
30
|
-
updateAssetTypeAttachments: (state: ModelState<string, Stored<AssetTypeAttachment>>, action: {
|
|
31
|
-
payload: Stored<AssetTypeAttachment>[];
|
|
32
|
-
type: string;
|
|
33
|
-
}) => void;
|
|
34
|
-
deleteAssetTypeAttachment: (state: ModelState<string, Stored<AssetTypeAttachment>>, action: {
|
|
35
|
-
payload: string;
|
|
36
|
-
type: string;
|
|
37
|
-
}) => void;
|
|
38
|
-
deleteAssetTypeAttachments: (state: ModelState<string, Stored<AssetTypeAttachment>>, action: {
|
|
39
|
-
payload: string[];
|
|
40
|
-
type: string;
|
|
41
|
-
}) => void;
|
|
6
|
+
initializeAssetTypeAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeAttachmentState, import('..').InitializePayloadAction<Stored<AssetTypeAttachment>>>;
|
|
7
|
+
addAssetTypeAttachment: import('@reduxjs/toolkit').CaseReducer<AssetTypeAttachmentState, import('..').AddOnePayloadAction<Stored<AssetTypeAttachment>>>;
|
|
8
|
+
addAssetTypeAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeAttachmentState, import('..').AddManyPayloadAction<Stored<AssetTypeAttachment>>>;
|
|
9
|
+
setAssetTypeAttachment: import('@reduxjs/toolkit').CaseReducer<AssetTypeAttachmentState, import('..').SetOnePayloadAction<Stored<AssetTypeAttachment>>>;
|
|
10
|
+
setAssetTypeAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeAttachmentState, import('..').SetManyPayloadAction<Stored<AssetTypeAttachment>>>;
|
|
11
|
+
updateAssetTypeAttachment: import('@reduxjs/toolkit').CaseReducer<AssetTypeAttachmentState, import('..').UpdateOnePayloadAction<Stored<AssetTypeAttachment>>>;
|
|
12
|
+
updateAssetTypeAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeAttachmentState, import('..').UpdateManyPayloadAction<Stored<AssetTypeAttachment>>>;
|
|
13
|
+
deleteAssetTypeAttachment: import('@reduxjs/toolkit').CaseReducer<AssetTypeAttachmentState, import('..').DeleteOnePayloadAction<string>>;
|
|
14
|
+
deleteAssetTypeAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeAttachmentState, import('..').DeleteManyPayloadAction<string>>;
|
|
42
15
|
}, "assetTypeAttachments", "assetTypeAttachments", import('@reduxjs/toolkit').SliceSelectors<AssetTypeAttachmentState>>;
|
|
43
16
|
export declare const initializeAssetTypeAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeAttachment>[], "assetTypeAttachments/initializeAssetTypeAttachments">, addAssetTypeAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeAttachment>, "assetTypeAttachments/addAssetTypeAttachment">, addAssetTypeAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeAttachment>[], "assetTypeAttachments/addAssetTypeAttachments">, setAssetTypeAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeAttachment>, "assetTypeAttachments/setAssetTypeAttachment">, setAssetTypeAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeAttachment>[], "assetTypeAttachments/setAssetTypeAttachments">, updateAssetTypeAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeAttachment>, "assetTypeAttachments/updateAssetTypeAttachment">, updateAssetTypeAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeAttachment>[], "assetTypeAttachments/updateAssetTypeAttachments">, deleteAssetTypeAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "assetTypeAttachments/deleteAssetTypeAttachment">, deleteAssetTypeAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "assetTypeAttachments/deleteAssetTypeAttachments">;
|
|
44
17
|
export declare const selectAssetTypeAttachmentMapping: (state: OvermapRootState) => Record<string, Stored<AssetTypeAttachment>>;
|
|
45
18
|
export declare const selectAssetTypeAttachments: OvermapSelector<Stored<AssetTypeAttachment>[]>;
|
|
46
19
|
export declare const selectAssetTypeAttachmentById: OvermapSelectorWithArgs<AssetTypeAttachment["uuid"], Stored<AssetTypeAttachment> | undefined>;
|
|
47
|
-
export declare const
|
|
20
|
+
export declare const selectAssetTypeAttachmentsByIds: (uuids: string[]) => (state: any) => Stored<AssetTypeAttachment>[];
|
|
21
|
+
export declare const selectAttachmentsOfAssetType: OvermapSelectorWithArgs<AssetTypeAttachment["uuid"], Stored<AssetTypeAttachment>[]>;
|
|
48
22
|
export declare const assetTypeAttachmentReducer: import('redux').Reducer<AssetTypeAttachmentState>;
|
|
@@ -1,50 +1,22 @@
|
|
|
1
1
|
import { AssetTypeFieldValues, AssetTypeFieldValuesAttachment, Stored } from '../../typings';
|
|
2
|
-
import { ModelState } from '../adapters';
|
|
3
2
|
import { OvermapRootState, OvermapSelectorWithArgs } from '../typings';
|
|
3
|
+
import { ModelState } from '../adapters';
|
|
4
4
|
export type AssetTypeFieldValuesAttachmentState = ModelState<AssetTypeFieldValuesAttachment["uuid"], Stored<AssetTypeFieldValuesAttachment>>;
|
|
5
5
|
export declare const assetTypeFieldValuesAttachmentSlice: import('@reduxjs/toolkit').Slice<AssetTypeFieldValuesAttachmentState, {
|
|
6
|
-
initializeAssetTypeFieldValuesAttachments: (
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
payload: Stored<AssetTypeFieldValuesAttachment>[];
|
|
16
|
-
type: string;
|
|
17
|
-
}) => void;
|
|
18
|
-
setAssetTypeFieldValuesAttachment: (state: ModelState<string, Stored<AssetTypeFieldValuesAttachment>>, action: {
|
|
19
|
-
payload: Stored<AssetTypeFieldValuesAttachment>;
|
|
20
|
-
type: string;
|
|
21
|
-
}) => void;
|
|
22
|
-
setAssetTypeFieldValuesAttachments: (state: ModelState<string, Stored<AssetTypeFieldValuesAttachment>>, action: {
|
|
23
|
-
payload: Stored<AssetTypeFieldValuesAttachment>[];
|
|
24
|
-
type: string;
|
|
25
|
-
}) => void;
|
|
26
|
-
updateAssetTypeFieldValuesAttachment: (state: ModelState<string, Stored<AssetTypeFieldValuesAttachment>>, action: {
|
|
27
|
-
payload: Stored<AssetTypeFieldValuesAttachment>;
|
|
28
|
-
type: string;
|
|
29
|
-
}) => void;
|
|
30
|
-
updateAssetTypeFieldValuesAttachments: (state: ModelState<string, Stored<AssetTypeFieldValuesAttachment>>, action: {
|
|
31
|
-
payload: Stored<AssetTypeFieldValuesAttachment>[];
|
|
32
|
-
type: string;
|
|
33
|
-
}) => void;
|
|
34
|
-
deleteAssetTypeFieldValuesAttachment: (state: ModelState<string, Stored<AssetTypeFieldValuesAttachment>>, action: {
|
|
35
|
-
payload: string;
|
|
36
|
-
type: string;
|
|
37
|
-
}) => void;
|
|
38
|
-
deleteAssetTypeFieldValuesAttachments: (state: ModelState<string, Stored<AssetTypeFieldValuesAttachment>>, action: {
|
|
39
|
-
payload: string[];
|
|
40
|
-
type: string;
|
|
41
|
-
}) => void;
|
|
6
|
+
initializeAssetTypeFieldValuesAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesAttachmentState, import('..').InitializePayloadAction<Stored<AssetTypeFieldValuesAttachment>>>;
|
|
7
|
+
addAssetTypeFieldValuesAttachment: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesAttachmentState, import('..').AddOnePayloadAction<Stored<AssetTypeFieldValuesAttachment>>>;
|
|
8
|
+
addAssetTypeFieldValuesAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesAttachmentState, import('..').AddManyPayloadAction<Stored<AssetTypeFieldValuesAttachment>>>;
|
|
9
|
+
setAssetTypeFieldValuesAttachment: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesAttachmentState, import('..').SetOnePayloadAction<Stored<AssetTypeFieldValuesAttachment>>>;
|
|
10
|
+
setAssetTypeFieldValuesAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesAttachmentState, import('..').SetManyPayloadAction<Stored<AssetTypeFieldValuesAttachment>>>;
|
|
11
|
+
updateAssetTypeFieldValuesAttachment: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesAttachmentState, import('..').UpdateOnePayloadAction<Stored<AssetTypeFieldValuesAttachment>>>;
|
|
12
|
+
updateAssetTypeFieldValuesAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesAttachmentState, import('..').UpdateManyPayloadAction<Stored<AssetTypeFieldValuesAttachment>>>;
|
|
13
|
+
deleteAssetTypeFieldValuesAttachment: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesAttachmentState, import('..').DeleteOnePayloadAction<string>>;
|
|
14
|
+
deleteAssetTypeFieldValuesAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesAttachmentState, import('..').DeleteManyPayloadAction<string>>;
|
|
42
15
|
}, "assetTypeFieldValuesAttachments", "assetTypeFieldValuesAttachments", import('@reduxjs/toolkit').SliceSelectors<AssetTypeFieldValuesAttachmentState>>;
|
|
43
16
|
export declare const initializeAssetTypeFieldValuesAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValuesAttachment>[], "assetTypeFieldValuesAttachments/initializeAssetTypeFieldValuesAttachments">, addAssetTypeFieldValuesAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValuesAttachment>, "assetTypeFieldValuesAttachments/addAssetTypeFieldValuesAttachment">, addAssetTypeFieldValuesAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValuesAttachment>[], "assetTypeFieldValuesAttachments/addAssetTypeFieldValuesAttachments">, setAssetTypeFieldValuesAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValuesAttachment>, "assetTypeFieldValuesAttachments/setAssetTypeFieldValuesAttachment">, setAssetTypeFieldValuesAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValuesAttachment>[], "assetTypeFieldValuesAttachments/setAssetTypeFieldValuesAttachments">, updateAssetTypeFieldValuesAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValuesAttachment>, "assetTypeFieldValuesAttachments/updateAssetTypeFieldValuesAttachment">, updateAssetTypeFieldValuesAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValuesAttachment>[], "assetTypeFieldValuesAttachments/updateAssetTypeFieldValuesAttachments">, deleteAssetTypeFieldValuesAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "assetTypeFieldValuesAttachments/deleteAssetTypeFieldValuesAttachment">, deleteAssetTypeFieldValuesAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "assetTypeFieldValuesAttachments/deleteAssetTypeFieldValuesAttachments">;
|
|
44
17
|
export declare const selectAssetTypeFieldValuesAttachmentsMapping: (state: OvermapRootState) => Record<string, Stored<AssetTypeFieldValuesAttachment>>;
|
|
45
18
|
export declare const selectAssetTypeFieldValuesAttachments: ((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
22
|
assetStageCompletionReducer: import('./assetStageCompletionSlice').AssetStageCompletionState;
|
|
@@ -67,9 +39,10 @@ export declare const selectAssetTypeFieldValuesAttachments: ((state: {
|
|
|
67
39
|
formRevisionAttachmentReducer: import('./formRevisionAttachmentSlice').FormRevisionAttachmentState;
|
|
68
40
|
formSubmissionAttachmentReducer: import('./formSubmissionAttachmentSlice').FormSubmissionAttachmentState;
|
|
69
41
|
formSubmissionReducer: import('./formSubmissionSlice').FormSubmissionState;
|
|
42
|
+
formIdentifierReducer: import('./formIdentifierSlice').FormIdentifierState;
|
|
43
|
+
formIdentifierValueReducer: import('./formIdentifierValueSlice').FormIdentifierValueState;
|
|
70
44
|
userReducer: import('./userSlice').UserState;
|
|
71
45
|
emailDomainsReducer: import('./emailDomainsSlice').EmailDomainState;
|
|
72
|
-
licenseReducer: import('./licenseSlice').LicenseState;
|
|
73
46
|
documentsReducer: import('./documentSlice').DocumentState;
|
|
74
47
|
documentAttachmentReducer: import('./documentAttachmentSlice').DocumentAttachmentState;
|
|
75
48
|
teamReducer: import('./teamSlice').TeamState;
|
|
@@ -83,22 +56,29 @@ export declare const selectAssetTypeFieldValuesAttachments: ((state: {
|
|
|
83
56
|
issueTypeFieldValuesReducer: import('./issueTypeFieldValuesSlice').IssueTypeFieldValuesState;
|
|
84
57
|
issueTypeFieldsAttachmentReducer: import('./issueTypeFieldsAttachmentSlice').IssueTypeFieldsAttachmentState;
|
|
85
58
|
issueTypeFieldValuesAttachmentReducer: import('./issueTypeFieldValuesAttachmentSlice').IssueTypeFieldValuesAttachmentState;
|
|
59
|
+
issueTypeIdentifierReducer: import('./issueTypeIdentifierSlice').IssueTypeIdentifierState;
|
|
60
|
+
issueTypeIdentifierValueReducer: import('./issueTypeIdentifierValueSlice').IssueTypeIdentifierValueState;
|
|
61
|
+
issueTypeStatusReducer: import('./issueTypeStatusSlice').IssueTypeStatusState;
|
|
86
62
|
assetTypeFieldsReducer: import('./assetTypeFieldsSlice').AssetTypeFieldsState;
|
|
87
63
|
assetTypeFieldValuesReducer: import('./assetTypeFieldValuesSlice').AssetTypeFieldValuesState;
|
|
88
64
|
assetTypeFieldsAttachmentReducer: import('./assetTypeFieldsAttachmentSlice').AssetTypeFieldsAttachmentState;
|
|
89
65
|
assetTypeFieldValuesAttachmentReducer: AssetTypeFieldValuesAttachmentState;
|
|
66
|
+
assetTypeIdentifierReducer: import('./assetTypeIdentifierSlice').AssetTypeIdentifierState;
|
|
67
|
+
assetTypeIdentifierValueReducer: import('./assetTypeIdentifierValueSlice').AssetTypeIdentifierValueState;
|
|
68
|
+
assetTypeStatusReducer: import('./assetTypeStatusSlice').AssetTypeStatusState;
|
|
69
|
+
assetProcedureTypeReducer: import('./assetProcedureTypeSlice').AssetProcedureTypeState;
|
|
90
70
|
assetProcedureReducer: import('./assetProcedureSlice').AssetProcedureState;
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
assetProcedureAttachmentReducer: import('./assetProcedureAttachmentSlice').AssetProcedureAttachmentState;
|
|
71
|
+
assetProcedureTypeFieldsReducer: import('./assetProcedureTypeFieldsSlice').AssetProcedureTypeFieldsState;
|
|
72
|
+
assetProcedureTypeFieldValuesReducer: import('./assetProcedureTypeFieldValuesSlice').AssetProcedureTypeFieldValuesState;
|
|
73
|
+
assetProcedureTypeFieldsAttachmentReducer: import('./assetProcedureTypeFieldsAttachmentSlice').AssetProcedureTypeFieldsAttachmentState;
|
|
74
|
+
assetProcedureTypeFieldValuesAttachmentReducer: import('./assetProcedureTypeFieldValuesAttachmentSlice').AssetProcedureTypeFieldValuesAttachmentState;
|
|
75
|
+
assetProcedureTypeAttachmentReducer: import('./assetProcedureTypeAttachmentSlice').AssetProcedureTypeAttachmentState;
|
|
97
76
|
assetProcedureStepFieldsAttachmentReducer: import('./assetProcedureStepFieldsAttachmentSlice').AssetProcedureStepFieldsAttachmentState;
|
|
98
77
|
assetProcedureStepFieldsReducer: import('./assetProcedureStepFieldsSlice').AssetProcedureStepFieldsState;
|
|
99
78
|
assetProcedureStepFieldValuesAttachmentReducer: import('./assetProcedureStepFieldValuesAttachmentSlice').AssetProcedureStepFieldValuesAttachmentState;
|
|
100
79
|
assetProcedureStepFieldValuesReducer: import('./assetProcedureStepFieldValuesSlice').AssetProcedureStepFieldValuesState;
|
|
101
80
|
assetProcedureStepReducer: import('./assetProcedureStepSlice').AssetProcedureStepState;
|
|
81
|
+
teamMembershipReducer: import('./teamMembershipSlice').TeamMembershipState;
|
|
102
82
|
outboxReducer: import('./outboxSlice').OutboxState;
|
|
103
83
|
fileReducer: import('./fileSlice').FileState;
|
|
104
84
|
authReducer: import('./authSlice').AuthState;
|
|
@@ -126,6 +106,6 @@ export declare const selectAssetTypeFieldValuesAttachments: ((state: {
|
|
|
126
106
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
127
107
|
};
|
|
128
108
|
export declare const selectAssetTypeFieldValuesAttachmentById: OvermapSelectorWithArgs<AssetTypeFieldValuesAttachment["uuid"], Stored<AssetTypeFieldValuesAttachment> | undefined>;
|
|
129
|
-
export declare const selectAssetTypeFieldValuesAttachmentsByIds: (
|
|
109
|
+
export declare const selectAssetTypeFieldValuesAttachmentsByIds: (uuids: string[]) => (state: any) => Stored<AssetTypeFieldValuesAttachment>[];
|
|
130
110
|
export declare const selectAttachmentsOfAssetTypeFieldValues: OvermapSelectorWithArgs<AssetTypeFieldValues["uuid"], Stored<AssetTypeFieldValuesAttachment>[]>;
|
|
131
111
|
export declare const assetTypeFieldValuesAttachmentReducer: import('redux').Reducer<AssetTypeFieldValuesAttachmentState>;
|
|
@@ -1,50 +1,22 @@
|
|
|
1
1
|
import { Asset, AssetType, AssetTypeFieldValues, Stored } from '../../typings';
|
|
2
|
-
import { ModelState } from '../adapters';
|
|
3
2
|
import { OvermapRootState, OvermapSelectorWithArgs } from '../typings';
|
|
3
|
+
import { ModelState } from '../adapters';
|
|
4
4
|
export type AssetTypeFieldValuesState = ModelState<AssetTypeFieldValues["uuid"], Stored<AssetTypeFieldValues>>;
|
|
5
5
|
export declare const assetTypeFieldValuesSlice: import('@reduxjs/toolkit').Slice<AssetTypeFieldValuesState, {
|
|
6
|
-
initializeAssetTypeFieldValues: (
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
payload: Stored<AssetTypeFieldValues>[];
|
|
16
|
-
type: string;
|
|
17
|
-
}) => void;
|
|
18
|
-
setAssetTypeFieldValues: (state: ModelState<string, Stored<AssetTypeFieldValues>>, action: {
|
|
19
|
-
payload: Stored<AssetTypeFieldValues>;
|
|
20
|
-
type: string;
|
|
21
|
-
}) => void;
|
|
22
|
-
setAssetTypeFieldValuesMany: (state: ModelState<string, Stored<AssetTypeFieldValues>>, action: {
|
|
23
|
-
payload: Stored<AssetTypeFieldValues>[];
|
|
24
|
-
type: string;
|
|
25
|
-
}) => void;
|
|
26
|
-
updateAssetTypeFieldValues: (state: ModelState<string, Stored<AssetTypeFieldValues>>, action: {
|
|
27
|
-
payload: Stored<AssetTypeFieldValues>;
|
|
28
|
-
type: string;
|
|
29
|
-
}) => void;
|
|
30
|
-
updateAssetTypeFieldValuesMany: (state: ModelState<string, Stored<AssetTypeFieldValues>>, action: {
|
|
31
|
-
payload: Stored<AssetTypeFieldValues>[];
|
|
32
|
-
type: string;
|
|
33
|
-
}) => void;
|
|
34
|
-
deleteAssetTypeFieldValues: (state: ModelState<string, Stored<AssetTypeFieldValues>>, action: {
|
|
35
|
-
payload: string;
|
|
36
|
-
type: string;
|
|
37
|
-
}) => void;
|
|
38
|
-
deleteAssetTypeFieldValuesMany: (state: ModelState<string, Stored<AssetTypeFieldValues>>, action: {
|
|
39
|
-
payload: string[];
|
|
40
|
-
type: string;
|
|
41
|
-
}) => void;
|
|
6
|
+
initializeAssetTypeFieldValues: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesState, import('..').InitializePayloadAction<Stored<AssetTypeFieldValues>>>;
|
|
7
|
+
addAssetTypeFieldValues: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesState, import('..').AddOnePayloadAction<Stored<AssetTypeFieldValues>>>;
|
|
8
|
+
addAssetTypeFieldValuesMany: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesState, import('..').AddManyPayloadAction<Stored<AssetTypeFieldValues>>>;
|
|
9
|
+
setAssetTypeFieldValues: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesState, import('..').SetOnePayloadAction<Stored<AssetTypeFieldValues>>>;
|
|
10
|
+
setAssetTypeFieldValuesMany: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesState, import('..').SetManyPayloadAction<Stored<AssetTypeFieldValues>>>;
|
|
11
|
+
updateAssetTypeFieldValues: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesState, import('..').UpdateOnePayloadAction<Stored<AssetTypeFieldValues>>>;
|
|
12
|
+
updateAssetTypeFieldValuesMany: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesState, import('..').UpdateManyPayloadAction<Stored<AssetTypeFieldValues>>>;
|
|
13
|
+
deleteAssetTypeFieldValues: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesState, import('..').DeleteOnePayloadAction<string>>;
|
|
14
|
+
deleteAssetTypeFieldValuesMany: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldValuesState, import('..').DeleteManyPayloadAction<string>>;
|
|
42
15
|
}, "assetTypeFieldValues", "assetTypeFieldValues", import('@reduxjs/toolkit').SliceSelectors<AssetTypeFieldValuesState>>;
|
|
43
16
|
export declare const initializeAssetTypeFieldValues: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValues>[], "assetTypeFieldValues/initializeAssetTypeFieldValues">, addAssetTypeFieldValues: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValues>, "assetTypeFieldValues/addAssetTypeFieldValues">, addAssetTypeFieldValuesMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValues>[], "assetTypeFieldValues/addAssetTypeFieldValuesMany">, setAssetTypeFieldValues: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValues>, "assetTypeFieldValues/setAssetTypeFieldValues">, setAssetTypeFieldValuesMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValues>[], "assetTypeFieldValues/setAssetTypeFieldValuesMany">, updateAssetTypeFieldValues: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValues>, "assetTypeFieldValues/updateAssetTypeFieldValues">, updateAssetTypeFieldValuesMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldValues>[], "assetTypeFieldValues/updateAssetTypeFieldValuesMany">, deleteAssetTypeFieldValues: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "assetTypeFieldValues/deleteAssetTypeFieldValues">, deleteAssetTypeFieldValuesMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "assetTypeFieldValues/deleteAssetTypeFieldValuesMany">;
|
|
44
17
|
export declare const selectAssetTypeFieldValuesMapping: (state: OvermapRootState) => Record<string, Stored<AssetTypeFieldValues>>;
|
|
45
18
|
export declare const selectAssetTypeFieldValues: ((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
22
|
assetStageCompletionReducer: import('./assetStageCompletionSlice').AssetStageCompletionState;
|
|
@@ -67,9 +39,10 @@ export declare const selectAssetTypeFieldValues: ((state: {
|
|
|
67
39
|
formRevisionAttachmentReducer: import('./formRevisionAttachmentSlice').FormRevisionAttachmentState;
|
|
68
40
|
formSubmissionAttachmentReducer: import('./formSubmissionAttachmentSlice').FormSubmissionAttachmentState;
|
|
69
41
|
formSubmissionReducer: import('./formSubmissionSlice').FormSubmissionState;
|
|
42
|
+
formIdentifierReducer: import('./formIdentifierSlice').FormIdentifierState;
|
|
43
|
+
formIdentifierValueReducer: import('./formIdentifierValueSlice').FormIdentifierValueState;
|
|
70
44
|
userReducer: import('./userSlice').UserState;
|
|
71
45
|
emailDomainsReducer: import('./emailDomainsSlice').EmailDomainState;
|
|
72
|
-
licenseReducer: import('./licenseSlice').LicenseState;
|
|
73
46
|
documentsReducer: import('./documentSlice').DocumentState;
|
|
74
47
|
documentAttachmentReducer: import('./documentAttachmentSlice').DocumentAttachmentState;
|
|
75
48
|
teamReducer: import('./teamSlice').TeamState;
|
|
@@ -83,22 +56,29 @@ export declare const selectAssetTypeFieldValues: ((state: {
|
|
|
83
56
|
issueTypeFieldValuesReducer: import('./issueTypeFieldValuesSlice').IssueTypeFieldValuesState;
|
|
84
57
|
issueTypeFieldsAttachmentReducer: import('./issueTypeFieldsAttachmentSlice').IssueTypeFieldsAttachmentState;
|
|
85
58
|
issueTypeFieldValuesAttachmentReducer: import('./issueTypeFieldValuesAttachmentSlice').IssueTypeFieldValuesAttachmentState;
|
|
59
|
+
issueTypeIdentifierReducer: import('./issueTypeIdentifierSlice').IssueTypeIdentifierState;
|
|
60
|
+
issueTypeIdentifierValueReducer: import('./issueTypeIdentifierValueSlice').IssueTypeIdentifierValueState;
|
|
61
|
+
issueTypeStatusReducer: import('./issueTypeStatusSlice').IssueTypeStatusState;
|
|
86
62
|
assetTypeFieldsReducer: import('./assetTypeFieldsSlice').AssetTypeFieldsState;
|
|
87
63
|
assetTypeFieldValuesReducer: AssetTypeFieldValuesState;
|
|
88
64
|
assetTypeFieldsAttachmentReducer: import('./assetTypeFieldsAttachmentSlice').AssetTypeFieldsAttachmentState;
|
|
89
65
|
assetTypeFieldValuesAttachmentReducer: import('./assetTypeFieldValuesAttachmentSlice').AssetTypeFieldValuesAttachmentState;
|
|
66
|
+
assetTypeIdentifierReducer: import('./assetTypeIdentifierSlice').AssetTypeIdentifierState;
|
|
67
|
+
assetTypeIdentifierValueReducer: import('./assetTypeIdentifierValueSlice').AssetTypeIdentifierValueState;
|
|
68
|
+
assetTypeStatusReducer: import('./assetTypeStatusSlice').AssetTypeStatusState;
|
|
69
|
+
assetProcedureTypeReducer: import('./assetProcedureTypeSlice').AssetProcedureTypeState;
|
|
90
70
|
assetProcedureReducer: import('./assetProcedureSlice').AssetProcedureState;
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
assetProcedureAttachmentReducer: import('./assetProcedureAttachmentSlice').AssetProcedureAttachmentState;
|
|
71
|
+
assetProcedureTypeFieldsReducer: import('./assetProcedureTypeFieldsSlice').AssetProcedureTypeFieldsState;
|
|
72
|
+
assetProcedureTypeFieldValuesReducer: import('./assetProcedureTypeFieldValuesSlice').AssetProcedureTypeFieldValuesState;
|
|
73
|
+
assetProcedureTypeFieldsAttachmentReducer: import('./assetProcedureTypeFieldsAttachmentSlice').AssetProcedureTypeFieldsAttachmentState;
|
|
74
|
+
assetProcedureTypeFieldValuesAttachmentReducer: import('./assetProcedureTypeFieldValuesAttachmentSlice').AssetProcedureTypeFieldValuesAttachmentState;
|
|
75
|
+
assetProcedureTypeAttachmentReducer: import('./assetProcedureTypeAttachmentSlice').AssetProcedureTypeAttachmentState;
|
|
97
76
|
assetProcedureStepFieldsAttachmentReducer: import('./assetProcedureStepFieldsAttachmentSlice').AssetProcedureStepFieldsAttachmentState;
|
|
98
77
|
assetProcedureStepFieldsReducer: import('./assetProcedureStepFieldsSlice').AssetProcedureStepFieldsState;
|
|
99
78
|
assetProcedureStepFieldValuesAttachmentReducer: import('./assetProcedureStepFieldValuesAttachmentSlice').AssetProcedureStepFieldValuesAttachmentState;
|
|
100
79
|
assetProcedureStepFieldValuesReducer: import('./assetProcedureStepFieldValuesSlice').AssetProcedureStepFieldValuesState;
|
|
101
80
|
assetProcedureStepReducer: import('./assetProcedureStepSlice').AssetProcedureStepState;
|
|
81
|
+
teamMembershipReducer: import('./teamMembershipSlice').TeamMembershipState;
|
|
102
82
|
outboxReducer: import('./outboxSlice').OutboxState;
|
|
103
83
|
fileReducer: import('./fileSlice').FileState;
|
|
104
84
|
authReducer: import('./authSlice').AuthState;
|
|
@@ -128,4 +108,5 @@ export declare const selectAssetTypeFieldValues: ((state: {
|
|
|
128
108
|
export declare const selectAssetTypeFieldValuesOfAsset: OvermapSelectorWithArgs<Asset["uuid"], Stored<AssetTypeFieldValues>[]>;
|
|
129
109
|
export declare const selectAssetTypeValuesOfAssetType: OvermapSelectorWithArgs<AssetType["uuid"], Stored<AssetTypeFieldValues>[]>;
|
|
130
110
|
export declare const selectAssetTypeFieldValuesById: OvermapSelectorWithArgs<AssetTypeFieldValues["uuid"], Stored<AssetTypeFieldValues> | undefined>;
|
|
111
|
+
export declare const selectAssetTypeFieldValuesByIds: (uuids: string[]) => (state: any) => Stored<AssetTypeFieldValues>[];
|
|
131
112
|
export declare const assetTypeFieldValuesReducer: import('redux').Reducer<AssetTypeFieldValuesState>;
|
|
@@ -1,50 +1,22 @@
|
|
|
1
1
|
import { AssetTypeFields, AssetTypeFieldsAttachment, Stored } from '../../typings';
|
|
2
|
-
import { ModelState } from '../adapters';
|
|
3
2
|
import { OvermapRootState, OvermapSelectorWithArgs } from '../typings';
|
|
3
|
+
import { ModelState } from '../adapters';
|
|
4
4
|
export type AssetTypeFieldsAttachmentState = ModelState<AssetTypeFieldsAttachment["uuid"], Stored<AssetTypeFieldsAttachment>>;
|
|
5
5
|
export declare const assetTypeFieldsAttachmentSlice: import('@reduxjs/toolkit').Slice<AssetTypeFieldsAttachmentState, {
|
|
6
|
-
initializeAssetTypeFieldsAttachments: (
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
payload: Stored<AssetTypeFieldsAttachment>[];
|
|
16
|
-
type: string;
|
|
17
|
-
}) => void;
|
|
18
|
-
setAssetTypeFieldsAttachment: (state: ModelState<string, Stored<AssetTypeFieldsAttachment>>, action: {
|
|
19
|
-
payload: Stored<AssetTypeFieldsAttachment>;
|
|
20
|
-
type: string;
|
|
21
|
-
}) => void;
|
|
22
|
-
setAssetTypeFieldsAttachments: (state: ModelState<string, Stored<AssetTypeFieldsAttachment>>, action: {
|
|
23
|
-
payload: Stored<AssetTypeFieldsAttachment>[];
|
|
24
|
-
type: string;
|
|
25
|
-
}) => void;
|
|
26
|
-
updateAssetTypeFieldsAttachment: (state: ModelState<string, Stored<AssetTypeFieldsAttachment>>, action: {
|
|
27
|
-
payload: Stored<AssetTypeFieldsAttachment>;
|
|
28
|
-
type: string;
|
|
29
|
-
}) => void;
|
|
30
|
-
updateAssetTypeFieldsAttachments: (state: ModelState<string, Stored<AssetTypeFieldsAttachment>>, action: {
|
|
31
|
-
payload: Stored<AssetTypeFieldsAttachment>[];
|
|
32
|
-
type: string;
|
|
33
|
-
}) => void;
|
|
34
|
-
deleteAssetTypeFieldsAttachment: (state: ModelState<string, Stored<AssetTypeFieldsAttachment>>, action: {
|
|
35
|
-
payload: string;
|
|
36
|
-
type: string;
|
|
37
|
-
}) => void;
|
|
38
|
-
deleteAssetTypeFieldsAttachments: (state: ModelState<string, Stored<AssetTypeFieldsAttachment>>, action: {
|
|
39
|
-
payload: string[];
|
|
40
|
-
type: string;
|
|
41
|
-
}) => void;
|
|
6
|
+
initializeAssetTypeFieldsAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsAttachmentState, import('..').InitializePayloadAction<Stored<AssetTypeFieldsAttachment>>>;
|
|
7
|
+
addAssetTypeFieldsAttachment: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsAttachmentState, import('..').AddOnePayloadAction<Stored<AssetTypeFieldsAttachment>>>;
|
|
8
|
+
addAssetTypeFieldsAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsAttachmentState, import('..').AddManyPayloadAction<Stored<AssetTypeFieldsAttachment>>>;
|
|
9
|
+
setAssetTypeFieldsAttachment: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsAttachmentState, import('..').SetOnePayloadAction<Stored<AssetTypeFieldsAttachment>>>;
|
|
10
|
+
setAssetTypeFieldsAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsAttachmentState, import('..').SetManyPayloadAction<Stored<AssetTypeFieldsAttachment>>>;
|
|
11
|
+
updateAssetTypeFieldsAttachment: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsAttachmentState, import('..').UpdateOnePayloadAction<Stored<AssetTypeFieldsAttachment>>>;
|
|
12
|
+
updateAssetTypeFieldsAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsAttachmentState, import('..').UpdateManyPayloadAction<Stored<AssetTypeFieldsAttachment>>>;
|
|
13
|
+
deleteAssetTypeFieldsAttachment: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsAttachmentState, import('..').DeleteOnePayloadAction<string>>;
|
|
14
|
+
deleteAssetTypeFieldsAttachments: import('@reduxjs/toolkit').CaseReducer<AssetTypeFieldsAttachmentState, import('..').DeleteManyPayloadAction<string>>;
|
|
42
15
|
}, "assetTypeFieldsAttachments", "assetTypeFieldsAttachments", import('@reduxjs/toolkit').SliceSelectors<AssetTypeFieldsAttachmentState>>;
|
|
43
16
|
export declare const initializeAssetTypeFieldsAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldsAttachment>[], "assetTypeFieldsAttachments/initializeAssetTypeFieldsAttachments">, addAssetTypeFieldsAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldsAttachment>, "assetTypeFieldsAttachments/addAssetTypeFieldsAttachment">, addAssetTypeFieldsAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldsAttachment>[], "assetTypeFieldsAttachments/addAssetTypeFieldsAttachments">, setAssetTypeFieldsAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldsAttachment>, "assetTypeFieldsAttachments/setAssetTypeFieldsAttachment">, setAssetTypeFieldsAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldsAttachment>[], "assetTypeFieldsAttachments/setAssetTypeFieldsAttachments">, updateAssetTypeFieldsAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldsAttachment>, "assetTypeFieldsAttachments/updateAssetTypeFieldsAttachment">, updateAssetTypeFieldsAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<Stored<AssetTypeFieldsAttachment>[], "assetTypeFieldsAttachments/updateAssetTypeFieldsAttachments">, deleteAssetTypeFieldsAttachment: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "assetTypeFieldsAttachments/deleteAssetTypeFieldsAttachment">, deleteAssetTypeFieldsAttachments: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "assetTypeFieldsAttachments/deleteAssetTypeFieldsAttachments">;
|
|
44
17
|
export declare const selectAssetTypeFieldsAttachmentsMapping: (state: OvermapRootState) => Record<string, Stored<AssetTypeFieldsAttachment>>;
|
|
45
18
|
export declare const selectAssetTypeFieldsAttachments: ((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
22
|
assetStageCompletionReducer: import('./assetStageCompletionSlice').AssetStageCompletionState;
|
|
@@ -67,9 +39,10 @@ export declare const selectAssetTypeFieldsAttachments: ((state: {
|
|
|
67
39
|
formRevisionAttachmentReducer: import('./formRevisionAttachmentSlice').FormRevisionAttachmentState;
|
|
68
40
|
formSubmissionAttachmentReducer: import('./formSubmissionAttachmentSlice').FormSubmissionAttachmentState;
|
|
69
41
|
formSubmissionReducer: import('./formSubmissionSlice').FormSubmissionState;
|
|
42
|
+
formIdentifierReducer: import('./formIdentifierSlice').FormIdentifierState;
|
|
43
|
+
formIdentifierValueReducer: import('./formIdentifierValueSlice').FormIdentifierValueState;
|
|
70
44
|
userReducer: import('./userSlice').UserState;
|
|
71
45
|
emailDomainsReducer: import('./emailDomainsSlice').EmailDomainState;
|
|
72
|
-
licenseReducer: import('./licenseSlice').LicenseState;
|
|
73
46
|
documentsReducer: import('./documentSlice').DocumentState;
|
|
74
47
|
documentAttachmentReducer: import('./documentAttachmentSlice').DocumentAttachmentState;
|
|
75
48
|
teamReducer: import('./teamSlice').TeamState;
|
|
@@ -83,22 +56,29 @@ export declare const selectAssetTypeFieldsAttachments: ((state: {
|
|
|
83
56
|
issueTypeFieldValuesReducer: import('./issueTypeFieldValuesSlice').IssueTypeFieldValuesState;
|
|
84
57
|
issueTypeFieldsAttachmentReducer: import('./issueTypeFieldsAttachmentSlice').IssueTypeFieldsAttachmentState;
|
|
85
58
|
issueTypeFieldValuesAttachmentReducer: import('./issueTypeFieldValuesAttachmentSlice').IssueTypeFieldValuesAttachmentState;
|
|
59
|
+
issueTypeIdentifierReducer: import('./issueTypeIdentifierSlice').IssueTypeIdentifierState;
|
|
60
|
+
issueTypeIdentifierValueReducer: import('./issueTypeIdentifierValueSlice').IssueTypeIdentifierValueState;
|
|
61
|
+
issueTypeStatusReducer: import('./issueTypeStatusSlice').IssueTypeStatusState;
|
|
86
62
|
assetTypeFieldsReducer: import('./assetTypeFieldsSlice').AssetTypeFieldsState;
|
|
87
63
|
assetTypeFieldValuesReducer: import('./assetTypeFieldValuesSlice').AssetTypeFieldValuesState;
|
|
88
64
|
assetTypeFieldsAttachmentReducer: AssetTypeFieldsAttachmentState;
|
|
89
65
|
assetTypeFieldValuesAttachmentReducer: import('./assetTypeFieldValuesAttachmentSlice').AssetTypeFieldValuesAttachmentState;
|
|
66
|
+
assetTypeIdentifierReducer: import('./assetTypeIdentifierSlice').AssetTypeIdentifierState;
|
|
67
|
+
assetTypeIdentifierValueReducer: import('./assetTypeIdentifierValueSlice').AssetTypeIdentifierValueState;
|
|
68
|
+
assetTypeStatusReducer: import('./assetTypeStatusSlice').AssetTypeStatusState;
|
|
69
|
+
assetProcedureTypeReducer: import('./assetProcedureTypeSlice').AssetProcedureTypeState;
|
|
90
70
|
assetProcedureReducer: import('./assetProcedureSlice').AssetProcedureState;
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
assetProcedureAttachmentReducer: import('./assetProcedureAttachmentSlice').AssetProcedureAttachmentState;
|
|
71
|
+
assetProcedureTypeFieldsReducer: import('./assetProcedureTypeFieldsSlice').AssetProcedureTypeFieldsState;
|
|
72
|
+
assetProcedureTypeFieldValuesReducer: import('./assetProcedureTypeFieldValuesSlice').AssetProcedureTypeFieldValuesState;
|
|
73
|
+
assetProcedureTypeFieldsAttachmentReducer: import('./assetProcedureTypeFieldsAttachmentSlice').AssetProcedureTypeFieldsAttachmentState;
|
|
74
|
+
assetProcedureTypeFieldValuesAttachmentReducer: import('./assetProcedureTypeFieldValuesAttachmentSlice').AssetProcedureTypeFieldValuesAttachmentState;
|
|
75
|
+
assetProcedureTypeAttachmentReducer: import('./assetProcedureTypeAttachmentSlice').AssetProcedureTypeAttachmentState;
|
|
97
76
|
assetProcedureStepFieldsAttachmentReducer: import('./assetProcedureStepFieldsAttachmentSlice').AssetProcedureStepFieldsAttachmentState;
|
|
98
77
|
assetProcedureStepFieldsReducer: import('./assetProcedureStepFieldsSlice').AssetProcedureStepFieldsState;
|
|
99
78
|
assetProcedureStepFieldValuesAttachmentReducer: import('./assetProcedureStepFieldValuesAttachmentSlice').AssetProcedureStepFieldValuesAttachmentState;
|
|
100
79
|
assetProcedureStepFieldValuesReducer: import('./assetProcedureStepFieldValuesSlice').AssetProcedureStepFieldValuesState;
|
|
101
80
|
assetProcedureStepReducer: import('./assetProcedureStepSlice').AssetProcedureStepState;
|
|
81
|
+
teamMembershipReducer: import('./teamMembershipSlice').TeamMembershipState;
|
|
102
82
|
outboxReducer: import('./outboxSlice').OutboxState;
|
|
103
83
|
fileReducer: import('./fileSlice').FileState;
|
|
104
84
|
authReducer: import('./authSlice').AuthState;
|
|
@@ -127,4 +107,5 @@ export declare const selectAssetTypeFieldsAttachments: ((state: {
|
|
|
127
107
|
};
|
|
128
108
|
export declare const selectAttachmentsOfAssetTypeFields: OvermapSelectorWithArgs<AssetTypeFields["uuid"], Stored<AssetTypeFieldsAttachment>[]>;
|
|
129
109
|
export declare const selectAssetTypeFieldsAttachmentById: OvermapSelectorWithArgs<AssetTypeFieldsAttachment["uuid"], Stored<AssetTypeFieldsAttachment> | undefined>;
|
|
110
|
+
export declare const selectAssetTypeFieldsAttachmentsByIds: (uuids: string[]) => (state: any) => Stored<AssetTypeFieldsAttachment>[];
|
|
130
111
|
export declare const assetTypeFieldsAttachmentReducer: import('redux').Reducer<AssetTypeFieldsAttachmentState>;
|