@overmap-ai/core 1.0.63-selector-standardization.3 → 1.0.63-selector-standardization.4
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 +107 -107
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +107 -107
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/store/slices/assetTypeSlice.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Reducer } from "@reduxjs/toolkit";
|
|
2
|
-
import {
|
|
2
|
+
import { AssetType, OvermapRootState, OvermapSelector, OvermapSelectorWithArgs, Stored } from "../../typings";
|
|
3
3
|
import type { ModelState } from "../typings";
|
|
4
4
|
export type AssetTypeState = ModelState<Stored<AssetType>>;
|
|
5
5
|
export declare const assetTypeSlice: import("@reduxjs/toolkit").Slice<AssetTypeState, {
|
|
@@ -20,5 +20,5 @@ export declare const addAssetType: import("@reduxjs/toolkit").ActionCreatorWithP
|
|
|
20
20
|
export declare const selectAssetTypesMapping: OvermapSelector<Record<string, AssetType>>;
|
|
21
21
|
export declare const selectAssetTypes: OvermapSelector<AssetType[]>;
|
|
22
22
|
export declare const selectAssetTypeById: OvermapSelectorWithArgs<AssetType["offline_id"], Stored<AssetType> | undefined>;
|
|
23
|
-
export declare const selectAssetTypesByIds: (args: string[]) => (state: OvermapRootState) => Stored<
|
|
23
|
+
export declare const selectAssetTypesByIds: (args: string[]) => (state: OvermapRootState) => Stored<AssetType>[];
|
|
24
24
|
export declare const assetTypeReducer: Reducer<AssetTypeState>;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Core functionality for Overmap",
|
|
4
4
|
"author": "Wôrdn Inc.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
|
-
"version": "1.0.63-selector-standardization.
|
|
6
|
+
"version": "1.0.63-selector-standardization.4",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/overmap-core.umd.cjs",
|
|
9
9
|
"module": "dist/overmap-core.js",
|