@overmap-ai/core 1.0.57-export-overmap-reducer.1 → 1.0.57-export-overmap-reducer.3

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.
@@ -5,11 +5,11 @@ import { OvermapRootState } from "../../typings";
5
5
  export interface ISDKContext {
6
6
  sdk: OvermapSDK;
7
7
  }
8
- interface SDKProviderProps<TStore extends ToolkitStore<OvermapRootState>> {
8
+ interface SDKProviderProps<TState extends OvermapRootState> {
9
9
  children: React.ReactNode;
10
10
  API_URL: string;
11
- store: TStore;
11
+ store: ToolkitStore<TState>;
12
12
  }
13
13
  declare const SDKContext: React.Context<ISDKContext>;
14
- declare const SDKProvider: <TStore extends ToolkitStore<OvermapRootState, import("redux").AnyAction, readonly import("redux").Middleware<{}, OvermapRootState, import("redux").Dispatch<import("redux").AnyAction>>[]>>(props: SDKProviderProps<TStore>) => import("react/jsx-runtime").JSX.Element;
14
+ declare const SDKProvider: <TState extends OvermapRootState>(props: SDKProviderProps<TState>) => import("react/jsx-runtime").JSX.Element;
15
15
  export { SDKProvider, SDKContext };
@@ -16476,6 +16476,7 @@ export {
16476
16476
  TextInput,
16477
16477
  UserFormService,
16478
16478
  UserFormSubmissionService,
16479
+ VERSION_REDUCER_KEY,
16479
16480
  VerificationCodeType,
16480
16481
  WorkspaceService,
16481
16482
  YELLOW,
@@ -16659,7 +16660,6 @@ export {
16659
16660
  outboxReducer,
16660
16661
  outboxSlice,
16661
16662
  overmapEnhancer,
16662
- overmapReducer,
16663
16663
  overmapReducers,
16664
16664
  overmapRootReducer,
16665
16665
  patchCategory,