@equinor/fusion-framework-module-services 5.0.0 → 5.1.0-bookmark-preview-53d7010af49af3f3128a5ca800f7cfc796dc6089
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 +200 -184
- package/dist/esm/bookmarks/endpoints/user-bookmark-favourite.head.js +1 -2
- package/dist/esm/bookmarks/endpoints/user-bookmark-favourite.head.js.map +1 -1
- package/dist/esm/bookmarks/endpoints/user-bookmarks.get.js +52 -26
- package/dist/esm/bookmarks/endpoints/user-bookmarks.get.js.map +1 -1
- package/dist/esm/bookmarks/index.js +1 -0
- package/dist/esm/bookmarks/index.js.map +1 -1
- package/dist/esm/bookmarks/schemas.js +2 -2
- package/dist/esm/bookmarks/schemas.js.map +1 -1
- package/dist/esm/bookmarks/selectors.js +8 -12
- package/dist/esm/bookmarks/selectors.js.map +1 -1
- package/dist/esm/provider.js +3 -1
- package/dist/esm/provider.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/bookmarks/endpoints/bookmark.get.d.ts +28 -28
- package/dist/types/bookmarks/endpoints/bookmark.patch.d.ts +14 -14
- package/dist/types/bookmarks/endpoints/bookmark.post.d.ts +14 -14
- package/dist/types/bookmarks/endpoints/user-bookmarks.get.d.ts +231 -14
- package/dist/types/bookmarks/index.d.ts +1 -1
- package/dist/types/bookmarks/schemas.d.ts +31 -31
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
- package/src/bookmarks/endpoints/user-bookmark-favourite.head.ts +1 -2
- package/src/bookmarks/endpoints/user-bookmarks.get.ts +56 -32
- package/src/bookmarks/index.ts +1 -1
- package/src/bookmarks/schemas.ts +2 -2
- package/src/bookmarks/selectors.ts +8 -11
- package/src/provider.ts +3 -1
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,26 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 5.1.0-bookmark-preview-53d7010af49af3f3128a5ca800f7cfc796dc6089
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#2691](https://github.com/equinor/fusion-framework/pull/2691) [`2e7a25e`](https://github.com/equinor/fusion-framework/commit/2e7a25eed42b8cbb66ac86ad98537ac803a5e146) Thanks [@odinr](https://github.com/odinr)! - added support for user bookmarks v2
|
|
8
|
+
|
|
9
|
+
## 5.0.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#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**.
|
|
14
|
+
|
|
15
|
+
> 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.
|
|
16
|
+
|
|
17
|
+
Also fixed the `headSelector` to only check response code, since a `HEAD` request does not return a body.
|
|
18
|
+
|
|
3
19
|
## 5.0.0
|
|
4
20
|
|
|
5
21
|
### Major Changes
|
|
6
22
|
|
|
7
|
-
-
|
|
23
|
+
- [#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
24
|
|
|
9
25
|
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.
|
|
10
26
|
|
|
@@ -12,45 +28,45 @@
|
|
|
12
28
|
|
|
13
29
|
**BREAKING CHANGES:**
|
|
14
30
|
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
31
|
+
- api client has been updated to reflect the new api endpoints and request/response types
|
|
32
|
+
- models have been replaced with infered `zod` schemas
|
|
33
|
+
- request and responses are now parsed and validated using `zod` schemas
|
|
34
|
+
- file structure has been updated to reflect the new api client structure
|
|
19
35
|
|
|
20
36
|
## 4.1.5
|
|
21
37
|
|
|
22
38
|
### Patch Changes
|
|
23
39
|
|
|
24
|
-
-
|
|
40
|
+
- [#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
|
|
25
41
|
|
|
26
42
|
## 4.1.4
|
|
27
43
|
|
|
28
44
|
### Patch Changes
|
|
29
45
|
|
|
30
|
-
-
|
|
31
|
-
-
|
|
46
|
+
- Updated dependencies [[`2644b3d`](https://github.com/equinor/fusion-framework/commit/2644b3d63939aede736a3b1950db32dbd487877d)]:
|
|
47
|
+
- @equinor/fusion-framework-module@4.3.5
|
|
32
48
|
|
|
33
49
|
## 4.1.3
|
|
34
50
|
|
|
35
51
|
### Patch Changes
|
|
36
52
|
|
|
37
|
-
-
|
|
38
|
-
-
|
|
53
|
+
- Updated dependencies [[`75d676d`](https://github.com/equinor/fusion-framework/commit/75d676d2c7919f30e036b5ae97c4d814c569aa87), [`00d5e9c`](https://github.com/equinor/fusion-framework/commit/00d5e9c632876742c3d2a74efea2f126a0a169d9)]:
|
|
54
|
+
- @equinor/fusion-framework-module@4.3.4
|
|
39
55
|
|
|
40
56
|
## 4.1.2
|
|
41
57
|
|
|
42
58
|
### Patch Changes
|
|
43
59
|
|
|
44
|
-
-
|
|
45
|
-
-
|
|
60
|
+
- Updated dependencies [[`a1524e9`](https://github.com/equinor/fusion-framework/commit/a1524e9c4d83778da3db42dbcf99908b776a0592)]:
|
|
61
|
+
- @equinor/fusion-framework-module@4.3.3
|
|
46
62
|
|
|
47
63
|
## 4.1.1
|
|
48
64
|
|
|
49
65
|
### Patch Changes
|
|
50
66
|
|
|
51
|
-
-
|
|
67
|
+
- [#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
|
|
52
68
|
|
|
53
|
-
-
|
|
69
|
+
- [#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.
|
|
54
70
|
|
|
55
71
|
Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
|
|
56
72
|
|
|
@@ -93,21 +109,21 @@
|
|
|
93
109
|
|
|
94
110
|
This change ensures that comments are preserved in the compiled output, potentially improving the development and debugging experience for users of the Fusion Framework.
|
|
95
111
|
|
|
96
|
-
-
|
|
97
|
-
-
|
|
112
|
+
- 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)]:
|
|
113
|
+
- @equinor/fusion-framework-module@4.3.2
|
|
98
114
|
|
|
99
115
|
## 4.1.0
|
|
100
116
|
|
|
101
117
|
### Minor Changes
|
|
102
118
|
|
|
103
|
-
-
|
|
119
|
+
- [#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
|
|
104
120
|
|
|
105
121
|
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.
|
|
106
122
|
|
|
107
123
|
To update your code:
|
|
108
124
|
|
|
109
|
-
-
|
|
110
|
-
-
|
|
125
|
+
- If you are using the `PeopleApiClient.photo` method directly, no changes are needed. The method will now properly type the response.
|
|
126
|
+
- 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`.
|
|
111
127
|
|
|
112
128
|
Example:
|
|
113
129
|
|
|
@@ -127,47 +143,47 @@
|
|
|
127
143
|
|
|
128
144
|
### Patch Changes
|
|
129
145
|
|
|
130
|
-
-
|
|
131
|
-
-
|
|
146
|
+
- 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)]:
|
|
147
|
+
- @equinor/fusion-framework-module@4.3.1
|
|
132
148
|
|
|
133
149
|
## 4.0.1
|
|
134
150
|
|
|
135
151
|
### Patch Changes
|
|
136
152
|
|
|
137
|
-
-
|
|
153
|
+
- [#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.
|
|
138
154
|
|
|
139
155
|
## 4.0.0
|
|
140
156
|
|
|
141
157
|
### Minor Changes
|
|
142
158
|
|
|
143
|
-
-
|
|
159
|
+
- [#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
|
|
144
160
|
|
|
145
161
|
### Patch Changes
|
|
146
162
|
|
|
147
|
-
-
|
|
148
|
-
-
|
|
163
|
+
- Updated dependencies [[`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904), [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904)]:
|
|
164
|
+
- @equinor/fusion-framework-module@4.3.0
|
|
149
165
|
|
|
150
166
|
## 3.2.4
|
|
151
167
|
|
|
152
168
|
### Patch Changes
|
|
153
169
|
|
|
154
|
-
-
|
|
155
|
-
-
|
|
170
|
+
- Updated dependencies [[`152cf73`](https://github.com/equinor/fusion-framework/commit/152cf73d39eb32ccbaddaa6941e315c437c4972d)]:
|
|
171
|
+
- @equinor/fusion-framework-module@4.2.7
|
|
156
172
|
|
|
157
173
|
## 3.2.3
|
|
158
174
|
|
|
159
175
|
### Patch Changes
|
|
160
176
|
|
|
161
|
-
-
|
|
177
|
+
- [#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
|
|
162
178
|
|
|
163
|
-
-
|
|
164
|
-
-
|
|
179
|
+
- Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
|
|
180
|
+
- @equinor/fusion-framework-module@4.2.6
|
|
165
181
|
|
|
166
182
|
## 3.2.2
|
|
167
183
|
|
|
168
184
|
### Patch Changes
|
|
169
185
|
|
|
170
|
-
-
|
|
186
|
+
- [#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
|
|
171
187
|
|
|
172
188
|
> extremely crude, but good enough until backend comes of with new models or endpoint
|
|
173
189
|
|
|
@@ -177,22 +193,22 @@
|
|
|
177
193
|
|
|
178
194
|
### Patch Changes
|
|
179
195
|
|
|
180
|
-
-
|
|
196
|
+
- [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
|
|
181
197
|
|
|
182
|
-
-
|
|
183
|
-
-
|
|
198
|
+
- Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
|
|
199
|
+
- @equinor/fusion-framework-module@4.2.5
|
|
184
200
|
|
|
185
201
|
## 3.2.0
|
|
186
202
|
|
|
187
203
|
### Minor Changes
|
|
188
204
|
|
|
189
|
-
-
|
|
205
|
+
- [#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
|
|
190
206
|
|
|
191
207
|
> **for internal usage only!**
|
|
192
208
|
|
|
193
|
-
-
|
|
194
|
-
-
|
|
195
|
-
-
|
|
209
|
+
- add function for fetching person details
|
|
210
|
+
- add function for querying persons
|
|
211
|
+
- add function for downloading person photo
|
|
196
212
|
|
|
197
213
|
```ts
|
|
198
214
|
const personApi = await modules.services.createPeopleClient();
|
|
@@ -203,27 +219,27 @@
|
|
|
203
219
|
|
|
204
220
|
### Patch Changes
|
|
205
221
|
|
|
206
|
-
-
|
|
207
|
-
-
|
|
222
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
223
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
208
224
|
|
|
209
225
|
## 3.1.4
|
|
210
226
|
|
|
211
227
|
### Patch Changes
|
|
212
228
|
|
|
213
|
-
-
|
|
229
|
+
- [#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
|
|
214
230
|
|
|
215
231
|
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
216
232
|
|
|
217
233
|
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
218
234
|
|
|
219
|
-
-
|
|
220
|
-
-
|
|
235
|
+
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
236
|
+
- @equinor/fusion-framework-module@4.2.3
|
|
221
237
|
|
|
222
238
|
## 3.1.3
|
|
223
239
|
|
|
224
240
|
### Patch Changes
|
|
225
241
|
|
|
226
|
-
-
|
|
242
|
+
- [#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
|
|
227
243
|
|
|
228
244
|
All notable changes to this project will be documented in this file.
|
|
229
245
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -240,54 +256,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
240
256
|
|
|
241
257
|
### Features
|
|
242
258
|
|
|
243
|
-
-
|
|
259
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
244
260
|
|
|
245
261
|
### Bug Fixes
|
|
246
262
|
|
|
247
|
-
-
|
|
263
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
248
264
|
|
|
249
265
|
## 3.0.3 (2023-04-24)
|
|
250
266
|
|
|
251
267
|
### Bug Fixes
|
|
252
268
|
|
|
253
|
-
-
|
|
269
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
254
270
|
|
|
255
271
|
## 3.0.2 (2023-04-18)
|
|
256
272
|
|
|
257
273
|
### Bug Fixes
|
|
258
274
|
|
|
259
|
-
-
|
|
260
|
-
-
|
|
275
|
+
- **service:** fix linting ([88b5e59](https://github.com/equinor/fusion-framework/commit/88b5e596d18ac8b999404c3487a9896b0806a767))
|
|
276
|
+
- **services:** update-api-provider-types ([380c6af](https://github.com/equinor/fusion-framework/commit/380c6af855fa6b9a29dbedd51917f0d6e4e7742b))
|
|
261
277
|
|
|
262
278
|
## 3.0.1 (2023-04-17)
|
|
263
279
|
|
|
264
280
|
### Bug Fixes
|
|
265
281
|
|
|
266
|
-
-
|
|
282
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
267
283
|
|
|
268
284
|
## 3.0.0 (2023-04-16)
|
|
269
285
|
|
|
270
286
|
### Bug Fixes
|
|
271
287
|
|
|
272
|
-
-
|
|
288
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
273
289
|
|
|
274
290
|
## 2.6.0 (2023-04-14)
|
|
275
291
|
|
|
276
292
|
### Features
|
|
277
293
|
|
|
278
|
-
-
|
|
294
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
279
295
|
|
|
280
296
|
## 2.5.0 (2023-04-14)
|
|
281
297
|
|
|
282
298
|
### Features
|
|
283
299
|
|
|
284
|
-
-
|
|
300
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
285
301
|
|
|
286
302
|
## 2.4.0 (2023-04-14)
|
|
287
303
|
|
|
288
304
|
### Features
|
|
289
305
|
|
|
290
|
-
-
|
|
306
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
291
307
|
|
|
292
308
|
## 2.3.1 (2023-04-13)
|
|
293
309
|
|
|
@@ -297,29 +313,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
297
313
|
|
|
298
314
|
### Features
|
|
299
315
|
|
|
300
|
-
-
|
|
301
|
-
-
|
|
316
|
+
- **bookmark-client:** added verify users bookmark ([971835c](https://github.com/equinor/fusion-framework/commit/971835c801f46fc4bebd3d1b97ca8cd83c085a77))
|
|
317
|
+
- **Bookmark-Client:** Enable to add bookmark favorites ([83dd966](https://github.com/equinor/fusion-framework/commit/83dd966ef1d609f0be44373ee16344810ae9beb4))
|
|
302
318
|
|
|
303
319
|
### Bug Fixes
|
|
304
320
|
|
|
305
|
-
-
|
|
306
|
-
-
|
|
321
|
+
- **bookmark-client:** fix import ([7c7d585](https://github.com/equinor/fusion-framework/commit/7c7d585b6eb53688e5ce9f80474eac3275576290))
|
|
322
|
+
- **bookmark-client:** renamed id to bookmarkId ([590ad69](https://github.com/equinor/fusion-framework/commit/590ad69cfca579ec65accb5dab47c69968aade95))
|
|
307
323
|
|
|
308
324
|
## 2.2.0 (2023-03-27)
|
|
309
325
|
|
|
310
326
|
### Features
|
|
311
327
|
|
|
312
|
-
-
|
|
328
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
313
329
|
|
|
314
330
|
## 2.1.0 (2023-03-22)
|
|
315
331
|
|
|
316
332
|
### Features
|
|
317
333
|
|
|
318
|
-
-
|
|
334
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
319
335
|
|
|
320
336
|
### Bug Fixes
|
|
321
337
|
|
|
322
|
-
-
|
|
338
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
323
339
|
|
|
324
340
|
## [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)
|
|
325
341
|
|
|
@@ -365,7 +381,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
365
381
|
|
|
366
382
|
### Bug Fixes
|
|
367
383
|
|
|
368
|
-
-
|
|
384
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
369
385
|
|
|
370
386
|
## [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)
|
|
371
387
|
|
|
@@ -439,7 +455,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
439
455
|
|
|
440
456
|
### Bug Fixes
|
|
441
457
|
|
|
442
|
-
-
|
|
458
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
443
459
|
|
|
444
460
|
## [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)
|
|
445
461
|
|
|
@@ -517,13 +533,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
517
533
|
|
|
518
534
|
### Features
|
|
519
535
|
|
|
520
|
-
-
|
|
536
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
521
537
|
|
|
522
538
|
## 0.4.0 (2022-11-01)
|
|
523
539
|
|
|
524
540
|
### Features
|
|
525
541
|
|
|
526
|
-
-
|
|
542
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
527
543
|
|
|
528
544
|
## 0.3.2 (2022-10-27)
|
|
529
545
|
|
|
@@ -537,13 +553,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
537
553
|
|
|
538
554
|
### Features
|
|
539
555
|
|
|
540
|
-
-
|
|
556
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
541
557
|
|
|
542
558
|
## [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)
|
|
543
559
|
|
|
544
560
|
### Features
|
|
545
561
|
|
|
546
|
-
-
|
|
562
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
547
563
|
|
|
548
564
|
## 0.1.1 (2022-10-03)
|
|
549
565
|
|
|
@@ -553,39 +569,39 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
553
569
|
|
|
554
570
|
### Features
|
|
555
571
|
|
|
556
|
-
-
|
|
557
|
-
-
|
|
558
|
-
-
|
|
559
|
-
-
|
|
560
|
-
-
|
|
561
|
-
|
|
562
|
-
|
|
572
|
+
- **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)
|
|
573
|
+
- **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)
|
|
574
|
+
- **module-services:** rewrite interface for services ([b440aa2](https://github.com/equinor/fusion-framework/commit/b440aa28ae733aa77e07128b04b21fe24db356b4))
|
|
575
|
+
- **module-services:** rewrite module ([bbbc203](https://github.com/equinor/fusion-framework/commit/bbbc2031f4c8785fd623db3be16f96195094f47e))
|
|
576
|
+
- **module-services:** rewrite module ([40b64ad](https://github.com/equinor/fusion-framework/commit/40b64ad5dca8ef719fcca9b3297e85aa28af413a))
|
|
577
|
+
, {search: 'foo@bar.com'})
|
|
578
|
+
personApi.get('v4', 'json
|
|
563
579
|
|
|
564
580
|
## 3.1.5
|
|
565
581
|
|
|
566
582
|
### Patch Changes
|
|
567
583
|
|
|
568
|
-
-
|
|
569
|
-
-
|
|
584
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
585
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
570
586
|
|
|
571
587
|
## 3.1.4
|
|
572
588
|
|
|
573
589
|
### Patch Changes
|
|
574
590
|
|
|
575
|
-
-
|
|
591
|
+
- [#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
|
|
576
592
|
|
|
577
593
|
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
578
594
|
|
|
579
595
|
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
580
596
|
|
|
581
|
-
-
|
|
582
|
-
-
|
|
597
|
+
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
598
|
+
- @equinor/fusion-framework-module@4.2.3
|
|
583
599
|
|
|
584
600
|
## 3.1.3
|
|
585
601
|
|
|
586
602
|
### Patch Changes
|
|
587
603
|
|
|
588
|
-
-
|
|
604
|
+
- [#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
|
|
589
605
|
|
|
590
606
|
All notable changes to this project will be documented in this file.
|
|
591
607
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -602,54 +618,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
602
618
|
|
|
603
619
|
### Features
|
|
604
620
|
|
|
605
|
-
-
|
|
621
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
606
622
|
|
|
607
623
|
### Bug Fixes
|
|
608
624
|
|
|
609
|
-
-
|
|
625
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
610
626
|
|
|
611
627
|
## 3.0.3 (2023-04-24)
|
|
612
628
|
|
|
613
629
|
### Bug Fixes
|
|
614
630
|
|
|
615
|
-
-
|
|
631
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
616
632
|
|
|
617
633
|
## 3.0.2 (2023-04-18)
|
|
618
634
|
|
|
619
635
|
### Bug Fixes
|
|
620
636
|
|
|
621
|
-
-
|
|
622
|
-
-
|
|
637
|
+
- **service:** fix linting ([88b5e59](https://github.com/equinor/fusion-framework/commit/88b5e596d18ac8b999404c3487a9896b0806a767))
|
|
638
|
+
- **services:** update-api-provider-types ([380c6af](https://github.com/equinor/fusion-framework/commit/380c6af855fa6b9a29dbedd51917f0d6e4e7742b))
|
|
623
639
|
|
|
624
640
|
## 3.0.1 (2023-04-17)
|
|
625
641
|
|
|
626
642
|
### Bug Fixes
|
|
627
643
|
|
|
628
|
-
-
|
|
644
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
629
645
|
|
|
630
646
|
## 3.0.0 (2023-04-16)
|
|
631
647
|
|
|
632
648
|
### Bug Fixes
|
|
633
649
|
|
|
634
|
-
-
|
|
650
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
635
651
|
|
|
636
652
|
## 2.6.0 (2023-04-14)
|
|
637
653
|
|
|
638
654
|
### Features
|
|
639
655
|
|
|
640
|
-
-
|
|
656
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
641
657
|
|
|
642
658
|
## 2.5.0 (2023-04-14)
|
|
643
659
|
|
|
644
660
|
### Features
|
|
645
661
|
|
|
646
|
-
-
|
|
662
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
647
663
|
|
|
648
664
|
## 2.4.0 (2023-04-14)
|
|
649
665
|
|
|
650
666
|
### Features
|
|
651
667
|
|
|
652
|
-
-
|
|
668
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
653
669
|
|
|
654
670
|
## 2.3.1 (2023-04-13)
|
|
655
671
|
|
|
@@ -659,29 +675,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
659
675
|
|
|
660
676
|
### Features
|
|
661
677
|
|
|
662
|
-
-
|
|
663
|
-
-
|
|
678
|
+
- **bookmark-client:** added verify users bookmark ([971835c](https://github.com/equinor/fusion-framework/commit/971835c801f46fc4bebd3d1b97ca8cd83c085a77))
|
|
679
|
+
- **Bookmark-Client:** Enable to add bookmark favorites ([83dd966](https://github.com/equinor/fusion-framework/commit/83dd966ef1d609f0be44373ee16344810ae9beb4))
|
|
664
680
|
|
|
665
681
|
### Bug Fixes
|
|
666
682
|
|
|
667
|
-
-
|
|
668
|
-
-
|
|
683
|
+
- **bookmark-client:** fix import ([7c7d585](https://github.com/equinor/fusion-framework/commit/7c7d585b6eb53688e5ce9f80474eac3275576290))
|
|
684
|
+
- **bookmark-client:** renamed id to bookmarkId ([590ad69](https://github.com/equinor/fusion-framework/commit/590ad69cfca579ec65accb5dab47c69968aade95))
|
|
669
685
|
|
|
670
686
|
## 2.2.0 (2023-03-27)
|
|
671
687
|
|
|
672
688
|
### Features
|
|
673
689
|
|
|
674
|
-
-
|
|
690
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
675
691
|
|
|
676
692
|
## 2.1.0 (2023-03-22)
|
|
677
693
|
|
|
678
694
|
### Features
|
|
679
695
|
|
|
680
|
-
-
|
|
696
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
681
697
|
|
|
682
698
|
### Bug Fixes
|
|
683
699
|
|
|
684
|
-
-
|
|
700
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
685
701
|
|
|
686
702
|
## [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)
|
|
687
703
|
|
|
@@ -727,7 +743,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
727
743
|
|
|
728
744
|
### Bug Fixes
|
|
729
745
|
|
|
730
|
-
-
|
|
746
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
731
747
|
|
|
732
748
|
## [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)
|
|
733
749
|
|
|
@@ -801,7 +817,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
801
817
|
|
|
802
818
|
### Bug Fixes
|
|
803
819
|
|
|
804
|
-
-
|
|
820
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
805
821
|
|
|
806
822
|
## [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)
|
|
807
823
|
|
|
@@ -879,13 +895,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
879
895
|
|
|
880
896
|
### Features
|
|
881
897
|
|
|
882
|
-
-
|
|
898
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
883
899
|
|
|
884
900
|
## 0.4.0 (2022-11-01)
|
|
885
901
|
|
|
886
902
|
### Features
|
|
887
903
|
|
|
888
|
-
-
|
|
904
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
889
905
|
|
|
890
906
|
## 0.3.2 (2022-10-27)
|
|
891
907
|
|
|
@@ -899,13 +915,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
899
915
|
|
|
900
916
|
### Features
|
|
901
917
|
|
|
902
|
-
-
|
|
918
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
903
919
|
|
|
904
920
|
## [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)
|
|
905
921
|
|
|
906
922
|
### Features
|
|
907
923
|
|
|
908
|
-
-
|
|
924
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
909
925
|
|
|
910
926
|
## 0.1.1 (2022-10-03)
|
|
911
927
|
|
|
@@ -915,39 +931,39 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
915
931
|
|
|
916
932
|
### Features
|
|
917
933
|
|
|
918
|
-
-
|
|
919
|
-
-
|
|
920
|
-
-
|
|
921
|
-
-
|
|
922
|
-
-
|
|
923
|
-
|
|
924
|
-
|
|
934
|
+
- **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)
|
|
935
|
+
- **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)
|
|
936
|
+
- **module-services:** rewrite interface for services ([b440aa2](https://github.com/equinor/fusion-framework/commit/b440aa28ae733aa77e07128b04b21fe24db356b4))
|
|
937
|
+
- **module-services:** rewrite module ([bbbc203](https://github.com/equinor/fusion-framework/commit/bbbc2031f4c8785fd623db3be16f96195094f47e))
|
|
938
|
+
- **module-services:** rewrite module ([40b64ad](https://github.com/equinor/fusion-framework/commit/40b64ad5dca8ef719fcca9b3297e85aa28af413a))
|
|
939
|
+
, {azureId: '1234'})
|
|
940
|
+
personApi.photo('v2', 'blob
|
|
925
941
|
|
|
926
942
|
## 3.1.5
|
|
927
943
|
|
|
928
944
|
### Patch Changes
|
|
929
945
|
|
|
930
|
-
-
|
|
931
|
-
-
|
|
946
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
947
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
932
948
|
|
|
933
949
|
## 3.1.4
|
|
934
950
|
|
|
935
951
|
### Patch Changes
|
|
936
952
|
|
|
937
|
-
-
|
|
953
|
+
- [#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
|
|
938
954
|
|
|
939
955
|
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
940
956
|
|
|
941
957
|
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
942
958
|
|
|
943
|
-
-
|
|
944
|
-
-
|
|
959
|
+
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
960
|
+
- @equinor/fusion-framework-module@4.2.3
|
|
945
961
|
|
|
946
962
|
## 3.1.3
|
|
947
963
|
|
|
948
964
|
### Patch Changes
|
|
949
965
|
|
|
950
|
-
-
|
|
966
|
+
- [#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
|
|
951
967
|
|
|
952
968
|
All notable changes to this project will be documented in this file.
|
|
953
969
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -964,54 +980,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
964
980
|
|
|
965
981
|
### Features
|
|
966
982
|
|
|
967
|
-
-
|
|
983
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
968
984
|
|
|
969
985
|
### Bug Fixes
|
|
970
986
|
|
|
971
|
-
-
|
|
987
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
972
988
|
|
|
973
989
|
## 3.0.3 (2023-04-24)
|
|
974
990
|
|
|
975
991
|
### Bug Fixes
|
|
976
992
|
|
|
977
|
-
-
|
|
993
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
978
994
|
|
|
979
995
|
## 3.0.2 (2023-04-18)
|
|
980
996
|
|
|
981
997
|
### Bug Fixes
|
|
982
998
|
|
|
983
|
-
-
|
|
984
|
-
-
|
|
999
|
+
- **service:** fix linting ([88b5e59](https://github.com/equinor/fusion-framework/commit/88b5e596d18ac8b999404c3487a9896b0806a767))
|
|
1000
|
+
- **services:** update-api-provider-types ([380c6af](https://github.com/equinor/fusion-framework/commit/380c6af855fa6b9a29dbedd51917f0d6e4e7742b))
|
|
985
1001
|
|
|
986
1002
|
## 3.0.1 (2023-04-17)
|
|
987
1003
|
|
|
988
1004
|
### Bug Fixes
|
|
989
1005
|
|
|
990
|
-
-
|
|
1006
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
991
1007
|
|
|
992
1008
|
## 3.0.0 (2023-04-16)
|
|
993
1009
|
|
|
994
1010
|
### Bug Fixes
|
|
995
1011
|
|
|
996
|
-
-
|
|
1012
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
997
1013
|
|
|
998
1014
|
## 2.6.0 (2023-04-14)
|
|
999
1015
|
|
|
1000
1016
|
### Features
|
|
1001
1017
|
|
|
1002
|
-
-
|
|
1018
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1003
1019
|
|
|
1004
1020
|
## 2.5.0 (2023-04-14)
|
|
1005
1021
|
|
|
1006
1022
|
### Features
|
|
1007
1023
|
|
|
1008
|
-
-
|
|
1024
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1009
1025
|
|
|
1010
1026
|
## 2.4.0 (2023-04-14)
|
|
1011
1027
|
|
|
1012
1028
|
### Features
|
|
1013
1029
|
|
|
1014
|
-
-
|
|
1030
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1015
1031
|
|
|
1016
1032
|
## 2.3.1 (2023-04-13)
|
|
1017
1033
|
|
|
@@ -1021,29 +1037,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1021
1037
|
|
|
1022
1038
|
### Features
|
|
1023
1039
|
|
|
1024
|
-
-
|
|
1025
|
-
-
|
|
1040
|
+
- **bookmark-client:** added verify users bookmark ([971835c](https://github.com/equinor/fusion-framework/commit/971835c801f46fc4bebd3d1b97ca8cd83c085a77))
|
|
1041
|
+
- **Bookmark-Client:** Enable to add bookmark favorites ([83dd966](https://github.com/equinor/fusion-framework/commit/83dd966ef1d609f0be44373ee16344810ae9beb4))
|
|
1026
1042
|
|
|
1027
1043
|
### Bug Fixes
|
|
1028
1044
|
|
|
1029
|
-
-
|
|
1030
|
-
-
|
|
1045
|
+
- **bookmark-client:** fix import ([7c7d585](https://github.com/equinor/fusion-framework/commit/7c7d585b6eb53688e5ce9f80474eac3275576290))
|
|
1046
|
+
- **bookmark-client:** renamed id to bookmarkId ([590ad69](https://github.com/equinor/fusion-framework/commit/590ad69cfca579ec65accb5dab47c69968aade95))
|
|
1031
1047
|
|
|
1032
1048
|
## 2.2.0 (2023-03-27)
|
|
1033
1049
|
|
|
1034
1050
|
### Features
|
|
1035
1051
|
|
|
1036
|
-
-
|
|
1052
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
1037
1053
|
|
|
1038
1054
|
## 2.1.0 (2023-03-22)
|
|
1039
1055
|
|
|
1040
1056
|
### Features
|
|
1041
1057
|
|
|
1042
|
-
-
|
|
1058
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
1043
1059
|
|
|
1044
1060
|
### Bug Fixes
|
|
1045
1061
|
|
|
1046
|
-
-
|
|
1062
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
1047
1063
|
|
|
1048
1064
|
## [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)
|
|
1049
1065
|
|
|
@@ -1089,7 +1105,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1089
1105
|
|
|
1090
1106
|
### Bug Fixes
|
|
1091
1107
|
|
|
1092
|
-
-
|
|
1108
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
1093
1109
|
|
|
1094
1110
|
## [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)
|
|
1095
1111
|
|
|
@@ -1163,7 +1179,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1163
1179
|
|
|
1164
1180
|
### Bug Fixes
|
|
1165
1181
|
|
|
1166
|
-
-
|
|
1182
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
1167
1183
|
|
|
1168
1184
|
## [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)
|
|
1169
1185
|
|
|
@@ -1241,13 +1257,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1241
1257
|
|
|
1242
1258
|
### Features
|
|
1243
1259
|
|
|
1244
|
-
-
|
|
1260
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
1245
1261
|
|
|
1246
1262
|
## 0.4.0 (2022-11-01)
|
|
1247
1263
|
|
|
1248
1264
|
### Features
|
|
1249
1265
|
|
|
1250
|
-
-
|
|
1266
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
1251
1267
|
|
|
1252
1268
|
## 0.3.2 (2022-10-27)
|
|
1253
1269
|
|
|
@@ -1261,13 +1277,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1261
1277
|
|
|
1262
1278
|
### Features
|
|
1263
1279
|
|
|
1264
|
-
-
|
|
1280
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
1265
1281
|
|
|
1266
1282
|
## [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)
|
|
1267
1283
|
|
|
1268
1284
|
### Features
|
|
1269
1285
|
|
|
1270
|
-
-
|
|
1286
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
1271
1287
|
|
|
1272
1288
|
## 0.1.1 (2022-10-03)
|
|
1273
1289
|
|
|
@@ -1277,45 +1293,45 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1277
1293
|
|
|
1278
1294
|
### Features
|
|
1279
1295
|
|
|
1280
|
-
-
|
|
1281
|
-
-
|
|
1282
|
-
-
|
|
1283
|
-
-
|
|
1284
|
-
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1296
|
+
- **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)
|
|
1297
|
+
- **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)
|
|
1298
|
+
- **module-services:** rewrite interface for services ([b440aa2](https://github.com/equinor/fusion-framework/commit/b440aa28ae733aa77e07128b04b21fe24db356b4))
|
|
1299
|
+
- **module-services:** rewrite module ([bbbc203](https://github.com/equinor/fusion-framework/commit/bbbc2031f4c8785fd623db3be16f96195094f47e))
|
|
1300
|
+
- **module-services:** rewrite module ([40b64ad](https://github.com/equinor/fusion-framework/commit/40b64ad5dca8ef719fcca9b3297e85aa28af413a))
|
|
1301
|
+
, {azureId: '123'})
|
|
1302
|
+
``
|
|
1287
1303
|
|
|
1288
|
-
-
|
|
1304
|
+
- [#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
|
|
1289
1305
|
|
|
1290
|
-
-
|
|
1291
|
-
-
|
|
1292
|
-
-
|
|
1306
|
+
- added models for v2 and v4
|
|
1307
|
+
- added expand logic for person detail `roles` `positions` `contracts` `manager` `companies`
|
|
1308
|
+
- changed api client to now include args and init (previously args where extracted from call parameters) to correctly type response models
|
|
1293
1309
|
|
|
1294
1310
|
## 3.1.5
|
|
1295
1311
|
|
|
1296
1312
|
### Patch Changes
|
|
1297
1313
|
|
|
1298
|
-
-
|
|
1299
|
-
-
|
|
1314
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
1315
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
1300
1316
|
|
|
1301
1317
|
## 3.1.4
|
|
1302
1318
|
|
|
1303
1319
|
### Patch Changes
|
|
1304
1320
|
|
|
1305
|
-
-
|
|
1321
|
+
- [#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
|
|
1306
1322
|
|
|
1307
1323
|
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
1308
1324
|
|
|
1309
1325
|
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
1310
1326
|
|
|
1311
|
-
-
|
|
1312
|
-
-
|
|
1327
|
+
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
1328
|
+
- @equinor/fusion-framework-module@4.2.3
|
|
1313
1329
|
|
|
1314
1330
|
## 3.1.3
|
|
1315
1331
|
|
|
1316
1332
|
### Patch Changes
|
|
1317
1333
|
|
|
1318
|
-
-
|
|
1334
|
+
- [#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
|
|
1319
1335
|
|
|
1320
1336
|
All notable changes to this project will be documented in this file.
|
|
1321
1337
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -1332,54 +1348,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1332
1348
|
|
|
1333
1349
|
### Features
|
|
1334
1350
|
|
|
1335
|
-
-
|
|
1351
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
1336
1352
|
|
|
1337
1353
|
### Bug Fixes
|
|
1338
1354
|
|
|
1339
|
-
-
|
|
1355
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
1340
1356
|
|
|
1341
1357
|
## 3.0.3 (2023-04-24)
|
|
1342
1358
|
|
|
1343
1359
|
### Bug Fixes
|
|
1344
1360
|
|
|
1345
|
-
-
|
|
1361
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
1346
1362
|
|
|
1347
1363
|
## 3.0.2 (2023-04-18)
|
|
1348
1364
|
|
|
1349
1365
|
### Bug Fixes
|
|
1350
1366
|
|
|
1351
|
-
-
|
|
1352
|
-
-
|
|
1367
|
+
- **service:** fix linting ([88b5e59](https://github.com/equinor/fusion-framework/commit/88b5e596d18ac8b999404c3487a9896b0806a767))
|
|
1368
|
+
- **services:** update-api-provider-types ([380c6af](https://github.com/equinor/fusion-framework/commit/380c6af855fa6b9a29dbedd51917f0d6e4e7742b))
|
|
1353
1369
|
|
|
1354
1370
|
## 3.0.1 (2023-04-17)
|
|
1355
1371
|
|
|
1356
1372
|
### Bug Fixes
|
|
1357
1373
|
|
|
1358
|
-
-
|
|
1374
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
1359
1375
|
|
|
1360
1376
|
## 3.0.0 (2023-04-16)
|
|
1361
1377
|
|
|
1362
1378
|
### Bug Fixes
|
|
1363
1379
|
|
|
1364
|
-
-
|
|
1380
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
1365
1381
|
|
|
1366
1382
|
## 2.6.0 (2023-04-14)
|
|
1367
1383
|
|
|
1368
1384
|
### Features
|
|
1369
1385
|
|
|
1370
|
-
-
|
|
1386
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1371
1387
|
|
|
1372
1388
|
## 2.5.0 (2023-04-14)
|
|
1373
1389
|
|
|
1374
1390
|
### Features
|
|
1375
1391
|
|
|
1376
|
-
-
|
|
1392
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1377
1393
|
|
|
1378
1394
|
## 2.4.0 (2023-04-14)
|
|
1379
1395
|
|
|
1380
1396
|
### Features
|
|
1381
1397
|
|
|
1382
|
-
-
|
|
1398
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1383
1399
|
|
|
1384
1400
|
## 2.3.1 (2023-04-13)
|
|
1385
1401
|
|
|
@@ -1389,29 +1405,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1389
1405
|
|
|
1390
1406
|
### Features
|
|
1391
1407
|
|
|
1392
|
-
-
|
|
1393
|
-
-
|
|
1408
|
+
- **bookmark-client:** added verify users bookmark ([971835c](https://github.com/equinor/fusion-framework/commit/971835c801f46fc4bebd3d1b97ca8cd83c085a77))
|
|
1409
|
+
- **Bookmark-Client:** Enable to add bookmark favorites ([83dd966](https://github.com/equinor/fusion-framework/commit/83dd966ef1d609f0be44373ee16344810ae9beb4))
|
|
1394
1410
|
|
|
1395
1411
|
### Bug Fixes
|
|
1396
1412
|
|
|
1397
|
-
-
|
|
1398
|
-
-
|
|
1413
|
+
- **bookmark-client:** fix import ([7c7d585](https://github.com/equinor/fusion-framework/commit/7c7d585b6eb53688e5ce9f80474eac3275576290))
|
|
1414
|
+
- **bookmark-client:** renamed id to bookmarkId ([590ad69](https://github.com/equinor/fusion-framework/commit/590ad69cfca579ec65accb5dab47c69968aade95))
|
|
1399
1415
|
|
|
1400
1416
|
## 2.2.0 (2023-03-27)
|
|
1401
1417
|
|
|
1402
1418
|
### Features
|
|
1403
1419
|
|
|
1404
|
-
-
|
|
1420
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
1405
1421
|
|
|
1406
1422
|
## 2.1.0 (2023-03-22)
|
|
1407
1423
|
|
|
1408
1424
|
### Features
|
|
1409
1425
|
|
|
1410
|
-
-
|
|
1426
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
1411
1427
|
|
|
1412
1428
|
### Bug Fixes
|
|
1413
1429
|
|
|
1414
|
-
-
|
|
1430
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
1415
1431
|
|
|
1416
1432
|
## [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)
|
|
1417
1433
|
|
|
@@ -1457,7 +1473,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1457
1473
|
|
|
1458
1474
|
### Bug Fixes
|
|
1459
1475
|
|
|
1460
|
-
-
|
|
1476
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
1461
1477
|
|
|
1462
1478
|
## [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)
|
|
1463
1479
|
|
|
@@ -1531,7 +1547,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1531
1547
|
|
|
1532
1548
|
### Bug Fixes
|
|
1533
1549
|
|
|
1534
|
-
-
|
|
1550
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
1535
1551
|
|
|
1536
1552
|
## [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)
|
|
1537
1553
|
|
|
@@ -1609,13 +1625,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1609
1625
|
|
|
1610
1626
|
### Features
|
|
1611
1627
|
|
|
1612
|
-
-
|
|
1628
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
1613
1629
|
|
|
1614
1630
|
## 0.4.0 (2022-11-01)
|
|
1615
1631
|
|
|
1616
1632
|
### Features
|
|
1617
1633
|
|
|
1618
|
-
-
|
|
1634
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
1619
1635
|
|
|
1620
1636
|
## 0.3.2 (2022-10-27)
|
|
1621
1637
|
|
|
@@ -1629,13 +1645,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1629
1645
|
|
|
1630
1646
|
### Features
|
|
1631
1647
|
|
|
1632
|
-
-
|
|
1648
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
1633
1649
|
|
|
1634
1650
|
## [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)
|
|
1635
1651
|
|
|
1636
1652
|
### Features
|
|
1637
1653
|
|
|
1638
|
-
-
|
|
1654
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
1639
1655
|
|
|
1640
1656
|
## 0.1.1 (2022-10-03)
|
|
1641
1657
|
|
|
@@ -1645,8 +1661,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1645
1661
|
|
|
1646
1662
|
### Features
|
|
1647
1663
|
|
|
1648
|
-
-
|
|
1649
|
-
-
|
|
1650
|
-
-
|
|
1651
|
-
-
|
|
1652
|
-
-
|
|
1664
|
+
- **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)
|
|
1665
|
+
- **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)
|
|
1666
|
+
- **module-services:** rewrite interface for services ([b440aa2](https://github.com/equinor/fusion-framework/commit/b440aa28ae733aa77e07128b04b21fe24db356b4))
|
|
1667
|
+
- **module-services:** rewrite module ([bbbc203](https://github.com/equinor/fusion-framework/commit/bbbc2031f4c8785fd623db3be16f96195094f47e))
|
|
1668
|
+
- **module-services:** rewrite module ([40b64ad](https://github.com/equinor/fusion-framework/commit/40b64ad5dca8ef719fcca9b3297e85aa28af413a))
|