@overmap-ai/core 1.0.71-fields.11 → 1.0.71-fields.13
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 +38 -13
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +38 -13
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/store/slices/assetTypeFieldValuesAttachmentSlice.d.ts +2 -1
- package/dist/store/slices/issueTypeFieldValuesAttachmentSlice.d.ts +2 -1
- package/package.json +1 -1
|
@@ -47,6 +47,7 @@ export declare const selectAssetTypeFieldValuesAttachments: ((state: OvermapRoot
|
|
|
47
47
|
}> & {
|
|
48
48
|
clearCache: () => void;
|
|
49
49
|
};
|
|
50
|
-
export declare const selectAttachmentsOfAssetTypeFieldValues: OvermapSelectorWithArgs<string, Stored<AssetTypeFieldValuesAttachment>[]>;
|
|
51
50
|
export declare const selectAssetTypeFieldValuesAttachmentById: OvermapSelectorWithArgs<string, AssetTypeFieldValuesAttachment | undefined>;
|
|
51
|
+
export declare const selectAssetTypeFieldValuesAttachmentsByIds: (args: string[]) => (state: OvermapRootState) => Stored<AssetTypeFieldValuesAttachment>[];
|
|
52
|
+
export declare const selectAttachmentsOfAssetTypeFieldValues: OvermapSelectorWithArgs<string, Stored<AssetTypeFieldValuesAttachment>[]>;
|
|
52
53
|
export declare const assetTypeFieldValuesAttachmentReducer: Reducer<AssetTypeFieldValuesAttachmentState>;
|
|
@@ -47,6 +47,7 @@ export declare const selectIssueTypeFieldValuesAttachments: ((state: OvermapRoot
|
|
|
47
47
|
}> & {
|
|
48
48
|
clearCache: () => void;
|
|
49
49
|
};
|
|
50
|
-
export declare const selectAttachmentsOfIssueTypeFieldValues: OvermapSelectorWithArgs<string, Stored<IssueTypeFieldValuesAttachment>[]>;
|
|
51
50
|
export declare const selectIssueTypeFieldValuesAttachmentById: OvermapSelectorWithArgs<string, Stored<IssueTypeFieldValuesAttachment> | undefined>;
|
|
51
|
+
export declare const selectIssueTypeFieldValuesAttachmentsByIds: (args: string[]) => (state: OvermapRootState) => Stored<IssueTypeFieldValuesAttachment>[];
|
|
52
|
+
export declare const selectAttachmentsOfIssueTypeFieldValues: OvermapSelectorWithArgs<string, Stored<IssueTypeFieldValuesAttachment>[]>;
|
|
52
53
|
export declare const issueTypeFieldValuesAttachmentReducer: Reducer<IssueTypeFieldValuesAttachmentState>;
|
package/package.json
CHANGED