@equinor/fusion-framework-module-bookmark 2.1.14 → 2.1.15
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/CHANGELOG.md +6 -0
- package/dist/esm/BookmarkProvider.reducer.js +2 -0
- package/dist/esm/BookmarkProvider.reducer.js.map +1 -1
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
- package/src/BookmarkProvider.reducer.ts +3 -0
- package/src/index.ts +2 -0
- package/src/version.ts +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -5,3 +5,4 @@ export { BookmarkProvider } from './BookmarkProvider';
|
|
|
5
5
|
export type { BookmarkCreateArgs, BookmarkUpdateOptions, IBookmarkProvider, BookmarkPayloadGenerator, } from './BookmarkProvider.interface';
|
|
6
6
|
export { enableBookmark } from './enable-bookmark';
|
|
7
7
|
export * from './types';
|
|
8
|
+
export { bookmarkWithDataSchema } from './bookmark.schemas';
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "2.1.
|
|
1
|
+
export declare const version = "2.1.15";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-module-bookmark",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.15",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/esm/index.js",
|
|
6
6
|
"types": "./dist/types/index.d.ts",
|
|
@@ -42,17 +42,17 @@
|
|
|
42
42
|
"rxjs": "^7.8.1",
|
|
43
43
|
"uuid": "^11.0.3",
|
|
44
44
|
"@equinor/fusion-framework-module": "^4.4.2",
|
|
45
|
-
"@equinor/fusion-log": "^1.1.4",
|
|
46
45
|
"@equinor/fusion-observable": "^8.5.1",
|
|
46
|
+
"@equinor/fusion-log": "^1.1.4",
|
|
47
47
|
"@equinor/fusion-query": "^5.2.11"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@types/uuid": "^9.0.8",
|
|
51
51
|
"typescript": "^5.8.2",
|
|
52
52
|
"zod": "^3.23.8",
|
|
53
|
-
"@equinor/fusion-framework-module-context": "^6.0.6",
|
|
54
|
-
"@equinor/fusion-framework-module-event": "^4.3.6",
|
|
55
53
|
"@equinor/fusion-framework-module-app": "^6.1.16",
|
|
54
|
+
"@equinor/fusion-framework-module-event": "^4.3.6",
|
|
55
|
+
"@equinor/fusion-framework-module-context": "^6.0.6",
|
|
56
56
|
"@equinor/fusion-framework-module-http": "^6.3.3",
|
|
57
57
|
"@equinor/fusion-framework-module-services": "^6.0.3"
|
|
58
58
|
},
|
|
@@ -12,6 +12,9 @@ import { bookmarkActions, type BookmarkActions } from './BookmarkProvider.action
|
|
|
12
12
|
import type { BookmarkState } from './BookmarkProvider.store';
|
|
13
13
|
import type { BookmarkFlowError } from './BookmarkProvider.error';
|
|
14
14
|
import type { BookmarkWithoutData } from './types';
|
|
15
|
+
import { enableMapSet } from 'immer';
|
|
16
|
+
|
|
17
|
+
enableMapSet();
|
|
15
18
|
|
|
16
19
|
/**
|
|
17
20
|
* Utility function that extracts the base action type from a given action object.
|
package/src/index.ts
CHANGED
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '2.1.
|
|
2
|
+
export const version = '2.1.15';
|