@overmap-ai/core 1.0.60-move-active-states.0 → 1.0.60-move-active-states.1

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,10 +1,8 @@
1
1
  import { Reducer } from "@reduxjs/toolkit";
2
- import { Project, OvermapRootState, OvermapSelector, User } from "../../typings";
2
+ import { OvermapRootState, OvermapSelector, Project, User } from "../../typings";
3
3
  export interface ProjectState {
4
4
  projects: Record<number, Project>;
5
5
  activeProjectId: number | null;
6
- recentProjectIds: number[];
7
- recentSearchableQueries: string[];
8
6
  }
9
7
  export declare const projectSlice: import("@reduxjs/toolkit").Slice<ProjectState, {
10
8
  setProjects: (state: import("immer/dist/internal.js").WritableDraft<ProjectState>, action: {
@@ -37,7 +35,6 @@ export declare const selectProjects: OvermapSelector<Record<number, Project>>;
37
35
  export declare const selectActiveProjectId: (state: OvermapRootState) => number | null;
38
36
  export declare const selectActiveProject: (state: OvermapRootState) => Project | null;
39
37
  export declare const selectProject: (args: number) => (state: OvermapRootState) => Project | undefined;
40
- export declare const selectSortedProjects: OvermapSelector<Project[]>;
41
38
  export declare const projectReducer: Reducer<ProjectState>;
42
39
  export declare const selectProjectUsersIds: OvermapSelector<number[]>;
43
40
  export declare const selectProjectUsersAsMapping: OvermapSelector<Record<number, User>>;
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.60-move-active-states.0",
6
+ "version": "1.0.60-move-active-states.1",
7
7
  "type": "module",
8
8
  "main": "dist/overmap-core.umd.cjs",
9
9
  "module": "dist/overmap-core.js",