@overmap-ai/core 1.0.57-export-overmap-reducer.2 → 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.
- package/dist/contexts/sdk/sdk.d.ts +3 -3
- package/dist/overmap-core.js +0 -1
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +0 -1
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/store/slices/categorySlice.d.ts +1 -34
- package/dist/store/slices/documentSlice.d.ts +1 -34
- package/dist/store/slices/formRevisionSlice.d.ts +1 -34
- package/dist/store/slices/issueSlice.d.ts +1 -34
- package/dist/store/slices/projectFileSlice.d.ts +1 -34
- package/dist/store/slices/workspaceSlice.d.ts +1 -34
- package/dist/store/store.d.ts +1 -32
- package/dist/typings/models/store.d.ts +2 -5
- package/package.json +1 -1
|
@@ -5,11 +5,11 @@ import { OvermapRootState } from "../../typings";
|
|
|
5
5
|
export interface ISDKContext {
|
|
6
6
|
sdk: OvermapSDK;
|
|
7
7
|
}
|
|
8
|
-
interface SDKProviderProps<
|
|
8
|
+
interface SDKProviderProps<TState extends OvermapRootState> {
|
|
9
9
|
children: React.ReactNode;
|
|
10
10
|
API_URL: string;
|
|
11
|
-
store:
|
|
11
|
+
store: ToolkitStore<TState>;
|
|
12
12
|
}
|
|
13
13
|
declare const SDKContext: React.Context<ISDKContext>;
|
|
14
|
-
declare const SDKProvider: <
|
|
14
|
+
declare const SDKProvider: <TState extends OvermapRootState>(props: SDKProviderProps<TState>) => import("react/jsx-runtime").JSX.Element;
|
|
15
15
|
export { SDKProvider, SDKContext };
|
package/dist/overmap-core.js
CHANGED
|
@@ -16660,7 +16660,6 @@ export {
|
|
|
16660
16660
|
outboxReducer,
|
|
16661
16661
|
outboxSlice,
|
|
16662
16662
|
overmapEnhancer,
|
|
16663
|
-
overmapReducer,
|
|
16664
16663
|
overmapReducers,
|
|
16665
16664
|
overmapRootReducer,
|
|
16666
16665
|
patchCategory,
|