@equinor/fusion-framework-module-services 5.0.0-next-663bed8344cc2ca0111705b05045173328b3104d → 5.0.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.
- package/CHANGELOG.md +199 -186
- package/dist/esm/bookmarks/api-version.js +6 -0
- package/dist/esm/bookmarks/api-version.js.map +1 -0
- package/dist/esm/bookmarks/client.js +148 -47
- package/dist/esm/bookmarks/client.js.map +1 -1
- package/dist/esm/bookmarks/endpoints/bookmark-apply.get.js +49 -0
- package/dist/esm/bookmarks/endpoints/bookmark-apply.get.js.map +1 -0
- package/dist/esm/bookmarks/endpoints/bookmark.delete.js +48 -0
- package/dist/esm/bookmarks/endpoints/bookmark.delete.js.map +1 -0
- package/dist/esm/bookmarks/endpoints/bookmark.get.js +53 -0
- package/dist/esm/bookmarks/endpoints/bookmark.get.js.map +1 -0
- package/dist/esm/bookmarks/endpoints/bookmark.patch.js +68 -0
- package/dist/esm/bookmarks/endpoints/bookmark.patch.js.map +1 -0
- package/dist/esm/bookmarks/endpoints/bookmark.post.js +57 -0
- package/dist/esm/bookmarks/endpoints/bookmark.post.js.map +1 -0
- package/dist/esm/bookmarks/endpoints/user-bookmark-favourite.delete.js +48 -0
- package/dist/esm/bookmarks/endpoints/user-bookmark-favourite.delete.js.map +1 -0
- package/dist/esm/bookmarks/endpoints/user-bookmark-favourite.head.js +48 -0
- package/dist/esm/bookmarks/endpoints/user-bookmark-favourite.head.js.map +1 -0
- package/dist/esm/bookmarks/endpoints/user-bookmark-favourite.post.js +49 -0
- package/dist/esm/bookmarks/endpoints/user-bookmark-favourite.post.js.map +1 -0
- package/dist/esm/bookmarks/endpoints/user-bookmarks.get.js +75 -0
- package/dist/esm/bookmarks/endpoints/user-bookmarks.get.js.map +1 -0
- package/dist/esm/bookmarks/index.js +1 -2
- package/dist/esm/bookmarks/index.js.map +1 -1
- package/dist/esm/bookmarks/schemas.js +76 -0
- package/dist/esm/bookmarks/schemas.js.map +1 -0
- package/dist/esm/bookmarks/selectors.js +54 -0
- package/dist/esm/bookmarks/selectors.js.map +1 -0
- package/dist/esm/provider.js +3 -1
- package/dist/esm/provider.js.map +1 -1
- package/dist/esm/utils.js +35 -0
- package/dist/esm/utils.js.map +1 -0
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/bookmarks/api-version.d.ts +4 -0
- package/dist/types/bookmarks/client.d.ts +132 -34
- package/dist/types/bookmarks/endpoints/bookmark-apply.get.d.ts +40 -0
- package/dist/types/bookmarks/endpoints/bookmark.delete.d.ts +31 -0
- package/dist/types/bookmarks/endpoints/bookmark.get.d.ts +351 -0
- package/dist/types/bookmarks/endpoints/bookmark.patch.d.ts +254 -0
- package/dist/types/bookmarks/endpoints/bookmark.post.d.ts +231 -0
- package/dist/types/bookmarks/endpoints/user-bookmark-favourite.delete.d.ts +31 -0
- package/dist/types/bookmarks/endpoints/user-bookmark-favourite.head.d.ts +31 -0
- package/dist/types/bookmarks/endpoints/user-bookmark-favourite.post.d.ts +31 -0
- package/dist/types/bookmarks/endpoints/user-bookmarks.get.d.ts +235 -0
- package/dist/types/bookmarks/index.d.ts +3 -2
- package/dist/types/bookmarks/schemas.d.ts +383 -0
- package/dist/types/bookmarks/selectors.d.ts +17 -0
- package/dist/types/bookmarks/types.d.ts +5 -1
- package/dist/types/provider.d.ts +2 -2
- package/dist/types/types.d.ts +74 -11
- package/dist/types/utils.d.ts +18 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +11 -11
- package/src/bookmarks/README.md +90 -0
- package/src/bookmarks/api-version.ts +4 -0
- package/src/bookmarks/client.ts +257 -77
- package/src/bookmarks/endpoints/bookmark-apply.get.ts +114 -0
- package/src/bookmarks/endpoints/bookmark.delete.ts +113 -0
- package/src/bookmarks/endpoints/bookmark.get.ts +118 -0
- package/src/bookmarks/endpoints/bookmark.patch.ts +135 -0
- package/src/bookmarks/endpoints/bookmark.post.ts +124 -0
- package/src/bookmarks/endpoints/user-bookmark-favourite.delete.ts +113 -0
- package/src/bookmarks/endpoints/user-bookmark-favourite.head.ts +113 -0
- package/src/bookmarks/endpoints/user-bookmark-favourite.post.ts +114 -0
- package/src/bookmarks/endpoints/user-bookmarks.get.ts +142 -0
- package/src/bookmarks/index.ts +3 -3
- package/src/bookmarks/schemas.ts +81 -0
- package/src/bookmarks/selectors.ts +46 -0
- package/src/bookmarks/types.ts +16 -1
- package/src/provider.ts +7 -5
- package/src/types.ts +92 -11
- package/src/utils.ts +51 -0
- package/src/version.ts +1 -1
- package/dist/esm/bookmarks/api-models.js +0 -2
- package/dist/esm/bookmarks/api-models.js.map +0 -1
- package/dist/esm/bookmarks/delete/client.js +0 -10
- package/dist/esm/bookmarks/delete/client.js.map +0 -1
- package/dist/esm/bookmarks/delete/generate-endpoint.js +0 -20
- package/dist/esm/bookmarks/delete/generate-endpoint.js.map +0 -1
- package/dist/esm/bookmarks/delete/generate-parameters.js +0 -8
- package/dist/esm/bookmarks/delete/generate-parameters.js.map +0 -1
- package/dist/esm/bookmarks/delete/index.js +0 -5
- package/dist/esm/bookmarks/delete/index.js.map +0 -1
- package/dist/esm/bookmarks/delete/types-v1.js +0 -2
- package/dist/esm/bookmarks/delete/types-v1.js.map +0 -1
- package/dist/esm/bookmarks/delete/types.js +0 -2
- package/dist/esm/bookmarks/delete/types.js.map +0 -1
- package/dist/esm/bookmarks/favorites/delete/client.js +0 -10
- package/dist/esm/bookmarks/favorites/delete/client.js.map +0 -1
- package/dist/esm/bookmarks/favorites/delete/generate-endpoint.js +0 -15
- package/dist/esm/bookmarks/favorites/delete/generate-endpoint.js.map +0 -1
- package/dist/esm/bookmarks/favorites/delete/generate-parameters.js +0 -8
- package/dist/esm/bookmarks/favorites/delete/generate-parameters.js.map +0 -1
- package/dist/esm/bookmarks/favorites/delete/index.js +0 -5
- package/dist/esm/bookmarks/favorites/delete/index.js.map +0 -1
- package/dist/esm/bookmarks/favorites/delete/types-v1.js +0 -2
- package/dist/esm/bookmarks/favorites/delete/types-v1.js.map +0 -1
- package/dist/esm/bookmarks/favorites/delete/types.js +0 -2
- package/dist/esm/bookmarks/favorites/delete/types.js.map +0 -1
- package/dist/esm/bookmarks/favorites/head/client.js +0 -10
- package/dist/esm/bookmarks/favorites/head/client.js.map +0 -1
- package/dist/esm/bookmarks/favorites/head/generate-endpoint.js +0 -15
- package/dist/esm/bookmarks/favorites/head/generate-endpoint.js.map +0 -1
- package/dist/esm/bookmarks/favorites/head/generate-parameters.js +0 -10
- package/dist/esm/bookmarks/favorites/head/generate-parameters.js.map +0 -1
- package/dist/esm/bookmarks/favorites/head/index.js +0 -5
- package/dist/esm/bookmarks/favorites/head/index.js.map +0 -1
- package/dist/esm/bookmarks/favorites/head/types.js +0 -2
- package/dist/esm/bookmarks/favorites/head/types.js.map +0 -1
- package/dist/esm/bookmarks/favorites/post/client.js +0 -10
- package/dist/esm/bookmarks/favorites/post/client.js.map +0 -1
- package/dist/esm/bookmarks/favorites/post/generate-endpoint.js +0 -14
- package/dist/esm/bookmarks/favorites/post/generate-endpoint.js.map +0 -1
- package/dist/esm/bookmarks/favorites/post/generate-parameters.js +0 -10
- package/dist/esm/bookmarks/favorites/post/generate-parameters.js.map +0 -1
- package/dist/esm/bookmarks/favorites/post/index.js +0 -5
- package/dist/esm/bookmarks/favorites/post/index.js.map +0 -1
- package/dist/esm/bookmarks/favorites/post/types.js +0 -2
- package/dist/esm/bookmarks/favorites/post/types.js.map +0 -1
- package/dist/esm/bookmarks/get/client.js +0 -10
- package/dist/esm/bookmarks/get/client.js.map +0 -1
- package/dist/esm/bookmarks/get/generate-endpoint.js +0 -20
- package/dist/esm/bookmarks/get/generate-endpoint.js.map +0 -1
- package/dist/esm/bookmarks/get/generate-parameters.js +0 -7
- package/dist/esm/bookmarks/get/generate-parameters.js.map +0 -1
- package/dist/esm/bookmarks/get/index.js +0 -5
- package/dist/esm/bookmarks/get/index.js.map +0 -1
- package/dist/esm/bookmarks/get/types.js +0 -2
- package/dist/esm/bookmarks/get/types.js.map +0 -1
- package/dist/esm/bookmarks/getAll/client.js +0 -10
- package/dist/esm/bookmarks/getAll/client.js.map +0 -1
- package/dist/esm/bookmarks/getAll/generate-endpoint.js +0 -14
- package/dist/esm/bookmarks/getAll/generate-endpoint.js.map +0 -1
- package/dist/esm/bookmarks/getAll/generate-parameters.js +0 -7
- package/dist/esm/bookmarks/getAll/generate-parameters.js.map +0 -1
- package/dist/esm/bookmarks/getAll/index.js +0 -5
- package/dist/esm/bookmarks/getAll/index.js.map +0 -1
- package/dist/esm/bookmarks/getAll/types.js +0 -2
- package/dist/esm/bookmarks/getAll/types.js.map +0 -1
- package/dist/esm/bookmarks/patch/client.js +0 -10
- package/dist/esm/bookmarks/patch/client.js.map +0 -1
- package/dist/esm/bookmarks/patch/generate-endpoint.js +0 -14
- package/dist/esm/bookmarks/patch/generate-endpoint.js.map +0 -1
- package/dist/esm/bookmarks/patch/generate-parameters.js +0 -10
- package/dist/esm/bookmarks/patch/generate-parameters.js.map +0 -1
- package/dist/esm/bookmarks/patch/index.js +0 -5
- package/dist/esm/bookmarks/patch/index.js.map +0 -1
- package/dist/esm/bookmarks/patch/types.js +0 -2
- package/dist/esm/bookmarks/patch/types.js.map +0 -1
- package/dist/esm/bookmarks/post/client.js +0 -10
- package/dist/esm/bookmarks/post/client.js.map +0 -1
- package/dist/esm/bookmarks/post/generate-endpoint.js +0 -14
- package/dist/esm/bookmarks/post/generate-endpoint.js.map +0 -1
- package/dist/esm/bookmarks/post/generate-parameters.js +0 -10
- package/dist/esm/bookmarks/post/generate-parameters.js.map +0 -1
- package/dist/esm/bookmarks/post/index.js +0 -5
- package/dist/esm/bookmarks/post/index.js.map +0 -1
- package/dist/esm/bookmarks/post/types.js +0 -2
- package/dist/esm/bookmarks/post/types.js.map +0 -1
- package/dist/types/bookmarks/api-models.d.ts +0 -42
- package/dist/types/bookmarks/delete/client.d.ts +0 -11
- package/dist/types/bookmarks/delete/generate-endpoint.d.ts +0 -5
- package/dist/types/bookmarks/delete/generate-parameters.d.ts +0 -5
- package/dist/types/bookmarks/delete/index.d.ts +0 -4
- package/dist/types/bookmarks/delete/types-v1.d.ts +0 -4
- package/dist/types/bookmarks/delete/types.d.ts +0 -18
- package/dist/types/bookmarks/favorites/delete/client.d.ts +0 -11
- package/dist/types/bookmarks/favorites/delete/generate-endpoint.d.ts +0 -5
- package/dist/types/bookmarks/favorites/delete/generate-parameters.d.ts +0 -5
- package/dist/types/bookmarks/favorites/delete/index.d.ts +0 -4
- package/dist/types/bookmarks/favorites/delete/types-v1.d.ts +0 -4
- package/dist/types/bookmarks/favorites/delete/types.d.ts +0 -16
- package/dist/types/bookmarks/favorites/head/client.d.ts +0 -11
- package/dist/types/bookmarks/favorites/head/generate-endpoint.d.ts +0 -5
- package/dist/types/bookmarks/favorites/head/generate-parameters.d.ts +0 -5
- package/dist/types/bookmarks/favorites/head/index.d.ts +0 -4
- package/dist/types/bookmarks/favorites/head/types.d.ts +0 -17
- package/dist/types/bookmarks/favorites/post/client.d.ts +0 -11
- package/dist/types/bookmarks/favorites/post/generate-endpoint.d.ts +0 -5
- package/dist/types/bookmarks/favorites/post/generate-parameters.d.ts +0 -5
- package/dist/types/bookmarks/favorites/post/index.d.ts +0 -4
- package/dist/types/bookmarks/favorites/post/types.d.ts +0 -17
- package/dist/types/bookmarks/get/client.d.ts +0 -11
- package/dist/types/bookmarks/get/generate-endpoint.d.ts +0 -5
- package/dist/types/bookmarks/get/generate-parameters.d.ts +0 -5
- package/dist/types/bookmarks/get/index.d.ts +0 -4
- package/dist/types/bookmarks/get/types.d.ts +0 -21
- package/dist/types/bookmarks/getAll/client.d.ts +0 -11
- package/dist/types/bookmarks/getAll/generate-endpoint.d.ts +0 -5
- package/dist/types/bookmarks/getAll/generate-parameters.d.ts +0 -5
- package/dist/types/bookmarks/getAll/index.d.ts +0 -4
- package/dist/types/bookmarks/getAll/types.d.ts +0 -11
- package/dist/types/bookmarks/patch/client.d.ts +0 -11
- package/dist/types/bookmarks/patch/generate-endpoint.d.ts +0 -5
- package/dist/types/bookmarks/patch/generate-parameters.d.ts +0 -5
- package/dist/types/bookmarks/patch/index.d.ts +0 -4
- package/dist/types/bookmarks/patch/types.d.ts +0 -21
- package/dist/types/bookmarks/post/client.d.ts +0 -11
- package/dist/types/bookmarks/post/generate-endpoint.d.ts +0 -5
- package/dist/types/bookmarks/post/generate-parameters.d.ts +0 -5
- package/dist/types/bookmarks/post/index.d.ts +0 -4
- package/dist/types/bookmarks/post/types.d.ts +0 -34
- package/src/bookmarks/api-models.ts +0 -46
- package/src/bookmarks/delete/client.ts +0 -35
- package/src/bookmarks/delete/generate-endpoint.ts +0 -24
- package/src/bookmarks/delete/generate-parameters.ts +0 -25
- package/src/bookmarks/delete/index.ts +0 -6
- package/src/bookmarks/delete/types-v1.ts +0 -2
- package/src/bookmarks/delete/types.ts +0 -35
- package/src/bookmarks/favorites/delete/client.ts +0 -35
- package/src/bookmarks/favorites/delete/generate-endpoint.ts +0 -19
- package/src/bookmarks/favorites/delete/generate-parameters.ts +0 -25
- package/src/bookmarks/favorites/delete/index.ts +0 -6
- package/src/bookmarks/favorites/delete/types-v1.ts +0 -2
- package/src/bookmarks/favorites/delete/types.ts +0 -33
- package/src/bookmarks/favorites/head/client.ts +0 -35
- package/src/bookmarks/favorites/head/generate-endpoint.ts +0 -19
- package/src/bookmarks/favorites/head/generate-parameters.ts +0 -28
- package/src/bookmarks/favorites/head/index.ts +0 -6
- package/src/bookmarks/favorites/head/types.ts +0 -35
- package/src/bookmarks/favorites/post/client.ts +0 -35
- package/src/bookmarks/favorites/post/generate-endpoint.ts +0 -18
- package/src/bookmarks/favorites/post/generate-parameters.ts +0 -28
- package/src/bookmarks/favorites/post/index.ts +0 -6
- package/src/bookmarks/favorites/post/types.ts +0 -35
- package/src/bookmarks/get/client.ts +0 -30
- package/src/bookmarks/get/generate-endpoint.ts +0 -24
- package/src/bookmarks/get/generate-parameters.ts +0 -18
- package/src/bookmarks/get/index.ts +0 -6
- package/src/bookmarks/get/types.ts +0 -39
- package/src/bookmarks/getAll/client.ts +0 -30
- package/src/bookmarks/getAll/generate-endpoint.ts +0 -15
- package/src/bookmarks/getAll/generate-parameters.ts +0 -18
- package/src/bookmarks/getAll/index.ts +0 -6
- package/src/bookmarks/getAll/types.ts +0 -21
- package/src/bookmarks/patch/client.ts +0 -30
- package/src/bookmarks/patch/generate-endpoint.ts +0 -18
- package/src/bookmarks/patch/generate-parameters.ts +0 -28
- package/src/bookmarks/patch/index.ts +0 -6
- package/src/bookmarks/patch/types.ts +0 -45
- package/src/bookmarks/post/client.ts +0 -30
- package/src/bookmarks/post/generate-endpoint.ts +0 -18
- package/src/bookmarks/post/generate-parameters.ts +0 -28
- package/src/bookmarks/post/index.ts +0 -6
- package/src/bookmarks/post/types.ts +0 -58
package/CHANGELOG.md
CHANGED
|
@@ -1,53 +1,66 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 5.0.
|
|
3
|
+
## 5.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2650](https://github.com/equinor/fusion-framework/pull/2650) [`2343667`](https://github.com/equinor/fusion-framework/commit/234366756878550ed7405610f384d69fb6a89967) Thanks [@odinr](https://github.com/odinr)! - Fixed `isBookmarkInFavorites` by altering `generateRequestParameters` which had a copy paste bug (wrong request method). Also disabled the `validate_api_request` response operation for now, it was throwing an error on all response code which waas not **OK**.
|
|
8
|
+
|
|
9
|
+
> in a future update, the `ResponseHandler` will provide the operators with the `Request` object, so they can access the request method and other request properties.
|
|
10
|
+
|
|
11
|
+
Also fixed the `headSelector` to only check response code, since a `HEAD` request does not return a body.
|
|
12
|
+
|
|
13
|
+
## 5.0.0
|
|
4
14
|
|
|
5
15
|
### Major Changes
|
|
6
16
|
|
|
7
|
-
-
|
|
17
|
+
- [#2410](https://github.com/equinor/fusion-framework/pull/2410) [`9d1cb90`](https://github.com/equinor/fusion-framework/commit/9d1cb9003fa10e7ccaa95c20ef86f0a618034641) Thanks [@odinr](https://github.com/odinr)! - Total rework of api interface for bookmarks.
|
|
8
18
|
|
|
9
|
-
|
|
10
|
-
> This will introduce breaking changes to the consumption of fusion-framework moduels.
|
|
19
|
+
The current version misrepresents the api, and does not provide a good interface for working with bookmarks. So was decided to rework the api interface to better represent the api, and provide a more robust interface for working with bookmarks. Instead of fixing the current implementation, it was decided to rework the entire module to save time and confusion in the future.
|
|
11
20
|
|
|
12
|
-
|
|
21
|
+
> This module is meant for internal use only, and should not be used directly by applications, so the breaking changes should not affect any applications. Ancestor modules should be updated to reflect the changes in this module.
|
|
22
|
+
|
|
23
|
+
**BREAKING CHANGES:**
|
|
13
24
|
|
|
14
|
-
-
|
|
15
|
-
-
|
|
25
|
+
- api client has been updated to reflect the new api endpoints and request/response types
|
|
26
|
+
- models have been replaced with infered `zod` schemas
|
|
27
|
+
- request and responses are now parsed and validated using `zod` schemas
|
|
28
|
+
- file structure has been updated to reflect the new api client structure
|
|
16
29
|
|
|
17
30
|
## 4.1.5
|
|
18
31
|
|
|
19
32
|
### Patch Changes
|
|
20
33
|
|
|
21
|
-
-
|
|
34
|
+
- [#2491](https://github.com/equinor/fusion-framework/pull/2491) [`73af73e`](https://github.com/equinor/fusion-framework/commit/73af73e5582ca27b132210af8ba308b80e036d51) Thanks [@odinr](https://github.com/odinr)! - Capatalize http request method verb to uppercase
|
|
22
35
|
|
|
23
36
|
## 4.1.4
|
|
24
37
|
|
|
25
38
|
### Patch Changes
|
|
26
39
|
|
|
27
|
-
-
|
|
28
|
-
-
|
|
40
|
+
- Updated dependencies [[`2644b3d`](https://github.com/equinor/fusion-framework/commit/2644b3d63939aede736a3b1950db32dbd487877d)]:
|
|
41
|
+
- @equinor/fusion-framework-module@4.3.5
|
|
29
42
|
|
|
30
43
|
## 4.1.3
|
|
31
44
|
|
|
32
45
|
### Patch Changes
|
|
33
46
|
|
|
34
|
-
-
|
|
35
|
-
-
|
|
47
|
+
- Updated dependencies [[`75d676d`](https://github.com/equinor/fusion-framework/commit/75d676d2c7919f30e036b5ae97c4d814c569aa87), [`00d5e9c`](https://github.com/equinor/fusion-framework/commit/00d5e9c632876742c3d2a74efea2f126a0a169d9)]:
|
|
48
|
+
- @equinor/fusion-framework-module@4.3.4
|
|
36
49
|
|
|
37
50
|
## 4.1.2
|
|
38
51
|
|
|
39
52
|
### Patch Changes
|
|
40
53
|
|
|
41
|
-
-
|
|
42
|
-
-
|
|
54
|
+
- Updated dependencies [[`a1524e9`](https://github.com/equinor/fusion-framework/commit/a1524e9c4d83778da3db42dbcf99908b776a0592)]:
|
|
55
|
+
- @equinor/fusion-framework-module@4.3.3
|
|
43
56
|
|
|
44
57
|
## 4.1.1
|
|
45
58
|
|
|
46
59
|
### Patch Changes
|
|
47
60
|
|
|
48
|
-
-
|
|
61
|
+
- [#2333](https://github.com/equinor/fusion-framework/pull/2333) [`86d55b8`](https://github.com/equinor/fusion-framework/commit/86d55b8d27a572f3f62170b1e72aceda54f955e1) Thanks [@odinr](https://github.com/odinr)! - Updated `TypeScript` to 5.5.3
|
|
49
62
|
|
|
50
|
-
-
|
|
63
|
+
- [#2320](https://github.com/equinor/fusion-framework/pull/2320) [`1dd85f3`](https://github.com/equinor/fusion-framework/commit/1dd85f3a408a73df556d1812a5f280945cc100ee) Thanks [@odinr](https://github.com/odinr)! - Removed the `removeComments` option from the `tsconfig.base.json` file.
|
|
51
64
|
|
|
52
65
|
Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
|
|
53
66
|
|
|
@@ -90,21 +103,21 @@
|
|
|
90
103
|
|
|
91
104
|
This change ensures that comments are preserved in the compiled output, potentially improving the development and debugging experience for users of the Fusion Framework.
|
|
92
105
|
|
|
93
|
-
-
|
|
94
|
-
-
|
|
106
|
+
- Updated dependencies [[`2f74edc`](https://github.com/equinor/fusion-framework/commit/2f74edcd4a3ea2b87d69f0fd63492145c3c01663), [`86d55b8`](https://github.com/equinor/fusion-framework/commit/86d55b8d27a572f3f62170b1e72aceda54f955e1), [`1dd85f3`](https://github.com/equinor/fusion-framework/commit/1dd85f3a408a73df556d1812a5f280945cc100ee)]:
|
|
107
|
+
- @equinor/fusion-framework-module@4.3.2
|
|
95
108
|
|
|
96
109
|
## 4.1.0
|
|
97
110
|
|
|
98
111
|
### Minor Changes
|
|
99
112
|
|
|
100
|
-
-
|
|
113
|
+
- [#2181](https://github.com/equinor/fusion-framework/pull/2181) [`ba2379b`](https://github.com/equinor/fusion-framework/commit/ba2379b177f23ccc023894e36e50d7fc56c929c8) Thanks [@odinr](https://github.com/odinr)! - ## @equinor/fusion-framework-module-services
|
|
101
114
|
|
|
102
115
|
Updated the `PeopleApiClient.photo` method to properly type the response as `PersonPhotoApiResponse<TVersion>` instead of `Blob`. This allows for more accurate type checking when using the method.
|
|
103
116
|
|
|
104
117
|
To update your code:
|
|
105
118
|
|
|
106
|
-
-
|
|
107
|
-
-
|
|
119
|
+
- If you are using the `PeopleApiClient.photo` method directly, no changes are needed. The method will now properly type the response.
|
|
120
|
+
- If you have custom type assertions or checks around the response from `PeopleApiClient.photo`, you may need to update them to handle `PersonPhotoApiResponse<TVersion>` instead of `Blob`.
|
|
108
121
|
|
|
109
122
|
Example:
|
|
110
123
|
|
|
@@ -124,47 +137,47 @@
|
|
|
124
137
|
|
|
125
138
|
### Patch Changes
|
|
126
139
|
|
|
127
|
-
-
|
|
128
|
-
-
|
|
140
|
+
- Updated dependencies [[`fb424be`](https://github.com/equinor/fusion-framework/commit/fb424be24ad9349d01daef91a01c464d7b1413d2), [`fb424be`](https://github.com/equinor/fusion-framework/commit/fb424be24ad9349d01daef91a01c464d7b1413d2), [`fb424be`](https://github.com/equinor/fusion-framework/commit/fb424be24ad9349d01daef91a01c464d7b1413d2)]:
|
|
141
|
+
- @equinor/fusion-framework-module@4.3.1
|
|
129
142
|
|
|
130
143
|
## 4.0.1
|
|
131
144
|
|
|
132
145
|
### Patch Changes
|
|
133
146
|
|
|
134
|
-
-
|
|
147
|
+
- [#1981](https://github.com/equinor/fusion-framework/pull/1981) [`3d068b5`](https://github.com/equinor/fusion-framework/commit/3d068b5a7b214b62fcae5546f08830ea90f872dc) Thanks [@eikeland](https://github.com/eikeland)! - Align package exports with node10+ documentation.
|
|
135
148
|
|
|
136
149
|
## 4.0.0
|
|
137
150
|
|
|
138
151
|
### Minor Changes
|
|
139
152
|
|
|
140
|
-
-
|
|
153
|
+
- [#1953](https://github.com/equinor/fusion-framework/pull/1953) [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904) Thanks [@odinr](https://github.com/odinr)! - updated typescript to 5.4.2
|
|
141
154
|
|
|
142
155
|
### Patch Changes
|
|
143
156
|
|
|
144
|
-
-
|
|
145
|
-
-
|
|
157
|
+
- Updated dependencies [[`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904), [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904)]:
|
|
158
|
+
- @equinor/fusion-framework-module@4.3.0
|
|
146
159
|
|
|
147
160
|
## 3.2.4
|
|
148
161
|
|
|
149
162
|
### Patch Changes
|
|
150
163
|
|
|
151
|
-
-
|
|
152
|
-
-
|
|
164
|
+
- Updated dependencies [[`152cf73`](https://github.com/equinor/fusion-framework/commit/152cf73d39eb32ccbaddaa6941e315c437c4972d)]:
|
|
165
|
+
- @equinor/fusion-framework-module@4.2.7
|
|
153
166
|
|
|
154
167
|
## 3.2.3
|
|
155
168
|
|
|
156
169
|
### Patch Changes
|
|
157
170
|
|
|
158
|
-
-
|
|
171
|
+
- [#1595](https://github.com/equinor/fusion-framework/pull/1595) [`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125) Thanks [@Gustav-Eikaas](https://github.com/Gustav-Eikaas)! - support for module resolution NodeNext & Bundler
|
|
159
172
|
|
|
160
|
-
-
|
|
161
|
-
-
|
|
173
|
+
- Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
|
|
174
|
+
- @equinor/fusion-framework-module@4.2.6
|
|
162
175
|
|
|
163
176
|
## 3.2.2
|
|
164
177
|
|
|
165
178
|
### Patch Changes
|
|
166
179
|
|
|
167
|
-
-
|
|
180
|
+
- [#1282](https://github.com/equinor/fusion-framework/pull/1282) [`ddc31c35`](https://github.com/equinor/fusion-framework/commit/ddc31c3571e36be057095238cf22e78051f423b0) Thanks [@odinr](https://github.com/odinr)! - add util for checking if object is person
|
|
168
181
|
|
|
169
182
|
> extremely crude, but good enough until backend comes of with new models or endpoint
|
|
170
183
|
|
|
@@ -174,22 +187,22 @@
|
|
|
174
187
|
|
|
175
188
|
### Patch Changes
|
|
176
189
|
|
|
177
|
-
-
|
|
190
|
+
- [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
|
|
178
191
|
|
|
179
|
-
-
|
|
180
|
-
-
|
|
192
|
+
- Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
|
|
193
|
+
- @equinor/fusion-framework-module@4.2.5
|
|
181
194
|
|
|
182
195
|
## 3.2.0
|
|
183
196
|
|
|
184
197
|
### Minor Changes
|
|
185
198
|
|
|
186
|
-
-
|
|
199
|
+
- [#1243](https://github.com/equinor/fusion-framework/pull/1243) [`f277c7fc`](https://github.com/equinor/fusion-framework/commit/f277c7fc54ca2ebe75ba1dda94a0d72eb7c8e15b) Thanks [@odinr](https://github.com/odinr)! - Added person services
|
|
187
200
|
|
|
188
201
|
> **for internal usage only!**
|
|
189
202
|
|
|
190
|
-
-
|
|
191
|
-
-
|
|
192
|
-
-
|
|
203
|
+
- add function for fetching person details
|
|
204
|
+
- add function for querying persons
|
|
205
|
+
- add function for downloading person photo
|
|
193
206
|
|
|
194
207
|
```ts
|
|
195
208
|
const personApi = await modules.services.createPeopleClient();
|
|
@@ -200,27 +213,27 @@
|
|
|
200
213
|
|
|
201
214
|
### Patch Changes
|
|
202
215
|
|
|
203
|
-
-
|
|
204
|
-
-
|
|
216
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
217
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
205
218
|
|
|
206
219
|
## 3.1.4
|
|
207
220
|
|
|
208
221
|
### Patch Changes
|
|
209
222
|
|
|
210
|
-
-
|
|
223
|
+
- [#1109](https://github.com/equinor/fusion-framework/pull/1109) [`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862) Thanks [@odinr](https://github.com/odinr)! - Change packaged manager from yarn to pnpm
|
|
211
224
|
|
|
212
225
|
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
213
226
|
|
|
214
227
|
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
215
228
|
|
|
216
|
-
-
|
|
217
|
-
-
|
|
229
|
+
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
230
|
+
- @equinor/fusion-framework-module@4.2.3
|
|
218
231
|
|
|
219
232
|
## 3.1.3
|
|
220
233
|
|
|
221
234
|
### Patch Changes
|
|
222
235
|
|
|
223
|
-
-
|
|
236
|
+
- [#946](https://github.com/equinor/fusion-framework/pull/946) [`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352) Thanks [@odinr](https://github.com/odinr)! - Build/update typescript to 5
|
|
224
237
|
|
|
225
238
|
All notable changes to this project will be documented in this file.
|
|
226
239
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -237,54 +250,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
237
250
|
|
|
238
251
|
### Features
|
|
239
252
|
|
|
240
|
-
-
|
|
253
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
241
254
|
|
|
242
255
|
### Bug Fixes
|
|
243
256
|
|
|
244
|
-
-
|
|
257
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
245
258
|
|
|
246
259
|
## 3.0.3 (2023-04-24)
|
|
247
260
|
|
|
248
261
|
### Bug Fixes
|
|
249
262
|
|
|
250
|
-
-
|
|
263
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
251
264
|
|
|
252
265
|
## 3.0.2 (2023-04-18)
|
|
253
266
|
|
|
254
267
|
### Bug Fixes
|
|
255
268
|
|
|
256
|
-
-
|
|
257
|
-
-
|
|
269
|
+
- **service:** fix linting ([88b5e59](https://github.com/equinor/fusion-framework/commit/88b5e596d18ac8b999404c3487a9896b0806a767))
|
|
270
|
+
- **services:** update-api-provider-types ([380c6af](https://github.com/equinor/fusion-framework/commit/380c6af855fa6b9a29dbedd51917f0d6e4e7742b))
|
|
258
271
|
|
|
259
272
|
## 3.0.1 (2023-04-17)
|
|
260
273
|
|
|
261
274
|
### Bug Fixes
|
|
262
275
|
|
|
263
|
-
-
|
|
276
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
264
277
|
|
|
265
278
|
## 3.0.0 (2023-04-16)
|
|
266
279
|
|
|
267
280
|
### Bug Fixes
|
|
268
281
|
|
|
269
|
-
-
|
|
282
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
270
283
|
|
|
271
284
|
## 2.6.0 (2023-04-14)
|
|
272
285
|
|
|
273
286
|
### Features
|
|
274
287
|
|
|
275
|
-
-
|
|
288
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
276
289
|
|
|
277
290
|
## 2.5.0 (2023-04-14)
|
|
278
291
|
|
|
279
292
|
### Features
|
|
280
293
|
|
|
281
|
-
-
|
|
294
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
282
295
|
|
|
283
296
|
## 2.4.0 (2023-04-14)
|
|
284
297
|
|
|
285
298
|
### Features
|
|
286
299
|
|
|
287
|
-
-
|
|
300
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
288
301
|
|
|
289
302
|
## 2.3.1 (2023-04-13)
|
|
290
303
|
|
|
@@ -294,29 +307,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
294
307
|
|
|
295
308
|
### Features
|
|
296
309
|
|
|
297
|
-
-
|
|
298
|
-
-
|
|
310
|
+
- **bookmark-client:** added verify users bookmark ([971835c](https://github.com/equinor/fusion-framework/commit/971835c801f46fc4bebd3d1b97ca8cd83c085a77))
|
|
311
|
+
- **Bookmark-Client:** Enable to add bookmark favorites ([83dd966](https://github.com/equinor/fusion-framework/commit/83dd966ef1d609f0be44373ee16344810ae9beb4))
|
|
299
312
|
|
|
300
313
|
### Bug Fixes
|
|
301
314
|
|
|
302
|
-
-
|
|
303
|
-
-
|
|
315
|
+
- **bookmark-client:** fix import ([7c7d585](https://github.com/equinor/fusion-framework/commit/7c7d585b6eb53688e5ce9f80474eac3275576290))
|
|
316
|
+
- **bookmark-client:** renamed id to bookmarkId ([590ad69](https://github.com/equinor/fusion-framework/commit/590ad69cfca579ec65accb5dab47c69968aade95))
|
|
304
317
|
|
|
305
318
|
## 2.2.0 (2023-03-27)
|
|
306
319
|
|
|
307
320
|
### Features
|
|
308
321
|
|
|
309
|
-
-
|
|
322
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
310
323
|
|
|
311
324
|
## 2.1.0 (2023-03-22)
|
|
312
325
|
|
|
313
326
|
### Features
|
|
314
327
|
|
|
315
|
-
-
|
|
328
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
316
329
|
|
|
317
330
|
### Bug Fixes
|
|
318
331
|
|
|
319
|
-
-
|
|
332
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
320
333
|
|
|
321
334
|
## [2.0.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.6...@equinor/fusion-framework-module-services@2.0.7) (2023-03-20)
|
|
322
335
|
|
|
@@ -362,7 +375,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
362
375
|
|
|
363
376
|
### Bug Fixes
|
|
364
377
|
|
|
365
|
-
-
|
|
378
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
366
379
|
|
|
367
380
|
## [1.0.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.12...@equinor/fusion-framework-module-services@1.0.13) (2023-01-17)
|
|
368
381
|
|
|
@@ -436,7 +449,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
436
449
|
|
|
437
450
|
### Bug Fixes
|
|
438
451
|
|
|
439
|
-
-
|
|
452
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
440
453
|
|
|
441
454
|
## [0.5.18](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.17...@equinor/fusion-framework-module-services@0.5.18) (2022-12-01)
|
|
442
455
|
|
|
@@ -514,13 +527,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
514
527
|
|
|
515
528
|
### Features
|
|
516
529
|
|
|
517
|
-
-
|
|
530
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
518
531
|
|
|
519
532
|
## 0.4.0 (2022-11-01)
|
|
520
533
|
|
|
521
534
|
### Features
|
|
522
535
|
|
|
523
|
-
-
|
|
536
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
524
537
|
|
|
525
538
|
## 0.3.2 (2022-10-27)
|
|
526
539
|
|
|
@@ -534,13 +547,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
534
547
|
|
|
535
548
|
### Features
|
|
536
549
|
|
|
537
|
-
-
|
|
550
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
538
551
|
|
|
539
552
|
## [0.2.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.1.1...@equinor/fusion-framework-module-services@0.2.0) (2022-10-17)
|
|
540
553
|
|
|
541
554
|
### Features
|
|
542
555
|
|
|
543
|
-
-
|
|
556
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
544
557
|
|
|
545
558
|
## 0.1.1 (2022-10-03)
|
|
546
559
|
|
|
@@ -550,39 +563,39 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
550
563
|
|
|
551
564
|
### Features
|
|
552
565
|
|
|
553
|
-
-
|
|
554
|
-
-
|
|
555
|
-
-
|
|
556
|
-
-
|
|
557
|
-
-
|
|
558
|
-
|
|
559
|
-
|
|
566
|
+
- **module-services:** initial ([98fd097](https://github.com/equinor/fusion-framework/commit/98fd097aa486d8ece4cd4501cf7ecb533dd7a62a)), closes [#265](https://github.com/equinor/fusion-framework/issues/265) [#269](https://github.com/equinor/fusion-framework/issues/269) [#270](https://github.com/equinor/fusion-framework/issues/270)
|
|
567
|
+
- **module-services:** initial ([8eeadc7](https://github.com/equinor/fusion-framework/commit/8eeadc764516048e5ead9f5e2d14af7edd1b1057)), closes [#265](https://github.com/equinor/fusion-framework/issues/265) [#269](https://github.com/equinor/fusion-framework/issues/269) [#270](https://github.com/equinor/fusion-framework/issues/270)
|
|
568
|
+
- **module-services:** rewrite interface for services ([b440aa2](https://github.com/equinor/fusion-framework/commit/b440aa28ae733aa77e07128b04b21fe24db356b4))
|
|
569
|
+
- **module-services:** rewrite module ([bbbc203](https://github.com/equinor/fusion-framework/commit/bbbc2031f4c8785fd623db3be16f96195094f47e))
|
|
570
|
+
- **module-services:** rewrite module ([40b64ad](https://github.com/equinor/fusion-framework/commit/40b64ad5dca8ef719fcca9b3297e85aa28af413a))
|
|
571
|
+
, {search: 'foo@bar.com'})
|
|
572
|
+
personApi.get('v4', 'json
|
|
560
573
|
|
|
561
574
|
## 3.1.5
|
|
562
575
|
|
|
563
576
|
### Patch Changes
|
|
564
577
|
|
|
565
|
-
-
|
|
566
|
-
-
|
|
578
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
579
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
567
580
|
|
|
568
581
|
## 3.1.4
|
|
569
582
|
|
|
570
583
|
### Patch Changes
|
|
571
584
|
|
|
572
|
-
-
|
|
585
|
+
- [#1109](https://github.com/equinor/fusion-framework/pull/1109) [`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862) Thanks [@odinr](https://github.com/odinr)! - Change packaged manager from yarn to pnpm
|
|
573
586
|
|
|
574
587
|
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
575
588
|
|
|
576
589
|
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
577
590
|
|
|
578
|
-
-
|
|
579
|
-
-
|
|
591
|
+
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
592
|
+
- @equinor/fusion-framework-module@4.2.3
|
|
580
593
|
|
|
581
594
|
## 3.1.3
|
|
582
595
|
|
|
583
596
|
### Patch Changes
|
|
584
597
|
|
|
585
|
-
-
|
|
598
|
+
- [#946](https://github.com/equinor/fusion-framework/pull/946) [`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352) Thanks [@odinr](https://github.com/odinr)! - Build/update typescript to 5
|
|
586
599
|
|
|
587
600
|
All notable changes to this project will be documented in this file.
|
|
588
601
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -599,54 +612,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
599
612
|
|
|
600
613
|
### Features
|
|
601
614
|
|
|
602
|
-
-
|
|
615
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
603
616
|
|
|
604
617
|
### Bug Fixes
|
|
605
618
|
|
|
606
|
-
-
|
|
619
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
607
620
|
|
|
608
621
|
## 3.0.3 (2023-04-24)
|
|
609
622
|
|
|
610
623
|
### Bug Fixes
|
|
611
624
|
|
|
612
|
-
-
|
|
625
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
613
626
|
|
|
614
627
|
## 3.0.2 (2023-04-18)
|
|
615
628
|
|
|
616
629
|
### Bug Fixes
|
|
617
630
|
|
|
618
|
-
-
|
|
619
|
-
-
|
|
631
|
+
- **service:** fix linting ([88b5e59](https://github.com/equinor/fusion-framework/commit/88b5e596d18ac8b999404c3487a9896b0806a767))
|
|
632
|
+
- **services:** update-api-provider-types ([380c6af](https://github.com/equinor/fusion-framework/commit/380c6af855fa6b9a29dbedd51917f0d6e4e7742b))
|
|
620
633
|
|
|
621
634
|
## 3.0.1 (2023-04-17)
|
|
622
635
|
|
|
623
636
|
### Bug Fixes
|
|
624
637
|
|
|
625
|
-
-
|
|
638
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
626
639
|
|
|
627
640
|
## 3.0.0 (2023-04-16)
|
|
628
641
|
|
|
629
642
|
### Bug Fixes
|
|
630
643
|
|
|
631
|
-
-
|
|
644
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
632
645
|
|
|
633
646
|
## 2.6.0 (2023-04-14)
|
|
634
647
|
|
|
635
648
|
### Features
|
|
636
649
|
|
|
637
|
-
-
|
|
650
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
638
651
|
|
|
639
652
|
## 2.5.0 (2023-04-14)
|
|
640
653
|
|
|
641
654
|
### Features
|
|
642
655
|
|
|
643
|
-
-
|
|
656
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
644
657
|
|
|
645
658
|
## 2.4.0 (2023-04-14)
|
|
646
659
|
|
|
647
660
|
### Features
|
|
648
661
|
|
|
649
|
-
-
|
|
662
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
650
663
|
|
|
651
664
|
## 2.3.1 (2023-04-13)
|
|
652
665
|
|
|
@@ -656,29 +669,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
656
669
|
|
|
657
670
|
### Features
|
|
658
671
|
|
|
659
|
-
-
|
|
660
|
-
-
|
|
672
|
+
- **bookmark-client:** added verify users bookmark ([971835c](https://github.com/equinor/fusion-framework/commit/971835c801f46fc4bebd3d1b97ca8cd83c085a77))
|
|
673
|
+
- **Bookmark-Client:** Enable to add bookmark favorites ([83dd966](https://github.com/equinor/fusion-framework/commit/83dd966ef1d609f0be44373ee16344810ae9beb4))
|
|
661
674
|
|
|
662
675
|
### Bug Fixes
|
|
663
676
|
|
|
664
|
-
-
|
|
665
|
-
-
|
|
677
|
+
- **bookmark-client:** fix import ([7c7d585](https://github.com/equinor/fusion-framework/commit/7c7d585b6eb53688e5ce9f80474eac3275576290))
|
|
678
|
+
- **bookmark-client:** renamed id to bookmarkId ([590ad69](https://github.com/equinor/fusion-framework/commit/590ad69cfca579ec65accb5dab47c69968aade95))
|
|
666
679
|
|
|
667
680
|
## 2.2.0 (2023-03-27)
|
|
668
681
|
|
|
669
682
|
### Features
|
|
670
683
|
|
|
671
|
-
-
|
|
684
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
672
685
|
|
|
673
686
|
## 2.1.0 (2023-03-22)
|
|
674
687
|
|
|
675
688
|
### Features
|
|
676
689
|
|
|
677
|
-
-
|
|
690
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
678
691
|
|
|
679
692
|
### Bug Fixes
|
|
680
693
|
|
|
681
|
-
-
|
|
694
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
682
695
|
|
|
683
696
|
## [2.0.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.6...@equinor/fusion-framework-module-services@2.0.7) (2023-03-20)
|
|
684
697
|
|
|
@@ -724,7 +737,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
724
737
|
|
|
725
738
|
### Bug Fixes
|
|
726
739
|
|
|
727
|
-
-
|
|
740
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
728
741
|
|
|
729
742
|
## [1.0.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.12...@equinor/fusion-framework-module-services@1.0.13) (2023-01-17)
|
|
730
743
|
|
|
@@ -798,7 +811,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
798
811
|
|
|
799
812
|
### Bug Fixes
|
|
800
813
|
|
|
801
|
-
-
|
|
814
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
802
815
|
|
|
803
816
|
## [0.5.18](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.17...@equinor/fusion-framework-module-services@0.5.18) (2022-12-01)
|
|
804
817
|
|
|
@@ -876,13 +889,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
876
889
|
|
|
877
890
|
### Features
|
|
878
891
|
|
|
879
|
-
-
|
|
892
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
880
893
|
|
|
881
894
|
## 0.4.0 (2022-11-01)
|
|
882
895
|
|
|
883
896
|
### Features
|
|
884
897
|
|
|
885
|
-
-
|
|
898
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
886
899
|
|
|
887
900
|
## 0.3.2 (2022-10-27)
|
|
888
901
|
|
|
@@ -896,13 +909,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
896
909
|
|
|
897
910
|
### Features
|
|
898
911
|
|
|
899
|
-
-
|
|
912
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
900
913
|
|
|
901
914
|
## [0.2.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.1.1...@equinor/fusion-framework-module-services@0.2.0) (2022-10-17)
|
|
902
915
|
|
|
903
916
|
### Features
|
|
904
917
|
|
|
905
|
-
-
|
|
918
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
906
919
|
|
|
907
920
|
## 0.1.1 (2022-10-03)
|
|
908
921
|
|
|
@@ -912,39 +925,39 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
912
925
|
|
|
913
926
|
### Features
|
|
914
927
|
|
|
915
|
-
-
|
|
916
|
-
-
|
|
917
|
-
-
|
|
918
|
-
-
|
|
919
|
-
-
|
|
920
|
-
|
|
921
|
-
|
|
928
|
+
- **module-services:** initial ([98fd097](https://github.com/equinor/fusion-framework/commit/98fd097aa486d8ece4cd4501cf7ecb533dd7a62a)), closes [#265](https://github.com/equinor/fusion-framework/issues/265) [#269](https://github.com/equinor/fusion-framework/issues/269) [#270](https://github.com/equinor/fusion-framework/issues/270)
|
|
929
|
+
- **module-services:** initial ([8eeadc7](https://github.com/equinor/fusion-framework/commit/8eeadc764516048e5ead9f5e2d14af7edd1b1057)), closes [#265](https://github.com/equinor/fusion-framework/issues/265) [#269](https://github.com/equinor/fusion-framework/issues/269) [#270](https://github.com/equinor/fusion-framework/issues/270)
|
|
930
|
+
- **module-services:** rewrite interface for services ([b440aa2](https://github.com/equinor/fusion-framework/commit/b440aa28ae733aa77e07128b04b21fe24db356b4))
|
|
931
|
+
- **module-services:** rewrite module ([bbbc203](https://github.com/equinor/fusion-framework/commit/bbbc2031f4c8785fd623db3be16f96195094f47e))
|
|
932
|
+
- **module-services:** rewrite module ([40b64ad](https://github.com/equinor/fusion-framework/commit/40b64ad5dca8ef719fcca9b3297e85aa28af413a))
|
|
933
|
+
, {azureId: '1234'})
|
|
934
|
+
personApi.photo('v2', 'blob
|
|
922
935
|
|
|
923
936
|
## 3.1.5
|
|
924
937
|
|
|
925
938
|
### Patch Changes
|
|
926
939
|
|
|
927
|
-
-
|
|
928
|
-
-
|
|
940
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
941
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
929
942
|
|
|
930
943
|
## 3.1.4
|
|
931
944
|
|
|
932
945
|
### Patch Changes
|
|
933
946
|
|
|
934
|
-
-
|
|
947
|
+
- [#1109](https://github.com/equinor/fusion-framework/pull/1109) [`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862) Thanks [@odinr](https://github.com/odinr)! - Change packaged manager from yarn to pnpm
|
|
935
948
|
|
|
936
949
|
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
937
950
|
|
|
938
951
|
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
939
952
|
|
|
940
|
-
-
|
|
941
|
-
-
|
|
953
|
+
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
954
|
+
- @equinor/fusion-framework-module@4.2.3
|
|
942
955
|
|
|
943
956
|
## 3.1.3
|
|
944
957
|
|
|
945
958
|
### Patch Changes
|
|
946
959
|
|
|
947
|
-
-
|
|
960
|
+
- [#946](https://github.com/equinor/fusion-framework/pull/946) [`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352) Thanks [@odinr](https://github.com/odinr)! - Build/update typescript to 5
|
|
948
961
|
|
|
949
962
|
All notable changes to this project will be documented in this file.
|
|
950
963
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -961,54 +974,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
961
974
|
|
|
962
975
|
### Features
|
|
963
976
|
|
|
964
|
-
-
|
|
977
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
965
978
|
|
|
966
979
|
### Bug Fixes
|
|
967
980
|
|
|
968
|
-
-
|
|
981
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
969
982
|
|
|
970
983
|
## 3.0.3 (2023-04-24)
|
|
971
984
|
|
|
972
985
|
### Bug Fixes
|
|
973
986
|
|
|
974
|
-
-
|
|
987
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
975
988
|
|
|
976
989
|
## 3.0.2 (2023-04-18)
|
|
977
990
|
|
|
978
991
|
### Bug Fixes
|
|
979
992
|
|
|
980
|
-
-
|
|
981
|
-
-
|
|
993
|
+
- **service:** fix linting ([88b5e59](https://github.com/equinor/fusion-framework/commit/88b5e596d18ac8b999404c3487a9896b0806a767))
|
|
994
|
+
- **services:** update-api-provider-types ([380c6af](https://github.com/equinor/fusion-framework/commit/380c6af855fa6b9a29dbedd51917f0d6e4e7742b))
|
|
982
995
|
|
|
983
996
|
## 3.0.1 (2023-04-17)
|
|
984
997
|
|
|
985
998
|
### Bug Fixes
|
|
986
999
|
|
|
987
|
-
-
|
|
1000
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
988
1001
|
|
|
989
1002
|
## 3.0.0 (2023-04-16)
|
|
990
1003
|
|
|
991
1004
|
### Bug Fixes
|
|
992
1005
|
|
|
993
|
-
-
|
|
1006
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
994
1007
|
|
|
995
1008
|
## 2.6.0 (2023-04-14)
|
|
996
1009
|
|
|
997
1010
|
### Features
|
|
998
1011
|
|
|
999
|
-
-
|
|
1012
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1000
1013
|
|
|
1001
1014
|
## 2.5.0 (2023-04-14)
|
|
1002
1015
|
|
|
1003
1016
|
### Features
|
|
1004
1017
|
|
|
1005
|
-
-
|
|
1018
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1006
1019
|
|
|
1007
1020
|
## 2.4.0 (2023-04-14)
|
|
1008
1021
|
|
|
1009
1022
|
### Features
|
|
1010
1023
|
|
|
1011
|
-
-
|
|
1024
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1012
1025
|
|
|
1013
1026
|
## 2.3.1 (2023-04-13)
|
|
1014
1027
|
|
|
@@ -1018,29 +1031,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1018
1031
|
|
|
1019
1032
|
### Features
|
|
1020
1033
|
|
|
1021
|
-
-
|
|
1022
|
-
-
|
|
1034
|
+
- **bookmark-client:** added verify users bookmark ([971835c](https://github.com/equinor/fusion-framework/commit/971835c801f46fc4bebd3d1b97ca8cd83c085a77))
|
|
1035
|
+
- **Bookmark-Client:** Enable to add bookmark favorites ([83dd966](https://github.com/equinor/fusion-framework/commit/83dd966ef1d609f0be44373ee16344810ae9beb4))
|
|
1023
1036
|
|
|
1024
1037
|
### Bug Fixes
|
|
1025
1038
|
|
|
1026
|
-
-
|
|
1027
|
-
-
|
|
1039
|
+
- **bookmark-client:** fix import ([7c7d585](https://github.com/equinor/fusion-framework/commit/7c7d585b6eb53688e5ce9f80474eac3275576290))
|
|
1040
|
+
- **bookmark-client:** renamed id to bookmarkId ([590ad69](https://github.com/equinor/fusion-framework/commit/590ad69cfca579ec65accb5dab47c69968aade95))
|
|
1028
1041
|
|
|
1029
1042
|
## 2.2.0 (2023-03-27)
|
|
1030
1043
|
|
|
1031
1044
|
### Features
|
|
1032
1045
|
|
|
1033
|
-
-
|
|
1046
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
1034
1047
|
|
|
1035
1048
|
## 2.1.0 (2023-03-22)
|
|
1036
1049
|
|
|
1037
1050
|
### Features
|
|
1038
1051
|
|
|
1039
|
-
-
|
|
1052
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
1040
1053
|
|
|
1041
1054
|
### Bug Fixes
|
|
1042
1055
|
|
|
1043
|
-
-
|
|
1056
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
1044
1057
|
|
|
1045
1058
|
## [2.0.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.6...@equinor/fusion-framework-module-services@2.0.7) (2023-03-20)
|
|
1046
1059
|
|
|
@@ -1086,7 +1099,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1086
1099
|
|
|
1087
1100
|
### Bug Fixes
|
|
1088
1101
|
|
|
1089
|
-
-
|
|
1102
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
1090
1103
|
|
|
1091
1104
|
## [1.0.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.12...@equinor/fusion-framework-module-services@1.0.13) (2023-01-17)
|
|
1092
1105
|
|
|
@@ -1160,7 +1173,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1160
1173
|
|
|
1161
1174
|
### Bug Fixes
|
|
1162
1175
|
|
|
1163
|
-
-
|
|
1176
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
1164
1177
|
|
|
1165
1178
|
## [0.5.18](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.17...@equinor/fusion-framework-module-services@0.5.18) (2022-12-01)
|
|
1166
1179
|
|
|
@@ -1238,13 +1251,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1238
1251
|
|
|
1239
1252
|
### Features
|
|
1240
1253
|
|
|
1241
|
-
-
|
|
1254
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
1242
1255
|
|
|
1243
1256
|
## 0.4.0 (2022-11-01)
|
|
1244
1257
|
|
|
1245
1258
|
### Features
|
|
1246
1259
|
|
|
1247
|
-
-
|
|
1260
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
1248
1261
|
|
|
1249
1262
|
## 0.3.2 (2022-10-27)
|
|
1250
1263
|
|
|
@@ -1258,13 +1271,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1258
1271
|
|
|
1259
1272
|
### Features
|
|
1260
1273
|
|
|
1261
|
-
-
|
|
1274
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
1262
1275
|
|
|
1263
1276
|
## [0.2.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.1.1...@equinor/fusion-framework-module-services@0.2.0) (2022-10-17)
|
|
1264
1277
|
|
|
1265
1278
|
### Features
|
|
1266
1279
|
|
|
1267
|
-
-
|
|
1280
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
1268
1281
|
|
|
1269
1282
|
## 0.1.1 (2022-10-03)
|
|
1270
1283
|
|
|
@@ -1274,45 +1287,45 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1274
1287
|
|
|
1275
1288
|
### Features
|
|
1276
1289
|
|
|
1277
|
-
-
|
|
1278
|
-
-
|
|
1279
|
-
-
|
|
1280
|
-
-
|
|
1281
|
-
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1290
|
+
- **module-services:** initial ([98fd097](https://github.com/equinor/fusion-framework/commit/98fd097aa486d8ece4cd4501cf7ecb533dd7a62a)), closes [#265](https://github.com/equinor/fusion-framework/issues/265) [#269](https://github.com/equinor/fusion-framework/issues/269) [#270](https://github.com/equinor/fusion-framework/issues/270)
|
|
1291
|
+
- **module-services:** initial ([8eeadc7](https://github.com/equinor/fusion-framework/commit/8eeadc764516048e5ead9f5e2d14af7edd1b1057)), closes [#265](https://github.com/equinor/fusion-framework/issues/265) [#269](https://github.com/equinor/fusion-framework/issues/269) [#270](https://github.com/equinor/fusion-framework/issues/270)
|
|
1292
|
+
- **module-services:** rewrite interface for services ([b440aa2](https://github.com/equinor/fusion-framework/commit/b440aa28ae733aa77e07128b04b21fe24db356b4))
|
|
1293
|
+
- **module-services:** rewrite module ([bbbc203](https://github.com/equinor/fusion-framework/commit/bbbc2031f4c8785fd623db3be16f96195094f47e))
|
|
1294
|
+
- **module-services:** rewrite module ([40b64ad](https://github.com/equinor/fusion-framework/commit/40b64ad5dca8ef719fcca9b3297e85aa28af413a))
|
|
1295
|
+
, {azureId: '123'})
|
|
1296
|
+
``
|
|
1284
1297
|
|
|
1285
|
-
-
|
|
1298
|
+
- [#1254](https://github.com/equinor/fusion-framework/pull/1254) [`a2d2dee9`](https://github.com/equinor/fusion-framework/commit/a2d2dee987673171ad91daec98cb530649da5849) Thanks [@odinr](https://github.com/odinr)! - Update people client to reflect Fusion API
|
|
1286
1299
|
|
|
1287
|
-
-
|
|
1288
|
-
-
|
|
1289
|
-
-
|
|
1300
|
+
- added models for v2 and v4
|
|
1301
|
+
- added expand logic for person detail `roles` `positions` `contracts` `manager` `companies`
|
|
1302
|
+
- changed api client to now include args and init (previously args where extracted from call parameters) to correctly type response models
|
|
1290
1303
|
|
|
1291
1304
|
## 3.1.5
|
|
1292
1305
|
|
|
1293
1306
|
### Patch Changes
|
|
1294
1307
|
|
|
1295
|
-
-
|
|
1296
|
-
-
|
|
1308
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
1309
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
1297
1310
|
|
|
1298
1311
|
## 3.1.4
|
|
1299
1312
|
|
|
1300
1313
|
### Patch Changes
|
|
1301
1314
|
|
|
1302
|
-
-
|
|
1315
|
+
- [#1109](https://github.com/equinor/fusion-framework/pull/1109) [`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862) Thanks [@odinr](https://github.com/odinr)! - Change packaged manager from yarn to pnpm
|
|
1303
1316
|
|
|
1304
1317
|
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
1305
1318
|
|
|
1306
1319
|
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
1307
1320
|
|
|
1308
|
-
-
|
|
1309
|
-
-
|
|
1321
|
+
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
1322
|
+
- @equinor/fusion-framework-module@4.2.3
|
|
1310
1323
|
|
|
1311
1324
|
## 3.1.3
|
|
1312
1325
|
|
|
1313
1326
|
### Patch Changes
|
|
1314
1327
|
|
|
1315
|
-
-
|
|
1328
|
+
- [#946](https://github.com/equinor/fusion-framework/pull/946) [`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352) Thanks [@odinr](https://github.com/odinr)! - Build/update typescript to 5
|
|
1316
1329
|
|
|
1317
1330
|
All notable changes to this project will be documented in this file.
|
|
1318
1331
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -1329,54 +1342,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1329
1342
|
|
|
1330
1343
|
### Features
|
|
1331
1344
|
|
|
1332
|
-
-
|
|
1345
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
1333
1346
|
|
|
1334
1347
|
### Bug Fixes
|
|
1335
1348
|
|
|
1336
|
-
-
|
|
1349
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
1337
1350
|
|
|
1338
1351
|
## 3.0.3 (2023-04-24)
|
|
1339
1352
|
|
|
1340
1353
|
### Bug Fixes
|
|
1341
1354
|
|
|
1342
|
-
-
|
|
1355
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
1343
1356
|
|
|
1344
1357
|
## 3.0.2 (2023-04-18)
|
|
1345
1358
|
|
|
1346
1359
|
### Bug Fixes
|
|
1347
1360
|
|
|
1348
|
-
-
|
|
1349
|
-
-
|
|
1361
|
+
- **service:** fix linting ([88b5e59](https://github.com/equinor/fusion-framework/commit/88b5e596d18ac8b999404c3487a9896b0806a767))
|
|
1362
|
+
- **services:** update-api-provider-types ([380c6af](https://github.com/equinor/fusion-framework/commit/380c6af855fa6b9a29dbedd51917f0d6e4e7742b))
|
|
1350
1363
|
|
|
1351
1364
|
## 3.0.1 (2023-04-17)
|
|
1352
1365
|
|
|
1353
1366
|
### Bug Fixes
|
|
1354
1367
|
|
|
1355
|
-
-
|
|
1368
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
1356
1369
|
|
|
1357
1370
|
## 3.0.0 (2023-04-16)
|
|
1358
1371
|
|
|
1359
1372
|
### Bug Fixes
|
|
1360
1373
|
|
|
1361
|
-
-
|
|
1374
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
1362
1375
|
|
|
1363
1376
|
## 2.6.0 (2023-04-14)
|
|
1364
1377
|
|
|
1365
1378
|
### Features
|
|
1366
1379
|
|
|
1367
|
-
-
|
|
1380
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1368
1381
|
|
|
1369
1382
|
## 2.5.0 (2023-04-14)
|
|
1370
1383
|
|
|
1371
1384
|
### Features
|
|
1372
1385
|
|
|
1373
|
-
-
|
|
1386
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1374
1387
|
|
|
1375
1388
|
## 2.4.0 (2023-04-14)
|
|
1376
1389
|
|
|
1377
1390
|
### Features
|
|
1378
1391
|
|
|
1379
|
-
-
|
|
1392
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1380
1393
|
|
|
1381
1394
|
## 2.3.1 (2023-04-13)
|
|
1382
1395
|
|
|
@@ -1386,29 +1399,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1386
1399
|
|
|
1387
1400
|
### Features
|
|
1388
1401
|
|
|
1389
|
-
-
|
|
1390
|
-
-
|
|
1402
|
+
- **bookmark-client:** added verify users bookmark ([971835c](https://github.com/equinor/fusion-framework/commit/971835c801f46fc4bebd3d1b97ca8cd83c085a77))
|
|
1403
|
+
- **Bookmark-Client:** Enable to add bookmark favorites ([83dd966](https://github.com/equinor/fusion-framework/commit/83dd966ef1d609f0be44373ee16344810ae9beb4))
|
|
1391
1404
|
|
|
1392
1405
|
### Bug Fixes
|
|
1393
1406
|
|
|
1394
|
-
-
|
|
1395
|
-
-
|
|
1407
|
+
- **bookmark-client:** fix import ([7c7d585](https://github.com/equinor/fusion-framework/commit/7c7d585b6eb53688e5ce9f80474eac3275576290))
|
|
1408
|
+
- **bookmark-client:** renamed id to bookmarkId ([590ad69](https://github.com/equinor/fusion-framework/commit/590ad69cfca579ec65accb5dab47c69968aade95))
|
|
1396
1409
|
|
|
1397
1410
|
## 2.2.0 (2023-03-27)
|
|
1398
1411
|
|
|
1399
1412
|
### Features
|
|
1400
1413
|
|
|
1401
|
-
-
|
|
1414
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
1402
1415
|
|
|
1403
1416
|
## 2.1.0 (2023-03-22)
|
|
1404
1417
|
|
|
1405
1418
|
### Features
|
|
1406
1419
|
|
|
1407
|
-
-
|
|
1420
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
1408
1421
|
|
|
1409
1422
|
### Bug Fixes
|
|
1410
1423
|
|
|
1411
|
-
-
|
|
1424
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
1412
1425
|
|
|
1413
1426
|
## [2.0.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.6...@equinor/fusion-framework-module-services@2.0.7) (2023-03-20)
|
|
1414
1427
|
|
|
@@ -1454,7 +1467,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1454
1467
|
|
|
1455
1468
|
### Bug Fixes
|
|
1456
1469
|
|
|
1457
|
-
-
|
|
1470
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
1458
1471
|
|
|
1459
1472
|
## [1.0.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.12...@equinor/fusion-framework-module-services@1.0.13) (2023-01-17)
|
|
1460
1473
|
|
|
@@ -1528,7 +1541,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1528
1541
|
|
|
1529
1542
|
### Bug Fixes
|
|
1530
1543
|
|
|
1531
|
-
-
|
|
1544
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
1532
1545
|
|
|
1533
1546
|
## [0.5.18](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.17...@equinor/fusion-framework-module-services@0.5.18) (2022-12-01)
|
|
1534
1547
|
|
|
@@ -1606,13 +1619,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1606
1619
|
|
|
1607
1620
|
### Features
|
|
1608
1621
|
|
|
1609
|
-
-
|
|
1622
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
1610
1623
|
|
|
1611
1624
|
## 0.4.0 (2022-11-01)
|
|
1612
1625
|
|
|
1613
1626
|
### Features
|
|
1614
1627
|
|
|
1615
|
-
-
|
|
1628
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
1616
1629
|
|
|
1617
1630
|
## 0.3.2 (2022-10-27)
|
|
1618
1631
|
|
|
@@ -1626,13 +1639,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1626
1639
|
|
|
1627
1640
|
### Features
|
|
1628
1641
|
|
|
1629
|
-
-
|
|
1642
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
1630
1643
|
|
|
1631
1644
|
## [0.2.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.1.1...@equinor/fusion-framework-module-services@0.2.0) (2022-10-17)
|
|
1632
1645
|
|
|
1633
1646
|
### Features
|
|
1634
1647
|
|
|
1635
|
-
-
|
|
1648
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
1636
1649
|
|
|
1637
1650
|
## 0.1.1 (2022-10-03)
|
|
1638
1651
|
|
|
@@ -1642,8 +1655,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1642
1655
|
|
|
1643
1656
|
### Features
|
|
1644
1657
|
|
|
1645
|
-
-
|
|
1646
|
-
-
|
|
1647
|
-
-
|
|
1648
|
-
-
|
|
1649
|
-
-
|
|
1658
|
+
- **module-services:** initial ([98fd097](https://github.com/equinor/fusion-framework/commit/98fd097aa486d8ece4cd4501cf7ecb533dd7a62a)), closes [#265](https://github.com/equinor/fusion-framework/issues/265) [#269](https://github.com/equinor/fusion-framework/issues/269) [#270](https://github.com/equinor/fusion-framework/issues/270)
|
|
1659
|
+
- **module-services:** initial ([8eeadc7](https://github.com/equinor/fusion-framework/commit/8eeadc764516048e5ead9f5e2d14af7edd1b1057)), closes [#265](https://github.com/equinor/fusion-framework/issues/265) [#269](https://github.com/equinor/fusion-framework/issues/269) [#270](https://github.com/equinor/fusion-framework/issues/270)
|
|
1660
|
+
- **module-services:** rewrite interface for services ([b440aa2](https://github.com/equinor/fusion-framework/commit/b440aa28ae733aa77e07128b04b21fe24db356b4))
|
|
1661
|
+
- **module-services:** rewrite module ([bbbc203](https://github.com/equinor/fusion-framework/commit/bbbc2031f4c8785fd623db3be16f96195094f47e))
|
|
1662
|
+
- **module-services:** rewrite module ([40b64ad](https://github.com/equinor/fusion-framework/commit/40b64ad5dca8ef719fcca9b3297e85aa28af413a))
|