@twin.org/web 0.0.3-next.8 → 0.0.3

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.
Files changed (56) hide show
  1. package/README.md +1 -1
  2. package/dist/es/index.js +3 -0
  3. package/dist/es/index.js.map +1 -1
  4. package/dist/es/models/IFetchOptions.js.map +1 -1
  5. package/dist/es/models/IHttpLinkHeader.js +2 -0
  6. package/dist/es/models/IHttpLinkHeader.js.map +1 -0
  7. package/dist/es/models/headerTypes.js +129 -1
  8. package/dist/es/models/headerTypes.js.map +1 -1
  9. package/dist/es/models/httpLinkRelType.js +130 -0
  10. package/dist/es/models/httpLinkRelType.js.map +1 -0
  11. package/dist/es/models/httpMethod.js +36 -0
  12. package/dist/es/models/httpMethod.js.map +1 -1
  13. package/dist/es/models/httpStatusCode.js +63 -0
  14. package/dist/es/models/httpStatusCode.js.map +1 -1
  15. package/dist/es/models/mimeTypes.js +170 -1
  16. package/dist/es/models/mimeTypes.js.map +1 -1
  17. package/dist/es/utils/cookieHelper.js +83 -0
  18. package/dist/es/utils/cookieHelper.js.map +1 -0
  19. package/dist/es/utils/fetchHelper.js +1 -1
  20. package/dist/es/utils/fetchHelper.js.map +1 -1
  21. package/dist/es/utils/headerHelper.js +383 -1
  22. package/dist/es/utils/headerHelper.js.map +1 -1
  23. package/dist/es/utils/mimeTypeHelper.js +42 -1
  24. package/dist/es/utils/mimeTypeHelper.js.map +1 -1
  25. package/dist/types/index.d.ts +3 -0
  26. package/dist/types/models/IFetchOptions.d.ts +1 -1
  27. package/dist/types/models/IHttpLinkHeader.d.ts +26 -0
  28. package/dist/types/models/headerTypes.d.ts +128 -0
  29. package/dist/types/models/httpLinkRelType.d.ts +130 -0
  30. package/dist/types/models/httpMethod.d.ts +36 -0
  31. package/dist/types/models/httpStatusCode.d.ts +63 -0
  32. package/dist/types/models/mimeTypes.d.ts +169 -0
  33. package/dist/types/utils/cookieHelper.d.ts +49 -0
  34. package/dist/types/utils/headerHelper.d.ts +115 -0
  35. package/docs/changelog.md +994 -167
  36. package/docs/examples.md +108 -1
  37. package/docs/reference/classes/CookieHelper.md +155 -0
  38. package/docs/reference/classes/FetchError.md +453 -1
  39. package/docs/reference/classes/FetchHelper.md +12 -12
  40. package/docs/reference/classes/HeaderHelper.md +385 -2
  41. package/docs/reference/classes/Jwk.md +6 -6
  42. package/docs/reference/classes/Jws.md +3 -3
  43. package/docs/reference/classes/Jwt.md +17 -17
  44. package/docs/reference/classes/MimeTypeHelper.md +4 -4
  45. package/docs/reference/index.md +4 -0
  46. package/docs/reference/interfaces/IFetchOptions.md +12 -14
  47. package/docs/reference/interfaces/IHttpHeaders.md +1 -1
  48. package/docs/reference/interfaces/IHttpLinkHeader.md +43 -0
  49. package/docs/reference/type-aliases/HttpLinkRelType.md +5 -0
  50. package/docs/reference/variables/HeaderTypes.md +280 -8
  51. package/docs/reference/variables/HttpLinkRelType.md +191 -0
  52. package/docs/reference/variables/HttpMethod.md +63 -9
  53. package/docs/reference/variables/HttpStatusCode.md +314 -62
  54. package/docs/reference/variables/MimeTypes.md +279 -23
  55. package/locales/en.json +4 -3
  56. package/package.json +8 -8
package/docs/changelog.md CHANGED
@@ -1,6 +1,833 @@
1
- # @twin.org/web - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.8](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.7...web-v0.0.3-next.8) (2025-11-26)
3
+ ## [0.0.3](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3...web-v0.0.3) (2026-05-27)
4
+
5
+
6
+ ### Features
7
+
8
+ * release to production ([b24cba1](https://github.com/iotaledger/twin-framework/commit/b24cba1b6a969278d638e632590602ec881e49fb))
9
+ * release to production ([787287d](https://github.com/iotaledger/twin-framework/commit/787287d06ea8319657401589d61fff369310c422))
10
+ * release to production ([53f4843](https://github.com/iotaledger/twin-framework/commit/53f484326b2851d7a506d2620db24c4a65cee7b3))
11
+ * release to production ([56cda4d](https://github.com/iotaledger/twin-framework/commit/56cda4da93e978c5be19ec7cfd421ae2a7fe4147))
12
+ * release to production ([f7c6586](https://github.com/iotaledger/twin-framework/commit/f7c6586f6976b903b647b4c5ac5ad9421e0c9051))
13
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
14
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
15
+ * release to production ([#330](https://github.com/iotaledger/twin-framework/issues/330)) ([d73f565](https://github.com/iotaledger/twin-framework/commit/d73f565588d156d23ef49b2a5718973756f7a696))
16
+
17
+
18
+ ### Miscellaneous Chores
19
+
20
+ * release to production ([63cae24](https://github.com/iotaledger/twin-framework/commit/63cae2401f6c11f93b2a01260b665064e8bd28e0))
21
+
22
+ ## [0.0.3-next.47](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.46...web-v0.0.3-next.47) (2026-05-25)
23
+
24
+
25
+ ### Miscellaneous Chores
26
+
27
+ * **web:** Synchronize repo versions
28
+
29
+
30
+ ### Dependencies
31
+
32
+ * The following workspace dependencies were updated
33
+ * dependencies
34
+ * @twin.org/core bumped from 0.0.3-next.46 to 0.0.3-next.47
35
+ * @twin.org/crypto bumped from 0.0.3-next.46 to 0.0.3-next.47
36
+ * @twin.org/nameof bumped from 0.0.3-next.46 to 0.0.3-next.47
37
+ * devDependencies
38
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.46 to 0.0.3-next.47
39
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.46 to 0.0.3-next.47
40
+ * @twin.org/validate-locales bumped from 0.0.3-next.46 to 0.0.3-next.47
41
+
42
+ ## [0.0.3-next.46](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.45...web-v0.0.3-next.46) (2026-05-22)
43
+
44
+
45
+ ### Miscellaneous Chores
46
+
47
+ * **web:** Synchronize repo versions
48
+
49
+
50
+ ### Dependencies
51
+
52
+ * The following workspace dependencies were updated
53
+ * dependencies
54
+ * @twin.org/core bumped from 0.0.3-next.45 to 0.0.3-next.46
55
+ * @twin.org/crypto bumped from 0.0.3-next.45 to 0.0.3-next.46
56
+ * @twin.org/nameof bumped from 0.0.3-next.45 to 0.0.3-next.46
57
+ * devDependencies
58
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.45 to 0.0.3-next.46
59
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.45 to 0.0.3-next.46
60
+ * @twin.org/validate-locales bumped from 0.0.3-next.45 to 0.0.3-next.46
61
+
62
+ ## [0.0.3-next.45](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.44...web-v0.0.3-next.45) (2026-05-21)
63
+
64
+
65
+ ### Miscellaneous Chores
66
+
67
+ * **web:** Synchronize repo versions
68
+
69
+
70
+ ### Dependencies
71
+
72
+ * The following workspace dependencies were updated
73
+ * dependencies
74
+ * @twin.org/core bumped from 0.0.3-next.44 to 0.0.3-next.45
75
+ * @twin.org/crypto bumped from 0.0.3-next.44 to 0.0.3-next.45
76
+ * @twin.org/nameof bumped from 0.0.3-next.44 to 0.0.3-next.45
77
+ * devDependencies
78
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.44 to 0.0.3-next.45
79
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.44 to 0.0.3-next.45
80
+ * @twin.org/validate-locales bumped from 0.0.3-next.44 to 0.0.3-next.45
81
+
82
+ ## [0.0.3-next.44](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.43...web-v0.0.3-next.44) (2026-05-19)
83
+
84
+
85
+ ### Features
86
+
87
+ * update dependencies ([4da77ab](https://github.com/iotaledger/twin-framework/commit/4da77ab30f499e52825ac5a76f51436ceb59c26e))
88
+
89
+
90
+ ### Dependencies
91
+
92
+ * The following workspace dependencies were updated
93
+ * dependencies
94
+ * @twin.org/core bumped from 0.0.3-next.43 to 0.0.3-next.44
95
+ * @twin.org/crypto bumped from 0.0.3-next.43 to 0.0.3-next.44
96
+ * @twin.org/nameof bumped from 0.0.3-next.43 to 0.0.3-next.44
97
+ * devDependencies
98
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.43 to 0.0.3-next.44
99
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.43 to 0.0.3-next.44
100
+ * @twin.org/validate-locales bumped from 0.0.3-next.43 to 0.0.3-next.44
101
+
102
+ ## [0.0.3-next.43](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.42...web-v0.0.3-next.43) (2026-05-18)
103
+
104
+
105
+ ### Miscellaneous Chores
106
+
107
+ * **web:** Synchronize repo versions
108
+
109
+
110
+ ### Dependencies
111
+
112
+ * The following workspace dependencies were updated
113
+ * dependencies
114
+ * @twin.org/core bumped from 0.0.3-next.42 to 0.0.3-next.43
115
+ * @twin.org/crypto bumped from 0.0.3-next.42 to 0.0.3-next.43
116
+ * @twin.org/nameof bumped from 0.0.3-next.42 to 0.0.3-next.43
117
+ * devDependencies
118
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.42 to 0.0.3-next.43
119
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.42 to 0.0.3-next.43
120
+ * @twin.org/validate-locales bumped from 0.0.3-next.42 to 0.0.3-next.43
121
+
122
+ ## [0.0.3-next.42](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.41...web-v0.0.3-next.42) (2026-05-15)
123
+
124
+
125
+ ### Miscellaneous Chores
126
+
127
+ * **web:** Synchronize repo versions
128
+
129
+
130
+ ### Dependencies
131
+
132
+ * The following workspace dependencies were updated
133
+ * dependencies
134
+ * @twin.org/core bumped from 0.0.3-next.41 to 0.0.3-next.42
135
+ * @twin.org/crypto bumped from 0.0.3-next.41 to 0.0.3-next.42
136
+ * @twin.org/nameof bumped from 0.0.3-next.41 to 0.0.3-next.42
137
+ * devDependencies
138
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.41 to 0.0.3-next.42
139
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.41 to 0.0.3-next.42
140
+ * @twin.org/validate-locales bumped from 0.0.3-next.41 to 0.0.3-next.42
141
+
142
+ ## [0.0.3-next.41](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.40...web-v0.0.3-next.41) (2026-05-13)
143
+
144
+
145
+ ### Miscellaneous Chores
146
+
147
+ * **web:** Synchronize repo versions
148
+
149
+
150
+ ### Dependencies
151
+
152
+ * The following workspace dependencies were updated
153
+ * dependencies
154
+ * @twin.org/core bumped from 0.0.3-next.40 to 0.0.3-next.41
155
+ * @twin.org/crypto bumped from 0.0.3-next.40 to 0.0.3-next.41
156
+ * @twin.org/nameof bumped from 0.0.3-next.40 to 0.0.3-next.41
157
+ * devDependencies
158
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.40 to 0.0.3-next.41
159
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.40 to 0.0.3-next.41
160
+ * @twin.org/validate-locales bumped from 0.0.3-next.40 to 0.0.3-next.41
161
+
162
+ ## [0.0.3-next.40](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.39...web-v0.0.3-next.40) (2026-05-13)
163
+
164
+
165
+ ### Miscellaneous Chores
166
+
167
+ * **web:** Synchronize repo versions
168
+
169
+
170
+ ### Dependencies
171
+
172
+ * The following workspace dependencies were updated
173
+ * dependencies
174
+ * @twin.org/core bumped from 0.0.3-next.39 to 0.0.3-next.40
175
+ * @twin.org/crypto bumped from 0.0.3-next.39 to 0.0.3-next.40
176
+ * @twin.org/nameof bumped from 0.0.3-next.39 to 0.0.3-next.40
177
+ * devDependencies
178
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.39 to 0.0.3-next.40
179
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.39 to 0.0.3-next.40
180
+ * @twin.org/validate-locales bumped from 0.0.3-next.39 to 0.0.3-next.40
181
+
182
+ ## [0.0.3-next.39](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.38...web-v0.0.3-next.39) (2026-05-13)
183
+
184
+
185
+ ### Features
186
+
187
+ * improve signatures ([cdd24be](https://github.com/iotaledger/twin-framework/commit/cdd24be6fb898d33955b6f2f93c3ddbd73582269))
188
+
189
+
190
+ ### Dependencies
191
+
192
+ * The following workspace dependencies were updated
193
+ * dependencies
194
+ * @twin.org/core bumped from 0.0.3-next.38 to 0.0.3-next.39
195
+ * @twin.org/crypto bumped from 0.0.3-next.38 to 0.0.3-next.39
196
+ * @twin.org/nameof bumped from 0.0.3-next.38 to 0.0.3-next.39
197
+ * devDependencies
198
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.38 to 0.0.3-next.39
199
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.38 to 0.0.3-next.39
200
+ * @twin.org/validate-locales bumped from 0.0.3-next.38 to 0.0.3-next.39
201
+
202
+ ## [0.0.3-next.38](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.37...web-v0.0.3-next.38) (2026-05-11)
203
+
204
+
205
+ ### Features
206
+
207
+ * typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
208
+
209
+
210
+ ### Dependencies
211
+
212
+ * The following workspace dependencies were updated
213
+ * dependencies
214
+ * @twin.org/core bumped from 0.0.3-next.37 to 0.0.3-next.38
215
+ * @twin.org/crypto bumped from 0.0.3-next.37 to 0.0.3-next.38
216
+ * @twin.org/nameof bumped from 0.0.3-next.37 to 0.0.3-next.38
217
+ * devDependencies
218
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.37 to 0.0.3-next.38
219
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.37 to 0.0.3-next.38
220
+ * @twin.org/validate-locales bumped from 0.0.3-next.37 to 0.0.3-next.38
221
+
222
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.36...web-v0.0.3-next.37) (2026-05-07)
223
+
224
+
225
+ ### Features
226
+
227
+ * add IEntitySchemaDiff and entitySchemaDiff utility ([#282](https://github.com/iotaledger/twin-framework/issues/282)) ([9d63e94](https://github.com/iotaledger/twin-framework/commit/9d63e94021ee2ffc138004ee68cf53d08a6b17f9))
228
+
229
+
230
+ ### Dependencies
231
+
232
+ * The following workspace dependencies were updated
233
+ * dependencies
234
+ * @twin.org/core bumped from 0.0.3-next.36 to 0.0.3-next.37
235
+ * @twin.org/crypto bumped from 0.0.3-next.36 to 0.0.3-next.37
236
+ * @twin.org/nameof bumped from 0.0.3-next.36 to 0.0.3-next.37
237
+ * devDependencies
238
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.36 to 0.0.3-next.37
239
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.36 to 0.0.3-next.37
240
+ * @twin.org/validate-locales bumped from 0.0.3-next.36 to 0.0.3-next.37
241
+
242
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.35...web-v0.0.3-next.36) (2026-05-07)
243
+
244
+
245
+ ### Miscellaneous Chores
246
+
247
+ * **web:** Synchronize repo versions
248
+
249
+
250
+ ### Dependencies
251
+
252
+ * The following workspace dependencies were updated
253
+ * dependencies
254
+ * @twin.org/core bumped from 0.0.3-next.35 to 0.0.3-next.36
255
+ * @twin.org/crypto bumped from 0.0.3-next.35 to 0.0.3-next.36
256
+ * @twin.org/nameof bumped from 0.0.3-next.35 to 0.0.3-next.36
257
+ * devDependencies
258
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.35 to 0.0.3-next.36
259
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.35 to 0.0.3-next.36
260
+ * @twin.org/validate-locales bumped from 0.0.3-next.35 to 0.0.3-next.36
261
+
262
+ ## [0.0.3-next.35](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.34...web-v0.0.3-next.35) (2026-05-06)
263
+
264
+
265
+ ### Miscellaneous Chores
266
+
267
+ * **web:** Synchronize repo versions
268
+
269
+
270
+ ### Dependencies
271
+
272
+ * The following workspace dependencies were updated
273
+ * dependencies
274
+ * @twin.org/core bumped from 0.0.3-next.34 to 0.0.3-next.35
275
+ * @twin.org/crypto bumped from 0.0.3-next.34 to 0.0.3-next.35
276
+ * @twin.org/nameof bumped from 0.0.3-next.34 to 0.0.3-next.35
277
+ * devDependencies
278
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.34 to 0.0.3-next.35
279
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.34 to 0.0.3-next.35
280
+ * @twin.org/validate-locales bumped from 0.0.3-next.34 to 0.0.3-next.35
281
+
282
+ ## [0.0.3-next.34](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.33...web-v0.0.3-next.34) (2026-05-06)
283
+
284
+
285
+ ### Miscellaneous Chores
286
+
287
+ * **web:** Synchronize repo versions
288
+
289
+
290
+ ### Dependencies
291
+
292
+ * The following workspace dependencies were updated
293
+ * dependencies
294
+ * @twin.org/core bumped from 0.0.3-next.33 to 0.0.3-next.34
295
+ * @twin.org/crypto bumped from 0.0.3-next.33 to 0.0.3-next.34
296
+ * @twin.org/nameof bumped from 0.0.3-next.33 to 0.0.3-next.34
297
+ * devDependencies
298
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.33 to 0.0.3-next.34
299
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.33 to 0.0.3-next.34
300
+ * @twin.org/validate-locales bumped from 0.0.3-next.33 to 0.0.3-next.34
301
+
302
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.32...web-v0.0.3-next.33) (2026-05-05)
303
+
304
+
305
+ ### Miscellaneous Chores
306
+
307
+ * **web:** Synchronize repo versions
308
+
309
+
310
+ ### Dependencies
311
+
312
+ * The following workspace dependencies were updated
313
+ * dependencies
314
+ * @twin.org/core bumped from 0.0.3-next.32 to 0.0.3-next.33
315
+ * @twin.org/crypto bumped from 0.0.3-next.32 to 0.0.3-next.33
316
+ * @twin.org/nameof bumped from 0.0.3-next.32 to 0.0.3-next.33
317
+ * devDependencies
318
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.32 to 0.0.3-next.33
319
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.32 to 0.0.3-next.33
320
+ * @twin.org/validate-locales bumped from 0.0.3-next.32 to 0.0.3-next.33
321
+
322
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.31...web-v0.0.3-next.32) (2026-04-30)
323
+
324
+
325
+ ### Features
326
+
327
+ * use body on patch verb ([28627e5](https://github.com/iotaledger/twin-framework/commit/28627e527d033d433acefe0e9fde52ba88c0d047))
328
+
329
+
330
+ ### Dependencies
331
+
332
+ * The following workspace dependencies were updated
333
+ * dependencies
334
+ * @twin.org/core bumped from 0.0.3-next.31 to 0.0.3-next.32
335
+ * @twin.org/crypto bumped from 0.0.3-next.31 to 0.0.3-next.32
336
+ * @twin.org/nameof bumped from 0.0.3-next.31 to 0.0.3-next.32
337
+ * devDependencies
338
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.31 to 0.0.3-next.32
339
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.31 to 0.0.3-next.32
340
+ * @twin.org/validate-locales bumped from 0.0.3-next.31 to 0.0.3-next.32
341
+
342
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.30...web-v0.0.3-next.31) (2026-04-14)
343
+
344
+
345
+ ### Miscellaneous Chores
346
+
347
+ * **web:** Synchronize repo versions
348
+
349
+
350
+ ### Dependencies
351
+
352
+ * The following workspace dependencies were updated
353
+ * dependencies
354
+ * @twin.org/core bumped from 0.0.3-next.30 to 0.0.3-next.31
355
+ * @twin.org/crypto bumped from 0.0.3-next.30 to 0.0.3-next.31
356
+ * @twin.org/nameof bumped from 0.0.3-next.30 to 0.0.3-next.31
357
+ * devDependencies
358
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.30 to 0.0.3-next.31
359
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.30 to 0.0.3-next.31
360
+ * @twin.org/validate-locales bumped from 0.0.3-next.30 to 0.0.3-next.31
361
+
362
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.29...web-v0.0.3-next.30) (2026-04-14)
363
+
364
+
365
+ ### Miscellaneous Chores
366
+
367
+ * **web:** Synchronize repo versions
368
+
369
+
370
+ ### Dependencies
371
+
372
+ * The following workspace dependencies were updated
373
+ * dependencies
374
+ * @twin.org/core bumped from 0.0.3-next.29 to 0.0.3-next.30
375
+ * @twin.org/crypto bumped from 0.0.3-next.29 to 0.0.3-next.30
376
+ * @twin.org/nameof bumped from 0.0.3-next.29 to 0.0.3-next.30
377
+ * devDependencies
378
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.29 to 0.0.3-next.30
379
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.29 to 0.0.3-next.30
380
+ * @twin.org/validate-locales bumped from 0.0.3-next.29 to 0.0.3-next.30
381
+
382
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.28...web-v0.0.3-next.29) (2026-04-14)
383
+
384
+
385
+ ### Features
386
+
387
+ * additional http header extraction ([#262](https://github.com/iotaledger/twin-framework/issues/262)) ([124fa3f](https://github.com/iotaledger/twin-framework/commit/124fa3fdd118ed17f973d4b46842f5b7f35365c2))
388
+
389
+
390
+ ### Dependencies
391
+
392
+ * The following workspace dependencies were updated
393
+ * dependencies
394
+ * @twin.org/core bumped from 0.0.3-next.28 to 0.0.3-next.29
395
+ * @twin.org/crypto bumped from 0.0.3-next.28 to 0.0.3-next.29
396
+ * @twin.org/nameof bumped from 0.0.3-next.28 to 0.0.3-next.29
397
+ * devDependencies
398
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.28 to 0.0.3-next.29
399
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.28 to 0.0.3-next.29
400
+ * @twin.org/validate-locales bumped from 0.0.3-next.28 to 0.0.3-next.29
401
+
402
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.27...web-v0.0.3-next.28) (2026-03-27)
403
+
404
+
405
+ ### Miscellaneous Chores
406
+
407
+ * **web:** Synchronize repo versions
408
+
409
+
410
+ ### Dependencies
411
+
412
+ * The following workspace dependencies were updated
413
+ * dependencies
414
+ * @twin.org/core bumped from 0.0.3-next.27 to 0.0.3-next.28
415
+ * @twin.org/crypto bumped from 0.0.3-next.27 to 0.0.3-next.28
416
+ * @twin.org/nameof bumped from 0.0.3-next.27 to 0.0.3-next.28
417
+ * devDependencies
418
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.27 to 0.0.3-next.28
419
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.27 to 0.0.3-next.28
420
+ * @twin.org/validate-locales bumped from 0.0.3-next.27 to 0.0.3-next.28
421
+
422
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.26...web-v0.0.3-next.27) (2026-03-27)
423
+
424
+
425
+ ### Miscellaneous Chores
426
+
427
+ * **web:** Synchronize repo versions
428
+
429
+
430
+ ### Dependencies
431
+
432
+ * The following workspace dependencies were updated
433
+ * dependencies
434
+ * @twin.org/core bumped from 0.0.3-next.26 to 0.0.3-next.27
435
+ * @twin.org/crypto bumped from 0.0.3-next.26 to 0.0.3-next.27
436
+ * @twin.org/nameof bumped from 0.0.3-next.26 to 0.0.3-next.27
437
+ * devDependencies
438
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.26 to 0.0.3-next.27
439
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.26 to 0.0.3-next.27
440
+ * @twin.org/validate-locales bumped from 0.0.3-next.26 to 0.0.3-next.27
441
+
442
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.25...web-v0.0.3-next.26) (2026-03-24)
443
+
444
+
445
+ ### Features
446
+
447
+ * additional http link feature support ([b68b4cc](https://github.com/iotaledger/twin-framework/commit/b68b4cc6a6e3cf02f91e794353714e26a49fe66c))
448
+
449
+
450
+ ### Dependencies
451
+
452
+ * The following workspace dependencies were updated
453
+ * dependencies
454
+ * @twin.org/core bumped from 0.0.3-next.25 to 0.0.3-next.26
455
+ * @twin.org/crypto bumped from 0.0.3-next.25 to 0.0.3-next.26
456
+ * @twin.org/nameof bumped from 0.0.3-next.25 to 0.0.3-next.26
457
+ * devDependencies
458
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.25 to 0.0.3-next.26
459
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.25 to 0.0.3-next.26
460
+ * @twin.org/validate-locales bumped from 0.0.3-next.25 to 0.0.3-next.26
461
+
462
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.24...web-v0.0.3-next.25) (2026-03-23)
463
+
464
+
465
+ ### Miscellaneous Chores
466
+
467
+ * **web:** Synchronize repo versions
468
+
469
+
470
+ ### Dependencies
471
+
472
+ * The following workspace dependencies were updated
473
+ * dependencies
474
+ * @twin.org/core bumped from 0.0.3-next.24 to 0.0.3-next.25
475
+ * @twin.org/crypto bumped from 0.0.3-next.24 to 0.0.3-next.25
476
+ * @twin.org/nameof bumped from 0.0.3-next.24 to 0.0.3-next.25
477
+ * devDependencies
478
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.24 to 0.0.3-next.25
479
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.24 to 0.0.3-next.25
480
+ * @twin.org/validate-locales bumped from 0.0.3-next.24 to 0.0.3-next.25
481
+
482
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.23...web-v0.0.3-next.24) (2026-03-19)
483
+
484
+
485
+ ### Bug Fixes
486
+
487
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
488
+
489
+
490
+ ### Dependencies
491
+
492
+ * The following workspace dependencies were updated
493
+ * dependencies
494
+ * @twin.org/core bumped from 0.0.3-next.23 to 0.0.3-next.24
495
+ * @twin.org/crypto bumped from 0.0.3-next.23 to 0.0.3-next.24
496
+ * @twin.org/nameof bumped from 0.0.3-next.23 to 0.0.3-next.24
497
+ * devDependencies
498
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.23 to 0.0.3-next.24
499
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.23 to 0.0.3-next.24
500
+ * @twin.org/validate-locales bumped from 0.0.3-next.23 to 0.0.3-next.24
501
+
502
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.22...web-v0.0.3-next.23) (2026-03-17)
503
+
504
+
505
+ ### Miscellaneous Chores
506
+
507
+ * **web:** Synchronize repo versions
508
+
509
+
510
+ ### Dependencies
511
+
512
+ * The following workspace dependencies were updated
513
+ * dependencies
514
+ * @twin.org/core bumped from 0.0.3-next.22 to 0.0.3-next.23
515
+ * @twin.org/crypto bumped from 0.0.3-next.22 to 0.0.3-next.23
516
+ * @twin.org/nameof bumped from 0.0.3-next.22 to 0.0.3-next.23
517
+ * devDependencies
518
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.22 to 0.0.3-next.23
519
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.22 to 0.0.3-next.23
520
+ * @twin.org/validate-locales bumped from 0.0.3-next.22 to 0.0.3-next.23
521
+
522
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.21...web-v0.0.3-next.22) (2026-02-26)
523
+
524
+
525
+ ### Miscellaneous Chores
526
+
527
+ * **web:** Synchronize repo versions
528
+
529
+
530
+ ### Dependencies
531
+
532
+ * The following workspace dependencies were updated
533
+ * dependencies
534
+ * @twin.org/core bumped from 0.0.3-next.21 to 0.0.3-next.22
535
+ * @twin.org/crypto bumped from 0.0.3-next.21 to 0.0.3-next.22
536
+ * @twin.org/nameof bumped from 0.0.3-next.21 to 0.0.3-next.22
537
+ * devDependencies
538
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.21 to 0.0.3-next.22
539
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.21 to 0.0.3-next.22
540
+ * @twin.org/validate-locales bumped from 0.0.3-next.21 to 0.0.3-next.22
541
+
542
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.20...web-v0.0.3-next.21) (2026-02-26)
543
+
544
+
545
+ ### Features
546
+
547
+ * add additional header types ([#222](https://github.com/iotaledger/twin-framework/issues/222)) ([05f01cf](https://github.com/iotaledger/twin-framework/commit/05f01cf34b7bcec561ee989f679281b1cacdf032))
548
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
549
+ * add cookie helper method to web package ([#217](https://github.com/iotaledger/twin-framework/issues/217)) ([043c632](https://github.com/iotaledger/twin-framework/commit/043c63298bff96f70bdefed56b82afef42ec3f44))
550
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
551
+ * add header helper for common bearer support ([0c940b2](https://github.com/iotaledger/twin-framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
552
+ * add jwk enc property overrides ([18b6309](https://github.com/iotaledger/twin-framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
553
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
554
+ * add Link header array support ([aff32a3](https://github.com/iotaledger/twin-framework/commit/aff32a3ff8ad3d076cade7c889444220706bfb1e))
555
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
556
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
557
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
558
+ * add/update http and mime types ([#229](https://github.com/iotaledger/twin-framework/issues/229)) ([d50154a](https://github.com/iotaledger/twin-framework/commit/d50154a484711b67feb42ea20a94e4415e53d392))
559
+ * adding link header helper ([#225](https://github.com/iotaledger/twin-framework/issues/225)) ([703c072](https://github.com/iotaledger/twin-framework/commit/703c0725aceac6b6ec0c4fa729ef832d12fb3fd7))
560
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
561
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
562
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
563
+ * improve bearer creation and extraction ([b9ddd6d](https://github.com/iotaledger/twin-framework/commit/b9ddd6dae0cb558e2227f0ec5e9cd21f85957400))
564
+ * improve bearer creation and extraction ([29a347a](https://github.com/iotaledger/twin-framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
565
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
566
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
567
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
568
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
569
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
570
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
571
+
572
+
573
+ ### Bug Fixes
574
+
575
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
576
+
577
+
578
+ ### Dependencies
579
+
580
+ * The following workspace dependencies were updated
581
+ * dependencies
582
+ * @twin.org/core bumped from 0.0.3-next.20 to 0.0.3-next.21
583
+ * @twin.org/crypto bumped from 0.0.3-next.20 to 0.0.3-next.21
584
+ * @twin.org/nameof bumped from 0.0.3-next.20 to 0.0.3-next.21
585
+ * devDependencies
586
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.20 to 0.0.3-next.21
587
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.20 to 0.0.3-next.21
588
+ * @twin.org/validate-locales bumped from 0.0.3-next.20 to 0.0.3-next.21
589
+
590
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.19...web-v0.0.3-next.20) (2026-02-26)
591
+
592
+
593
+ ### Miscellaneous Chores
594
+
595
+ * **web:** Synchronize repo versions
596
+
597
+
598
+ ### Dependencies
599
+
600
+ * The following workspace dependencies were updated
601
+ * dependencies
602
+ * @twin.org/core bumped from 0.0.3-next.19 to 0.0.3-next.20
603
+ * @twin.org/crypto bumped from 0.0.3-next.19 to 0.0.3-next.20
604
+ * @twin.org/nameof bumped from 0.0.3-next.19 to 0.0.3-next.20
605
+ * devDependencies
606
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.19 to 0.0.3-next.20
607
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.19 to 0.0.3-next.20
608
+ * @twin.org/validate-locales bumped from 0.0.3-next.19 to 0.0.3-next.20
609
+
610
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.18...web-v0.0.3-next.19) (2026-02-26)
611
+
612
+
613
+ ### Miscellaneous Chores
614
+
615
+ * **web:** Synchronize repo versions
616
+
617
+
618
+ ### Dependencies
619
+
620
+ * The following workspace dependencies were updated
621
+ * dependencies
622
+ * @twin.org/core bumped from 0.0.3-next.18 to 0.0.3-next.19
623
+ * @twin.org/crypto bumped from 0.0.3-next.18 to 0.0.3-next.19
624
+ * @twin.org/nameof bumped from 0.0.3-next.18 to 0.0.3-next.19
625
+ * devDependencies
626
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.18 to 0.0.3-next.19
627
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.18 to 0.0.3-next.19
628
+ * @twin.org/validate-locales bumped from 0.0.3-next.18 to 0.0.3-next.19
629
+
630
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.17...web-v0.0.3-next.18) (2026-02-23)
631
+
632
+
633
+ ### Miscellaneous Chores
634
+
635
+ * **web:** Synchronize repo versions
636
+
637
+
638
+ ### Dependencies
639
+
640
+ * The following workspace dependencies were updated
641
+ * dependencies
642
+ * @twin.org/core bumped from 0.0.3-next.17 to 0.0.3-next.18
643
+ * @twin.org/crypto bumped from 0.0.3-next.17 to 0.0.3-next.18
644
+ * @twin.org/nameof bumped from 0.0.3-next.17 to 0.0.3-next.18
645
+ * devDependencies
646
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.17 to 0.0.3-next.18
647
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.17 to 0.0.3-next.18
648
+ * @twin.org/validate-locales bumped from 0.0.3-next.17 to 0.0.3-next.18
649
+
650
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.16...web-v0.0.3-next.17) (2026-02-09)
651
+
652
+
653
+ ### Miscellaneous Chores
654
+
655
+ * **web:** Synchronize repo versions
656
+
657
+
658
+ ### Dependencies
659
+
660
+ * The following workspace dependencies were updated
661
+ * dependencies
662
+ * @twin.org/core bumped from 0.0.3-next.16 to 0.0.3-next.17
663
+ * @twin.org/crypto bumped from 0.0.3-next.16 to 0.0.3-next.17
664
+ * @twin.org/nameof bumped from 0.0.3-next.16 to 0.0.3-next.17
665
+ * devDependencies
666
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.16 to 0.0.3-next.17
667
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.16 to 0.0.3-next.17
668
+ * @twin.org/validate-locales bumped from 0.0.3-next.16 to 0.0.3-next.17
669
+
670
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.15...web-v0.0.3-next.16) (2026-02-06)
671
+
672
+
673
+ ### Miscellaneous Chores
674
+
675
+ * **web:** Synchronize repo versions
676
+
677
+
678
+ ### Dependencies
679
+
680
+ * The following workspace dependencies were updated
681
+ * dependencies
682
+ * @twin.org/core bumped from 0.0.3-next.15 to 0.0.3-next.16
683
+ * @twin.org/crypto bumped from 0.0.3-next.15 to 0.0.3-next.16
684
+ * @twin.org/nameof bumped from 0.0.3-next.15 to 0.0.3-next.16
685
+ * devDependencies
686
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.15 to 0.0.3-next.16
687
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.15 to 0.0.3-next.16
688
+ * @twin.org/validate-locales bumped from 0.0.3-next.15 to 0.0.3-next.16
689
+
690
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.14...web-v0.0.3-next.15) (2026-01-29)
691
+
692
+
693
+ ### Miscellaneous Chores
694
+
695
+ * **web:** Synchronize repo versions
696
+
697
+
698
+ ### Dependencies
699
+
700
+ * The following workspace dependencies were updated
701
+ * dependencies
702
+ * @twin.org/core bumped from 0.0.3-next.14 to 0.0.3-next.15
703
+ * @twin.org/crypto bumped from 0.0.3-next.14 to 0.0.3-next.15
704
+ * @twin.org/nameof bumped from 0.0.3-next.14 to 0.0.3-next.15
705
+ * devDependencies
706
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.14 to 0.0.3-next.15
707
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.14 to 0.0.3-next.15
708
+ * @twin.org/validate-locales bumped from 0.0.3-next.14 to 0.0.3-next.15
709
+
710
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.13...web-v0.0.3-next.14) (2026-01-22)
711
+
712
+
713
+ ### Features
714
+
715
+ * add/update http and mime types ([#229](https://github.com/iotaledger/twin-framework/issues/229)) ([d50154a](https://github.com/iotaledger/twin-framework/commit/d50154a484711b67feb42ea20a94e4415e53d392))
716
+
717
+
718
+ ### Dependencies
719
+
720
+ * The following workspace dependencies were updated
721
+ * dependencies
722
+ * @twin.org/core bumped from 0.0.3-next.13 to 0.0.3-next.14
723
+ * @twin.org/crypto bumped from 0.0.3-next.13 to 0.0.3-next.14
724
+ * @twin.org/nameof bumped from 0.0.3-next.13 to 0.0.3-next.14
725
+ * devDependencies
726
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.13 to 0.0.3-next.14
727
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.13 to 0.0.3-next.14
728
+ * @twin.org/validate-locales bumped from 0.0.3-next.13 to 0.0.3-next.14
729
+
730
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.12...web-v0.0.3-next.13) (2026-01-08)
731
+
732
+
733
+ ### Features
734
+
735
+ * add Link header array support ([aff32a3](https://github.com/iotaledger/twin-framework/commit/aff32a3ff8ad3d076cade7c889444220706bfb1e))
736
+
737
+
738
+ ### Dependencies
739
+
740
+ * The following workspace dependencies were updated
741
+ * dependencies
742
+ * @twin.org/core bumped from 0.0.3-next.12 to 0.0.3-next.13
743
+ * @twin.org/crypto bumped from 0.0.3-next.12 to 0.0.3-next.13
744
+ * @twin.org/nameof bumped from 0.0.3-next.12 to 0.0.3-next.13
745
+ * devDependencies
746
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.12 to 0.0.3-next.13
747
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.12 to 0.0.3-next.13
748
+ * @twin.org/validate-locales bumped from 0.0.3-next.12 to 0.0.3-next.13
749
+
750
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.11...web-v0.0.3-next.12) (2026-01-08)
751
+
752
+
753
+ ### Features
754
+
755
+ * adding link header helper ([#225](https://github.com/iotaledger/twin-framework/issues/225)) ([703c072](https://github.com/iotaledger/twin-framework/commit/703c0725aceac6b6ec0c4fa729ef832d12fb3fd7))
756
+
757
+
758
+ ### Dependencies
759
+
760
+ * The following workspace dependencies were updated
761
+ * dependencies
762
+ * @twin.org/core bumped from 0.0.3-next.11 to 0.0.3-next.12
763
+ * @twin.org/crypto bumped from 0.0.3-next.11 to 0.0.3-next.12
764
+ * @twin.org/nameof bumped from 0.0.3-next.11 to 0.0.3-next.12
765
+ * devDependencies
766
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.11 to 0.0.3-next.12
767
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.11 to 0.0.3-next.12
768
+ * @twin.org/validate-locales bumped from 0.0.3-next.11 to 0.0.3-next.12
769
+
770
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.10...web-v0.0.3-next.11) (2026-01-07)
771
+
772
+
773
+ ### Features
774
+
775
+ * add additional header types ([#222](https://github.com/iotaledger/twin-framework/issues/222)) ([05f01cf](https://github.com/iotaledger/twin-framework/commit/05f01cf34b7bcec561ee989f679281b1cacdf032))
776
+
777
+
778
+ ### Dependencies
779
+
780
+ * The following workspace dependencies were updated
781
+ * dependencies
782
+ * @twin.org/core bumped from 0.0.3-next.10 to 0.0.3-next.11
783
+ * @twin.org/crypto bumped from 0.0.3-next.10 to 0.0.3-next.11
784
+ * @twin.org/nameof bumped from 0.0.3-next.10 to 0.0.3-next.11
785
+ * devDependencies
786
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.10 to 0.0.3-next.11
787
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.10 to 0.0.3-next.11
788
+ * @twin.org/validate-locales bumped from 0.0.3-next.10 to 0.0.3-next.11
789
+
790
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.9...web-v0.0.3-next.10) (2026-01-07)
791
+
792
+
793
+ ### Miscellaneous Chores
794
+
795
+ * **web:** Synchronize repo versions
796
+
797
+
798
+ ### Dependencies
799
+
800
+ * The following workspace dependencies were updated
801
+ * dependencies
802
+ * @twin.org/core bumped from 0.0.3-next.9 to 0.0.3-next.10
803
+ * @twin.org/crypto bumped from 0.0.3-next.9 to 0.0.3-next.10
804
+ * @twin.org/nameof bumped from 0.0.3-next.9 to 0.0.3-next.10
805
+ * devDependencies
806
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.9 to 0.0.3-next.10
807
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.9 to 0.0.3-next.10
808
+ * @twin.org/validate-locales bumped from 0.0.3-next.9 to 0.0.3-next.10
809
+
810
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.8...web-v0.0.3-next.9) (2026-01-05)
811
+
812
+
813
+ ### Features
814
+
815
+ * add cookie helper method to web package ([#217](https://github.com/iotaledger/twin-framework/issues/217)) ([043c632](https://github.com/iotaledger/twin-framework/commit/043c63298bff96f70bdefed56b82afef42ec3f44))
816
+
817
+
818
+ ### Dependencies
819
+
820
+ * The following workspace dependencies were updated
821
+ * dependencies
822
+ * @twin.org/core bumped from 0.0.3-next.8 to 0.0.3-next.9
823
+ * @twin.org/crypto bumped from 0.0.3-next.8 to 0.0.3-next.9
824
+ * @twin.org/nameof bumped from 0.0.3-next.8 to 0.0.3-next.9
825
+ * devDependencies
826
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.8 to 0.0.3-next.9
827
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.8 to 0.0.3-next.9
828
+ * @twin.org/validate-locales bumped from 0.0.3-next.8 to 0.0.3-next.9
829
+
830
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.7...web-v0.0.3-next.8) (2025-11-26)
4
831
 
5
832
 
6
833
  ### Miscellaneous Chores
@@ -20,35 +847,35 @@
20
847
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
21
848
  * @twin.org/validate-locales bumped from 0.0.3-next.7 to 0.0.3-next.8
22
849
 
23
- ## [0.0.3-next.7](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.6...web-v0.0.3-next.7) (2025-11-25)
850
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.6...web-v0.0.3-next.7) (2025-11-25)
24
851
 
25
852
 
26
853
  ### Features
27
854
 
28
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
29
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
30
- * add header helper for common bearer support ([0c940b2](https://github.com/twinfoundation/framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
31
- * add jwk enc property overrides ([18b6309](https://github.com/twinfoundation/framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
32
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
33
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
34
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
35
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
36
- * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
37
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
38
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
39
- * improve bearer creation and extraction ([b9ddd6d](https://github.com/twinfoundation/framework/commit/b9ddd6dae0cb558e2227f0ec5e9cd21f85957400))
40
- * improve bearer creation and extraction ([29a347a](https://github.com/twinfoundation/framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
41
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
42
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
43
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
44
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
45
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
46
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
855
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
856
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
857
+ * add header helper for common bearer support ([0c940b2](https://github.com/iotaledger/twin-framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
858
+ * add jwk enc property overrides ([18b6309](https://github.com/iotaledger/twin-framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
859
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
860
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
861
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
862
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
863
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
864
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
865
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
866
+ * improve bearer creation and extraction ([b9ddd6d](https://github.com/iotaledger/twin-framework/commit/b9ddd6dae0cb558e2227f0ec5e9cd21f85957400))
867
+ * improve bearer creation and extraction ([29a347a](https://github.com/iotaledger/twin-framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
868
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
869
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
870
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
871
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
872
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
873
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
47
874
 
48
875
 
49
876
  ### Bug Fixes
50
877
 
51
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
878
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
52
879
 
53
880
 
54
881
  ### Dependencies
@@ -63,7 +890,7 @@
63
890
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
64
891
  * @twin.org/validate-locales bumped from 0.0.3-next.6 to 0.0.3-next.7
65
892
 
66
- ## [0.0.3-next.6](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.5...web-v0.0.3-next.6) (2025-11-25)
893
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.5...web-v0.0.3-next.6) (2025-11-25)
67
894
 
68
895
 
69
896
  ### Miscellaneous Chores
@@ -83,7 +910,7 @@
83
910
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
84
911
  * @twin.org/validate-locales bumped from 0.0.3-next.5 to 0.0.3-next.6
85
912
 
86
- ## [0.0.3-next.5](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.4...web-v0.0.3-next.5) (2025-11-20)
913
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.4...web-v0.0.3-next.5) (2025-11-20)
87
914
 
88
915
 
89
916
  ### Miscellaneous Chores
@@ -103,7 +930,7 @@
103
930
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.4 to 0.0.3-next.5
104
931
  * @twin.org/validate-locales bumped from 0.0.3-next.4 to 0.0.3-next.5
105
932
 
106
- ## [0.0.3-next.4](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.3...web-v0.0.3-next.4) (2025-11-13)
933
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.3...web-v0.0.3-next.4) (2025-11-13)
107
934
 
108
935
 
109
936
  ### Miscellaneous Chores
@@ -123,7 +950,7 @@
123
950
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.3 to 0.0.3-next.4
124
951
  * @twin.org/validate-locales bumped from 0.0.3-next.3 to 0.0.3-next.4
125
952
 
126
- ## [0.0.3-next.3](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.2...web-v0.0.3-next.3) (2025-11-12)
953
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.2...web-v0.0.3-next.3) (2025-11-12)
127
954
 
128
955
 
129
956
  ### Miscellaneous Chores
@@ -143,7 +970,7 @@
143
970
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.2 to 0.0.3-next.3
144
971
  * @twin.org/validate-locales bumped from 0.0.3-next.2 to 0.0.3-next.3
145
972
 
146
- ## [0.0.3-next.2](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.1...web-v0.0.3-next.2) (2025-11-12)
973
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.1...web-v0.0.3-next.2) (2025-11-12)
147
974
 
148
975
 
149
976
  ### Miscellaneous Chores
@@ -163,35 +990,35 @@
163
990
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.1 to 0.0.3-next.2
164
991
  * @twin.org/validate-locales bumped from 0.0.3-next.1 to 0.0.3-next.2
165
992
 
166
- ## [0.0.3-next.1](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.0...web-v0.0.3-next.1) (2025-11-10)
993
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.0...web-v0.0.3-next.1) (2025-11-10)
167
994
 
168
995
 
169
996
  ### Features
170
997
 
171
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
172
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
173
- * add header helper for common bearer support ([0c940b2](https://github.com/twinfoundation/framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
174
- * add jwk enc property overrides ([18b6309](https://github.com/twinfoundation/framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
175
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
176
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
177
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
178
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
179
- * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
180
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
181
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
182
- * improve bearer creation and extraction ([b9ddd6d](https://github.com/twinfoundation/framework/commit/b9ddd6dae0cb558e2227f0ec5e9cd21f85957400))
183
- * improve bearer creation and extraction ([29a347a](https://github.com/twinfoundation/framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
184
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
185
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
186
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
187
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
188
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
189
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
998
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
999
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1000
+ * add header helper for common bearer support ([0c940b2](https://github.com/iotaledger/twin-framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
1001
+ * add jwk enc property overrides ([18b6309](https://github.com/iotaledger/twin-framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
1002
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1003
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1004
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1005
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1006
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
1007
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1008
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
1009
+ * improve bearer creation and extraction ([b9ddd6d](https://github.com/iotaledger/twin-framework/commit/b9ddd6dae0cb558e2227f0ec5e9cd21f85957400))
1010
+ * improve bearer creation and extraction ([29a347a](https://github.com/iotaledger/twin-framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
1011
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
1012
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1013
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1014
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1015
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
1016
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
190
1017
 
191
1018
 
192
1019
  ### Bug Fixes
193
1020
 
194
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1021
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
195
1022
 
196
1023
 
197
1024
  ### Dependencies
@@ -206,7 +1033,7 @@
206
1033
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.0 to 0.0.3-next.1
207
1034
  * @twin.org/validate-locales bumped from 0.0.3-next.0 to 0.0.3-next.1
208
1035
 
209
- ## [0.0.2-next.22](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.21...web-v0.0.2-next.22) (2025-10-10)
1036
+ ## [0.0.2-next.22](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.21...web-v0.0.2-next.22) (2025-10-10)
210
1037
 
211
1038
 
212
1039
  ### Miscellaneous Chores
@@ -226,12 +1053,12 @@
226
1053
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.21 to 0.0.2-next.22
227
1054
  * @twin.org/validate-locales bumped from 0.0.2-next.21 to 0.0.2-next.22
228
1055
 
229
- ## [0.0.2-next.21](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.20...web-v0.0.2-next.21) (2025-10-09)
1056
+ ## [0.0.2-next.21](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.20...web-v0.0.2-next.21) (2025-10-09)
230
1057
 
231
1058
 
232
1059
  ### Features
233
1060
 
234
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
1061
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
235
1062
 
236
1063
 
237
1064
  ### Dependencies
@@ -246,7 +1073,7 @@
246
1073
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.20 to 0.0.2-next.21
247
1074
  * @twin.org/validate-locales bumped from 0.0.2-next.20 to 0.0.2-next.21
248
1075
 
249
- ## [0.0.2-next.20](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.19...web-v0.0.2-next.20) (2025-10-02)
1076
+ ## [0.0.2-next.20](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.19...web-v0.0.2-next.20) (2025-10-02)
250
1077
 
251
1078
 
252
1079
  ### Miscellaneous Chores
@@ -265,7 +1092,7 @@
265
1092
  * @twin.org/nameof-transformer bumped from 0.0.2-next.19 to 0.0.2-next.20
266
1093
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.19 to 0.0.2-next.20
267
1094
 
268
- ## [0.0.2-next.19](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.18...web-v0.0.2-next.19) (2025-09-30)
1095
+ ## [0.0.2-next.19](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.18...web-v0.0.2-next.19) (2025-09-30)
269
1096
 
270
1097
 
271
1098
  ### Miscellaneous Chores
@@ -284,7 +1111,7 @@
284
1111
  * @twin.org/nameof-transformer bumped from 0.0.2-next.18 to 0.0.2-next.19
285
1112
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.18 to 0.0.2-next.19
286
1113
 
287
- ## [0.0.2-next.18](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.17...web-v0.0.2-next.18) (2025-09-29)
1114
+ ## [0.0.2-next.18](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.17...web-v0.0.2-next.18) (2025-09-29)
288
1115
 
289
1116
 
290
1117
  ### Miscellaneous Chores
@@ -303,12 +1130,12 @@
303
1130
  * @twin.org/nameof-transformer bumped from 0.0.2-next.17 to 0.0.2-next.18
304
1131
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.17 to 0.0.2-next.18
305
1132
 
306
- ## [0.0.2-next.17](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.16...web-v0.0.2-next.17) (2025-09-29)
1133
+ ## [0.0.2-next.17](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.16...web-v0.0.2-next.17) (2025-09-29)
307
1134
 
308
1135
 
309
1136
  ### Features
310
1137
 
311
- * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
1138
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
312
1139
 
313
1140
 
314
1141
  ### Dependencies
@@ -322,7 +1149,7 @@
322
1149
  * @twin.org/nameof-transformer bumped from 0.0.2-next.16 to 0.0.2-next.17
323
1150
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.16 to 0.0.2-next.17
324
1151
 
325
- ## [0.0.2-next.16](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.15...web-v0.0.2-next.16) (2025-09-28)
1152
+ ## [0.0.2-next.16](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.15...web-v0.0.2-next.16) (2025-09-28)
326
1153
 
327
1154
 
328
1155
  ### Miscellaneous Chores
@@ -341,12 +1168,12 @@
341
1168
  * @twin.org/nameof-transformer bumped from 0.0.2-next.15 to 0.0.2-next.16
342
1169
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.15 to 0.0.2-next.16
343
1170
 
344
- ## [0.0.2-next.15](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.14...web-v0.0.2-next.15) (2025-09-22)
1171
+ ## [0.0.2-next.15](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.14...web-v0.0.2-next.15) (2025-09-22)
345
1172
 
346
1173
 
347
1174
  ### Features
348
1175
 
349
- * improve bearer creation and extraction ([29a347a](https://github.com/twinfoundation/framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
1176
+ * improve bearer creation and extraction ([29a347a](https://github.com/iotaledger/twin-framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
350
1177
 
351
1178
 
352
1179
  ### Dependencies
@@ -360,12 +1187,12 @@
360
1187
  * @twin.org/nameof-transformer bumped from 0.0.2-next.14 to 0.0.2-next.15
361
1188
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.14 to 0.0.2-next.15
362
1189
 
363
- ## [0.0.2-next.14](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.13...web-v0.0.2-next.14) (2025-09-22)
1190
+ ## [0.0.2-next.14](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.13...web-v0.0.2-next.14) (2025-09-22)
364
1191
 
365
1192
 
366
1193
  ### Features
367
1194
 
368
- * add header helper for common bearer support ([0c940b2](https://github.com/twinfoundation/framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
1195
+ * add header helper for common bearer support ([0c940b2](https://github.com/iotaledger/twin-framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
369
1196
 
370
1197
 
371
1198
  ### Dependencies
@@ -379,7 +1206,7 @@
379
1206
  * @twin.org/nameof-transformer bumped from 0.0.2-next.13 to 0.0.2-next.14
380
1207
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.13 to 0.0.2-next.14
381
1208
 
382
- ## [0.0.2-next.13](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.12...web-v0.0.2-next.13) (2025-09-22)
1209
+ ## [0.0.2-next.13](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.12...web-v0.0.2-next.13) (2025-09-22)
383
1210
 
384
1211
 
385
1212
  ### Miscellaneous Chores
@@ -398,12 +1225,12 @@
398
1225
  * @twin.org/nameof-transformer bumped from 0.0.2-next.12 to 0.0.2-next.13
399
1226
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.12 to 0.0.2-next.13
400
1227
 
401
- ## [0.0.2-next.12](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.11...web-v0.0.2-next.12) (2025-09-15)
1228
+ ## [0.0.2-next.12](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.11...web-v0.0.2-next.12) (2025-09-15)
402
1229
 
403
1230
 
404
1231
  ### Features
405
1232
 
406
- * add jwk enc property overrides ([18b6309](https://github.com/twinfoundation/framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
1233
+ * add jwk enc property overrides ([18b6309](https://github.com/iotaledger/twin-framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
407
1234
 
408
1235
 
409
1236
  ### Dependencies
@@ -417,7 +1244,7 @@
417
1244
  * @twin.org/nameof-transformer bumped from 0.0.2-next.11 to 0.0.2-next.12
418
1245
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.11 to 0.0.2-next.12
419
1246
 
420
- ## [0.0.2-next.11](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.10...web-v0.0.2-next.11) (2025-09-15)
1247
+ ## [0.0.2-next.11](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.10...web-v0.0.2-next.11) (2025-09-15)
421
1248
 
422
1249
 
423
1250
  ### Miscellaneous Chores
@@ -436,7 +1263,7 @@
436
1263
  * @twin.org/nameof-transformer bumped from 0.0.2-next.10 to 0.0.2-next.11
437
1264
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.10 to 0.0.2-next.11
438
1265
 
439
- ## [0.0.2-next.10](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.9...web-v0.0.2-next.10) (2025-09-11)
1266
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.9...web-v0.0.2-next.10) (2025-09-11)
440
1267
 
441
1268
 
442
1269
  ### Miscellaneous Chores
@@ -455,7 +1282,7 @@
455
1282
  * @twin.org/nameof-transformer bumped from 0.0.2-next.9 to 0.0.2-next.10
456
1283
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.9 to 0.0.2-next.10
457
1284
 
458
- ## [0.0.2-next.9](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.8...web-v0.0.2-next.9) (2025-09-08)
1285
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.8...web-v0.0.2-next.9) (2025-09-08)
459
1286
 
460
1287
 
461
1288
  ### Miscellaneous Chores
@@ -474,7 +1301,7 @@
474
1301
  * @twin.org/nameof-transformer bumped from 0.0.2-next.8 to 0.0.2-next.9
475
1302
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.8 to 0.0.2-next.9
476
1303
 
477
- ## [0.0.2-next.8](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.7...web-v0.0.2-next.8) (2025-09-05)
1304
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.7...web-v0.0.2-next.8) (2025-09-05)
478
1305
 
479
1306
 
480
1307
  ### Miscellaneous Chores
@@ -493,12 +1320,12 @@
493
1320
  * @twin.org/nameof-transformer bumped from 0.0.2-next.7 to 0.0.2-next.8
494
1321
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.7 to 0.0.2-next.8
495
1322
 
496
- ## [0.0.2-next.7](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.6...web-v0.0.2-next.7) (2025-08-29)
1323
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.6...web-v0.0.2-next.7) (2025-08-29)
497
1324
 
498
1325
 
499
1326
  ### Features
500
1327
 
501
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
1328
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
502
1329
 
503
1330
 
504
1331
  ### Dependencies
@@ -512,7 +1339,7 @@
512
1339
  * @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
513
1340
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.6 to 0.0.2-next.7
514
1341
 
515
- ## [0.0.2-next.6](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.5...web-v0.0.2-next.6) (2025-08-27)
1342
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.5...web-v0.0.2-next.6) (2025-08-27)
516
1343
 
517
1344
 
518
1345
  ### Miscellaneous Chores
@@ -531,12 +1358,12 @@
531
1358
  * @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
532
1359
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.5 to 0.0.2-next.6
533
1360
 
534
- ## [0.0.2-next.5](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.4...web-v0.0.2-next.5) (2025-08-19)
1361
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.4...web-v0.0.2-next.5) (2025-08-19)
535
1362
 
536
1363
 
537
1364
  ### Features
538
1365
 
539
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
1366
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
540
1367
 
541
1368
 
542
1369
  ### Dependencies
@@ -550,7 +1377,7 @@
550
1377
  * @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
551
1378
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.4 to 0.0.2-next.5
552
1379
 
553
- ## [0.0.2-next.4](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.3...web-v0.0.2-next.4) (2025-08-15)
1380
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.3...web-v0.0.2-next.4) (2025-08-15)
554
1381
 
555
1382
 
556
1383
  ### Miscellaneous Chores
@@ -569,26 +1396,26 @@
569
1396
  * @twin.org/nameof-transformer bumped from 0.0.2-next.3 to 0.0.2-next.4
570
1397
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.3 to 0.0.2-next.4
571
1398
 
572
- ## [0.0.2-next.3](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.2...web-v0.0.2-next.3) (2025-08-06)
1399
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.2...web-v0.0.2-next.3) (2025-08-06)
573
1400
 
574
1401
 
575
1402
  ### Features
576
1403
 
577
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
578
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
579
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
580
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
581
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
582
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
583
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
584
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
585
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
586
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1404
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1405
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1406
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1407
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1408
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1409
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1410
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1411
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1412
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1413
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
587
1414
 
588
1415
 
589
1416
  ### Bug Fixes
590
1417
 
591
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1418
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
592
1419
 
593
1420
 
594
1421
  ### Dependencies
@@ -602,26 +1429,26 @@
602
1429
  * @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
603
1430
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.2 to 0.0.2-next.3
604
1431
 
605
- ## [0.0.2-next.2](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.1...web-v0.0.2-next.2) (2025-08-06)
1432
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.1...web-v0.0.2-next.2) (2025-08-06)
606
1433
 
607
1434
 
608
1435
  ### Features
609
1436
 
610
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
611
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
612
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
613
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
614
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
615
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
616
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
617
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
618
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
619
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1437
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1438
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1439
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1440
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1441
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1442
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1443
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1444
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1445
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1446
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
620
1447
 
621
1448
 
622
1449
  ### Bug Fixes
623
1450
 
624
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1451
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
625
1452
 
626
1453
 
627
1454
  ### Dependencies
@@ -635,26 +1462,26 @@
635
1462
  * @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
636
1463
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.1 to 0.0.2-next.2
637
1464
 
638
- ## [0.0.2-next.1](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.0...web-v0.0.2-next.1) (2025-08-06)
1465
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.0...web-v0.0.2-next.1) (2025-08-06)
639
1466
 
640
1467
 
641
1468
  ### Features
642
1469
 
643
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
644
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
645
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
646
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
647
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
648
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
649
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
650
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
651
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
652
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1470
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1471
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1472
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1473
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1474
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1475
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1476
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1477
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1478
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1479
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
653
1480
 
654
1481
 
655
1482
  ### Bug Fixes
656
1483
 
657
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1484
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
658
1485
 
659
1486
 
660
1487
  ### Dependencies
@@ -673,8 +1500,8 @@
673
1500
 
674
1501
  ### Features
675
1502
 
676
- * release to production ([829d53d](https://github.com/twinfoundation/framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
677
- * release to production ([5cf3a76](https://github.com/twinfoundation/framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
1503
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
1504
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
678
1505
 
679
1506
 
680
1507
  ### Dependencies
@@ -688,24 +1515,24 @@
688
1515
  * @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
689
1516
  * @twin.org/nameof-vitest-plugin bumped from ^0.0.0 to ^0.0.1
690
1517
 
691
- ## [0.0.1-next.70](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.69...web-v0.0.1-next.70) (2025-07-02)
1518
+ ## [0.0.1-next.70](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.69...web-v0.0.1-next.70) (2025-07-02)
692
1519
 
693
1520
 
694
1521
  ### Features
695
1522
 
696
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
697
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
698
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
699
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
700
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
701
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
702
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
703
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1523
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1524
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1525
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1526
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1527
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1528
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1529
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1530
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
704
1531
 
705
1532
 
706
1533
  ### Bug Fixes
707
1534
 
708
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1535
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
709
1536
 
710
1537
 
711
1538
  ### Dependencies
@@ -719,24 +1546,24 @@
719
1546
  * @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
720
1547
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.69 to 0.0.1-next.70
721
1548
 
722
- ## [0.0.1-next.69](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.68...web-v0.0.1-next.69) (2025-07-02)
1549
+ ## [0.0.1-next.69](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.68...web-v0.0.1-next.69) (2025-07-02)
723
1550
 
724
1551
 
725
1552
  ### Features
726
1553
 
727
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
728
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
729
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
730
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
731
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
732
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
733
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
734
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1554
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1555
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1556
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1557
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1558
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1559
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1560
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1561
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
735
1562
 
736
1563
 
737
1564
  ### Bug Fixes
738
1565
 
739
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1566
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
740
1567
 
741
1568
 
742
1569
  ### Dependencies
@@ -750,12 +1577,12 @@
750
1577
  * @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
751
1578
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.68 to 0.0.1-next.69
752
1579
 
753
- ## [0.0.1-next.68](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.67...web-v0.0.1-next.68) (2025-07-02)
1580
+ ## [0.0.1-next.68](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.67...web-v0.0.1-next.68) (2025-07-02)
754
1581
 
755
1582
 
756
1583
  ### Features
757
1584
 
758
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1585
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
759
1586
 
760
1587
 
761
1588
  ### Dependencies
@@ -769,7 +1596,7 @@
769
1596
  * @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
770
1597
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.67 to 0.0.1-next.68
771
1598
 
772
- ## [0.0.1-next.67](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.66...web-v0.0.1-next.67) (2025-06-26)
1599
+ ## [0.0.1-next.67](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.66...web-v0.0.1-next.67) (2025-06-26)
773
1600
 
774
1601
 
775
1602
  ### Miscellaneous Chores
@@ -784,7 +1611,7 @@
784
1611
  * @twin.org/core bumped from 0.0.1-next.66 to 0.0.1-next.67
785
1612
  * @twin.org/crypto bumped from 0.0.1-next.66 to 0.0.1-next.67
786
1613
 
787
- ## [0.0.1-next.66](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.65...web-v0.0.1-next.66) (2025-06-26)
1614
+ ## [0.0.1-next.66](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.65...web-v0.0.1-next.66) (2025-06-26)
788
1615
 
789
1616
 
790
1617
  ### Miscellaneous Chores
@@ -799,7 +1626,7 @@
799
1626
  * @twin.org/core bumped from 0.0.1-next.65 to 0.0.1-next.66
800
1627
  * @twin.org/crypto bumped from 0.0.1-next.65 to 0.0.1-next.66
801
1628
 
802
- ## [0.0.1-next.65](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.64...web-v0.0.1-next.65) (2025-06-19)
1629
+ ## [0.0.1-next.65](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.64...web-v0.0.1-next.65) (2025-06-19)
803
1630
 
804
1631
 
805
1632
  ### Miscellaneous Chores
@@ -814,12 +1641,12 @@
814
1641
  * @twin.org/core bumped from 0.0.1-next.64 to 0.0.1-next.65
815
1642
  * @twin.org/crypto bumped from 0.0.1-next.64 to 0.0.1-next.65
816
1643
 
817
- ## [0.0.1-next.64](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.63...web-v0.0.1-next.64) (2025-06-19)
1644
+ ## [0.0.1-next.64](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.63...web-v0.0.1-next.64) (2025-06-19)
818
1645
 
819
1646
 
820
1647
  ### Features
821
1648
 
822
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1649
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
823
1650
 
824
1651
 
825
1652
  ### Dependencies
@@ -829,12 +1656,12 @@
829
1656
  * @twin.org/core bumped from 0.0.1-next.63 to 0.0.1-next.64
830
1657
  * @twin.org/crypto bumped from 0.0.1-next.63 to 0.0.1-next.64
831
1658
 
832
- ## [0.0.1-next.63](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.62...web-v0.0.1-next.63) (2025-06-18)
1659
+ ## [0.0.1-next.63](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.62...web-v0.0.1-next.63) (2025-06-18)
833
1660
 
834
1661
 
835
1662
  ### Features
836
1663
 
837
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1664
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
838
1665
 
839
1666
 
840
1667
  ### Dependencies
@@ -844,21 +1671,21 @@
844
1671
  * @twin.org/core bumped from 0.0.1-next.62 to 0.0.1-next.63
845
1672
  * @twin.org/crypto bumped from 0.0.1-next.62 to 0.0.1-next.63
846
1673
 
847
- ## [0.0.1-next.62](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.61...web-v0.0.1-next.62) (2025-06-17)
1674
+ ## [0.0.1-next.62](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.61...web-v0.0.1-next.62) (2025-06-17)
848
1675
 
849
1676
 
850
1677
  ### Features
851
1678
 
852
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
853
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
854
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
855
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
856
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1679
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1680
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1681
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1682
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1683
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
857
1684
 
858
1685
 
859
1686
  ### Bug Fixes
860
1687
 
861
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1688
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
862
1689
 
863
1690
 
864
1691
  ### Dependencies
@@ -868,7 +1695,7 @@
868
1695
  * @twin.org/core bumped from 0.0.1-next.61 to 0.0.1-next.62
869
1696
  * @twin.org/crypto bumped from 0.0.1-next.61 to 0.0.1-next.62
870
1697
 
871
- ## [0.0.1-next.61](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.60...web-v0.0.1-next.61) (2025-06-17)
1698
+ ## [0.0.1-next.61](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.60...web-v0.0.1-next.61) (2025-06-17)
872
1699
 
873
1700
 
874
1701
  ### Miscellaneous Chores
@@ -883,7 +1710,7 @@
883
1710
  * @twin.org/core bumped from 0.0.1-next.60 to 0.0.1-next.61
884
1711
  * @twin.org/crypto bumped from 0.0.1-next.60 to 0.0.1-next.61
885
1712
 
886
- ## [0.0.1-next.60](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.59...web-v0.0.1-next.60) (2025-06-17)
1713
+ ## [0.0.1-next.60](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.59...web-v0.0.1-next.60) (2025-06-17)
887
1714
 
888
1715
 
889
1716
  ### Miscellaneous Chores
@@ -898,12 +1725,12 @@
898
1725
  * @twin.org/core bumped from 0.0.1-next.59 to 0.0.1-next.60
899
1726
  * @twin.org/crypto bumped from 0.0.1-next.59 to 0.0.1-next.60
900
1727
 
901
- ## [0.0.1-next.59](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.58...web-v0.0.1-next.59) (2025-06-17)
1728
+ ## [0.0.1-next.59](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.58...web-v0.0.1-next.59) (2025-06-17)
902
1729
 
903
1730
 
904
1731
  ### Features
905
1732
 
906
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1733
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
907
1734
 
908
1735
 
909
1736
  ### Dependencies
@@ -913,7 +1740,7 @@
913
1740
  * @twin.org/core bumped from 0.0.1-next.58 to 0.0.1-next.59
914
1741
  * @twin.org/crypto bumped from 0.0.1-next.58 to 0.0.1-next.59
915
1742
 
916
- ## [0.0.1-next.58](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.57...web-v0.0.1-next.58) (2025-06-13)
1743
+ ## [0.0.1-next.58](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.57...web-v0.0.1-next.58) (2025-06-13)
917
1744
 
918
1745
 
919
1746
  ### Miscellaneous Chores
@@ -928,12 +1755,12 @@
928
1755
  * @twin.org/core bumped from 0.0.1-next.57 to 0.0.1-next.58
929
1756
  * @twin.org/crypto bumped from 0.0.1-next.57 to 0.0.1-next.58
930
1757
 
931
- ## [0.0.1-next.57](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.56...web-v0.0.1-next.57) (2025-06-10)
1758
+ ## [0.0.1-next.57](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.56...web-v0.0.1-next.57) (2025-06-10)
932
1759
 
933
1760
 
934
1761
  ### Features
935
1762
 
936
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1763
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
937
1764
 
938
1765
 
939
1766
  ### Dependencies
@@ -943,7 +1770,7 @@
943
1770
  * @twin.org/core bumped from 0.0.1-next.56 to 0.0.1-next.57
944
1771
  * @twin.org/crypto bumped from 0.0.1-next.56 to 0.0.1-next.57
945
1772
 
946
- ## [0.0.1-next.56](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.55...web-v0.0.1-next.56) (2025-05-08)
1773
+ ## [0.0.1-next.56](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.55...web-v0.0.1-next.56) (2025-05-08)
947
1774
 
948
1775
 
949
1776
  ### Miscellaneous Chores
@@ -958,12 +1785,12 @@
958
1785
  * @twin.org/core bumped from 0.0.1-next.55 to 0.0.1-next.56
959
1786
  * @twin.org/crypto bumped from 0.0.1-next.55 to 0.0.1-next.56
960
1787
 
961
- ## [0.0.1-next.55](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.54...web-v0.0.1-next.55) (2025-05-07)
1788
+ ## [0.0.1-next.55](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.54...web-v0.0.1-next.55) (2025-05-07)
962
1789
 
963
1790
 
964
1791
  ### Features
965
1792
 
966
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
1793
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
967
1794
 
968
1795
 
969
1796
  ### Dependencies
@@ -973,12 +1800,12 @@
973
1800
  * @twin.org/core bumped from 0.0.1-next.54 to 0.0.1-next.55
974
1801
  * @twin.org/crypto bumped from 0.0.1-next.54 to 0.0.1-next.55
975
1802
 
976
- ## [0.0.1-next.54](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.53...web-v0.0.1-next.54) (2025-05-06)
1803
+ ## [0.0.1-next.54](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.53...web-v0.0.1-next.54) (2025-05-06)
977
1804
 
978
1805
 
979
1806
  ### Bug Fixes
980
1807
 
981
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1808
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
982
1809
 
983
1810
 
984
1811
  ### Dependencies
@@ -988,7 +1815,7 @@
988
1815
  * @twin.org/core bumped from 0.0.1-next.53 to 0.0.1-next.54
989
1816
  * @twin.org/crypto bumped from 0.0.1-next.53 to 0.0.1-next.54
990
1817
 
991
- ## [0.0.1-next.53](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.52...web-v0.0.1-next.53) (2025-05-01)
1818
+ ## [0.0.1-next.53](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.52...web-v0.0.1-next.53) (2025-05-01)
992
1819
 
993
1820
 
994
1821
  ### Miscellaneous Chores
@@ -1003,12 +1830,12 @@
1003
1830
  * @twin.org/core bumped from 0.0.1-next.52 to 0.0.1-next.53
1004
1831
  * @twin.org/crypto bumped from 0.0.1-next.52 to 0.0.1-next.53
1005
1832
 
1006
- ## [0.0.1-next.52](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.51...web-v0.0.1-next.52) (2025-04-17)
1833
+ ## [0.0.1-next.52](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.51...web-v0.0.1-next.52) (2025-04-17)
1007
1834
 
1008
1835
 
1009
1836
  ### Features
1010
1837
 
1011
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1838
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1012
1839
 
1013
1840
 
1014
1841
  ### Dependencies
@@ -1018,7 +1845,7 @@
1018
1845
  * @twin.org/core bumped from 0.0.1-next.51 to 0.0.1-next.52
1019
1846
  * @twin.org/crypto bumped from 0.0.1-next.51 to 0.0.1-next.52
1020
1847
 
1021
- ## [0.0.1-next.51](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.50...web-v0.0.1-next.51) (2025-03-27)
1848
+ ## [0.0.1-next.51](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.50...web-v0.0.1-next.51) (2025-03-27)
1022
1849
 
1023
1850
 
1024
1851
  ### Miscellaneous Chores
@@ -1033,12 +1860,12 @@
1033
1860
  * @twin.org/core bumped from 0.0.1-next.50 to 0.0.1-next.51
1034
1861
  * @twin.org/crypto bumped from 0.0.1-next.50 to 0.0.1-next.51
1035
1862
 
1036
- ## [0.0.1-next.50](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.49...web-v0.0.1-next.50) (2025-03-26)
1863
+ ## [0.0.1-next.50](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.49...web-v0.0.1-next.50) (2025-03-26)
1037
1864
 
1038
1865
 
1039
1866
  ### Features
1040
1867
 
1041
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1868
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1042
1869
 
1043
1870
 
1044
1871
  ### Dependencies