@twin.org/api-models 0.0.3-next.4 → 0.0.3-next.41

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 (160) hide show
  1. package/README.md +1 -1
  2. package/dist/es/errors/forbiddenError.js +23 -0
  3. package/dist/es/errors/forbiddenError.js.map +1 -0
  4. package/dist/es/errors/tooManyRequestsError.js +25 -0
  5. package/dist/es/errors/tooManyRequestsError.js.map +1 -0
  6. package/dist/es/helpers/httpErrorHelper.js +34 -20
  7. package/dist/es/helpers/httpErrorHelper.js.map +1 -1
  8. package/dist/es/helpers/httpUrlHelper.js +105 -0
  9. package/dist/es/helpers/httpUrlHelper.js.map +1 -0
  10. package/dist/es/index.js +14 -4
  11. package/dist/es/index.js.map +1 -1
  12. package/dist/es/models/api/IServerHealthResponse.js.map +1 -1
  13. package/dist/es/models/api/IServerLivezResponse.js +2 -0
  14. package/dist/es/models/api/IServerLivezResponse.js.map +1 -0
  15. package/dist/es/models/api/IServerReadyzResponse.js +2 -0
  16. package/dist/es/models/api/IServerReadyzResponse.js.map +1 -0
  17. package/dist/es/models/api/IServerRootResponse.js +0 -2
  18. package/dist/es/models/api/IServerRootResponse.js.map +1 -1
  19. package/dist/es/models/config/IBaseRestClientConfig.js.map +1 -1
  20. package/dist/es/models/httpContextIdKeys.js +21 -0
  21. package/dist/es/models/httpContextIdKeys.js.map +1 -0
  22. package/dist/es/models/protocol/IHttpRequestContext.js.map +1 -1
  23. package/dist/es/models/protocol/IHttpRequestPathParams.js.map +1 -1
  24. package/dist/es/models/protocol/IHttpRequestQuery.js.map +1 -1
  25. package/dist/es/models/protocol/IHttpServerRequest.js.map +1 -1
  26. package/dist/es/models/responses/errors/IConflictResponse.js.map +1 -1
  27. package/dist/es/models/responses/errors/INotImplementedResponse.js +2 -0
  28. package/dist/es/models/responses/errors/INotImplementedResponse.js.map +1 -0
  29. package/dist/es/models/responses/errors/ITooManyRequestsResponse.js +2 -0
  30. package/dist/es/models/responses/errors/ITooManyRequestsResponse.js.map +1 -0
  31. package/dist/es/models/routes/IBaseRoute.js.map +1 -1
  32. package/dist/es/models/server/IBaseRouteProcessor.js.map +1 -1
  33. package/dist/es/models/server/IRestRouteProcessor.js.map +1 -1
  34. package/dist/es/models/server/ISocketRouteProcessor.js.map +1 -1
  35. package/dist/es/models/server/IWebServer.js.map +1 -1
  36. package/dist/es/models/services/IHealthComponent.js +2 -0
  37. package/dist/es/models/services/IHealthComponent.js.map +1 -0
  38. package/dist/es/models/services/IHostingComponent.js +2 -0
  39. package/dist/es/models/services/IHostingComponent.js.map +1 -0
  40. package/dist/es/models/services/IInformationComponent.js.map +1 -1
  41. package/dist/es/models/services/ITenant.js +4 -0
  42. package/dist/es/models/services/ITenant.js.map +1 -0
  43. package/dist/es/models/services/ITenantAdminComponent.js +2 -0
  44. package/dist/es/models/services/ITenantAdminComponent.js.map +1 -0
  45. package/dist/es/models/services/ITenantComponent.js +2 -0
  46. package/dist/es/models/services/ITenantComponent.js.map +1 -0
  47. package/dist/es/models/services/IUrlTransformerComponent.js +2 -0
  48. package/dist/es/models/services/IUrlTransformerComponent.js.map +1 -0
  49. package/dist/types/errors/forbiddenError.d.ts +20 -0
  50. package/dist/types/errors/tooManyRequestsError.d.ts +22 -0
  51. package/dist/types/helpers/httpErrorHelper.d.ts +6 -0
  52. package/dist/types/helpers/httpUrlHelper.d.ts +55 -0
  53. package/dist/types/index.d.ts +14 -4
  54. package/dist/types/models/api/IServerHealthResponse.d.ts +6 -3
  55. package/dist/types/models/api/IServerLivezResponse.d.ts +16 -0
  56. package/dist/types/models/api/IServerReadyzResponse.d.ts +16 -0
  57. package/dist/types/models/api/IServerRootResponse.d.ts +7 -0
  58. package/dist/types/models/config/IBaseRestClientConfig.d.ts +16 -0
  59. package/dist/types/models/httpContextIdKeys.d.ts +21 -0
  60. package/dist/types/models/protocol/IHttpRequestContext.d.ts +4 -0
  61. package/dist/types/models/protocol/IHttpRequestPathParams.d.ts +1 -1
  62. package/dist/types/models/protocol/IHttpRequestQuery.d.ts +1 -1
  63. package/dist/types/models/protocol/IHttpServerRequest.d.ts +4 -4
  64. package/dist/types/models/responses/errors/IConflictResponse.d.ts +1 -6
  65. package/dist/types/models/responses/errors/INotImplementedResponse.d.ts +15 -0
  66. package/dist/types/models/responses/errors/ITooManyRequestsResponse.d.ts +15 -0
  67. package/dist/types/models/routes/IBaseRoute.d.ts +9 -1
  68. package/dist/types/models/server/IBaseRouteProcessor.d.ts +14 -4
  69. package/dist/types/models/server/IRestRouteProcessor.d.ts +7 -2
  70. package/dist/types/models/server/IWebServer.d.ts +7 -1
  71. package/dist/types/models/services/IHealthComponent.d.ts +14 -0
  72. package/dist/types/models/services/IHostingComponent.d.ts +30 -0
  73. package/dist/types/models/services/IInformationComponent.d.ts +10 -17
  74. package/dist/types/models/services/ITenant.d.ts +29 -0
  75. package/dist/types/models/services/ITenantAdminComponent.d.ts +60 -0
  76. package/dist/types/models/services/ITenantComponent.d.ts +12 -0
  77. package/dist/types/models/services/IUrlTransformerComponent.d.ts +79 -0
  78. package/docs/changelog.md +350 -72
  79. package/docs/examples.md +200 -1
  80. package/docs/reference/classes/ForbiddenError.md +55 -0
  81. package/docs/reference/classes/HttpErrorHelper.md +14 -2
  82. package/docs/reference/classes/HttpParameterHelper.md +4 -4
  83. package/docs/reference/classes/HttpUrlHelper.md +197 -0
  84. package/docs/reference/classes/TooManyRequestsError.md +67 -0
  85. package/docs/reference/index.md +15 -5
  86. package/docs/reference/interfaces/IAcceptedResponse.md +2 -2
  87. package/docs/reference/interfaces/IBadRequestResponse.md +2 -2
  88. package/docs/reference/interfaces/IBaseRestClientConfig.md +57 -9
  89. package/docs/reference/interfaces/IBaseRoute.md +25 -9
  90. package/docs/reference/interfaces/IBaseRouteEntryPoint.md +4 -4
  91. package/docs/reference/interfaces/IBaseRouteProcessor.md +33 -13
  92. package/docs/reference/interfaces/IBaseSocketClientConfig.md +7 -7
  93. package/docs/reference/interfaces/IConflictResponse.md +3 -11
  94. package/docs/reference/interfaces/ICreatedResponse.md +2 -2
  95. package/docs/reference/interfaces/IForbiddenResponse.md +2 -2
  96. package/docs/reference/interfaces/IHealthComponent.md +21 -0
  97. package/docs/reference/interfaces/IHostingComponent.md +95 -0
  98. package/docs/reference/interfaces/IHttpRequest.md +8 -8
  99. package/docs/reference/interfaces/IHttpRequestContext.md +12 -4
  100. package/docs/reference/interfaces/IHttpRequestPathParams.md +1 -1
  101. package/docs/reference/interfaces/IHttpRequestQuery.md +1 -1
  102. package/docs/reference/interfaces/IHttpResponse.md +6 -6
  103. package/docs/reference/interfaces/IHttpServerRequest.md +14 -14
  104. package/docs/reference/interfaces/IInformationComponent.md +14 -56
  105. package/docs/reference/interfaces/IInternalServerErrorResponse.md +2 -2
  106. package/docs/reference/interfaces/IMimeTypeProcessor.md +2 -2
  107. package/docs/reference/interfaces/INoContentRequest.md +8 -8
  108. package/docs/reference/interfaces/INoContentResponse.md +1 -1
  109. package/docs/reference/interfaces/INotFoundResponse.md +3 -3
  110. package/docs/reference/interfaces/INotImplementedResponse.md +19 -0
  111. package/docs/reference/interfaces/IOkResponse.md +1 -1
  112. package/docs/reference/interfaces/IRestRoute.md +47 -23
  113. package/docs/reference/interfaces/IRestRouteExample.md +3 -3
  114. package/docs/reference/interfaces/IRestRouteProcessor.md +49 -19
  115. package/docs/reference/interfaces/IRestRouteRequestExample.md +4 -4
  116. package/docs/reference/interfaces/IRestRouteResponseAttachmentOptions.md +6 -6
  117. package/docs/reference/interfaces/IRestRouteResponseExample.md +4 -4
  118. package/docs/reference/interfaces/IRestRouteResponseOptions.md +2 -2
  119. package/docs/reference/interfaces/IServerFavIconResponse.md +7 -7
  120. package/docs/reference/interfaces/IServerHealthResponse.md +11 -3
  121. package/docs/reference/interfaces/IServerInfo.md +2 -2
  122. package/docs/reference/interfaces/IServerInfoResponse.md +1 -1
  123. package/docs/reference/interfaces/IServerLivezResponse.md +23 -0
  124. package/docs/reference/interfaces/IServerReadyzResponse.md +23 -0
  125. package/docs/reference/interfaces/IServerRootResponse.md +13 -1
  126. package/docs/reference/interfaces/IServerSpecResponse.md +4 -4
  127. package/docs/reference/interfaces/ISocketRequestContext.md +17 -5
  128. package/docs/reference/interfaces/ISocketRoute.md +38 -14
  129. package/docs/reference/interfaces/ISocketRouteProcessor.md +42 -22
  130. package/docs/reference/interfaces/ISocketServerRequest.md +17 -17
  131. package/docs/reference/interfaces/ITag.md +2 -2
  132. package/docs/reference/interfaces/ITenant.md +51 -0
  133. package/docs/reference/interfaces/ITenantAdminComponent.md +189 -0
  134. package/docs/reference/interfaces/ITenantComponent.md +29 -0
  135. package/docs/reference/interfaces/ITooManyRequestsResponse.md +19 -0
  136. package/docs/reference/interfaces/IUnauthorizedResponse.md +2 -2
  137. package/docs/reference/interfaces/IUnprocessableEntityResponse.md +2 -2
  138. package/docs/reference/interfaces/IUrlTransformerComponent.md +279 -0
  139. package/docs/reference/interfaces/IWebServer.md +34 -4
  140. package/docs/reference/interfaces/IWebServerOptions.md +12 -12
  141. package/docs/reference/type-aliases/HttpContextIdKeys.md +5 -0
  142. package/docs/reference/variables/HttpContextIdKeys.md +25 -0
  143. package/package.json +4 -4
  144. package/dist/es/factories/authenticationGeneratorFactory.js +0 -9
  145. package/dist/es/factories/authenticationGeneratorFactory.js.map +0 -1
  146. package/dist/es/models/client/IAuthenticationGenerator.js +0 -2
  147. package/dist/es/models/client/IAuthenticationGenerator.js.map +0 -1
  148. package/dist/es/models/services/IHealthInfo.js +0 -2
  149. package/dist/es/models/services/IHealthInfo.js.map +0 -1
  150. package/dist/es/models/services/healthStatus.js +0 -21
  151. package/dist/es/models/services/healthStatus.js.map +0 -1
  152. package/dist/types/factories/authenticationGeneratorFactory.d.ts +0 -6
  153. package/dist/types/models/client/IAuthenticationGenerator.d.ts +0 -14
  154. package/dist/types/models/services/IHealthInfo.d.ts +0 -27
  155. package/dist/types/models/services/healthStatus.d.ts +0 -21
  156. package/docs/reference/interfaces/IAuthenticationGenerator.md +0 -35
  157. package/docs/reference/interfaces/IHealthInfo.md +0 -37
  158. package/docs/reference/type-aliases/HealthStatus.md +0 -5
  159. package/docs/reference/variables/AuthenticationGeneratorFactory.md +0 -5
  160. package/docs/reference/variables/HealthStatus.md +0 -25
package/docs/changelog.md CHANGED
@@ -1,192 +1,470 @@
1
- # @twin.org/api-models - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.4](https://github.com/twinfoundation/api/compare/api-models-v0.0.3-next.3...api-models-v0.0.3-next.4) (2025-11-14)
3
+ ## [0.0.3-next.41](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.40...api-models-v0.0.3-next.41) (2026-06-05)
4
4
 
5
5
 
6
6
  ### Features
7
7
 
8
- * add authentication generators and process features option ([a67edf1](https://github.com/twinfoundation/api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
9
- * add context id features ([#42](https://github.com/twinfoundation/api/issues/42)) ([0186055](https://github.com/twinfoundation/api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
10
- * add logging component type to request contexts ([210de1b](https://github.com/twinfoundation/api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
11
- * add root, favicon routes ([71da1c3](https://github.com/twinfoundation/api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
12
- * add socket id, connect and disconnect ([20b0d0e](https://github.com/twinfoundation/api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
13
- * add validate-locales ([cdba610](https://github.com/twinfoundation/api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
14
- * eslint migration to flat config ([0dd5820](https://github.com/twinfoundation/api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
15
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
16
- * update framework core ([d8eebf2](https://github.com/twinfoundation/api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
17
- * update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
18
- * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/twinfoundation/api/commit/6452b153af786eee14b21152420f8a2578b70593))
19
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
20
- * validationError mapped to http status badrequest ([adc5eb1](https://github.com/twinfoundation/api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
8
+ * matches local origin ([#148](https://github.com/iotaledger/twin-api/issues/148)) ([7f6d30c](https://github.com/iotaledger/twin-api/commit/7f6d30c4dd1fe699f6171c41251bb56b803934e5))
21
9
 
22
- ## [0.0.3-next.3](https://github.com/twinfoundation/api/compare/api-models-v0.0.3-next.2...api-models-v0.0.3-next.3) (2025-11-14)
10
+ ## [0.0.3-next.40](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.39...api-models-v0.0.3-next.40) (2026-06-04)
11
+
12
+
13
+ ### Features
14
+
15
+ * add tenant component ([#145](https://github.com/iotaledger/twin-api/issues/145)) ([a440c53](https://github.com/iotaledger/twin-api/commit/a440c53f36618946daee7372fe664f8ace341a08))
16
+
17
+ ## [0.0.3-next.39](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.38...api-models-v0.0.3-next.39) (2026-06-02)
18
+
19
+
20
+ ### Features
21
+
22
+ * tenant id in jwt ([#140](https://github.com/iotaledger/twin-api/issues/140)) ([8d37a7b](https://github.com/iotaledger/twin-api/commit/8d37a7b98b45fde53df1e909cffc0869aa758655))
23
+
24
+ ## [0.0.3-next.38](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.37...api-models-v0.0.3-next.38) (2026-05-28)
25
+
26
+
27
+ ### Miscellaneous Chores
28
+
29
+ * **api-models:** Synchronize repo versions
30
+
31
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.36...api-models-v0.0.3-next.37) (2026-05-22)
32
+
33
+
34
+ ### Miscellaneous Chores
35
+
36
+ * **api-models:** Synchronize repo versions
37
+
38
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.35...api-models-v0.0.3-next.36) (2026-05-22)
39
+
40
+
41
+ ### Miscellaneous Chores
42
+
43
+ * **api-models:** Synchronize repo versions
44
+
45
+ ## [0.0.3-next.35](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.34...api-models-v0.0.3-next.35) (2026-05-21)
46
+
47
+
48
+ ### Miscellaneous Chores
49
+
50
+ * **api-models:** Synchronize repo versions
51
+
52
+ ## [0.0.3-next.34](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.33...api-models-v0.0.3-next.34) (2026-05-19)
53
+
54
+
55
+ ### Features
56
+
57
+ * update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
58
+
59
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.32...api-models-v0.0.3-next.33) (2026-05-11)
60
+
61
+
62
+ ### Features
63
+
64
+ * typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
65
+
66
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.31...api-models-v0.0.3-next.32) (2026-05-07)
67
+
68
+
69
+ ### Miscellaneous Chores
70
+
71
+ * **api-models:** Synchronize repo versions
72
+
73
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.30...api-models-v0.0.3-next.31) (2026-05-06)
74
+
75
+
76
+ ### Features
77
+
78
+ * update health format ([cfbfbbb](https://github.com/iotaledger/twin-api/commit/cfbfbbb2e9afbd2574ffd2446ad51e4217437951))
79
+
80
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.29...api-models-v0.0.3-next.30) (2026-05-05)
81
+
82
+
83
+ ### Features
84
+
85
+ * separate service responsibilities ([#116](https://github.com/iotaledger/twin-api/issues/116)) ([2234648](https://github.com/iotaledger/twin-api/commit/2234648de4a2de5b7356aadde328f40470bc12e3))
86
+
87
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.28...api-models-v0.0.3-next.29) (2026-05-01)
88
+
89
+
90
+ ### Features
91
+
92
+ * hosting service ([#109](https://github.com/iotaledger/twin-api/issues/109)) ([985bf1f](https://github.com/iotaledger/twin-api/commit/985bf1f5c07b09ecb800df7120bc2422ac7a6d25))
93
+
94
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.27...api-models-v0.0.3-next.28) (2026-04-30)
95
+
96
+
97
+ ### Miscellaneous Chores
98
+
99
+ * **api-models:** Synchronize repo versions
100
+
101
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.26...api-models-v0.0.3-next.27) (2026-04-23)
102
+
103
+
104
+ ### Miscellaneous Chores
105
+
106
+ * **api-models:** Synchronize repo versions
107
+
108
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.25...api-models-v0.0.3-next.26) (2026-04-22)
109
+
110
+
111
+ ### Bug Fixes
112
+
113
+ * prevent error body masking 4xx as 500, run pre-processors in context scope ([#102](https://github.com/iotaledger/twin-api/issues/102)) ([5fbe14c](https://github.com/iotaledger/twin-api/commit/5fbe14c98e11e77a30e16704dcb8bfba7705926b))
114
+
115
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.24...api-models-v0.0.3-next.25) (2026-04-14)
116
+
117
+
118
+ ### Miscellaneous Chores
119
+
120
+ * **api-models:** Synchronize repo versions
121
+
122
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.23...api-models-v0.0.3-next.24) (2026-04-14)
123
+
124
+
125
+ ### Miscellaneous Chores
126
+
127
+ * **api-models:** Synchronize repo versions
128
+
129
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.22...api-models-v0.0.3-next.23) (2026-04-14)
130
+
131
+
132
+ ### Features
133
+
134
+ * auth enhancements ([#93](https://github.com/iotaledger/twin-api/issues/93)) ([921a50c](https://github.com/iotaledger/twin-api/commit/921a50cd89d26e530a6be6174a5a803060fa0eb6))
135
+
136
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.21...api-models-v0.0.3-next.22) (2026-03-27)
137
+
138
+
139
+ ### Features
140
+
141
+ * add new error types ([#86](https://github.com/iotaledger/twin-api/issues/86)) ([71e3c07](https://github.com/iotaledger/twin-api/commit/71e3c07c792984af01c307943e0e09a3ae98710d))
142
+
143
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.20...api-models-v0.0.3-next.21) (2026-03-11)
144
+
145
+
146
+ ### Miscellaneous Chores
147
+
148
+ * **api-models:** Synchronize repo versions
149
+
150
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.19...api-models-v0.0.3-next.20) (2026-02-09)
151
+
152
+
153
+ ### Miscellaneous Chores
154
+
155
+ * **api-models:** Synchronize repo versions
156
+
157
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.18...api-models-v0.0.3-next.19) (2026-02-06)
158
+
159
+
160
+ ### Miscellaneous Chores
161
+
162
+ * **api-models:** Synchronize repo versions
163
+
164
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.17...api-models-v0.0.3-next.18) (2026-02-04)
165
+
166
+
167
+ ### Features
168
+
169
+ * tenant api and scopes ([#75](https://github.com/iotaledger/twin-api/issues/75)) ([c663141](https://github.com/iotaledger/twin-api/commit/c663141091e8974d769f8f9904ecdab009ebd083))
170
+
171
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.16...api-models-v0.0.3-next.17) (2026-01-26)
172
+
173
+
174
+ ### Features
175
+
176
+ * update public origin building ([6c8e042](https://github.com/iotaledger/twin-api/commit/6c8e0422d9ddbed42a843e1c23498c99977b2fc7))
177
+
178
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.15...api-models-v0.0.3-next.16) (2026-01-26)
179
+
180
+
181
+ ### Features
182
+
183
+ * public base url ([#70](https://github.com/iotaledger/twin-api/issues/70)) ([5b958cd](https://github.com/iotaledger/twin-api/commit/5b958cd91e8a38cdae2835ff5f2356c7e48d37c3))
184
+
185
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.14...api-models-v0.0.3-next.15) (2026-01-22)
186
+
187
+
188
+ ### Miscellaneous Chores
189
+
190
+ * **api-models:** Synchronize repo versions
191
+
192
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.13...api-models-v0.0.3-next.14) (2026-01-20)
193
+
194
+
195
+ ### Features
196
+
197
+ * export error type map ([#68](https://github.com/iotaledger/twin-api/issues/68)) ([697dfc4](https://github.com/iotaledger/twin-api/commit/697dfc4c9f6a7be493bf4b3619d7bcebf2e4584e))
198
+
199
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.12...api-models-v0.0.3-next.13) (2026-01-19)
200
+
201
+
202
+ ### Features
203
+
204
+ * remove authentication generators ([#66](https://github.com/iotaledger/twin-api/issues/66)) ([adaa169](https://github.com/iotaledger/twin-api/commit/adaa1698df1c5ccb0ad645a7a7c0d3ef82ef6ac1))
205
+
206
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.11...api-models-v0.0.3-next.12) (2026-01-12)
207
+
208
+
209
+ ### Miscellaneous Chores
210
+
211
+ * **api-models:** Synchronize repo versions
212
+
213
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.10...api-models-v0.0.3-next.11) (2026-01-08)
214
+
215
+
216
+ ### Miscellaneous Chores
217
+
218
+ * **api-models:** Synchronize repo versions
219
+
220
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.9...api-models-v0.0.3-next.10) (2026-01-05)
221
+
222
+
223
+ ### Miscellaneous Chores
224
+
225
+ * **api-models:** Synchronize repo versions
226
+
227
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.8...api-models-v0.0.3-next.9) (2026-01-05)
228
+
229
+
230
+ ### Features
231
+
232
+ * add authentication generators and process features option ([a67edf1](https://github.com/iotaledger/twin-api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
233
+ * add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
234
+ * add livez endpoint ([#57](https://github.com/iotaledger/twin-api/issues/57)) ([ef007db](https://github.com/iotaledger/twin-api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
235
+ * add logging component type to request contexts ([210de1b](https://github.com/iotaledger/twin-api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
236
+ * add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
237
+ * add socket id, connect and disconnect ([20b0d0e](https://github.com/iotaledger/twin-api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
238
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
239
+ * decodeURIComponent for query and path params ([ead68a2](https://github.com/iotaledger/twin-api/commit/ead68a257425c10dd912497f7edd473c469ca132))
240
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
241
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
242
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
243
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
244
+ * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/iotaledger/twin-api/commit/6452b153af786eee14b21152420f8a2578b70593))
245
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
246
+ * validationError mapped to http status badrequest ([adc5eb1](https://github.com/iotaledger/twin-api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
247
+
248
+
249
+ ### Bug Fixes
250
+
251
+ * error handling make sure primary error takes precedence ([84b61f2](https://github.com/iotaledger/twin-api/commit/84b61f27fe5e4919c0c9f9a1edc8ff46dc45c1f7))
252
+
253
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.7...api-models-v0.0.3-next.8) (2025-12-17)
254
+
255
+
256
+ ### Miscellaneous Chores
257
+
258
+ * **api-models:** Synchronize repo versions
259
+
260
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.6...api-models-v0.0.3-next.7) (2025-11-26)
261
+
262
+
263
+ ### Bug Fixes
264
+
265
+ * error handling make sure primary error takes precedence ([84b61f2](https://github.com/iotaledger/twin-api/commit/84b61f27fe5e4919c0c9f9a1edc8ff46dc45c1f7))
266
+
267
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.5...api-models-v0.0.3-next.6) (2025-11-20)
268
+
269
+
270
+ ### Miscellaneous Chores
271
+
272
+ * **api-models:** Synchronize repo versions
273
+
274
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.4...api-models-v0.0.3-next.5) (2025-11-14)
275
+
276
+
277
+ ### Features
278
+
279
+ * decodeURIComponent for query and path params ([ead68a2](https://github.com/iotaledger/twin-api/commit/ead68a257425c10dd912497f7edd473c469ca132))
280
+
281
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.3...api-models-v0.0.3-next.4) (2025-11-14)
282
+
283
+
284
+ ### Features
285
+
286
+ * add authentication generators and process features option ([a67edf1](https://github.com/iotaledger/twin-api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
287
+ * add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
288
+ * add logging component type to request contexts ([210de1b](https://github.com/iotaledger/twin-api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
289
+ * add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
290
+ * add socket id, connect and disconnect ([20b0d0e](https://github.com/iotaledger/twin-api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
291
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
292
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
293
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
294
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
295
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
296
+ * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/iotaledger/twin-api/commit/6452b153af786eee14b21152420f8a2578b70593))
297
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
298
+ * validationError mapped to http status badrequest ([adc5eb1](https://github.com/iotaledger/twin-api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
299
+
300
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.2...api-models-v0.0.3-next.3) (2025-11-14)
23
301
 
24
302
 
25
303
  ### Miscellaneous Chores
26
304
 
27
305
  * **api-models:** Synchronize repo versions
28
306
 
29
- ## [0.0.3-next.2](https://github.com/twinfoundation/api/compare/api-models-v0.0.3-next.1...api-models-v0.0.3-next.2) (2025-11-12)
307
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.1...api-models-v0.0.3-next.2) (2025-11-12)
30
308
 
31
309
 
32
310
  ### Miscellaneous Chores
33
311
 
34
312
  * **api-models:** Synchronize repo versions
35
313
 
36
- ## [0.0.3-next.1](https://github.com/twinfoundation/api/compare/api-models-v0.0.3-next.0...api-models-v0.0.3-next.1) (2025-11-10)
314
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.0...api-models-v0.0.3-next.1) (2025-11-10)
37
315
 
38
316
 
39
317
  ### Features
40
318
 
41
- * add authentication generators and process features option ([a67edf1](https://github.com/twinfoundation/api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
42
- * add context id features ([#42](https://github.com/twinfoundation/api/issues/42)) ([0186055](https://github.com/twinfoundation/api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
43
- * add logging component type to request contexts ([210de1b](https://github.com/twinfoundation/api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
44
- * add root, favicon routes ([71da1c3](https://github.com/twinfoundation/api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
45
- * add socket id, connect and disconnect ([20b0d0e](https://github.com/twinfoundation/api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
46
- * add validate-locales ([cdba610](https://github.com/twinfoundation/api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
47
- * eslint migration to flat config ([0dd5820](https://github.com/twinfoundation/api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
48
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
49
- * update framework core ([d8eebf2](https://github.com/twinfoundation/api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
50
- * update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
51
- * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/twinfoundation/api/commit/6452b153af786eee14b21152420f8a2578b70593))
52
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
53
- * validationError mapped to http status badrequest ([adc5eb1](https://github.com/twinfoundation/api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
319
+ * add authentication generators and process features option ([a67edf1](https://github.com/iotaledger/twin-api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
320
+ * add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
321
+ * add logging component type to request contexts ([210de1b](https://github.com/iotaledger/twin-api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
322
+ * add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
323
+ * add socket id, connect and disconnect ([20b0d0e](https://github.com/iotaledger/twin-api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
324
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
325
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
326
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
327
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
328
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
329
+ * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/iotaledger/twin-api/commit/6452b153af786eee14b21152420f8a2578b70593))
330
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
331
+ * validationError mapped to http status badrequest ([adc5eb1](https://github.com/iotaledger/twin-api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
54
332
 
55
- ## [0.0.2-next.13](https://github.com/twinfoundation/api/compare/api-models-v0.0.2-next.12...api-models-v0.0.2-next.13) (2025-10-09)
333
+ ## [0.0.2-next.13](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.2-next.12...api-models-v0.0.2-next.13) (2025-10-09)
56
334
 
57
335
 
58
336
  ### Miscellaneous Chores
59
337
 
60
338
  * **api-models:** Synchronize repo versions
61
339
 
62
- ## [0.0.2-next.12](https://github.com/twinfoundation/api/compare/api-models-v0.0.2-next.11...api-models-v0.0.2-next.12) (2025-10-09)
340
+ ## [0.0.2-next.12](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.2-next.11...api-models-v0.0.2-next.12) (2025-10-09)
63
341
 
64
342
 
65
343
  ### Features
66
344
 
67
- * add validate-locales ([cdba610](https://github.com/twinfoundation/api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
345
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
68
346
 
69
- ## [0.0.2-next.11](https://github.com/twinfoundation/api/compare/api-models-v0.0.2-next.10...api-models-v0.0.2-next.11) (2025-09-29)
347
+ ## [0.0.2-next.11](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.2-next.10...api-models-v0.0.2-next.11) (2025-09-29)
70
348
 
71
349
 
72
350
  ### Features
73
351
 
74
- * update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
352
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
75
353
 
76
- ## [0.0.2-next.10](https://github.com/twinfoundation/api/compare/api-models-v0.0.2-next.9...api-models-v0.0.2-next.10) (2025-09-23)
354
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.2-next.9...api-models-v0.0.2-next.10) (2025-09-23)
77
355
 
78
356
 
79
357
  ### Features
80
358
 
81
- * add authentication generators and process features option ([a67edf1](https://github.com/twinfoundation/api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
359
+ * add authentication generators and process features option ([a67edf1](https://github.com/iotaledger/twin-api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
82
360
 
83
- ## [0.0.2-next.9](https://github.com/twinfoundation/api/compare/api-models-v0.0.2-next.8...api-models-v0.0.2-next.9) (2025-08-29)
361
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.2-next.8...api-models-v0.0.2-next.9) (2025-08-29)
84
362
 
85
363
 
86
364
  ### Features
87
365
 
88
- * eslint migration to flat config ([0dd5820](https://github.com/twinfoundation/api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
366
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
89
367
 
90
- ## [0.0.2-next.8](https://github.com/twinfoundation/api/compare/api-models-v0.0.2-next.7...api-models-v0.0.2-next.8) (2025-08-21)
368
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.2-next.7...api-models-v0.0.2-next.8) (2025-08-21)
91
369
 
92
370
 
93
371
  ### Features
94
372
 
95
- * add root, favicon routes ([71da1c3](https://github.com/twinfoundation/api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
373
+ * add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
96
374
 
97
- ## [0.0.2-next.7](https://github.com/twinfoundation/api/compare/api-models-v0.0.2-next.6...api-models-v0.0.2-next.7) (2025-08-20)
375
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.2-next.6...api-models-v0.0.2-next.7) (2025-08-20)
98
376
 
99
377
 
100
378
  ### Miscellaneous Chores
101
379
 
102
380
  * **api-models:** Synchronize repo versions
103
381
 
104
- ## [0.0.2-next.6](https://github.com/twinfoundation/api/compare/api-models-v0.0.2-next.5...api-models-v0.0.2-next.6) (2025-08-19)
382
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.2-next.5...api-models-v0.0.2-next.6) (2025-08-19)
105
383
 
106
384
 
107
385
  ### Features
108
386
 
109
- * update framework core ([d8eebf2](https://github.com/twinfoundation/api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
387
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
110
388
 
111
- ## [0.0.2-next.5](https://github.com/twinfoundation/api/compare/api-models-v0.0.2-next.4...api-models-v0.0.2-next.5) (2025-07-25)
389
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.2-next.4...api-models-v0.0.2-next.5) (2025-07-25)
112
390
 
113
391
 
114
392
  ### Features
115
393
 
116
- * add logging component type to request contexts ([210de1b](https://github.com/twinfoundation/api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
117
- * add socket id, connect and disconnect ([20b0d0e](https://github.com/twinfoundation/api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
118
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
119
- * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/twinfoundation/api/commit/6452b153af786eee14b21152420f8a2578b70593))
120
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
121
- * validationError mapped to http status badrequest ([adc5eb1](https://github.com/twinfoundation/api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
394
+ * add logging component type to request contexts ([210de1b](https://github.com/iotaledger/twin-api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
395
+ * add socket id, connect and disconnect ([20b0d0e](https://github.com/iotaledger/twin-api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
396
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
397
+ * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/iotaledger/twin-api/commit/6452b153af786eee14b21152420f8a2578b70593))
398
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
399
+ * validationError mapped to http status badrequest ([adc5eb1](https://github.com/iotaledger/twin-api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
122
400
 
123
- ## [0.0.2-next.4](https://github.com/twinfoundation/api/compare/api-models-v0.0.2-next.3...api-models-v0.0.2-next.4) (2025-07-25)
401
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.2-next.3...api-models-v0.0.2-next.4) (2025-07-25)
124
402
 
125
403
 
126
404
  ### Features
127
405
 
128
- * add logging component type to request contexts ([210de1b](https://github.com/twinfoundation/api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
406
+ * add logging component type to request contexts ([210de1b](https://github.com/iotaledger/twin-api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
129
407
 
130
- ## [0.0.2-next.3](https://github.com/twinfoundation/api/compare/api-models-v0.0.2-next.2...api-models-v0.0.2-next.3) (2025-07-24)
408
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.2-next.2...api-models-v0.0.2-next.3) (2025-07-24)
131
409
 
132
410
 
133
411
  ### Features
134
412
 
135
- * add socket id, connect and disconnect ([20b0d0e](https://github.com/twinfoundation/api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
413
+ * add socket id, connect and disconnect ([20b0d0e](https://github.com/iotaledger/twin-api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
136
414
 
137
- ## [0.0.2-next.2](https://github.com/twinfoundation/api/compare/api-models-v0.0.2-next.1...api-models-v0.0.2-next.2) (2025-07-17)
415
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.2-next.1...api-models-v0.0.2-next.2) (2025-07-17)
138
416
 
139
417
 
140
418
  ### Miscellaneous Chores
141
419
 
142
420
  * **api-models:** Synchronize repo versions
143
421
 
144
- ## [0.0.2-next.1](https://github.com/twinfoundation/api/compare/api-models-v0.0.2-next.0...api-models-v0.0.2-next.1) (2025-07-08)
422
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.2-next.0...api-models-v0.0.2-next.1) (2025-07-08)
145
423
 
146
424
 
147
425
  ### Features
148
426
 
149
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
150
- * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/twinfoundation/api/commit/6452b153af786eee14b21152420f8a2578b70593))
151
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
152
- * validationError mapped to http status badrequest ([adc5eb1](https://github.com/twinfoundation/api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
427
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
428
+ * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/iotaledger/twin-api/commit/6452b153af786eee14b21152420f8a2578b70593))
429
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
430
+ * validationError mapped to http status badrequest ([adc5eb1](https://github.com/iotaledger/twin-api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
153
431
 
154
432
  ## 0.0.1 (2025-07-03)
155
433
 
156
434
 
157
435
  ### Features
158
436
 
159
- * release to production ([70ee2d5](https://github.com/twinfoundation/api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
437
+ * release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
160
438
 
161
- ## [0.0.1-next.36](https://github.com/twinfoundation/api/compare/api-models-v0.0.1-next.35...api-models-v0.0.1-next.36) (2025-06-17)
439
+ ## [0.0.1-next.36](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.1-next.35...api-models-v0.0.1-next.36) (2025-06-17)
162
440
 
163
441
 
164
442
  ### Features
165
443
 
166
- * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/twinfoundation/api/commit/6452b153af786eee14b21152420f8a2578b70593))
444
+ * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/iotaledger/twin-api/commit/6452b153af786eee14b21152420f8a2578b70593))
167
445
 
168
- ## [0.0.1-next.35](https://github.com/twinfoundation/api/compare/api-models-v0.0.1-next.34...api-models-v0.0.1-next.35) (2025-06-11)
446
+ ## [0.0.1-next.35](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.1-next.34...api-models-v0.0.1-next.35) (2025-06-11)
169
447
 
170
448
 
171
449
  ### Features
172
450
 
173
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
451
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
174
452
 
175
- ## [0.0.1-next.34](https://github.com/twinfoundation/api/compare/api-models-v0.0.1-next.33...api-models-v0.0.1-next.34) (2025-05-27)
453
+ ## [0.0.1-next.34](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.1-next.33...api-models-v0.0.1-next.34) (2025-05-27)
176
454
 
177
455
 
178
456
  ### Features
179
457
 
180
- * validationError mapped to http status badrequest ([adc5eb1](https://github.com/twinfoundation/api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
458
+ * validationError mapped to http status badrequest ([adc5eb1](https://github.com/iotaledger/twin-api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
181
459
 
182
- ## [0.0.1-next.33](https://github.com/twinfoundation/api/compare/api-models-v0.0.1-next.32...api-models-v0.0.1-next.33) (2025-04-17)
460
+ ## [0.0.1-next.33](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.1-next.32...api-models-v0.0.1-next.33) (2025-04-17)
183
461
 
184
462
 
185
463
  ### Features
186
464
 
187
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
465
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
188
466
 
189
- ## [0.0.1-next.32](https://github.com/twinfoundation/api/compare/api-models-v0.0.1-next.31...api-models-v0.0.1-next.32) (2025-03-28)
467
+ ## [0.0.1-next.32](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.1-next.31...api-models-v0.0.1-next.32) (2025-03-28)
190
468
 
191
469
 
192
470
  ### Miscellaneous Chores