@overmap-ai/core 1.0.81-project-captures.1 → 1.0.81-project-captures.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/overmap-core.js +5432 -5211
- package/dist/overmap-core.umd.cjs +6 -6
- package/dist/sdk/services/CaptureAnalysisItemService.d.ts +24 -0
- package/dist/sdk/services/CaptureAnalysisService.d.ts +26 -0
- package/dist/sdk/services/IssueUpdateService.d.ts +4 -0
- package/dist/sdk/services/index.d.ts +2 -0
- package/dist/store/reducers.d.ts +6 -0
- package/dist/store/slices/assetSlice.d.ts +2 -0
- package/dist/store/slices/assetTypeFieldValuesAttachmentSlice.d.ts +2 -0
- package/dist/store/slices/assetTypeFieldValuesSlice.d.ts +2 -0
- package/dist/store/slices/assetTypeFieldsAttachmentSlice.d.ts +2 -0
- package/dist/store/slices/assetTypeFieldsSlice.d.ts +2 -0
- package/dist/store/slices/assetTypeStatusSlice.d.ts +2 -0
- package/dist/store/slices/captureAnalysisItemSlice.d.ts +22 -0
- package/dist/store/slices/captureAnalysisSlice.d.ts +22 -0
- package/dist/store/slices/emailDomainsSlice.d.ts +2 -0
- package/dist/store/slices/formRevisionAttachmentSlice.d.ts +2 -0
- package/dist/store/slices/formRevisionSlice.d.ts +2 -0
- package/dist/store/slices/formSlice.d.ts +2 -0
- package/dist/store/slices/geoImageSlice.d.ts +2 -0
- package/dist/store/slices/index.d.ts +2 -0
- package/dist/store/slices/issueAssociationSlice.d.ts +2 -0
- package/dist/store/slices/issueTypeFieldValuesAttachmentSlice.d.ts +2 -0
- package/dist/store/slices/issueTypeFieldValuesSlice.d.ts +2 -0
- package/dist/store/slices/issueTypeFieldsAttachmentSlice.d.ts +2 -0
- package/dist/store/slices/issueTypeFieldsSlice.d.ts +2 -0
- package/dist/store/slices/issueTypePrioritySlice.d.ts +2 -0
- package/dist/store/slices/issueTypeStatusSlice.d.ts +2 -0
- package/dist/store/slices/issueUpdateSlice.d.ts +6 -0
- package/dist/store/slices/organizationSlice.d.ts +2 -0
- package/dist/store/slices/procedureFieldValuesSlice.d.ts +2 -0
- package/dist/store/slices/procedureStepAssigneeSlice.d.ts +2 -0
- package/dist/store/slices/procedureStepCommentSlice.d.ts +2 -0
- package/dist/store/slices/procedureStepDefaultAssigneeSlice.d.ts +2 -0
- package/dist/store/slices/procedureStepDefaultReviewerSlice.d.ts +2 -0
- package/dist/store/slices/procedureStepEventSlice.d.ts +2 -0
- package/dist/store/slices/procedureStepFieldValuesAttachmentSlice.d.ts +2 -0
- package/dist/store/slices/procedureStepFieldValuesReviewSlice.d.ts +2 -0
- package/dist/store/slices/procedureStepFieldValuesSlice.d.ts +2 -0
- package/dist/store/slices/procedureStepFieldsAttachmentSlice.d.ts +2 -0
- package/dist/store/slices/procedureStepFieldsSlice.d.ts +4 -0
- package/dist/store/slices/procedureStepReviewerSlice.d.ts +2 -0
- package/dist/store/slices/procedureStepSlice.d.ts +2 -0
- package/dist/store/slices/procedureTypeAttachmentSlice.d.ts +2 -0
- package/dist/store/slices/procedureTypeFieldValuesAttachmentSlice.d.ts +2 -0
- package/dist/store/slices/procedureTypeFieldsAttachmentSlice.d.ts +2 -0
- package/dist/store/slices/projectFileSlice.d.ts +2 -0
- package/dist/store/slices/projectSlice.d.ts +2 -0
- package/dist/store/slices/userSlice.d.ts +2 -0
- package/dist/typings/models/captures.d.ts +22 -0
- package/package.json +1 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { CaptureAnalysisItem, Project } from '../../typings';
|
|
2
|
+
import { BaseSDK } from '../base';
|
|
3
|
+
import { OvermapRootState } from '../../store';
|
|
4
|
+
import { BaseModelApiService } from './BaseModelApiService';
|
|
5
|
+
export declare abstract class CaptureAnalysisItemService<TState extends OvermapRootState, TSDK extends BaseSDK<TState>> extends BaseModelApiService<CaptureAnalysisItem["uuid"], CaptureAnalysisItem, TState, TSDK> {
|
|
6
|
+
name: string;
|
|
7
|
+
url: string;
|
|
8
|
+
actions: {
|
|
9
|
+
addOne: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem, "captureAnalysisItems/addCaptureAnalysisItem">;
|
|
10
|
+
addMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem[], "captureAnalysisItems/addCaptureAnalysisItems">;
|
|
11
|
+
setOne: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem, "captureAnalysisItems/setCaptureAnalysisItem">;
|
|
12
|
+
setMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem[], "captureAnalysisItems/setCaptureAnalysisItems">;
|
|
13
|
+
updateOne: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem, "captureAnalysisItems/updateCaptureAnalysisItem">;
|
|
14
|
+
updateMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem[], "captureAnalysisItems/updateCaptureAnalysisItems">;
|
|
15
|
+
deleteOne: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "captureAnalysisItems/deleteCaptureAnalysisItem">;
|
|
16
|
+
deleteMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "captureAnalysisItems/deleteCaptureAnalysisItems">;
|
|
17
|
+
initialize: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem[], "captureAnalysisItems/initializeCaptureAnalysisItems">;
|
|
18
|
+
};
|
|
19
|
+
selectors: {
|
|
20
|
+
selectById: import('../..').OvermapSelectorWithArgs<string, CaptureAnalysisItem | undefined>;
|
|
21
|
+
selectByIds: (uuids: string[]) => (state: any) => CaptureAnalysisItem[];
|
|
22
|
+
};
|
|
23
|
+
refreshStore(projectUuid: Project["uuid"], signal?: AbortSignal): Promise<CaptureAnalysisItem[]>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Capture, CaptureAnalysis, Project } from '../../typings';
|
|
2
|
+
import { BaseSDK } from '../base';
|
|
3
|
+
import { OvermapRootState } from '../../store';
|
|
4
|
+
import { BaseModelApiService } from './BaseModelApiService';
|
|
5
|
+
export declare abstract class CaptureAnalysisService<TState extends OvermapRootState, TSDK extends BaseSDK<TState>> extends BaseModelApiService<CaptureAnalysis["uuid"], CaptureAnalysis, TState, TSDK> {
|
|
6
|
+
name: string;
|
|
7
|
+
url: string;
|
|
8
|
+
actions: {
|
|
9
|
+
addOne: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis, "captureAnalyses/addCaptureAnalysis">;
|
|
10
|
+
addMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis[], "captureAnalyses/addCaptureAnalyses">;
|
|
11
|
+
setOne: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis, "captureAnalyses/setCaptureAnalysis">;
|
|
12
|
+
setMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis[], "captureAnalyses/setCaptureAnalyses">;
|
|
13
|
+
updateOne: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis, "captureAnalyses/updateCaptureAnalysis">;
|
|
14
|
+
updateMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis[], "captureAnalyses/updateCaptureAnalyses">;
|
|
15
|
+
deleteOne: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "captureAnalyses/deleteCaptureAnalysis">;
|
|
16
|
+
deleteMany: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "captureAnalyses/deleteCaptureAnalyses">;
|
|
17
|
+
initialize: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis[], "captureAnalyses/initializeCaptureAnalyses">;
|
|
18
|
+
};
|
|
19
|
+
selectors: {
|
|
20
|
+
selectById: import('../..').OvermapSelectorWithArgs<string, CaptureAnalysis | undefined>;
|
|
21
|
+
selectByIds: (uuids: string[]) => (state: any) => CaptureAnalysis[];
|
|
22
|
+
};
|
|
23
|
+
add(captureUuid: Capture["uuid"]): Promise<CaptureAnalysis>;
|
|
24
|
+
delete(uuid: CaptureAnalysis["uuid"]): Promise<void>;
|
|
25
|
+
refreshStore(projectUuid: Project["uuid"], signal?: AbortSignal): Promise<CaptureAnalysis[]>;
|
|
26
|
+
}
|
|
@@ -23,6 +23,8 @@ export declare abstract class IssueUpdateService<TState extends OvermapRootState
|
|
|
23
23
|
assetCommentReducer: import('../..').AssetCommentState;
|
|
24
24
|
assetTypeReducer: import('../..').AssetTypeState;
|
|
25
25
|
assetTypeAttachmentReducer: import('../..').AssetTypeAttachmentState;
|
|
26
|
+
captureAnalysisReducer: import('../..').CaptureAnalysisState;
|
|
27
|
+
captureAnalysisItemReducer: import('../..').CaptureAnalysisItemState;
|
|
26
28
|
captureReducer: import('../..').CaptureState;
|
|
27
29
|
captureSidecarReducer: import('../..').CaptureSidecarState;
|
|
28
30
|
issueReducer: import('../..').IssueState;
|
|
@@ -103,6 +105,8 @@ export declare abstract class IssueUpdateService<TState extends OvermapRootState
|
|
|
103
105
|
assetCommentReducer: import('../..').AssetCommentState;
|
|
104
106
|
assetTypeReducer: import('../..').AssetTypeState;
|
|
105
107
|
assetTypeAttachmentReducer: import('../..').AssetTypeAttachmentState;
|
|
108
|
+
captureAnalysisReducer: import('../..').CaptureAnalysisState;
|
|
109
|
+
captureAnalysisItemReducer: import('../..').CaptureAnalysisItemState;
|
|
106
110
|
captureReducer: import('../..').CaptureState;
|
|
107
111
|
captureSidecarReducer: import('../..').CaptureSidecarState;
|
|
108
112
|
issueReducer: import('../..').IssueState;
|
|
@@ -12,6 +12,8 @@ export * from './AssetTypeIdentifierValueService';
|
|
|
12
12
|
export * from './AssetTypeService';
|
|
13
13
|
export * from './AssetTypeStatusService';
|
|
14
14
|
export * from './BaseApiService';
|
|
15
|
+
export * from './CaptureAnalysisItemService';
|
|
16
|
+
export * from './CaptureAnalysisService';
|
|
15
17
|
export * from './CaptureService';
|
|
16
18
|
export * from './CaptureSidecarService';
|
|
17
19
|
export * from './DocumentAttachmentService';
|
package/dist/store/reducers.d.ts
CHANGED
|
@@ -15,6 +15,8 @@ export declare const overmapReducers: {
|
|
|
15
15
|
assetCommentReducer: import('redux').Reducer<import('./slices').AssetCommentState>;
|
|
16
16
|
assetTypeReducer: import('redux').Reducer<import('./slices').AssetTypeState>;
|
|
17
17
|
assetTypeAttachmentReducer: import('redux').Reducer<import('./slices').AssetTypeAttachmentState>;
|
|
18
|
+
captureAnalysisReducer: import('redux').Reducer<import('./slices').CaptureAnalysisState>;
|
|
19
|
+
captureAnalysisItemReducer: import('redux').Reducer<import('./slices').CaptureAnalysisItemState>;
|
|
18
20
|
captureReducer: import('redux').Reducer<import('./slices').CaptureState>;
|
|
19
21
|
captureSidecarReducer: import('redux').Reducer<import('./slices').CaptureSidecarState>;
|
|
20
22
|
issueReducer: import('redux').Reducer<import('./slices').IssueState>;
|
|
@@ -93,6 +95,8 @@ export declare const overmapReducer: import('redux').Reducer<{
|
|
|
93
95
|
assetCommentReducer: import('./slices').AssetCommentState;
|
|
94
96
|
assetTypeReducer: import('./slices').AssetTypeState;
|
|
95
97
|
assetTypeAttachmentReducer: import('./slices').AssetTypeAttachmentState;
|
|
98
|
+
captureAnalysisReducer: import('./slices').CaptureAnalysisState;
|
|
99
|
+
captureAnalysisItemReducer: import('./slices').CaptureAnalysisItemState;
|
|
96
100
|
captureReducer: import('./slices').CaptureState;
|
|
97
101
|
captureSidecarReducer: import('./slices').CaptureSidecarState;
|
|
98
102
|
issueReducer: import('./slices').IssueState;
|
|
@@ -170,6 +174,8 @@ export declare const overmapReducer: import('redux').Reducer<{
|
|
|
170
174
|
assetCommentReducer: import('./slices').AssetCommentState | undefined;
|
|
171
175
|
assetTypeReducer: import('./slices').AssetTypeState | undefined;
|
|
172
176
|
assetTypeAttachmentReducer: import('./slices').AssetTypeAttachmentState | undefined;
|
|
177
|
+
captureAnalysisReducer: import('./slices').CaptureAnalysisState | undefined;
|
|
178
|
+
captureAnalysisItemReducer: import('./slices').CaptureAnalysisItemState | undefined;
|
|
173
179
|
captureReducer: import('./slices').CaptureState | undefined;
|
|
174
180
|
captureSidecarReducer: import('./slices').CaptureSidecarState | undefined;
|
|
175
181
|
issueReducer: import('./slices').IssueState | undefined;
|
|
@@ -21,6 +21,8 @@ export declare const selectAssets: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectAssetTypeFieldValuesAttachments: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectAssetTypeFieldValues: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectAssetTypeFieldsAttachments: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectAssetTypeFields: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectAssetTypeStatuses: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { CaptureAnalysis, CaptureAnalysisItem } from '../../typings';
|
|
2
|
+
import { OvermapRootState, OvermapSelector, OvermapSelectorWithArgs } from '../typings';
|
|
3
|
+
import { ModelState } from '../adapters';
|
|
4
|
+
export type CaptureAnalysisItemState = ModelState<CaptureAnalysisItem["uuid"], CaptureAnalysisItem>;
|
|
5
|
+
export declare const captureAnalysisItemSlice: import('@reduxjs/toolkit').Slice<CaptureAnalysisItemState, {
|
|
6
|
+
initializeCaptureAnalysisItems: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisItemState, import('..').InitializePayloadAction<CaptureAnalysisItem>>;
|
|
7
|
+
addCaptureAnalysisItem: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisItemState, import('..').AddOnePayloadAction<CaptureAnalysisItem>>;
|
|
8
|
+
addCaptureAnalysisItems: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisItemState, import('..').AddManyPayloadAction<CaptureAnalysisItem>>;
|
|
9
|
+
setCaptureAnalysisItem: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisItemState, import('..').SetOnePayloadAction<CaptureAnalysisItem>>;
|
|
10
|
+
setCaptureAnalysisItems: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisItemState, import('..').SetManyPayloadAction<CaptureAnalysisItem>>;
|
|
11
|
+
updateCaptureAnalysisItem: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisItemState, import('..').UpdateOnePayloadAction<CaptureAnalysisItem>>;
|
|
12
|
+
updateCaptureAnalysisItems: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisItemState, import('..').UpdateManyPayloadAction<CaptureAnalysisItem>>;
|
|
13
|
+
deleteCaptureAnalysisItem: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisItemState, import('..').DeleteOnePayloadAction<string>>;
|
|
14
|
+
deleteCaptureAnalysisItems: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisItemState, import('..').DeleteManyPayloadAction<string>>;
|
|
15
|
+
}, "captureAnalysisItems", "captureAnalysisItems", import('@reduxjs/toolkit').SliceSelectors<CaptureAnalysisItemState>>;
|
|
16
|
+
export declare const initializeCaptureAnalysisItems: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem[], "captureAnalysisItems/initializeCaptureAnalysisItems">, addCaptureAnalysisItem: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem, "captureAnalysisItems/addCaptureAnalysisItem">, addCaptureAnalysisItems: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem[], "captureAnalysisItems/addCaptureAnalysisItems">, setCaptureAnalysisItem: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem, "captureAnalysisItems/setCaptureAnalysisItem">, setCaptureAnalysisItems: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem[], "captureAnalysisItems/setCaptureAnalysisItems">, updateCaptureAnalysisItem: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem, "captureAnalysisItems/updateCaptureAnalysisItem">, updateCaptureAnalysisItems: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysisItem[], "captureAnalysisItems/updateCaptureAnalysisItems">, deleteCaptureAnalysisItem: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "captureAnalysisItems/deleteCaptureAnalysisItem">, deleteCaptureAnalysisItems: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "captureAnalysisItems/deleteCaptureAnalysisItems">;
|
|
17
|
+
export declare const selectCaptureAnalysisItemMapping: (state: OvermapRootState) => Record<string, CaptureAnalysisItem>;
|
|
18
|
+
export declare const selectCaptureAnalysisItems: OvermapSelector<CaptureAnalysisItem[]>;
|
|
19
|
+
export declare const selectCaptureAnalysisItemById: OvermapSelectorWithArgs<CaptureAnalysisItem["uuid"], CaptureAnalysisItem | undefined>;
|
|
20
|
+
export declare const selectCaptureAnalysisItemsByIds: (uuids: string[]) => (state: any) => CaptureAnalysisItem[];
|
|
21
|
+
export declare const selectCaptureAnalysisItemsOfAnalysis: OvermapSelectorWithArgs<CaptureAnalysis["uuid"], CaptureAnalysisItem[]>;
|
|
22
|
+
export declare const captureAnalysisItemReducer: import('redux').Reducer<CaptureAnalysisItemState>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Capture, CaptureAnalysis } from '../../typings';
|
|
2
|
+
import { OvermapRootState, OvermapSelector, OvermapSelectorWithArgs } from '../typings';
|
|
3
|
+
import { ModelState } from '../adapters';
|
|
4
|
+
export type CaptureAnalysisState = ModelState<CaptureAnalysis["uuid"], CaptureAnalysis>;
|
|
5
|
+
export declare const captureAnalysisSlice: import('@reduxjs/toolkit').Slice<CaptureAnalysisState, {
|
|
6
|
+
initializeCaptureAnalyses: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisState, import('..').InitializePayloadAction<CaptureAnalysis>>;
|
|
7
|
+
addCaptureAnalysis: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisState, import('..').AddOnePayloadAction<CaptureAnalysis>>;
|
|
8
|
+
addCaptureAnalyses: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisState, import('..').AddManyPayloadAction<CaptureAnalysis>>;
|
|
9
|
+
setCaptureAnalysis: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisState, import('..').SetOnePayloadAction<CaptureAnalysis>>;
|
|
10
|
+
setCaptureAnalyses: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisState, import('..').SetManyPayloadAction<CaptureAnalysis>>;
|
|
11
|
+
updateCaptureAnalysis: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisState, import('..').UpdateOnePayloadAction<CaptureAnalysis>>;
|
|
12
|
+
updateCaptureAnalyses: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisState, import('..').UpdateManyPayloadAction<CaptureAnalysis>>;
|
|
13
|
+
deleteCaptureAnalysis: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisState, import('..').DeleteOnePayloadAction<string>>;
|
|
14
|
+
deleteCaptureAnalyses: import('@reduxjs/toolkit').CaseReducer<CaptureAnalysisState, import('..').DeleteManyPayloadAction<string>>;
|
|
15
|
+
}, "captureAnalyses", "captureAnalyses", import('@reduxjs/toolkit').SliceSelectors<CaptureAnalysisState>>;
|
|
16
|
+
export declare const initializeCaptureAnalyses: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis[], "captureAnalyses/initializeCaptureAnalyses">, addCaptureAnalysis: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis, "captureAnalyses/addCaptureAnalysis">, addCaptureAnalyses: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis[], "captureAnalyses/addCaptureAnalyses">, setCaptureAnalysis: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis, "captureAnalyses/setCaptureAnalysis">, setCaptureAnalyses: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis[], "captureAnalyses/setCaptureAnalyses">, updateCaptureAnalysis: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis, "captureAnalyses/updateCaptureAnalysis">, updateCaptureAnalyses: import('@reduxjs/toolkit').ActionCreatorWithPayload<CaptureAnalysis[], "captureAnalyses/updateCaptureAnalyses">, deleteCaptureAnalysis: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "captureAnalyses/deleteCaptureAnalysis">, deleteCaptureAnalyses: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "captureAnalyses/deleteCaptureAnalyses">;
|
|
17
|
+
export declare const selectCaptureAnalysisMapping: (state: OvermapRootState) => Record<string, CaptureAnalysis>;
|
|
18
|
+
export declare const selectCaptureAnalyses: OvermapSelector<CaptureAnalysis[]>;
|
|
19
|
+
export declare const selectCaptureAnalysisById: OvermapSelectorWithArgs<CaptureAnalysis["uuid"], CaptureAnalysis | undefined>;
|
|
20
|
+
export declare const selectCaptureAnalysesByIds: (uuids: string[]) => (state: any) => CaptureAnalysis[];
|
|
21
|
+
export declare const selectCaptureAnalysesOfCapture: OvermapSelectorWithArgs<Capture["uuid"], CaptureAnalysis[]>;
|
|
22
|
+
export declare const captureAnalysisReducer: import('redux').Reducer<CaptureAnalysisState>;
|
|
@@ -21,6 +21,8 @@ export declare const selectEmailDomains: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectFormRevisionAttachments: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectFormRevisions: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -22,6 +22,8 @@ export declare const selectForms: ((state: {
|
|
|
22
22
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
23
23
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
24
24
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
25
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
26
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
25
27
|
captureReducer: import('./captureSlice').CaptureState;
|
|
26
28
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
27
29
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectGeoImages: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -12,6 +12,8 @@ export * from './assetTypeIdentifierValueSlice';
|
|
|
12
12
|
export * from './assetTypeSlice';
|
|
13
13
|
export * from './assetTypeStatusSlice';
|
|
14
14
|
export * from './authSlice';
|
|
15
|
+
export * from './captureAnalysisItemSlice';
|
|
16
|
+
export * from './captureAnalysisSlice';
|
|
15
17
|
export * from './captureSidecarSlice';
|
|
16
18
|
export * from './captureSlice';
|
|
17
19
|
export * from './documentAttachmentSlice';
|
|
@@ -21,6 +21,8 @@ export declare const selectIssueAssociations: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectIssueTypeFieldValuesAttachments: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectIssueTypeFieldValues: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectIssueTypeFieldsAttachments: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectIssueTypeFields: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectIssueTypePriorities: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectIssueTypeStatuses: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -22,6 +22,8 @@ export declare const selectIssueUpdateById: (uuid: string) => (state: {
|
|
|
22
22
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
23
23
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
24
24
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
25
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
26
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
25
27
|
captureReducer: import('./captureSlice').CaptureState;
|
|
26
28
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
27
29
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -102,6 +104,8 @@ export declare const selectIssueUpdatesByIds: (uuids: string[]) => (state: {
|
|
|
102
104
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
103
105
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
104
106
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
107
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
108
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
105
109
|
captureReducer: import('./captureSlice').CaptureState;
|
|
106
110
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
107
111
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -182,6 +186,8 @@ export declare const selectIssueUpdatesOfIssue: (uuid: string) => (state: {
|
|
|
182
186
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
183
187
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
184
188
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
189
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
190
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
185
191
|
captureReducer: import('./captureSlice').CaptureState;
|
|
186
192
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
187
193
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -22,6 +22,8 @@ export declare const selectOrganizations: ((state: {
|
|
|
22
22
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
23
23
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
24
24
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
25
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
26
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
25
27
|
captureReducer: import('./captureSlice').CaptureState;
|
|
26
28
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
27
29
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -22,6 +22,8 @@ export declare const selectProcedureFieldValues: ((state: {
|
|
|
22
22
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
23
23
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
24
24
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
25
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
26
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
25
27
|
captureReducer: import('./captureSlice').CaptureState;
|
|
26
28
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
27
29
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectProcedureStepAssignees: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectProcedureStepComments: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectProcedureStepDefaultAssignees: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectProcedureStepDefaultReviewers: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectProcedureStepEvents: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectProcedureStepFieldValuesAttachments: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectProcedureStepFieldValuesReviews: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -22,6 +22,8 @@ export declare const selectProcedureStepFieldValues: ((state: {
|
|
|
22
22
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
23
23
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
24
24
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
25
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
26
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
25
27
|
captureReducer: import('./captureSlice').CaptureState;
|
|
26
28
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
27
29
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectProcedureStepFieldsAttachments: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectProcedureStepFields: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -123,6 +125,8 @@ export declare const selectLatestFieldsByProcedureStep: ((state: {
|
|
|
123
125
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
124
126
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
125
127
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
128
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
129
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
126
130
|
captureReducer: import('./captureSlice').CaptureState;
|
|
127
131
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
128
132
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -21,6 +21,8 @@ export declare const selectProcedureStepReviewers: ((state: {
|
|
|
21
21
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
22
22
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
23
23
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
24
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
25
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
24
26
|
captureReducer: import('./captureSlice').CaptureState;
|
|
25
27
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
26
28
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -23,6 +23,8 @@ export declare const selectProcedureSteps: ((state: {
|
|
|
23
23
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
24
24
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
25
25
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
26
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
27
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
26
28
|
captureReducer: import('./captureSlice').CaptureState;
|
|
27
29
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
28
30
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -25,6 +25,8 @@ export declare const selectAttachmentsOfProcedureType: (uuid: string) => (state:
|
|
|
25
25
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
26
26
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
27
27
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
28
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
29
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
28
30
|
captureReducer: import('./captureSlice').CaptureState;
|
|
29
31
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
30
32
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -22,6 +22,8 @@ export declare const selectProcedureFieldValuesAttachments: ((state: {
|
|
|
22
22
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
23
23
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
24
24
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
25
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
26
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
25
27
|
captureReducer: import('./captureSlice').CaptureState;
|
|
26
28
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
27
29
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -22,6 +22,8 @@ export declare const selectProcedureTypeFieldsAttachments: ((state: {
|
|
|
22
22
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
23
23
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
24
24
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
25
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
26
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
25
27
|
captureReducer: import('./captureSlice').CaptureState;
|
|
26
28
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
27
29
|
issueReducer: import('./issueSlice').IssueState;
|
|
@@ -22,6 +22,8 @@ export declare const selectProjectFiles: ((state: {
|
|
|
22
22
|
assetCommentReducer: import('./assetCommentSlice').AssetCommentState;
|
|
23
23
|
assetTypeReducer: import('./assetTypeSlice').AssetTypeState;
|
|
24
24
|
assetTypeAttachmentReducer: import('./assetTypeAttachmentSlice').AssetTypeAttachmentState;
|
|
25
|
+
captureAnalysisReducer: import('./captureAnalysisSlice').CaptureAnalysisState;
|
|
26
|
+
captureAnalysisItemReducer: import('./captureAnalysisItemSlice').CaptureAnalysisItemState;
|
|
25
27
|
captureReducer: import('./captureSlice').CaptureState;
|
|
26
28
|
captureSidecarReducer: import('./captureSidecarSlice').CaptureSidecarState;
|
|
27
29
|
issueReducer: import('./issueSlice').IssueState;
|