@overmap-ai/core 1.0.62-store-clear-fixes.0 → 1.0.62-store-clear-fixes.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.
@@ -1,5 +1,5 @@
1
1
  import { Reducer } from "@reduxjs/toolkit";
2
- import { OvermapSelector, OvermapSelectorWithArgs, Stored, FormSubmission } from "../../typings";
2
+ import { OvermapRootState, OvermapSelector, OvermapSelectorWithArgs, Stored, FormSubmission } from "../../typings";
3
3
  import { ModelState } from "../typings";
4
4
  export type FormSubmissionState = ModelState<Stored<FormSubmission>>;
5
5
  export declare const formSubmissionSlice: import("@reduxjs/toolkit").Slice<FormSubmissionState, {
@@ -47,8 +47,8 @@ export declare const selectFormSubmission: OvermapSelectorWithArgs<string, Store
47
47
  export declare const selectFormSubmissionsOfForm: OvermapSelectorWithArgs<string, Stored<FormSubmission>[]>;
48
48
  export declare const selectFormSubmissionsByFormRevisions: OvermapSelector<Record<string, Stored<FormSubmission>[]>>;
49
49
  export declare const selectSortedFormSubmissionsOfForm: OvermapSelectorWithArgs<string, Stored<FormSubmission>[]>;
50
- export declare const selectFormSubmissionsOfIssue: OvermapSelectorWithArgs<string, Stored<FormSubmission>[]>;
50
+ export declare const selectFormSubmissionsOfIssue: (args: string) => (state: OvermapRootState) => Stored<FormSubmission>[];
51
51
  export declare const selectFormSubmissionsByIssues: OvermapSelectorWithArgs<string[], Record<string, Stored<FormSubmission>[]>>;
52
- export declare const selectFormSubmissionsOfAsset: OvermapSelectorWithArgs<string, Stored<FormSubmission>[]>;
52
+ export declare const selectFormSubmissionsOfAsset: (args: string) => (state: OvermapRootState) => Stored<FormSubmission>[];
53
53
  export declare const selectFormSubmissionsByAssets: OvermapSelector<Record<string, Stored<FormSubmission>[]>>;
54
54
  export declare const formSubmissionReducer: Reducer<FormSubmissionState>;
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.62-store-clear-fixes.0",
6
+ "version": "1.0.62-store-clear-fixes.2",
7
7
  "type": "module",
8
8
  "main": "dist/overmap-core.umd.cjs",
9
9
  "module": "dist/overmap-core.js",