@overmap-ai/core 1.0.71-fields.2 → 1.0.71-fields.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.
@@ -48,5 +48,6 @@ export declare const selectAssetTypeFieldValues: ((state: OvermapRootState) => S
48
48
  clearCache: () => void;
49
49
  };
50
50
  export declare const selectAssetTypeFieldValuesOfAsset: OvermapSelectorWithArgs<string, AssetTypeFieldValues[]>;
51
+ export declare const selectAssetTypeValuesOfAssetType: OvermapSelectorWithArgs<string, Stored<AssetTypeFieldValues>[]>;
51
52
  export declare const selectAssetTypeFieldValuesById: OvermapSelectorWithArgs<string, AssetTypeFieldValues | undefined>;
52
53
  export declare const assetTypeFieldValuesReducer: Reducer<AssetTypeFieldValuesState>;
@@ -1,5 +1,5 @@
1
1
  import { Reducer } from "@reduxjs/toolkit";
2
- import type { IssueTypeFields, OvermapRootState, OvermapSelectorWithArgs, Stored } from "../../typings";
2
+ import type { IssueTypeFields, IssueTypeFieldValues, OvermapRootState, OvermapSelectorWithArgs, Stored } from "../../typings";
3
3
  import type { ModelState } from "../typings";
4
4
  export type IssueTypeFieldsState = ModelState<Stored<IssueTypeFields>>;
5
5
  export declare const issueTypeFieldsSlice: import("@reduxjs/toolkit").Slice<IssueTypeFieldsState, {
@@ -48,6 +48,7 @@ export declare const selectIssueTypeFields: ((state: OvermapRootState) => Stored
48
48
  clearCache: () => void;
49
49
  };
50
50
  export declare const selectIssueTypeFieldsOfIssueType: OvermapSelectorWithArgs<string, Stored<IssueTypeFields>[]>;
51
- export declare const selectLatestIssueTypeFieldsOfAssetType: OvermapSelectorWithArgs<string, IssueTypeFields | undefined>;
51
+ export declare const selectLatestIssueTypeFieldsOfIssueType: OvermapSelectorWithArgs<string, IssueTypeFields | undefined>;
52
+ export declare const selectIssueTypeValuesOfIssueType: OvermapSelectorWithArgs<string, Stored<IssueTypeFieldValues>[]>;
52
53
  export declare const selectIssueTypeFieldsById: OvermapSelectorWithArgs<string, Stored<IssueTypeFields> | undefined>;
53
54
  export declare const issueTypeFieldsReducer: Reducer<IssueTypeFieldsState>;
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.71-fields.2",
6
+ "version": "1.0.71-fields.4",
7
7
  "type": "module",
8
8
  "main": "dist/overmap-core.umd.cjs",
9
9
  "module": "dist/overmap-core.js",