@equinor/fusion-framework-module-services 3.1.5 → 3.2.0
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 +1109 -0
- package/dist/esm/people/api-models.js +2 -0
- package/dist/esm/people/api-models.js.map +1 -0
- package/dist/esm/people/api-models.v2.js +2 -0
- package/dist/esm/people/api-models.v2.js.map +1 -0
- package/dist/esm/people/api-models.v4.js +2 -0
- package/dist/esm/people/api-models.v4.js.map +1 -0
- package/dist/esm/people/client.js +26 -0
- package/dist/esm/people/client.js.map +1 -0
- package/dist/esm/people/index.js +4 -0
- package/dist/esm/people/index.js.map +1 -0
- package/dist/esm/people/person-details/client.js +4 -0
- package/dist/esm/people/person-details/client.js.map +1 -0
- package/dist/esm/people/person-details/generate-endpoint.js +21 -0
- package/dist/esm/people/person-details/generate-endpoint.js.map +1 -0
- package/dist/esm/people/person-details/generate-parameters.js +7 -0
- package/dist/esm/people/person-details/generate-parameters.js.map +1 -0
- package/dist/esm/people/person-details/index.js +5 -0
- package/dist/esm/people/person-details/index.js.map +1 -0
- package/dist/esm/people/person-details/types.js +2 -0
- package/dist/esm/people/person-details/types.js.map +1 -0
- package/dist/esm/people/person-photo/client.js +4 -0
- package/dist/esm/people/person-photo/client.js.map +1 -0
- package/dist/esm/people/person-photo/generate-endpoint.js +18 -0
- package/dist/esm/people/person-photo/generate-endpoint.js.map +1 -0
- package/dist/esm/people/person-photo/generate-parameters.js +7 -0
- package/dist/esm/people/person-photo/generate-parameters.js.map +1 -0
- package/dist/esm/people/person-photo/index.js +5 -0
- package/dist/esm/people/person-photo/index.js.map +1 -0
- package/dist/esm/people/person-photo/types.js +2 -0
- package/dist/esm/people/person-photo/types.js.map +1 -0
- package/dist/esm/people/query/client.js +4 -0
- package/dist/esm/people/query/client.js.map +1 -0
- package/dist/esm/people/query/generate-endpoint.js +19 -0
- package/dist/esm/people/query/generate-endpoint.js.map +1 -0
- package/dist/esm/people/query/generate-parameters.js +7 -0
- package/dist/esm/people/query/generate-parameters.js.map +1 -0
- package/dist/esm/people/query/index.js +5 -0
- package/dist/esm/people/query/index.js.map +1 -0
- package/dist/esm/people/query/types.js +2 -0
- package/dist/esm/people/query/types.js.map +1 -0
- package/dist/esm/people/static.js +6 -0
- package/dist/esm/people/static.js.map +1 -0
- package/dist/esm/provider.js +8 -0
- package/dist/esm/provider.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/people/api-models.d.ts +34 -0
- package/dist/types/people/api-models.v2.d.ts +25 -0
- package/dist/types/people/api-models.v4.d.ts +81 -0
- package/dist/types/people/client.d.ts +15 -0
- package/dist/types/people/index.d.ts +3 -0
- package/dist/types/people/person-details/client.d.ts +5 -0
- package/dist/types/people/person-details/generate-endpoint.d.ts +2 -0
- package/dist/types/people/person-details/generate-parameters.d.ts +5 -0
- package/dist/types/people/person-details/index.d.ts +4 -0
- package/dist/types/people/person-details/types.d.ts +30 -0
- package/dist/types/people/person-photo/client.d.ts +5 -0
- package/dist/types/people/person-photo/generate-endpoint.d.ts +2 -0
- package/dist/types/people/person-photo/generate-parameters.d.ts +5 -0
- package/dist/types/people/person-photo/index.d.ts +4 -0
- package/dist/types/people/person-photo/types.d.ts +16 -0
- package/dist/types/people/query/client.d.ts +5 -0
- package/dist/types/people/query/generate-endpoint.d.ts +2 -0
- package/dist/types/people/query/generate-parameters.d.ts +5 -0
- package/dist/types/people/query/index.d.ts +4 -0
- package/dist/types/people/query/types.d.ts +17 -0
- package/dist/types/people/static.d.ts +4 -0
- package/dist/types/provider.d.ts +3 -0
- package/dist/types/types.d.ts +4 -0
- package/package.json +19 -3
- package/src/people/api-models.ts +52 -0
- package/src/people/api-models.v2.ts +31 -0
- package/src/people/api-models.v4.ts +100 -0
- package/src/people/client.ts +109 -0
- package/src/people/index.ts +5 -0
- package/src/people/person-details/client.ts +33 -0
- package/src/people/person-details/generate-endpoint.ts +28 -0
- package/src/people/person-details/generate-parameters.ts +22 -0
- package/src/people/person-details/index.ts +6 -0
- package/src/people/person-details/types.ts +54 -0
- package/src/people/person-photo/client.ts +33 -0
- package/src/people/person-photo/generate-endpoint.ts +25 -0
- package/src/people/person-photo/generate-parameters.ts +22 -0
- package/src/people/person-photo/index.ts +6 -0
- package/src/people/person-photo/types.ts +24 -0
- package/src/people/query/client.ts +33 -0
- package/src/people/query/generate-endpoint.ts +26 -0
- package/src/people/query/generate-parameters.ts +22 -0
- package/src/people/query/index.ts +6 -0
- package/src/people/query/types.ts +28 -0
- package/src/people/static.ts +4 -0
- package/src/provider.ts +10 -0
- package/src/types.ts +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,1114 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 3.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
9
|
+
> **for internal usage only!**
|
|
10
|
+
|
|
11
|
+
- add function for fetching person details
|
|
12
|
+
- add function for querying persons
|
|
13
|
+
- add function for downloading person photo
|
|
14
|
+
|
|
15
|
+
```ts
|
|
16
|
+
const personApi = await modules.services.createPeopleClient();
|
|
17
|
+
personApi.query('v2', 'json
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## 3.1.5
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
25
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
26
|
+
|
|
27
|
+
## 3.1.4
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- [#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
|
|
32
|
+
|
|
33
|
+
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
34
|
+
|
|
35
|
+
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
36
|
+
|
|
37
|
+
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
38
|
+
- @equinor/fusion-framework-module@4.2.3
|
|
39
|
+
|
|
40
|
+
## 3.1.3
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- [#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
|
|
45
|
+
|
|
46
|
+
All notable changes to this project will be documented in this file.
|
|
47
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
48
|
+
|
|
49
|
+
## [3.1.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@3.1.1...@equinor/fusion-framework-module-services@3.1.2) (2023-05-23)
|
|
50
|
+
|
|
51
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
52
|
+
|
|
53
|
+
## 3.1.1 (2023-05-22)
|
|
54
|
+
|
|
55
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
56
|
+
|
|
57
|
+
## [3.1.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@3.0.3...@equinor/fusion-framework-module-services@3.1.0) (2023-05-05)
|
|
58
|
+
|
|
59
|
+
### Features
|
|
60
|
+
|
|
61
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
62
|
+
|
|
63
|
+
### Bug Fixes
|
|
64
|
+
|
|
65
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
66
|
+
|
|
67
|
+
## 3.0.3 (2023-04-24)
|
|
68
|
+
|
|
69
|
+
### Bug Fixes
|
|
70
|
+
|
|
71
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
72
|
+
|
|
73
|
+
## 3.0.2 (2023-04-18)
|
|
74
|
+
|
|
75
|
+
### Bug Fixes
|
|
76
|
+
|
|
77
|
+
- **service:** fix linting ([88b5e59](https://github.com/equinor/fusion-framework/commit/88b5e596d18ac8b999404c3487a9896b0806a767))
|
|
78
|
+
- **services:** update-api-provider-types ([380c6af](https://github.com/equinor/fusion-framework/commit/380c6af855fa6b9a29dbedd51917f0d6e4e7742b))
|
|
79
|
+
|
|
80
|
+
## 3.0.1 (2023-04-17)
|
|
81
|
+
|
|
82
|
+
### Bug Fixes
|
|
83
|
+
|
|
84
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
85
|
+
|
|
86
|
+
## 3.0.0 (2023-04-16)
|
|
87
|
+
|
|
88
|
+
### Bug Fixes
|
|
89
|
+
|
|
90
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
91
|
+
|
|
92
|
+
## 2.6.0 (2023-04-14)
|
|
93
|
+
|
|
94
|
+
### Features
|
|
95
|
+
|
|
96
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
97
|
+
|
|
98
|
+
## 2.5.0 (2023-04-14)
|
|
99
|
+
|
|
100
|
+
### Features
|
|
101
|
+
|
|
102
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
103
|
+
|
|
104
|
+
## 2.4.0 (2023-04-14)
|
|
105
|
+
|
|
106
|
+
### Features
|
|
107
|
+
|
|
108
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
109
|
+
|
|
110
|
+
## 2.3.1 (2023-04-13)
|
|
111
|
+
|
|
112
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
113
|
+
|
|
114
|
+
## [2.3.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.2.0...@equinor/fusion-framework-module-services@2.3.0) (2023-03-28)
|
|
115
|
+
|
|
116
|
+
### Features
|
|
117
|
+
|
|
118
|
+
- **bookmark-client:** added verify users bookmark ([971835c](https://github.com/equinor/fusion-framework/commit/971835c801f46fc4bebd3d1b97ca8cd83c085a77))
|
|
119
|
+
- **Bookmark-Client:** Enable to add bookmark favorites ([83dd966](https://github.com/equinor/fusion-framework/commit/83dd966ef1d609f0be44373ee16344810ae9beb4))
|
|
120
|
+
|
|
121
|
+
### Bug Fixes
|
|
122
|
+
|
|
123
|
+
- **bookmark-client:** fix import ([7c7d585](https://github.com/equinor/fusion-framework/commit/7c7d585b6eb53688e5ce9f80474eac3275576290))
|
|
124
|
+
- **bookmark-client:** renamed id to bookmarkId ([590ad69](https://github.com/equinor/fusion-framework/commit/590ad69cfca579ec65accb5dab47c69968aade95))
|
|
125
|
+
|
|
126
|
+
## 2.2.0 (2023-03-27)
|
|
127
|
+
|
|
128
|
+
### Features
|
|
129
|
+
|
|
130
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
131
|
+
|
|
132
|
+
## 2.1.0 (2023-03-22)
|
|
133
|
+
|
|
134
|
+
### Features
|
|
135
|
+
|
|
136
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
137
|
+
|
|
138
|
+
### Bug Fixes
|
|
139
|
+
|
|
140
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
141
|
+
|
|
142
|
+
## [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)
|
|
143
|
+
|
|
144
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
145
|
+
|
|
146
|
+
## [2.0.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.5...@equinor/fusion-framework-module-services@2.0.6) (2023-02-22)
|
|
147
|
+
|
|
148
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
149
|
+
|
|
150
|
+
## [2.0.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.4...@equinor/fusion-framework-module-services@2.0.5) (2023-02-20)
|
|
151
|
+
|
|
152
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
153
|
+
|
|
154
|
+
## [2.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.3...@equinor/fusion-framework-module-services@2.0.4) (2023-02-13)
|
|
155
|
+
|
|
156
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
157
|
+
|
|
158
|
+
## [2.0.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.2...@equinor/fusion-framework-module-services@2.0.3) (2023-02-09)
|
|
159
|
+
|
|
160
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
161
|
+
|
|
162
|
+
## 2.0.2 (2023-02-02)
|
|
163
|
+
|
|
164
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
165
|
+
|
|
166
|
+
## 2.0.1 (2023-01-30)
|
|
167
|
+
|
|
168
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
169
|
+
|
|
170
|
+
## [2.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.15...@equinor/fusion-framework-module-services@2.0.0) (2023-01-27)
|
|
171
|
+
|
|
172
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
173
|
+
|
|
174
|
+
## [2.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.15...@equinor/fusion-framework-module-services@2.0.0-alpha.0) (2023-01-26)
|
|
175
|
+
|
|
176
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
177
|
+
|
|
178
|
+
## [1.0.15](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.14...@equinor/fusion-framework-module-services@1.0.15) (2023-01-26)
|
|
179
|
+
|
|
180
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
181
|
+
|
|
182
|
+
## 1.0.14 (2023-01-19)
|
|
183
|
+
|
|
184
|
+
### Bug Fixes
|
|
185
|
+
|
|
186
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
187
|
+
|
|
188
|
+
## [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)
|
|
189
|
+
|
|
190
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
191
|
+
|
|
192
|
+
## [1.0.12](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.11...@equinor/fusion-framework-module-services@1.0.12) (2023-01-16)
|
|
193
|
+
|
|
194
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
195
|
+
|
|
196
|
+
## 1.0.11 (2023-01-16)
|
|
197
|
+
|
|
198
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
199
|
+
|
|
200
|
+
## 1.0.10 (2023-01-12)
|
|
201
|
+
|
|
202
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
203
|
+
|
|
204
|
+
## 1.0.9 (2022-12-14)
|
|
205
|
+
|
|
206
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
207
|
+
|
|
208
|
+
## [1.0.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.7...@equinor/fusion-framework-module-services@1.0.8) (2022-12-12)
|
|
209
|
+
|
|
210
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
211
|
+
|
|
212
|
+
## 1.0.7 (2022-12-08)
|
|
213
|
+
|
|
214
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
215
|
+
|
|
216
|
+
## [1.0.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.5...@equinor/fusion-framework-module-services@1.0.6) (2022-12-08)
|
|
217
|
+
|
|
218
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
219
|
+
|
|
220
|
+
## [1.0.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.4...@equinor/fusion-framework-module-services@1.0.5) (2022-12-08)
|
|
221
|
+
|
|
222
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
223
|
+
|
|
224
|
+
## [1.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.3...@equinor/fusion-framework-module-services@1.0.4) (2022-12-08)
|
|
225
|
+
|
|
226
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
227
|
+
|
|
228
|
+
## 1.0.3 (2022-12-06)
|
|
229
|
+
|
|
230
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
231
|
+
|
|
232
|
+
## 1.0.2 (2022-12-06)
|
|
233
|
+
|
|
234
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
235
|
+
|
|
236
|
+
## 1.0.1 (2022-12-05)
|
|
237
|
+
|
|
238
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
239
|
+
|
|
240
|
+
## [1.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.21...@equinor/fusion-framework-module-services@1.0.0) (2022-12-02)
|
|
241
|
+
|
|
242
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
243
|
+
|
|
244
|
+
## [1.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.21...@equinor/fusion-framework-module-services@1.0.0-alpha.0) (2022-12-02)
|
|
245
|
+
|
|
246
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
247
|
+
|
|
248
|
+
## [0.5.21](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.20...@equinor/fusion-framework-module-services@0.5.21) (2022-12-01)
|
|
249
|
+
|
|
250
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
251
|
+
|
|
252
|
+
## [0.5.20](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.19...@equinor/fusion-framework-module-services@0.5.20) (2022-12-01)
|
|
253
|
+
|
|
254
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
255
|
+
|
|
256
|
+
## [0.5.19](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.18...@equinor/fusion-framework-module-services@0.5.19) (2022-12-01)
|
|
257
|
+
|
|
258
|
+
### Bug Fixes
|
|
259
|
+
|
|
260
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
261
|
+
|
|
262
|
+
## [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)
|
|
263
|
+
|
|
264
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
265
|
+
|
|
266
|
+
## [0.5.17](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.16...@equinor/fusion-framework-module-services@0.5.17) (2022-12-01)
|
|
267
|
+
|
|
268
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
269
|
+
|
|
270
|
+
## [0.5.16](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.15...@equinor/fusion-framework-module-services@0.5.16) (2022-12-01)
|
|
271
|
+
|
|
272
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
273
|
+
|
|
274
|
+
## [0.5.15](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.14...@equinor/fusion-framework-module-services@0.5.15) (2022-12-01)
|
|
275
|
+
|
|
276
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
277
|
+
|
|
278
|
+
## [0.5.14](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.13...@equinor/fusion-framework-module-services@0.5.14) (2022-12-01)
|
|
279
|
+
|
|
280
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
281
|
+
|
|
282
|
+
## [0.5.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.12...@equinor/fusion-framework-module-services@0.5.13) (2022-12-01)
|
|
283
|
+
|
|
284
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
285
|
+
|
|
286
|
+
## [0.5.12](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.11...@equinor/fusion-framework-module-services@0.5.12) (2022-12-01)
|
|
287
|
+
|
|
288
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
289
|
+
|
|
290
|
+
## [0.5.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.10...@equinor/fusion-framework-module-services@0.5.11) (2022-12-01)
|
|
291
|
+
|
|
292
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
293
|
+
|
|
294
|
+
## [0.5.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.9...@equinor/fusion-framework-module-services@0.5.10) (2022-12-01)
|
|
295
|
+
|
|
296
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
297
|
+
|
|
298
|
+
## 0.5.9 (2022-12-01)
|
|
299
|
+
|
|
300
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
301
|
+
|
|
302
|
+
## [0.5.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.7...@equinor/fusion-framework-module-services@0.5.8) (2022-11-20)
|
|
303
|
+
|
|
304
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
305
|
+
|
|
306
|
+
## 0.5.7 (2022-11-18)
|
|
307
|
+
|
|
308
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
309
|
+
|
|
310
|
+
## 0.5.6 (2022-11-14)
|
|
311
|
+
|
|
312
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
313
|
+
|
|
314
|
+
## [0.5.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.4...@equinor/fusion-framework-module-services@0.5.5) (2022-11-14)
|
|
315
|
+
|
|
316
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
317
|
+
|
|
318
|
+
## 0.5.4 (2022-11-11)
|
|
319
|
+
|
|
320
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
321
|
+
|
|
322
|
+
## 0.5.3 (2022-11-11)
|
|
323
|
+
|
|
324
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
325
|
+
|
|
326
|
+
## 0.5.2 (2022-11-03)
|
|
327
|
+
|
|
328
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
329
|
+
|
|
330
|
+
## 0.5.1 (2022-11-02)
|
|
331
|
+
|
|
332
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
333
|
+
|
|
334
|
+
## [0.5.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.4.0...@equinor/fusion-framework-module-services@0.5.0) (2022-11-01)
|
|
335
|
+
|
|
336
|
+
### Features
|
|
337
|
+
|
|
338
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
339
|
+
|
|
340
|
+
## 0.4.0 (2022-11-01)
|
|
341
|
+
|
|
342
|
+
### Features
|
|
343
|
+
|
|
344
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
345
|
+
|
|
346
|
+
## 0.3.2 (2022-10-27)
|
|
347
|
+
|
|
348
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
349
|
+
|
|
350
|
+
## 0.3.1 (2022-10-21)
|
|
351
|
+
|
|
352
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
353
|
+
|
|
354
|
+
## 0.3.0 (2022-10-21)
|
|
355
|
+
|
|
356
|
+
### Features
|
|
357
|
+
|
|
358
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
359
|
+
|
|
360
|
+
## [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)
|
|
361
|
+
|
|
362
|
+
### Features
|
|
363
|
+
|
|
364
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
365
|
+
|
|
366
|
+
## 0.1.1 (2022-10-03)
|
|
367
|
+
|
|
368
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
369
|
+
|
|
370
|
+
## 0.1.0 (2022-10-03)
|
|
371
|
+
|
|
372
|
+
### Features
|
|
373
|
+
|
|
374
|
+
- **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)
|
|
375
|
+
- **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)
|
|
376
|
+
- **module-services:** rewrite interface for services ([b440aa2](https://github.com/equinor/fusion-framework/commit/b440aa28ae733aa77e07128b04b21fe24db356b4))
|
|
377
|
+
- **module-services:** rewrite module ([bbbc203](https://github.com/equinor/fusion-framework/commit/bbbc2031f4c8785fd623db3be16f96195094f47e))
|
|
378
|
+
- **module-services:** rewrite module ([40b64ad](https://github.com/equinor/fusion-framework/commit/40b64ad5dca8ef719fcca9b3297e85aa28af413a))
|
|
379
|
+
, {search: 'foo@bar.com'})
|
|
380
|
+
personApi.get('v4', 'json
|
|
381
|
+
|
|
382
|
+
## 3.1.5
|
|
383
|
+
|
|
384
|
+
### Patch Changes
|
|
385
|
+
|
|
386
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
387
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
388
|
+
|
|
389
|
+
## 3.1.4
|
|
390
|
+
|
|
391
|
+
### Patch Changes
|
|
392
|
+
|
|
393
|
+
- [#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
|
|
394
|
+
|
|
395
|
+
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
396
|
+
|
|
397
|
+
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
398
|
+
|
|
399
|
+
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
400
|
+
- @equinor/fusion-framework-module@4.2.3
|
|
401
|
+
|
|
402
|
+
## 3.1.3
|
|
403
|
+
|
|
404
|
+
### Patch Changes
|
|
405
|
+
|
|
406
|
+
- [#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
|
|
407
|
+
|
|
408
|
+
All notable changes to this project will be documented in this file.
|
|
409
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
410
|
+
|
|
411
|
+
## [3.1.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@3.1.1...@equinor/fusion-framework-module-services@3.1.2) (2023-05-23)
|
|
412
|
+
|
|
413
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
414
|
+
|
|
415
|
+
## 3.1.1 (2023-05-22)
|
|
416
|
+
|
|
417
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
418
|
+
|
|
419
|
+
## [3.1.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@3.0.3...@equinor/fusion-framework-module-services@3.1.0) (2023-05-05)
|
|
420
|
+
|
|
421
|
+
### Features
|
|
422
|
+
|
|
423
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
424
|
+
|
|
425
|
+
### Bug Fixes
|
|
426
|
+
|
|
427
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
428
|
+
|
|
429
|
+
## 3.0.3 (2023-04-24)
|
|
430
|
+
|
|
431
|
+
### Bug Fixes
|
|
432
|
+
|
|
433
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
434
|
+
|
|
435
|
+
## 3.0.2 (2023-04-18)
|
|
436
|
+
|
|
437
|
+
### Bug Fixes
|
|
438
|
+
|
|
439
|
+
- **service:** fix linting ([88b5e59](https://github.com/equinor/fusion-framework/commit/88b5e596d18ac8b999404c3487a9896b0806a767))
|
|
440
|
+
- **services:** update-api-provider-types ([380c6af](https://github.com/equinor/fusion-framework/commit/380c6af855fa6b9a29dbedd51917f0d6e4e7742b))
|
|
441
|
+
|
|
442
|
+
## 3.0.1 (2023-04-17)
|
|
443
|
+
|
|
444
|
+
### Bug Fixes
|
|
445
|
+
|
|
446
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
447
|
+
|
|
448
|
+
## 3.0.0 (2023-04-16)
|
|
449
|
+
|
|
450
|
+
### Bug Fixes
|
|
451
|
+
|
|
452
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
453
|
+
|
|
454
|
+
## 2.6.0 (2023-04-14)
|
|
455
|
+
|
|
456
|
+
### Features
|
|
457
|
+
|
|
458
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
459
|
+
|
|
460
|
+
## 2.5.0 (2023-04-14)
|
|
461
|
+
|
|
462
|
+
### Features
|
|
463
|
+
|
|
464
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
465
|
+
|
|
466
|
+
## 2.4.0 (2023-04-14)
|
|
467
|
+
|
|
468
|
+
### Features
|
|
469
|
+
|
|
470
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
471
|
+
|
|
472
|
+
## 2.3.1 (2023-04-13)
|
|
473
|
+
|
|
474
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
475
|
+
|
|
476
|
+
## [2.3.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.2.0...@equinor/fusion-framework-module-services@2.3.0) (2023-03-28)
|
|
477
|
+
|
|
478
|
+
### Features
|
|
479
|
+
|
|
480
|
+
- **bookmark-client:** added verify users bookmark ([971835c](https://github.com/equinor/fusion-framework/commit/971835c801f46fc4bebd3d1b97ca8cd83c085a77))
|
|
481
|
+
- **Bookmark-Client:** Enable to add bookmark favorites ([83dd966](https://github.com/equinor/fusion-framework/commit/83dd966ef1d609f0be44373ee16344810ae9beb4))
|
|
482
|
+
|
|
483
|
+
### Bug Fixes
|
|
484
|
+
|
|
485
|
+
- **bookmark-client:** fix import ([7c7d585](https://github.com/equinor/fusion-framework/commit/7c7d585b6eb53688e5ce9f80474eac3275576290))
|
|
486
|
+
- **bookmark-client:** renamed id to bookmarkId ([590ad69](https://github.com/equinor/fusion-framework/commit/590ad69cfca579ec65accb5dab47c69968aade95))
|
|
487
|
+
|
|
488
|
+
## 2.2.0 (2023-03-27)
|
|
489
|
+
|
|
490
|
+
### Features
|
|
491
|
+
|
|
492
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
493
|
+
|
|
494
|
+
## 2.1.0 (2023-03-22)
|
|
495
|
+
|
|
496
|
+
### Features
|
|
497
|
+
|
|
498
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
499
|
+
|
|
500
|
+
### Bug Fixes
|
|
501
|
+
|
|
502
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
503
|
+
|
|
504
|
+
## [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)
|
|
505
|
+
|
|
506
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
507
|
+
|
|
508
|
+
## [2.0.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.5...@equinor/fusion-framework-module-services@2.0.6) (2023-02-22)
|
|
509
|
+
|
|
510
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
511
|
+
|
|
512
|
+
## [2.0.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.4...@equinor/fusion-framework-module-services@2.0.5) (2023-02-20)
|
|
513
|
+
|
|
514
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
515
|
+
|
|
516
|
+
## [2.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.3...@equinor/fusion-framework-module-services@2.0.4) (2023-02-13)
|
|
517
|
+
|
|
518
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
519
|
+
|
|
520
|
+
## [2.0.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.2...@equinor/fusion-framework-module-services@2.0.3) (2023-02-09)
|
|
521
|
+
|
|
522
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
523
|
+
|
|
524
|
+
## 2.0.2 (2023-02-02)
|
|
525
|
+
|
|
526
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
527
|
+
|
|
528
|
+
## 2.0.1 (2023-01-30)
|
|
529
|
+
|
|
530
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
531
|
+
|
|
532
|
+
## [2.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.15...@equinor/fusion-framework-module-services@2.0.0) (2023-01-27)
|
|
533
|
+
|
|
534
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
535
|
+
|
|
536
|
+
## [2.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.15...@equinor/fusion-framework-module-services@2.0.0-alpha.0) (2023-01-26)
|
|
537
|
+
|
|
538
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
539
|
+
|
|
540
|
+
## [1.0.15](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.14...@equinor/fusion-framework-module-services@1.0.15) (2023-01-26)
|
|
541
|
+
|
|
542
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
543
|
+
|
|
544
|
+
## 1.0.14 (2023-01-19)
|
|
545
|
+
|
|
546
|
+
### Bug Fixes
|
|
547
|
+
|
|
548
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
549
|
+
|
|
550
|
+
## [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)
|
|
551
|
+
|
|
552
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
553
|
+
|
|
554
|
+
## [1.0.12](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.11...@equinor/fusion-framework-module-services@1.0.12) (2023-01-16)
|
|
555
|
+
|
|
556
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
557
|
+
|
|
558
|
+
## 1.0.11 (2023-01-16)
|
|
559
|
+
|
|
560
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
561
|
+
|
|
562
|
+
## 1.0.10 (2023-01-12)
|
|
563
|
+
|
|
564
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
565
|
+
|
|
566
|
+
## 1.0.9 (2022-12-14)
|
|
567
|
+
|
|
568
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
569
|
+
|
|
570
|
+
## [1.0.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.7...@equinor/fusion-framework-module-services@1.0.8) (2022-12-12)
|
|
571
|
+
|
|
572
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
573
|
+
|
|
574
|
+
## 1.0.7 (2022-12-08)
|
|
575
|
+
|
|
576
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
577
|
+
|
|
578
|
+
## [1.0.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.5...@equinor/fusion-framework-module-services@1.0.6) (2022-12-08)
|
|
579
|
+
|
|
580
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
581
|
+
|
|
582
|
+
## [1.0.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.4...@equinor/fusion-framework-module-services@1.0.5) (2022-12-08)
|
|
583
|
+
|
|
584
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
585
|
+
|
|
586
|
+
## [1.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.3...@equinor/fusion-framework-module-services@1.0.4) (2022-12-08)
|
|
587
|
+
|
|
588
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
589
|
+
|
|
590
|
+
## 1.0.3 (2022-12-06)
|
|
591
|
+
|
|
592
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
593
|
+
|
|
594
|
+
## 1.0.2 (2022-12-06)
|
|
595
|
+
|
|
596
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
597
|
+
|
|
598
|
+
## 1.0.1 (2022-12-05)
|
|
599
|
+
|
|
600
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
601
|
+
|
|
602
|
+
## [1.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.21...@equinor/fusion-framework-module-services@1.0.0) (2022-12-02)
|
|
603
|
+
|
|
604
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
605
|
+
|
|
606
|
+
## [1.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.21...@equinor/fusion-framework-module-services@1.0.0-alpha.0) (2022-12-02)
|
|
607
|
+
|
|
608
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
609
|
+
|
|
610
|
+
## [0.5.21](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.20...@equinor/fusion-framework-module-services@0.5.21) (2022-12-01)
|
|
611
|
+
|
|
612
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
613
|
+
|
|
614
|
+
## [0.5.20](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.19...@equinor/fusion-framework-module-services@0.5.20) (2022-12-01)
|
|
615
|
+
|
|
616
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
617
|
+
|
|
618
|
+
## [0.5.19](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.18...@equinor/fusion-framework-module-services@0.5.19) (2022-12-01)
|
|
619
|
+
|
|
620
|
+
### Bug Fixes
|
|
621
|
+
|
|
622
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
623
|
+
|
|
624
|
+
## [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)
|
|
625
|
+
|
|
626
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
627
|
+
|
|
628
|
+
## [0.5.17](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.16...@equinor/fusion-framework-module-services@0.5.17) (2022-12-01)
|
|
629
|
+
|
|
630
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
631
|
+
|
|
632
|
+
## [0.5.16](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.15...@equinor/fusion-framework-module-services@0.5.16) (2022-12-01)
|
|
633
|
+
|
|
634
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
635
|
+
|
|
636
|
+
## [0.5.15](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.14...@equinor/fusion-framework-module-services@0.5.15) (2022-12-01)
|
|
637
|
+
|
|
638
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
639
|
+
|
|
640
|
+
## [0.5.14](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.13...@equinor/fusion-framework-module-services@0.5.14) (2022-12-01)
|
|
641
|
+
|
|
642
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
643
|
+
|
|
644
|
+
## [0.5.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.12...@equinor/fusion-framework-module-services@0.5.13) (2022-12-01)
|
|
645
|
+
|
|
646
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
647
|
+
|
|
648
|
+
## [0.5.12](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.11...@equinor/fusion-framework-module-services@0.5.12) (2022-12-01)
|
|
649
|
+
|
|
650
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
651
|
+
|
|
652
|
+
## [0.5.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.10...@equinor/fusion-framework-module-services@0.5.11) (2022-12-01)
|
|
653
|
+
|
|
654
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
655
|
+
|
|
656
|
+
## [0.5.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.9...@equinor/fusion-framework-module-services@0.5.10) (2022-12-01)
|
|
657
|
+
|
|
658
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
659
|
+
|
|
660
|
+
## 0.5.9 (2022-12-01)
|
|
661
|
+
|
|
662
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
663
|
+
|
|
664
|
+
## [0.5.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.7...@equinor/fusion-framework-module-services@0.5.8) (2022-11-20)
|
|
665
|
+
|
|
666
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
667
|
+
|
|
668
|
+
## 0.5.7 (2022-11-18)
|
|
669
|
+
|
|
670
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
671
|
+
|
|
672
|
+
## 0.5.6 (2022-11-14)
|
|
673
|
+
|
|
674
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
675
|
+
|
|
676
|
+
## [0.5.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.4...@equinor/fusion-framework-module-services@0.5.5) (2022-11-14)
|
|
677
|
+
|
|
678
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
679
|
+
|
|
680
|
+
## 0.5.4 (2022-11-11)
|
|
681
|
+
|
|
682
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
683
|
+
|
|
684
|
+
## 0.5.3 (2022-11-11)
|
|
685
|
+
|
|
686
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
687
|
+
|
|
688
|
+
## 0.5.2 (2022-11-03)
|
|
689
|
+
|
|
690
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
691
|
+
|
|
692
|
+
## 0.5.1 (2022-11-02)
|
|
693
|
+
|
|
694
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
695
|
+
|
|
696
|
+
## [0.5.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.4.0...@equinor/fusion-framework-module-services@0.5.0) (2022-11-01)
|
|
697
|
+
|
|
698
|
+
### Features
|
|
699
|
+
|
|
700
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
701
|
+
|
|
702
|
+
## 0.4.0 (2022-11-01)
|
|
703
|
+
|
|
704
|
+
### Features
|
|
705
|
+
|
|
706
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
707
|
+
|
|
708
|
+
## 0.3.2 (2022-10-27)
|
|
709
|
+
|
|
710
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
711
|
+
|
|
712
|
+
## 0.3.1 (2022-10-21)
|
|
713
|
+
|
|
714
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
715
|
+
|
|
716
|
+
## 0.3.0 (2022-10-21)
|
|
717
|
+
|
|
718
|
+
### Features
|
|
719
|
+
|
|
720
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
721
|
+
|
|
722
|
+
## [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)
|
|
723
|
+
|
|
724
|
+
### Features
|
|
725
|
+
|
|
726
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
727
|
+
|
|
728
|
+
## 0.1.1 (2022-10-03)
|
|
729
|
+
|
|
730
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
731
|
+
|
|
732
|
+
## 0.1.0 (2022-10-03)
|
|
733
|
+
|
|
734
|
+
### Features
|
|
735
|
+
|
|
736
|
+
- **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)
|
|
737
|
+
- **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)
|
|
738
|
+
- **module-services:** rewrite interface for services ([b440aa2](https://github.com/equinor/fusion-framework/commit/b440aa28ae733aa77e07128b04b21fe24db356b4))
|
|
739
|
+
- **module-services:** rewrite module ([bbbc203](https://github.com/equinor/fusion-framework/commit/bbbc2031f4c8785fd623db3be16f96195094f47e))
|
|
740
|
+
- **module-services:** rewrite module ([40b64ad](https://github.com/equinor/fusion-framework/commit/40b64ad5dca8ef719fcca9b3297e85aa28af413a))
|
|
741
|
+
, {azureId: '1234'})
|
|
742
|
+
personApi.photo('v2', 'blob
|
|
743
|
+
|
|
744
|
+
## 3.1.5
|
|
745
|
+
|
|
746
|
+
### Patch Changes
|
|
747
|
+
|
|
748
|
+
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
749
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
750
|
+
|
|
751
|
+
## 3.1.4
|
|
752
|
+
|
|
753
|
+
### Patch Changes
|
|
754
|
+
|
|
755
|
+
- [#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
|
|
756
|
+
|
|
757
|
+
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
758
|
+
|
|
759
|
+
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
760
|
+
|
|
761
|
+
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
762
|
+
- @equinor/fusion-framework-module@4.2.3
|
|
763
|
+
|
|
764
|
+
## 3.1.3
|
|
765
|
+
|
|
766
|
+
### Patch Changes
|
|
767
|
+
|
|
768
|
+
- [#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
|
|
769
|
+
|
|
770
|
+
All notable changes to this project will be documented in this file.
|
|
771
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
772
|
+
|
|
773
|
+
## [3.1.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@3.1.1...@equinor/fusion-framework-module-services@3.1.2) (2023-05-23)
|
|
774
|
+
|
|
775
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
776
|
+
|
|
777
|
+
## 3.1.1 (2023-05-22)
|
|
778
|
+
|
|
779
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
780
|
+
|
|
781
|
+
## [3.1.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@3.0.3...@equinor/fusion-framework-module-services@3.1.0) (2023-05-05)
|
|
782
|
+
|
|
783
|
+
### Features
|
|
784
|
+
|
|
785
|
+
- **module-services:** add response handler ([77128e8](https://github.com/equinor/fusion-framework/commit/77128e82692ff570cf65a8b3c900bc6234ce4ae9))
|
|
786
|
+
|
|
787
|
+
### Bug Fixes
|
|
788
|
+
|
|
789
|
+
- **module-services:** validate response for http client ([6958f82](https://github.com/equinor/fusion-framework/commit/6958f82c4615f701e2ae9edf2d34dda60af8960a))
|
|
790
|
+
|
|
791
|
+
## 3.0.3 (2023-04-24)
|
|
792
|
+
|
|
793
|
+
### Bug Fixes
|
|
794
|
+
|
|
795
|
+
- **services-module:** fix bookmark favorites url ([f9c6129](https://github.com/equinor/fusion-framework/commit/f9c612914eae57452e1ffe77b1dc054eefea2850))
|
|
796
|
+
|
|
797
|
+
## 3.0.2 (2023-04-18)
|
|
798
|
+
|
|
799
|
+
### Bug Fixes
|
|
800
|
+
|
|
801
|
+
- **service:** fix linting ([88b5e59](https://github.com/equinor/fusion-framework/commit/88b5e596d18ac8b999404c3487a9896b0806a767))
|
|
802
|
+
- **services:** update-api-provider-types ([380c6af](https://github.com/equinor/fusion-framework/commit/380c6af855fa6b9a29dbedd51917f0d6e4e7742b))
|
|
803
|
+
|
|
804
|
+
## 3.0.1 (2023-04-17)
|
|
805
|
+
|
|
806
|
+
### Bug Fixes
|
|
807
|
+
|
|
808
|
+
- **context:** skip clearing context ([d4032b7](https://github.com/equinor/fusion-framework/commit/d4032b78b21d123e67cc7dadc50a65071d976b94))
|
|
809
|
+
|
|
810
|
+
## 3.0.0 (2023-04-16)
|
|
811
|
+
|
|
812
|
+
### Bug Fixes
|
|
813
|
+
|
|
814
|
+
- **modules/services:** fix oData query builder ([95e3e98](https://github.com/equinor/fusion-framework/commit/95e3e9886cbf4d00820577eaf141f83cc8a602b5))
|
|
815
|
+
|
|
816
|
+
## 2.6.0 (2023-04-14)
|
|
817
|
+
|
|
818
|
+
### Features
|
|
819
|
+
|
|
820
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
821
|
+
|
|
822
|
+
## 2.5.0 (2023-04-14)
|
|
823
|
+
|
|
824
|
+
### Features
|
|
825
|
+
|
|
826
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
827
|
+
|
|
828
|
+
## 2.4.0 (2023-04-14)
|
|
829
|
+
|
|
830
|
+
### Features
|
|
831
|
+
|
|
832
|
+
- **module-services:** add api interface for resolving related context ([54a8d9f](https://github.com/equinor/fusion-framework/commit/54a8d9f1a34052abb0f2e9104c9395b0fc4c77c4))
|
|
833
|
+
|
|
834
|
+
## 2.3.1 (2023-04-13)
|
|
835
|
+
|
|
836
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
837
|
+
|
|
838
|
+
## [2.3.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.2.0...@equinor/fusion-framework-module-services@2.3.0) (2023-03-28)
|
|
839
|
+
|
|
840
|
+
### Features
|
|
841
|
+
|
|
842
|
+
- **bookmark-client:** added verify users bookmark ([971835c](https://github.com/equinor/fusion-framework/commit/971835c801f46fc4bebd3d1b97ca8cd83c085a77))
|
|
843
|
+
- **Bookmark-Client:** Enable to add bookmark favorites ([83dd966](https://github.com/equinor/fusion-framework/commit/83dd966ef1d609f0be44373ee16344810ae9beb4))
|
|
844
|
+
|
|
845
|
+
### Bug Fixes
|
|
846
|
+
|
|
847
|
+
- **bookmark-client:** fix import ([7c7d585](https://github.com/equinor/fusion-framework/commit/7c7d585b6eb53688e5ce9f80474eac3275576290))
|
|
848
|
+
- **bookmark-client:** renamed id to bookmarkId ([590ad69](https://github.com/equinor/fusion-framework/commit/590ad69cfca579ec65accb5dab47c69968aade95))
|
|
849
|
+
|
|
850
|
+
## 2.2.0 (2023-03-27)
|
|
851
|
+
|
|
852
|
+
### Features
|
|
853
|
+
|
|
854
|
+
- **services:** Added notification api service ([8a40606](https://github.com/equinor/fusion-framework/commit/8a406068d69903e0d7ebc76079ed12caeac540f1))
|
|
855
|
+
|
|
856
|
+
## 2.1.0 (2023-03-22)
|
|
857
|
+
|
|
858
|
+
### Features
|
|
859
|
+
|
|
860
|
+
- added put and getAll endpoints to the bookmark api client ([b9deb40](https://github.com/equinor/fusion-framework/commit/b9deb406460cea2f0fa34eb688d4e427bfb2f9b5))
|
|
861
|
+
|
|
862
|
+
### Bug Fixes
|
|
863
|
+
|
|
864
|
+
- **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))
|
|
865
|
+
|
|
866
|
+
## [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)
|
|
867
|
+
|
|
868
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
869
|
+
|
|
870
|
+
## [2.0.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.5...@equinor/fusion-framework-module-services@2.0.6) (2023-02-22)
|
|
871
|
+
|
|
872
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
873
|
+
|
|
874
|
+
## [2.0.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.4...@equinor/fusion-framework-module-services@2.0.5) (2023-02-20)
|
|
875
|
+
|
|
876
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
877
|
+
|
|
878
|
+
## [2.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.3...@equinor/fusion-framework-module-services@2.0.4) (2023-02-13)
|
|
879
|
+
|
|
880
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
881
|
+
|
|
882
|
+
## [2.0.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@2.0.2...@equinor/fusion-framework-module-services@2.0.3) (2023-02-09)
|
|
883
|
+
|
|
884
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
885
|
+
|
|
886
|
+
## 2.0.2 (2023-02-02)
|
|
887
|
+
|
|
888
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
889
|
+
|
|
890
|
+
## 2.0.1 (2023-01-30)
|
|
891
|
+
|
|
892
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
893
|
+
|
|
894
|
+
## [2.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.15...@equinor/fusion-framework-module-services@2.0.0) (2023-01-27)
|
|
895
|
+
|
|
896
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
897
|
+
|
|
898
|
+
## [2.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.15...@equinor/fusion-framework-module-services@2.0.0-alpha.0) (2023-01-26)
|
|
899
|
+
|
|
900
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
901
|
+
|
|
902
|
+
## [1.0.15](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.14...@equinor/fusion-framework-module-services@1.0.15) (2023-01-26)
|
|
903
|
+
|
|
904
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
905
|
+
|
|
906
|
+
## 1.0.14 (2023-01-19)
|
|
907
|
+
|
|
908
|
+
### Bug Fixes
|
|
909
|
+
|
|
910
|
+
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1))
|
|
911
|
+
|
|
912
|
+
## [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)
|
|
913
|
+
|
|
914
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
915
|
+
|
|
916
|
+
## [1.0.12](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.11...@equinor/fusion-framework-module-services@1.0.12) (2023-01-16)
|
|
917
|
+
|
|
918
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
919
|
+
|
|
920
|
+
## 1.0.11 (2023-01-16)
|
|
921
|
+
|
|
922
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
923
|
+
|
|
924
|
+
## 1.0.10 (2023-01-12)
|
|
925
|
+
|
|
926
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
927
|
+
|
|
928
|
+
## 1.0.9 (2022-12-14)
|
|
929
|
+
|
|
930
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
931
|
+
|
|
932
|
+
## [1.0.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.7...@equinor/fusion-framework-module-services@1.0.8) (2022-12-12)
|
|
933
|
+
|
|
934
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
935
|
+
|
|
936
|
+
## 1.0.7 (2022-12-08)
|
|
937
|
+
|
|
938
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
939
|
+
|
|
940
|
+
## [1.0.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.5...@equinor/fusion-framework-module-services@1.0.6) (2022-12-08)
|
|
941
|
+
|
|
942
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
943
|
+
|
|
944
|
+
## [1.0.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.4...@equinor/fusion-framework-module-services@1.0.5) (2022-12-08)
|
|
945
|
+
|
|
946
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
947
|
+
|
|
948
|
+
## [1.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.3...@equinor/fusion-framework-module-services@1.0.4) (2022-12-08)
|
|
949
|
+
|
|
950
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
951
|
+
|
|
952
|
+
## 1.0.3 (2022-12-06)
|
|
953
|
+
|
|
954
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
955
|
+
|
|
956
|
+
## 1.0.2 (2022-12-06)
|
|
957
|
+
|
|
958
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
959
|
+
|
|
960
|
+
## 1.0.1 (2022-12-05)
|
|
961
|
+
|
|
962
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
963
|
+
|
|
964
|
+
## [1.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.21...@equinor/fusion-framework-module-services@1.0.0) (2022-12-02)
|
|
965
|
+
|
|
966
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
967
|
+
|
|
968
|
+
## [1.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.21...@equinor/fusion-framework-module-services@1.0.0-alpha.0) (2022-12-02)
|
|
969
|
+
|
|
970
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
971
|
+
|
|
972
|
+
## [0.5.21](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.20...@equinor/fusion-framework-module-services@0.5.21) (2022-12-01)
|
|
973
|
+
|
|
974
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
975
|
+
|
|
976
|
+
## [0.5.20](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.19...@equinor/fusion-framework-module-services@0.5.20) (2022-12-01)
|
|
977
|
+
|
|
978
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
979
|
+
|
|
980
|
+
## [0.5.19](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.18...@equinor/fusion-framework-module-services@0.5.19) (2022-12-01)
|
|
981
|
+
|
|
982
|
+
### Bug Fixes
|
|
983
|
+
|
|
984
|
+
- import typos ([c6449f1](https://github.com/equinor/fusion-framework/commit/c6449f1ac692439d52ed0e88f8492de9721e29ce))
|
|
985
|
+
|
|
986
|
+
## [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)
|
|
987
|
+
|
|
988
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
989
|
+
|
|
990
|
+
## [0.5.17](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.16...@equinor/fusion-framework-module-services@0.5.17) (2022-12-01)
|
|
991
|
+
|
|
992
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
993
|
+
|
|
994
|
+
## [0.5.16](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.15...@equinor/fusion-framework-module-services@0.5.16) (2022-12-01)
|
|
995
|
+
|
|
996
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
997
|
+
|
|
998
|
+
## [0.5.15](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.14...@equinor/fusion-framework-module-services@0.5.15) (2022-12-01)
|
|
999
|
+
|
|
1000
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1001
|
+
|
|
1002
|
+
## [0.5.14](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.13...@equinor/fusion-framework-module-services@0.5.14) (2022-12-01)
|
|
1003
|
+
|
|
1004
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1005
|
+
|
|
1006
|
+
## [0.5.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.12...@equinor/fusion-framework-module-services@0.5.13) (2022-12-01)
|
|
1007
|
+
|
|
1008
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1009
|
+
|
|
1010
|
+
## [0.5.12](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.11...@equinor/fusion-framework-module-services@0.5.12) (2022-12-01)
|
|
1011
|
+
|
|
1012
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1013
|
+
|
|
1014
|
+
## [0.5.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.10...@equinor/fusion-framework-module-services@0.5.11) (2022-12-01)
|
|
1015
|
+
|
|
1016
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1017
|
+
|
|
1018
|
+
## [0.5.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.9...@equinor/fusion-framework-module-services@0.5.10) (2022-12-01)
|
|
1019
|
+
|
|
1020
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1021
|
+
|
|
1022
|
+
## 0.5.9 (2022-12-01)
|
|
1023
|
+
|
|
1024
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1025
|
+
|
|
1026
|
+
## [0.5.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.7...@equinor/fusion-framework-module-services@0.5.8) (2022-11-20)
|
|
1027
|
+
|
|
1028
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1029
|
+
|
|
1030
|
+
## 0.5.7 (2022-11-18)
|
|
1031
|
+
|
|
1032
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1033
|
+
|
|
1034
|
+
## 0.5.6 (2022-11-14)
|
|
1035
|
+
|
|
1036
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1037
|
+
|
|
1038
|
+
## [0.5.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.5.4...@equinor/fusion-framework-module-services@0.5.5) (2022-11-14)
|
|
1039
|
+
|
|
1040
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1041
|
+
|
|
1042
|
+
## 0.5.4 (2022-11-11)
|
|
1043
|
+
|
|
1044
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1045
|
+
|
|
1046
|
+
## 0.5.3 (2022-11-11)
|
|
1047
|
+
|
|
1048
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1049
|
+
|
|
1050
|
+
## 0.5.2 (2022-11-03)
|
|
1051
|
+
|
|
1052
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1053
|
+
|
|
1054
|
+
## 0.5.1 (2022-11-02)
|
|
1055
|
+
|
|
1056
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1057
|
+
|
|
1058
|
+
## [0.5.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@0.4.0...@equinor/fusion-framework-module-services@0.5.0) (2022-11-01)
|
|
1059
|
+
|
|
1060
|
+
### Features
|
|
1061
|
+
|
|
1062
|
+
- :sparkles: delete bookmark ([df70d9f](https://github.com/equinor/fusion-framework/commit/df70d9f6ed369cfc9e682a268b7175ddf8b3d122))
|
|
1063
|
+
|
|
1064
|
+
## 0.4.0 (2022-11-01)
|
|
1065
|
+
|
|
1066
|
+
### Features
|
|
1067
|
+
|
|
1068
|
+
- :sparkles: post bookmark module-services ([333ec6a](https://github.com/equinor/fusion-framework/commit/333ec6ab394f305aa02678d93a513ecf67fd52bc))
|
|
1069
|
+
|
|
1070
|
+
## 0.3.2 (2022-10-27)
|
|
1071
|
+
|
|
1072
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1073
|
+
|
|
1074
|
+
## 0.3.1 (2022-10-21)
|
|
1075
|
+
|
|
1076
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1077
|
+
|
|
1078
|
+
## 0.3.0 (2022-10-21)
|
|
1079
|
+
|
|
1080
|
+
### Features
|
|
1081
|
+
|
|
1082
|
+
- **module-services:** bookmarks get ([0fe2c83](https://github.com/equinor/fusion-framework/commit/0fe2c83155b7c49623da13739f0945edf4ee9200))
|
|
1083
|
+
|
|
1084
|
+
## [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)
|
|
1085
|
+
|
|
1086
|
+
### Features
|
|
1087
|
+
|
|
1088
|
+
- **observable:** expose async query function ([b9292fc](https://github.com/equinor/fusion-framework/commit/b9292fcabd0756c0340fc767acf592482b253cd0))
|
|
1089
|
+
|
|
1090
|
+
## 0.1.1 (2022-10-03)
|
|
1091
|
+
|
|
1092
|
+
**Note:** Version bump only for package @equinor/fusion-framework-module-services
|
|
1093
|
+
|
|
1094
|
+
## 0.1.0 (2022-10-03)
|
|
1095
|
+
|
|
1096
|
+
### Features
|
|
1097
|
+
|
|
1098
|
+
- **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)
|
|
1099
|
+
- **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)
|
|
1100
|
+
- **module-services:** rewrite interface for services ([b440aa2](https://github.com/equinor/fusion-framework/commit/b440aa28ae733aa77e07128b04b21fe24db356b4))
|
|
1101
|
+
- **module-services:** rewrite module ([bbbc203](https://github.com/equinor/fusion-framework/commit/bbbc2031f4c8785fd623db3be16f96195094f47e))
|
|
1102
|
+
- **module-services:** rewrite module ([40b64ad](https://github.com/equinor/fusion-framework/commit/40b64ad5dca8ef719fcca9b3297e85aa28af413a))
|
|
1103
|
+
, {azureId: '123'})
|
|
1104
|
+
``
|
|
1105
|
+
|
|
1106
|
+
- [#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
|
|
1107
|
+
|
|
1108
|
+
- added models for v2 and v4
|
|
1109
|
+
- added expand logic for person detail `roles` `positions` `contracts` `manager` `companies`
|
|
1110
|
+
- changed api client to now include args and init (previously args where extracted from call parameters) to correctly type response models
|
|
1111
|
+
|
|
3
1112
|
## 3.1.5
|
|
4
1113
|
|
|
5
1114
|
### Patch Changes
|