@overmap-ai/core 1.0.78-procedures.11 → 1.0.78-procedures.14
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.
|
@@ -131,4 +131,5 @@ export declare const selectIssueAssociationsToIssues: OvermapSelectorWithArgs<Is
|
|
|
131
131
|
export declare const selectIssueAssociationsOfIssues: OvermapSelectorWithArgs<Issue["uuid"][], Stored<IssueAssociation>[]>;
|
|
132
132
|
export declare const selectIssueAssociationsOfIssue: OvermapSelectorWithArgs<Issue["uuid"], Stored<IssueAssociation>[]>;
|
|
133
133
|
export declare const selectIssueAssociationsOfAsset: OvermapSelectorWithArgs<Asset["uuid"], Stored<IssueAssociation>[]>;
|
|
134
|
+
export declare const selectIssueAssociationsOfAssets: OvermapSelectorWithArgs<Asset["uuid"][], Stored<IssueAssociation>[]>;
|
|
134
135
|
export declare const issueAssociationReducer: import('redux').Reducer<IssueAssociationSliceState>;
|
|
@@ -22,4 +22,6 @@ export declare const selectProceduresByIds: (uuids: string[]) => (state: any) =>
|
|
|
22
22
|
export declare const selectProceduresOfProject: OvermapSelectorWithArgs<Project["uuid"], Stored<Procedure>[]>;
|
|
23
23
|
export declare const selectProceduresOfProcedureType: OvermapSelectorWithArgs<ProcedureType["uuid"], Stored<Procedure>[]>;
|
|
24
24
|
export declare const selectProceduresOfAsset: OvermapSelectorWithArgs<Asset["uuid"], Stored<Procedure>[]>;
|
|
25
|
+
export declare const selectProceduresOfAssets: OvermapSelectorWithArgs<Asset["uuid"][], Stored<Procedure>[]>;
|
|
25
26
|
export declare const selectProceduresOfIssue: OvermapSelectorWithArgs<Issue["uuid"], Stored<Procedure>[]>;
|
|
27
|
+
export declare const selectProceduresOfIssues: OvermapSelectorWithArgs<Issue["uuid"][], Stored<Procedure>[]>;
|