@equinor/fusion-framework-module-services 5.0.0 → 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 +194 -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/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/version.d.ts +1 -1
- package/package.json +3 -3
- package/src/bookmarks/endpoints/user-bookmark-favourite.head.ts +1 -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,20 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
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
|
+
|
|
3
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
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.
|
|
10
20
|
|
|
@@ -12,45 +22,45 @@
|
|
|
12
22
|
|
|
13
23
|
**BREAKING CHANGES:**
|
|
14
24
|
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
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
|
|
19
29
|
|
|
20
30
|
## 4.1.5
|
|
21
31
|
|
|
22
32
|
### Patch Changes
|
|
23
33
|
|
|
24
|
-
-
|
|
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
|
|
25
35
|
|
|
26
36
|
## 4.1.4
|
|
27
37
|
|
|
28
38
|
### Patch Changes
|
|
29
39
|
|
|
30
|
-
-
|
|
31
|
-
-
|
|
40
|
+
- Updated dependencies [[`2644b3d`](https://github.com/equinor/fusion-framework/commit/2644b3d63939aede736a3b1950db32dbd487877d)]:
|
|
41
|
+
- @equinor/fusion-framework-module@4.3.5
|
|
32
42
|
|
|
33
43
|
## 4.1.3
|
|
34
44
|
|
|
35
45
|
### Patch Changes
|
|
36
46
|
|
|
37
|
-
-
|
|
38
|
-
-
|
|
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
|
|
39
49
|
|
|
40
50
|
## 4.1.2
|
|
41
51
|
|
|
42
52
|
### Patch Changes
|
|
43
53
|
|
|
44
|
-
-
|
|
45
|
-
-
|
|
54
|
+
- Updated dependencies [[`a1524e9`](https://github.com/equinor/fusion-framework/commit/a1524e9c4d83778da3db42dbcf99908b776a0592)]:
|
|
55
|
+
- @equinor/fusion-framework-module@4.3.3
|
|
46
56
|
|
|
47
57
|
## 4.1.1
|
|
48
58
|
|
|
49
59
|
### Patch Changes
|
|
50
60
|
|
|
51
|
-
-
|
|
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
|
|
52
62
|
|
|
53
|
-
-
|
|
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.
|
|
54
64
|
|
|
55
65
|
Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
|
|
56
66
|
|
|
@@ -93,21 +103,21 @@
|
|
|
93
103
|
|
|
94
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.
|
|
95
105
|
|
|
96
|
-
-
|
|
97
|
-
-
|
|
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
|
|
98
108
|
|
|
99
109
|
## 4.1.0
|
|
100
110
|
|
|
101
111
|
### Minor Changes
|
|
102
112
|
|
|
103
|
-
-
|
|
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
|
|
104
114
|
|
|
105
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.
|
|
106
116
|
|
|
107
117
|
To update your code:
|
|
108
118
|
|
|
109
|
-
-
|
|
110
|
-
-
|
|
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`.
|
|
111
121
|
|
|
112
122
|
Example:
|
|
113
123
|
|
|
@@ -127,47 +137,47 @@
|
|
|
127
137
|
|
|
128
138
|
### Patch Changes
|
|
129
139
|
|
|
130
|
-
-
|
|
131
|
-
-
|
|
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
|
|
132
142
|
|
|
133
143
|
## 4.0.1
|
|
134
144
|
|
|
135
145
|
### Patch Changes
|
|
136
146
|
|
|
137
|
-
-
|
|
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.
|
|
138
148
|
|
|
139
149
|
## 4.0.0
|
|
140
150
|
|
|
141
151
|
### Minor Changes
|
|
142
152
|
|
|
143
|
-
-
|
|
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
|
|
144
154
|
|
|
145
155
|
### Patch Changes
|
|
146
156
|
|
|
147
|
-
-
|
|
148
|
-
-
|
|
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
|
|
149
159
|
|
|
150
160
|
## 3.2.4
|
|
151
161
|
|
|
152
162
|
### Patch Changes
|
|
153
163
|
|
|
154
|
-
-
|
|
155
|
-
-
|
|
164
|
+
- Updated dependencies [[`152cf73`](https://github.com/equinor/fusion-framework/commit/152cf73d39eb32ccbaddaa6941e315c437c4972d)]:
|
|
165
|
+
- @equinor/fusion-framework-module@4.2.7
|
|
156
166
|
|
|
157
167
|
## 3.2.3
|
|
158
168
|
|
|
159
169
|
### Patch Changes
|
|
160
170
|
|
|
161
|
-
-
|
|
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
|
|
162
172
|
|
|
163
|
-
-
|
|
164
|
-
-
|
|
173
|
+
- Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
|
|
174
|
+
- @equinor/fusion-framework-module@4.2.6
|
|
165
175
|
|
|
166
176
|
## 3.2.2
|
|
167
177
|
|
|
168
178
|
### Patch Changes
|
|
169
179
|
|
|
170
|
-
-
|
|
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
|
|
171
181
|
|
|
172
182
|
> extremely crude, but good enough until backend comes of with new models or endpoint
|
|
173
183
|
|
|
@@ -177,22 +187,22 @@
|
|
|
177
187
|
|
|
178
188
|
### Patch Changes
|
|
179
189
|
|
|
180
|
-
-
|
|
190
|
+
- [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
|
|
181
191
|
|
|
182
|
-
-
|
|
183
|
-
-
|
|
192
|
+
- Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
|
|
193
|
+
- @equinor/fusion-framework-module@4.2.5
|
|
184
194
|
|
|
185
195
|
## 3.2.0
|
|
186
196
|
|
|
187
197
|
### Minor Changes
|
|
188
198
|
|
|
189
|
-
-
|
|
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
|
|
190
200
|
|
|
191
201
|
> **for internal usage only!**
|
|
192
202
|
|
|
193
|
-
-
|
|
194
|
-
-
|
|
195
|
-
-
|
|
203
|
+
- add function for fetching person details
|
|
204
|
+
- add function for querying persons
|
|
205
|
+
- add function for downloading person photo
|
|
196
206
|
|
|
197
207
|
```ts
|
|
198
208
|
const personApi = await modules.services.createPeopleClient();
|
|
@@ -203,27 +213,27 @@
|
|
|
203
213
|
|
|
204
214
|
### Patch Changes
|
|
205
215
|
|
|
206
|
-
-
|
|
207
|
-
-
|
|
216
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
217
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
208
218
|
|
|
209
219
|
## 3.1.4
|
|
210
220
|
|
|
211
221
|
### Patch Changes
|
|
212
222
|
|
|
213
|
-
-
|
|
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
|
|
214
224
|
|
|
215
225
|
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
216
226
|
|
|
217
227
|
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
218
228
|
|
|
219
|
-
-
|
|
220
|
-
-
|
|
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
|
|
221
231
|
|
|
222
232
|
## 3.1.3
|
|
223
233
|
|
|
224
234
|
### Patch Changes
|
|
225
235
|
|
|
226
|
-
-
|
|
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
|
|
227
237
|
|
|
228
238
|
All notable changes to this project will be documented in this file.
|
|
229
239
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -240,54 +250,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
240
250
|
|
|
241
251
|
### Features
|
|
242
252
|
|
|
243
|
-
-
|
|
253
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
244
254
|
|
|
245
255
|
### Bug Fixes
|
|
246
256
|
|
|
247
|
-
-
|
|
257
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
248
258
|
|
|
249
259
|
## 3.0.3 (2023-04-24)
|
|
250
260
|
|
|
251
261
|
### Bug Fixes
|
|
252
262
|
|
|
253
|
-
-
|
|
263
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
254
264
|
|
|
255
265
|
## 3.0.2 (2023-04-18)
|
|
256
266
|
|
|
257
267
|
### Bug Fixes
|
|
258
268
|
|
|
259
|
-
-
|
|
260
|
-
-
|
|
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))
|
|
261
271
|
|
|
262
272
|
## 3.0.1 (2023-04-17)
|
|
263
273
|
|
|
264
274
|
### Bug Fixes
|
|
265
275
|
|
|
266
|
-
-
|
|
276
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
267
277
|
|
|
268
278
|
## 3.0.0 (2023-04-16)
|
|
269
279
|
|
|
270
280
|
### Bug Fixes
|
|
271
281
|
|
|
272
|
-
-
|
|
282
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
273
283
|
|
|
274
284
|
## 2.6.0 (2023-04-14)
|
|
275
285
|
|
|
276
286
|
### Features
|
|
277
287
|
|
|
278
|
-
-
|
|
288
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
279
289
|
|
|
280
290
|
## 2.5.0 (2023-04-14)
|
|
281
291
|
|
|
282
292
|
### Features
|
|
283
293
|
|
|
284
|
-
-
|
|
294
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
285
295
|
|
|
286
296
|
## 2.4.0 (2023-04-14)
|
|
287
297
|
|
|
288
298
|
### Features
|
|
289
299
|
|
|
290
|
-
-
|
|
300
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
291
301
|
|
|
292
302
|
## 2.3.1 (2023-04-13)
|
|
293
303
|
|
|
@@ -297,29 +307,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
297
307
|
|
|
298
308
|
### Features
|
|
299
309
|
|
|
300
|
-
-
|
|
301
|
-
-
|
|
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))
|
|
302
312
|
|
|
303
313
|
### Bug Fixes
|
|
304
314
|
|
|
305
|
-
-
|
|
306
|
-
-
|
|
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))
|
|
307
317
|
|
|
308
318
|
## 2.2.0 (2023-03-27)
|
|
309
319
|
|
|
310
320
|
### Features
|
|
311
321
|
|
|
312
|
-
-
|
|
322
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
313
323
|
|
|
314
324
|
## 2.1.0 (2023-03-22)
|
|
315
325
|
|
|
316
326
|
### Features
|
|
317
327
|
|
|
318
|
-
-
|
|
328
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
319
329
|
|
|
320
330
|
### Bug Fixes
|
|
321
331
|
|
|
322
|
-
-
|
|
332
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
323
333
|
|
|
324
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)
|
|
325
335
|
|
|
@@ -365,7 +375,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
365
375
|
|
|
366
376
|
### Bug Fixes
|
|
367
377
|
|
|
368
|
-
-
|
|
378
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
369
379
|
|
|
370
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)
|
|
371
381
|
|
|
@@ -439,7 +449,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
439
449
|
|
|
440
450
|
### Bug Fixes
|
|
441
451
|
|
|
442
|
-
-
|
|
452
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
443
453
|
|
|
444
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)
|
|
445
455
|
|
|
@@ -517,13 +527,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
517
527
|
|
|
518
528
|
### Features
|
|
519
529
|
|
|
520
|
-
-
|
|
530
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
521
531
|
|
|
522
532
|
## 0.4.0 (2022-11-01)
|
|
523
533
|
|
|
524
534
|
### Features
|
|
525
535
|
|
|
526
|
-
-
|
|
536
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
527
537
|
|
|
528
538
|
## 0.3.2 (2022-10-27)
|
|
529
539
|
|
|
@@ -537,13 +547,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
537
547
|
|
|
538
548
|
### Features
|
|
539
549
|
|
|
540
|
-
-
|
|
550
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
541
551
|
|
|
542
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)
|
|
543
553
|
|
|
544
554
|
### Features
|
|
545
555
|
|
|
546
|
-
-
|
|
556
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
547
557
|
|
|
548
558
|
## 0.1.1 (2022-10-03)
|
|
549
559
|
|
|
@@ -553,39 +563,39 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
553
563
|
|
|
554
564
|
### Features
|
|
555
565
|
|
|
556
|
-
-
|
|
557
|
-
-
|
|
558
|
-
-
|
|
559
|
-
-
|
|
560
|
-
-
|
|
561
|
-
|
|
562
|
-
|
|
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
|
|
563
573
|
|
|
564
574
|
## 3.1.5
|
|
565
575
|
|
|
566
576
|
### Patch Changes
|
|
567
577
|
|
|
568
|
-
-
|
|
569
|
-
-
|
|
578
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
579
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
570
580
|
|
|
571
581
|
## 3.1.4
|
|
572
582
|
|
|
573
583
|
### Patch Changes
|
|
574
584
|
|
|
575
|
-
-
|
|
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
|
|
576
586
|
|
|
577
587
|
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
578
588
|
|
|
579
589
|
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
580
590
|
|
|
581
|
-
-
|
|
582
|
-
-
|
|
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
|
|
583
593
|
|
|
584
594
|
## 3.1.3
|
|
585
595
|
|
|
586
596
|
### Patch Changes
|
|
587
597
|
|
|
588
|
-
-
|
|
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
|
|
589
599
|
|
|
590
600
|
All notable changes to this project will be documented in this file.
|
|
591
601
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -602,54 +612,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
602
612
|
|
|
603
613
|
### Features
|
|
604
614
|
|
|
605
|
-
-
|
|
615
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
606
616
|
|
|
607
617
|
### Bug Fixes
|
|
608
618
|
|
|
609
|
-
-
|
|
619
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
610
620
|
|
|
611
621
|
## 3.0.3 (2023-04-24)
|
|
612
622
|
|
|
613
623
|
### Bug Fixes
|
|
614
624
|
|
|
615
|
-
-
|
|
625
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
616
626
|
|
|
617
627
|
## 3.0.2 (2023-04-18)
|
|
618
628
|
|
|
619
629
|
### Bug Fixes
|
|
620
630
|
|
|
621
|
-
-
|
|
622
|
-
-
|
|
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))
|
|
623
633
|
|
|
624
634
|
## 3.0.1 (2023-04-17)
|
|
625
635
|
|
|
626
636
|
### Bug Fixes
|
|
627
637
|
|
|
628
|
-
-
|
|
638
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
629
639
|
|
|
630
640
|
## 3.0.0 (2023-04-16)
|
|
631
641
|
|
|
632
642
|
### Bug Fixes
|
|
633
643
|
|
|
634
|
-
-
|
|
644
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
635
645
|
|
|
636
646
|
## 2.6.0 (2023-04-14)
|
|
637
647
|
|
|
638
648
|
### Features
|
|
639
649
|
|
|
640
|
-
-
|
|
650
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
641
651
|
|
|
642
652
|
## 2.5.0 (2023-04-14)
|
|
643
653
|
|
|
644
654
|
### Features
|
|
645
655
|
|
|
646
|
-
-
|
|
656
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
647
657
|
|
|
648
658
|
## 2.4.0 (2023-04-14)
|
|
649
659
|
|
|
650
660
|
### Features
|
|
651
661
|
|
|
652
|
-
-
|
|
662
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
653
663
|
|
|
654
664
|
## 2.3.1 (2023-04-13)
|
|
655
665
|
|
|
@@ -659,29 +669,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
659
669
|
|
|
660
670
|
### Features
|
|
661
671
|
|
|
662
|
-
-
|
|
663
|
-
-
|
|
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))
|
|
664
674
|
|
|
665
675
|
### Bug Fixes
|
|
666
676
|
|
|
667
|
-
-
|
|
668
|
-
-
|
|
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))
|
|
669
679
|
|
|
670
680
|
## 2.2.0 (2023-03-27)
|
|
671
681
|
|
|
672
682
|
### Features
|
|
673
683
|
|
|
674
|
-
-
|
|
684
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
675
685
|
|
|
676
686
|
## 2.1.0 (2023-03-22)
|
|
677
687
|
|
|
678
688
|
### Features
|
|
679
689
|
|
|
680
|
-
-
|
|
690
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
681
691
|
|
|
682
692
|
### Bug Fixes
|
|
683
693
|
|
|
684
|
-
-
|
|
694
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
685
695
|
|
|
686
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)
|
|
687
697
|
|
|
@@ -727,7 +737,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
727
737
|
|
|
728
738
|
### Bug Fixes
|
|
729
739
|
|
|
730
|
-
-
|
|
740
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
731
741
|
|
|
732
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)
|
|
733
743
|
|
|
@@ -801,7 +811,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
801
811
|
|
|
802
812
|
### Bug Fixes
|
|
803
813
|
|
|
804
|
-
-
|
|
814
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
805
815
|
|
|
806
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)
|
|
807
817
|
|
|
@@ -879,13 +889,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
879
889
|
|
|
880
890
|
### Features
|
|
881
891
|
|
|
882
|
-
-
|
|
892
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
883
893
|
|
|
884
894
|
## 0.4.0 (2022-11-01)
|
|
885
895
|
|
|
886
896
|
### Features
|
|
887
897
|
|
|
888
|
-
-
|
|
898
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
889
899
|
|
|
890
900
|
## 0.3.2 (2022-10-27)
|
|
891
901
|
|
|
@@ -899,13 +909,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
899
909
|
|
|
900
910
|
### Features
|
|
901
911
|
|
|
902
|
-
-
|
|
912
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
903
913
|
|
|
904
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)
|
|
905
915
|
|
|
906
916
|
### Features
|
|
907
917
|
|
|
908
|
-
-
|
|
918
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
909
919
|
|
|
910
920
|
## 0.1.1 (2022-10-03)
|
|
911
921
|
|
|
@@ -915,39 +925,39 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
915
925
|
|
|
916
926
|
### Features
|
|
917
927
|
|
|
918
|
-
-
|
|
919
|
-
-
|
|
920
|
-
-
|
|
921
|
-
-
|
|
922
|
-
-
|
|
923
|
-
|
|
924
|
-
|
|
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
|
|
925
935
|
|
|
926
936
|
## 3.1.5
|
|
927
937
|
|
|
928
938
|
### Patch Changes
|
|
929
939
|
|
|
930
|
-
-
|
|
931
|
-
-
|
|
940
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
941
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
932
942
|
|
|
933
943
|
## 3.1.4
|
|
934
944
|
|
|
935
945
|
### Patch Changes
|
|
936
946
|
|
|
937
|
-
-
|
|
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
|
|
938
948
|
|
|
939
949
|
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
940
950
|
|
|
941
951
|
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
942
952
|
|
|
943
|
-
-
|
|
944
|
-
-
|
|
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
|
|
945
955
|
|
|
946
956
|
## 3.1.3
|
|
947
957
|
|
|
948
958
|
### Patch Changes
|
|
949
959
|
|
|
950
|
-
-
|
|
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
|
|
951
961
|
|
|
952
962
|
All notable changes to this project will be documented in this file.
|
|
953
963
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -964,54 +974,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
964
974
|
|
|
965
975
|
### Features
|
|
966
976
|
|
|
967
|
-
-
|
|
977
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
968
978
|
|
|
969
979
|
### Bug Fixes
|
|
970
980
|
|
|
971
|
-
-
|
|
981
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
972
982
|
|
|
973
983
|
## 3.0.3 (2023-04-24)
|
|
974
984
|
|
|
975
985
|
### Bug Fixes
|
|
976
986
|
|
|
977
|
-
-
|
|
987
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
978
988
|
|
|
979
989
|
## 3.0.2 (2023-04-18)
|
|
980
990
|
|
|
981
991
|
### Bug Fixes
|
|
982
992
|
|
|
983
|
-
-
|
|
984
|
-
-
|
|
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))
|
|
985
995
|
|
|
986
996
|
## 3.0.1 (2023-04-17)
|
|
987
997
|
|
|
988
998
|
### Bug Fixes
|
|
989
999
|
|
|
990
|
-
-
|
|
1000
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
991
1001
|
|
|
992
1002
|
## 3.0.0 (2023-04-16)
|
|
993
1003
|
|
|
994
1004
|
### Bug Fixes
|
|
995
1005
|
|
|
996
|
-
-
|
|
1006
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
997
1007
|
|
|
998
1008
|
## 2.6.0 (2023-04-14)
|
|
999
1009
|
|
|
1000
1010
|
### Features
|
|
1001
1011
|
|
|
1002
|
-
-
|
|
1012
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1003
1013
|
|
|
1004
1014
|
## 2.5.0 (2023-04-14)
|
|
1005
1015
|
|
|
1006
1016
|
### Features
|
|
1007
1017
|
|
|
1008
|
-
-
|
|
1018
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1009
1019
|
|
|
1010
1020
|
## 2.4.0 (2023-04-14)
|
|
1011
1021
|
|
|
1012
1022
|
### Features
|
|
1013
1023
|
|
|
1014
|
-
-
|
|
1024
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1015
1025
|
|
|
1016
1026
|
## 2.3.1 (2023-04-13)
|
|
1017
1027
|
|
|
@@ -1021,29 +1031,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1021
1031
|
|
|
1022
1032
|
### Features
|
|
1023
1033
|
|
|
1024
|
-
-
|
|
1025
|
-
-
|
|
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))
|
|
1026
1036
|
|
|
1027
1037
|
### Bug Fixes
|
|
1028
1038
|
|
|
1029
|
-
-
|
|
1030
|
-
-
|
|
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))
|
|
1031
1041
|
|
|
1032
1042
|
## 2.2.0 (2023-03-27)
|
|
1033
1043
|
|
|
1034
1044
|
### Features
|
|
1035
1045
|
|
|
1036
|
-
-
|
|
1046
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
1037
1047
|
|
|
1038
1048
|
## 2.1.0 (2023-03-22)
|
|
1039
1049
|
|
|
1040
1050
|
### Features
|
|
1041
1051
|
|
|
1042
|
-
-
|
|
1052
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
1043
1053
|
|
|
1044
1054
|
### Bug Fixes
|
|
1045
1055
|
|
|
1046
|
-
-
|
|
1056
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
1047
1057
|
|
|
1048
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)
|
|
1049
1059
|
|
|
@@ -1089,7 +1099,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1089
1099
|
|
|
1090
1100
|
### Bug Fixes
|
|
1091
1101
|
|
|
1092
|
-
-
|
|
1102
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
1093
1103
|
|
|
1094
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)
|
|
1095
1105
|
|
|
@@ -1163,7 +1173,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1163
1173
|
|
|
1164
1174
|
### Bug Fixes
|
|
1165
1175
|
|
|
1166
|
-
-
|
|
1176
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
1167
1177
|
|
|
1168
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)
|
|
1169
1179
|
|
|
@@ -1241,13 +1251,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1241
1251
|
|
|
1242
1252
|
### Features
|
|
1243
1253
|
|
|
1244
|
-
-
|
|
1254
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
1245
1255
|
|
|
1246
1256
|
## 0.4.0 (2022-11-01)
|
|
1247
1257
|
|
|
1248
1258
|
### Features
|
|
1249
1259
|
|
|
1250
|
-
-
|
|
1260
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
1251
1261
|
|
|
1252
1262
|
## 0.3.2 (2022-10-27)
|
|
1253
1263
|
|
|
@@ -1261,13 +1271,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1261
1271
|
|
|
1262
1272
|
### Features
|
|
1263
1273
|
|
|
1264
|
-
-
|
|
1274
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
1265
1275
|
|
|
1266
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)
|
|
1267
1277
|
|
|
1268
1278
|
### Features
|
|
1269
1279
|
|
|
1270
|
-
-
|
|
1280
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
1271
1281
|
|
|
1272
1282
|
## 0.1.1 (2022-10-03)
|
|
1273
1283
|
|
|
@@ -1277,45 +1287,45 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1277
1287
|
|
|
1278
1288
|
### Features
|
|
1279
1289
|
|
|
1280
|
-
-
|
|
1281
|
-
-
|
|
1282
|
-
-
|
|
1283
|
-
-
|
|
1284
|
-
-
|
|
1285
|
-
|
|
1286
|
-
|
|
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
|
+
``
|
|
1287
1297
|
|
|
1288
|
-
-
|
|
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
|
|
1289
1299
|
|
|
1290
|
-
-
|
|
1291
|
-
-
|
|
1292
|
-
-
|
|
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
|
|
1293
1303
|
|
|
1294
1304
|
## 3.1.5
|
|
1295
1305
|
|
|
1296
1306
|
### Patch Changes
|
|
1297
1307
|
|
|
1298
|
-
-
|
|
1299
|
-
-
|
|
1308
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
1309
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
1300
1310
|
|
|
1301
1311
|
## 3.1.4
|
|
1302
1312
|
|
|
1303
1313
|
### Patch Changes
|
|
1304
1314
|
|
|
1305
|
-
-
|
|
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
|
|
1306
1316
|
|
|
1307
1317
|
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
1308
1318
|
|
|
1309
1319
|
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
1310
1320
|
|
|
1311
|
-
-
|
|
1312
|
-
-
|
|
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
|
|
1313
1323
|
|
|
1314
1324
|
## 3.1.3
|
|
1315
1325
|
|
|
1316
1326
|
### Patch Changes
|
|
1317
1327
|
|
|
1318
|
-
-
|
|
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
|
|
1319
1329
|
|
|
1320
1330
|
All notable changes to this project will be documented in this file.
|
|
1321
1331
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -1332,54 +1342,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1332
1342
|
|
|
1333
1343
|
### Features
|
|
1334
1344
|
|
|
1335
|
-
-
|
|
1345
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
1336
1346
|
|
|
1337
1347
|
### Bug Fixes
|
|
1338
1348
|
|
|
1339
|
-
-
|
|
1349
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
1340
1350
|
|
|
1341
1351
|
## 3.0.3 (2023-04-24)
|
|
1342
1352
|
|
|
1343
1353
|
### Bug Fixes
|
|
1344
1354
|
|
|
1345
|
-
-
|
|
1355
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
1346
1356
|
|
|
1347
1357
|
## 3.0.2 (2023-04-18)
|
|
1348
1358
|
|
|
1349
1359
|
### Bug Fixes
|
|
1350
1360
|
|
|
1351
|
-
-
|
|
1352
|
-
-
|
|
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))
|
|
1353
1363
|
|
|
1354
1364
|
## 3.0.1 (2023-04-17)
|
|
1355
1365
|
|
|
1356
1366
|
### Bug Fixes
|
|
1357
1367
|
|
|
1358
|
-
-
|
|
1368
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
1359
1369
|
|
|
1360
1370
|
## 3.0.0 (2023-04-16)
|
|
1361
1371
|
|
|
1362
1372
|
### Bug Fixes
|
|
1363
1373
|
|
|
1364
|
-
-
|
|
1374
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
1365
1375
|
|
|
1366
1376
|
## 2.6.0 (2023-04-14)
|
|
1367
1377
|
|
|
1368
1378
|
### Features
|
|
1369
1379
|
|
|
1370
|
-
-
|
|
1380
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1371
1381
|
|
|
1372
1382
|
## 2.5.0 (2023-04-14)
|
|
1373
1383
|
|
|
1374
1384
|
### Features
|
|
1375
1385
|
|
|
1376
|
-
-
|
|
1386
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1377
1387
|
|
|
1378
1388
|
## 2.4.0 (2023-04-14)
|
|
1379
1389
|
|
|
1380
1390
|
### Features
|
|
1381
1391
|
|
|
1382
|
-
-
|
|
1392
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
1383
1393
|
|
|
1384
1394
|
## 2.3.1 (2023-04-13)
|
|
1385
1395
|
|
|
@@ -1389,29 +1399,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1389
1399
|
|
|
1390
1400
|
### Features
|
|
1391
1401
|
|
|
1392
|
-
-
|
|
1393
|
-
-
|
|
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))
|
|
1394
1404
|
|
|
1395
1405
|
### Bug Fixes
|
|
1396
1406
|
|
|
1397
|
-
-
|
|
1398
|
-
-
|
|
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))
|
|
1399
1409
|
|
|
1400
1410
|
## 2.2.0 (2023-03-27)
|
|
1401
1411
|
|
|
1402
1412
|
### Features
|
|
1403
1413
|
|
|
1404
|
-
-
|
|
1414
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
1405
1415
|
|
|
1406
1416
|
## 2.1.0 (2023-03-22)
|
|
1407
1417
|
|
|
1408
1418
|
### Features
|
|
1409
1419
|
|
|
1410
|
-
-
|
|
1420
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
1411
1421
|
|
|
1412
1422
|
### Bug Fixes
|
|
1413
1423
|
|
|
1414
|
-
-
|
|
1424
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
1415
1425
|
|
|
1416
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)
|
|
1417
1427
|
|
|
@@ -1457,7 +1467,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1457
1467
|
|
|
1458
1468
|
### Bug Fixes
|
|
1459
1469
|
|
|
1460
|
-
-
|
|
1470
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
1461
1471
|
|
|
1462
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)
|
|
1463
1473
|
|
|
@@ -1531,7 +1541,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1531
1541
|
|
|
1532
1542
|
### Bug Fixes
|
|
1533
1543
|
|
|
1534
|
-
-
|
|
1544
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
1535
1545
|
|
|
1536
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)
|
|
1537
1547
|
|
|
@@ -1609,13 +1619,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1609
1619
|
|
|
1610
1620
|
### Features
|
|
1611
1621
|
|
|
1612
|
-
-
|
|
1622
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
1613
1623
|
|
|
1614
1624
|
## 0.4.0 (2022-11-01)
|
|
1615
1625
|
|
|
1616
1626
|
### Features
|
|
1617
1627
|
|
|
1618
|
-
-
|
|
1628
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
1619
1629
|
|
|
1620
1630
|
## 0.3.2 (2022-10-27)
|
|
1621
1631
|
|
|
@@ -1629,13 +1639,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1629
1639
|
|
|
1630
1640
|
### Features
|
|
1631
1641
|
|
|
1632
|
-
-
|
|
1642
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
1633
1643
|
|
|
1634
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)
|
|
1635
1645
|
|
|
1636
1646
|
### Features
|
|
1637
1647
|
|
|
1638
|
-
-
|
|
1648
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
1639
1649
|
|
|
1640
1650
|
## 0.1.1 (2022-10-03)
|
|
1641
1651
|
|
|
@@ -1645,8 +1655,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1645
1655
|
|
|
1646
1656
|
### Features
|
|
1647
1657
|
|
|
1648
|
-
-
|
|
1649
|
-
-
|
|
1650
|
-
-
|
|
1651
|
-
-
|
|
1652
|
-
-
|
|
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))
|