@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.
- package/dist/contexts/sdk/sdk.d.ts +3 -3
- package/dist/overmap-core.js +1 -1
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +1 -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 +2 -32
- package/dist/typings/models/store.d.ts +33 -3
- 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
|
@@ -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,
|