@twin.org/api-models 0.0.3-next.9 → 0.9.0-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) 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 +23 -15
  7. package/dist/es/helpers/httpErrorHelper.js.map +1 -1
  8. package/dist/es/helpers/httpUrlHelper.js +141 -0
  9. package/dist/es/helpers/httpUrlHelper.js.map +1 -0
  10. package/dist/es/index.js +11 -5
  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.map +1 -1
  14. package/dist/es/models/api/IServerReadyzResponse.js +2 -0
  15. package/dist/es/models/api/IServerReadyzResponse.js.map +1 -0
  16. package/dist/es/models/config/IBaseRestClientConfig.js.map +1 -1
  17. package/dist/es/models/httpContextIdKeys.js +33 -0
  18. package/dist/es/models/httpContextIdKeys.js.map +1 -0
  19. package/dist/es/models/protocol/IHttpServerRequest.js.map +1 -1
  20. package/dist/es/models/responses/errors/IConflictResponse.js.map +1 -1
  21. package/dist/es/models/responses/errors/INotImplementedResponse.js +2 -0
  22. package/dist/es/models/responses/errors/INotImplementedResponse.js.map +1 -0
  23. package/dist/es/models/responses/errors/ITooManyRequestsResponse.js +2 -0
  24. package/dist/es/models/responses/errors/ITooManyRequestsResponse.js.map +1 -0
  25. package/dist/es/models/routes/IBaseRoute.js.map +1 -1
  26. package/dist/es/models/server/IBaseRouteProcessor.js.map +1 -1
  27. package/dist/es/models/server/IRestRouteProcessor.js.map +1 -1
  28. package/dist/es/models/server/ISocketRouteProcessor.js.map +1 -1
  29. package/dist/es/models/server/IWebServer.js.map +1 -1
  30. package/dist/es/models/server/IWebServerOptions.js.map +1 -1
  31. package/dist/es/models/services/IHealthComponent.js +2 -0
  32. package/dist/es/models/services/IHealthComponent.js.map +1 -0
  33. package/dist/es/models/services/IInformationComponent.js.map +1 -1
  34. package/dist/es/models/services/IPlatformComponent.js +2 -0
  35. package/dist/es/models/services/IPlatformComponent.js.map +1 -0
  36. package/dist/es/models/services/ITenant.js +4 -0
  37. package/dist/es/models/services/ITenant.js.map +1 -0
  38. package/dist/es/models/services/ITenantAdminComponent.js +2 -0
  39. package/dist/es/models/services/ITenantAdminComponent.js.map +1 -0
  40. package/dist/types/errors/forbiddenError.d.ts +20 -0
  41. package/dist/types/errors/tooManyRequestsError.d.ts +22 -0
  42. package/dist/types/helpers/httpErrorHelper.d.ts +6 -0
  43. package/dist/types/helpers/httpUrlHelper.d.ts +70 -0
  44. package/dist/types/index.d.ts +11 -5
  45. package/dist/types/models/api/IServerHealthResponse.d.ts +6 -3
  46. package/dist/types/models/api/IServerLivezResponse.d.ts +1 -1
  47. package/dist/types/models/api/IServerReadyzResponse.d.ts +16 -0
  48. package/dist/types/models/config/IBaseRestClientConfig.d.ts +16 -0
  49. package/dist/types/models/httpContextIdKeys.d.ts +33 -0
  50. package/dist/types/models/protocol/IHttpServerRequest.d.ts +4 -4
  51. package/dist/types/models/responses/errors/IConflictResponse.d.ts +1 -6
  52. package/dist/types/models/responses/errors/INotImplementedResponse.d.ts +15 -0
  53. package/dist/types/models/responses/errors/ITooManyRequestsResponse.d.ts +15 -0
  54. package/dist/types/models/routes/IBaseRoute.d.ts +4 -0
  55. package/dist/types/models/server/IBaseRouteProcessor.d.ts +10 -4
  56. package/dist/types/models/server/IRestRouteProcessor.d.ts +5 -2
  57. package/dist/types/models/server/IWebServer.d.ts +10 -4
  58. package/dist/types/models/server/IWebServerOptions.d.ts +5 -0
  59. package/dist/types/models/services/IHealthComponent.d.ts +14 -0
  60. package/dist/types/models/services/IInformationComponent.d.ts +9 -23
  61. package/dist/types/models/services/IPlatformComponent.d.ts +24 -0
  62. package/dist/types/models/services/ITenant.d.ts +37 -0
  63. package/dist/types/models/services/ITenantAdminComponent.d.ts +70 -0
  64. package/docs/changelog.md +452 -95
  65. package/docs/examples.md +200 -1
  66. package/docs/reference/classes/ForbiddenError.md +55 -0
  67. package/docs/reference/classes/HttpErrorHelper.md +14 -2
  68. package/docs/reference/classes/HttpParameterHelper.md +4 -4
  69. package/docs/reference/classes/HttpUrlHelper.md +259 -0
  70. package/docs/reference/classes/TooManyRequestsError.md +67 -0
  71. package/docs/reference/index.md +12 -6
  72. package/docs/reference/interfaces/IAcceptedResponse.md +2 -2
  73. package/docs/reference/interfaces/IBadRequestResponse.md +2 -2
  74. package/docs/reference/interfaces/IBaseRestClientConfig.md +57 -9
  75. package/docs/reference/interfaces/IBaseRoute.md +18 -10
  76. package/docs/reference/interfaces/IBaseRouteEntryPoint.md +4 -4
  77. package/docs/reference/interfaces/IBaseRouteProcessor.md +21 -13
  78. package/docs/reference/interfaces/IBaseSocketClientConfig.md +7 -7
  79. package/docs/reference/interfaces/IConflictResponse.md +3 -11
  80. package/docs/reference/interfaces/ICreatedResponse.md +2 -2
  81. package/docs/reference/interfaces/IForbiddenResponse.md +2 -2
  82. package/docs/reference/interfaces/IHealthComponent.md +21 -0
  83. package/docs/reference/interfaces/IHttpRequest.md +8 -8
  84. package/docs/reference/interfaces/IHttpRequestContext.md +4 -4
  85. package/docs/reference/interfaces/IHttpRequestPathParams.md +1 -1
  86. package/docs/reference/interfaces/IHttpRequestQuery.md +1 -1
  87. package/docs/reference/interfaces/IHttpResponse.md +6 -6
  88. package/docs/reference/interfaces/IHttpServerRequest.md +14 -14
  89. package/docs/reference/interfaces/IInformationComponent.md +13 -81
  90. package/docs/reference/interfaces/IInternalServerErrorResponse.md +2 -2
  91. package/docs/reference/interfaces/IMimeTypeProcessor.md +2 -2
  92. package/docs/reference/interfaces/INoContentRequest.md +8 -8
  93. package/docs/reference/interfaces/INoContentResponse.md +1 -1
  94. package/docs/reference/interfaces/INotFoundResponse.md +3 -3
  95. package/docs/reference/interfaces/INotImplementedResponse.md +19 -0
  96. package/docs/reference/interfaces/IOkResponse.md +1 -1
  97. package/docs/reference/interfaces/IPlatformComponent.md +65 -0
  98. package/docs/reference/interfaces/IRestRoute.md +36 -24
  99. package/docs/reference/interfaces/IRestRouteExample.md +3 -3
  100. package/docs/reference/interfaces/IRestRouteProcessor.md +31 -19
  101. package/docs/reference/interfaces/IRestRouteRequestExample.md +4 -4
  102. package/docs/reference/interfaces/IRestRouteResponseAttachmentOptions.md +6 -6
  103. package/docs/reference/interfaces/IRestRouteResponseExample.md +4 -4
  104. package/docs/reference/interfaces/IRestRouteResponseOptions.md +2 -2
  105. package/docs/reference/interfaces/IServerFavIconResponse.md +7 -7
  106. package/docs/reference/interfaces/IServerHealthResponse.md +11 -3
  107. package/docs/reference/interfaces/IServerInfo.md +2 -2
  108. package/docs/reference/interfaces/IServerInfoResponse.md +1 -1
  109. package/docs/reference/interfaces/IServerLivezResponse.md +3 -3
  110. package/docs/reference/interfaces/IServerReadyzResponse.md +23 -0
  111. package/docs/reference/interfaces/IServerRootResponse.md +2 -2
  112. package/docs/reference/interfaces/IServerSpecResponse.md +4 -4
  113. package/docs/reference/interfaces/ISocketRequestContext.md +5 -5
  114. package/docs/reference/interfaces/ISocketRoute.md +27 -15
  115. package/docs/reference/interfaces/ISocketRouteProcessor.md +30 -22
  116. package/docs/reference/interfaces/ISocketServerRequest.md +17 -17
  117. package/docs/reference/interfaces/ITag.md +2 -2
  118. package/docs/reference/interfaces/ITenant.md +67 -0
  119. package/docs/reference/interfaces/ITenantAdminComponent.md +227 -0
  120. package/docs/reference/interfaces/ITooManyRequestsResponse.md +19 -0
  121. package/docs/reference/interfaces/IUnauthorizedResponse.md +2 -2
  122. package/docs/reference/interfaces/IUnprocessableEntityResponse.md +2 -2
  123. package/docs/reference/interfaces/IWebServer.md +37 -7
  124. package/docs/reference/interfaces/IWebServerOptions.md +21 -12
  125. package/docs/reference/type-aliases/HttpContextIdKeys.md +5 -0
  126. package/docs/reference/variables/HttpContextIdKeys.md +43 -0
  127. package/package.json +9 -8
  128. package/dist/es/factories/authenticationGeneratorFactory.js +0 -9
  129. package/dist/es/factories/authenticationGeneratorFactory.js.map +0 -1
  130. package/dist/es/models/client/IAuthenticationGenerator.js +0 -2
  131. package/dist/es/models/client/IAuthenticationGenerator.js.map +0 -1
  132. package/dist/es/models/services/IHealthComponentInfo.js +0 -2
  133. package/dist/es/models/services/IHealthComponentInfo.js.map +0 -1
  134. package/dist/es/models/services/IHealthInfo.js +0 -2
  135. package/dist/es/models/services/IHealthInfo.js.map +0 -1
  136. package/dist/es/models/services/healthStatus.js +0 -21
  137. package/dist/es/models/services/healthStatus.js.map +0 -1
  138. package/dist/types/factories/authenticationGeneratorFactory.d.ts +0 -6
  139. package/dist/types/models/client/IAuthenticationGenerator.d.ts +0 -14
  140. package/dist/types/models/services/IHealthComponentInfo.d.ts +0 -18
  141. package/dist/types/models/services/IHealthInfo.d.ts +0 -15
  142. package/dist/types/models/services/healthStatus.d.ts +0 -21
  143. package/docs/reference/interfaces/IAuthenticationGenerator.md +0 -35
  144. package/docs/reference/interfaces/IHealthComponentInfo.md +0 -27
  145. package/docs/reference/interfaces/IHealthInfo.md +0 -19
  146. package/docs/reference/type-aliases/HealthStatus.md +0 -5
  147. package/docs/reference/variables/AuthenticationGeneratorFactory.md +0 -5
  148. package/docs/reference/variables/HealthStatus.md +0 -25
package/docs/changelog.md CHANGED
@@ -1,246 +1,603 @@
1
- # @twin.org/api-models - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.9](https://github.com/twinfoundation/api/compare/api-models-v0.0.3-next.8...api-models-v0.0.3-next.9) (2026-01-05)
3
+ ## [0.9.0-next.1](https://github.com/iotaledger/twin-api/compare/api-models-v0.9.0-next.0...api-models-v0.9.0-next.1) (2026-06-23)
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 livez endpoint ([#57](https://github.com/twinfoundation/api/issues/57)) ([ef007db](https://github.com/twinfoundation/api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
11
- * add logging component type to request contexts ([210de1b](https://github.com/twinfoundation/api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
12
- * add root, favicon routes ([71da1c3](https://github.com/twinfoundation/api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
13
- * add socket id, connect and disconnect ([20b0d0e](https://github.com/twinfoundation/api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
14
- * add validate-locales ([cdba610](https://github.com/twinfoundation/api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
15
- * decodeURIComponent for query and path params ([ead68a2](https://github.com/twinfoundation/api/commit/ead68a257425c10dd912497f7edd473c469ca132))
16
- * eslint migration to flat config ([0dd5820](https://github.com/twinfoundation/api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
17
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
18
- * update framework core ([d8eebf2](https://github.com/twinfoundation/api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
19
- * update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
20
- * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/twinfoundation/api/commit/6452b153af786eee14b21152420f8a2578b70593))
21
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
22
- * validationError mapped to http status badrequest ([adc5eb1](https://github.com/twinfoundation/api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
8
+ * add authentication generators and process features option ([a67edf1](https://github.com/iotaledger/twin-api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
9
+ * add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
10
+ * add getLocalOriginContext ([bd3162f](https://github.com/iotaledger/twin-api/commit/bd3162f5b06e22bfb09a95bb9aca40471efe6a64))
11
+ * add livez endpoint ([#57](https://github.com/iotaledger/twin-api/issues/57)) ([ef007db](https://github.com/iotaledger/twin-api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
12
+ * add logging component type to request contexts ([210de1b](https://github.com/iotaledger/twin-api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
13
+ * add new error types ([#86](https://github.com/iotaledger/twin-api/issues/86)) ([71e3c07](https://github.com/iotaledger/twin-api/commit/71e3c07c792984af01c307943e0e09a3ae98710d))
14
+ * add platform isLocalOrigin ([#173](https://github.com/iotaledger/twin-api/issues/173)) ([5e024d5](https://github.com/iotaledger/twin-api/commit/5e024d55c0201a5109ad9c688c0e755fe50cb554))
15
+ * add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
16
+ * add socket id, connect and disconnect ([20b0d0e](https://github.com/iotaledger/twin-api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
17
+ * add tenant component ([#145](https://github.com/iotaledger/twin-api/issues/145)) ([a440c53](https://github.com/iotaledger/twin-api/commit/a440c53f36618946daee7372fe664f8ace341a08))
18
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
19
+ * auth enhancements ([#93](https://github.com/iotaledger/twin-api/issues/93)) ([921a50c](https://github.com/iotaledger/twin-api/commit/921a50cd89d26e530a6be6174a5a803060fa0eb6))
20
+ * decodeURIComponent for query and path params ([ead68a2](https://github.com/iotaledger/twin-api/commit/ead68a257425c10dd912497f7edd473c469ca132))
21
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
22
+ * export error type map ([#68](https://github.com/iotaledger/twin-api/issues/68)) ([697dfc4](https://github.com/iotaledger/twin-api/commit/697dfc4c9f6a7be493bf4b3619d7bcebf2e4584e))
23
+ * hosting service ([#109](https://github.com/iotaledger/twin-api/issues/109)) ([985bf1f](https://github.com/iotaledger/twin-api/commit/985bf1f5c07b09ecb800df7120bc2422ac7a6d25))
24
+ * matches local origin ([#148](https://github.com/iotaledger/twin-api/issues/148)) ([7f6d30c](https://github.com/iotaledger/twin-api/commit/7f6d30c4dd1fe699f6171c41251bb56b803934e5))
25
+ * organization identifiers ([#158](https://github.com/iotaledger/twin-api/issues/158)) ([ce13244](https://github.com/iotaledger/twin-api/commit/ce13244aaacbf82d9e5f87d905e283b36ad63bbf))
26
+ * public base url ([#70](https://github.com/iotaledger/twin-api/issues/70)) ([5b958cd](https://github.com/iotaledger/twin-api/commit/5b958cd91e8a38cdae2835ff5f2356c7e48d37c3))
27
+ * remove authentication generators ([#66](https://github.com/iotaledger/twin-api/issues/66)) ([adaa169](https://github.com/iotaledger/twin-api/commit/adaa1698df1c5ccb0ad645a7a7c0d3ef82ef6ac1))
28
+ * remove hosting component ([#170](https://github.com/iotaledger/twin-api/issues/170)) ([e78c1e8](https://github.com/iotaledger/twin-api/commit/e78c1e87d2747bf58da02b6b77680708ff681122))
29
+ * separate service responsibilities ([#116](https://github.com/iotaledger/twin-api/issues/116)) ([2234648](https://github.com/iotaledger/twin-api/commit/2234648de4a2de5b7356aadde328f40470bc12e3))
30
+ * tenant api and scopes ([#75](https://github.com/iotaledger/twin-api/issues/75)) ([c663141](https://github.com/iotaledger/twin-api/commit/c663141091e8974d769f8f9904ecdab009ebd083))
31
+ * tenant id in jwt ([#140](https://github.com/iotaledger/twin-api/issues/140)) ([8d37a7b](https://github.com/iotaledger/twin-api/commit/8d37a7b98b45fde53df1e909cffc0869aa758655))
32
+ * typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
33
+ * update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
34
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
35
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
36
+ * update health format ([cfbfbbb](https://github.com/iotaledger/twin-api/commit/cfbfbbb2e9afbd2574ffd2446ad51e4217437951))
37
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
38
+ * update public origin building ([6c8e042](https://github.com/iotaledger/twin-api/commit/6c8e0422d9ddbed42a843e1c23498c99977b2fc7))
39
+ * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/iotaledger/twin-api/commit/6452b153af786eee14b21152420f8a2578b70593))
40
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
41
+ * validationError mapped to http status badrequest ([adc5eb1](https://github.com/iotaledger/twin-api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
23
42
 
24
43
 
25
44
  ### Bug Fixes
26
45
 
27
- * error handling make sure primary error takes precedence ([84b61f2](https://github.com/twinfoundation/api/commit/84b61f27fe5e4919c0c9f9a1edc8ff46dc45c1f7))
46
+ * error handling make sure primary error takes precedence ([84b61f2](https://github.com/iotaledger/twin-api/commit/84b61f27fe5e4919c0c9f9a1edc8ff46dc45c1f7))
47
+ * 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))
48
+ * replace duplicate query param instead of appending in addQueryStringParam ([#184](https://github.com/iotaledger/twin-api/issues/184)) ([a4049e3](https://github.com/iotaledger/twin-api/commit/a4049e374493b85cd02804b6d1687d24399b6eff))
49
+ * resolve local origin context by organization routing param ([#180](https://github.com/iotaledger/twin-api/issues/180)) ([bceb9f1](https://github.com/iotaledger/twin-api/commit/bceb9f1b5b68382b7e2f9743ee7b4ea0e3a33f55))
50
+ * throw AlreadyExistsError on duplicate tenant id in create() ([#164](https://github.com/iotaledger/twin-api/issues/164)) ([b69f408](https://github.com/iotaledger/twin-api/commit/b69f408fc06a0599723b048fa4a5053305a06b78))
28
51
 
29
- ## [0.0.3-next.8](https://github.com/twinfoundation/api/compare/api-models-v0.0.3-next.7...api-models-v0.0.3-next.8) (2025-12-17)
52
+ ## [0.0.3-next.53](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.52...api-models-v0.0.3-next.53) (2026-06-23)
30
53
 
31
54
 
32
55
  ### Miscellaneous Chores
33
56
 
34
57
  * **api-models:** Synchronize repo versions
35
58
 
36
- ## [0.0.3-next.7](https://github.com/twinfoundation/api/compare/api-models-v0.0.3-next.6...api-models-v0.0.3-next.7) (2025-11-26)
59
+ ## [0.0.3-next.52](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.51...api-models-v0.0.3-next.52) (2026-06-22)
37
60
 
38
61
 
39
62
  ### Bug Fixes
40
63
 
41
- * error handling make sure primary error takes precedence ([84b61f2](https://github.com/twinfoundation/api/commit/84b61f27fe5e4919c0c9f9a1edc8ff46dc45c1f7))
64
+ * replace duplicate query param instead of appending in addQueryStringParam ([#184](https://github.com/iotaledger/twin-api/issues/184)) ([a4049e3](https://github.com/iotaledger/twin-api/commit/a4049e374493b85cd02804b6d1687d24399b6eff))
42
65
 
43
- ## [0.0.3-next.6](https://github.com/twinfoundation/api/compare/api-models-v0.0.3-next.5...api-models-v0.0.3-next.6) (2025-11-20)
66
+ ## [0.0.3-next.51](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.50...api-models-v0.0.3-next.51) (2026-06-20)
67
+
68
+
69
+ ### Bug Fixes
70
+
71
+ * resolve local origin context by organization routing param ([#180](https://github.com/iotaledger/twin-api/issues/180)) ([bceb9f1](https://github.com/iotaledger/twin-api/commit/bceb9f1b5b68382b7e2f9743ee7b4ea0e3a33f55))
72
+
73
+ ## [0.0.3-next.50](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.49...api-models-v0.0.3-next.50) (2026-06-19)
74
+
75
+
76
+ ### Miscellaneous Chores
77
+
78
+ * **api-models:** Synchronize repo versions
79
+
80
+ ## [0.0.3-next.49](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.48...api-models-v0.0.3-next.49) (2026-06-19)
81
+
82
+
83
+ ### Features
84
+
85
+ * add getLocalOriginContext ([bd3162f](https://github.com/iotaledger/twin-api/commit/bd3162f5b06e22bfb09a95bb9aca40471efe6a64))
86
+
87
+ ## [0.0.3-next.48](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.47...api-models-v0.0.3-next.48) (2026-06-19)
88
+
89
+
90
+ ### Features
91
+
92
+ * add platform isLocalOrigin ([#173](https://github.com/iotaledger/twin-api/issues/173)) ([5e024d5](https://github.com/iotaledger/twin-api/commit/5e024d55c0201a5109ad9c688c0e755fe50cb554))
93
+
94
+ ## [0.0.3-next.47](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.46...api-models-v0.0.3-next.47) (2026-06-18)
95
+
96
+
97
+ ### Features
98
+
99
+ * remove hosting component ([#170](https://github.com/iotaledger/twin-api/issues/170)) ([e78c1e8](https://github.com/iotaledger/twin-api/commit/e78c1e87d2747bf58da02b6b77680708ff681122))
100
+
101
+ ## [0.0.3-next.46](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.45...api-models-v0.0.3-next.46) (2026-06-17)
102
+
103
+
104
+ ### Miscellaneous Chores
105
+
106
+ * **api-models:** Synchronize repo versions
107
+
108
+ ## [0.0.3-next.45](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.44...api-models-v0.0.3-next.45) (2026-06-15)
109
+
110
+
111
+ ### Bug Fixes
112
+
113
+ * throw AlreadyExistsError on duplicate tenant id in create() ([#164](https://github.com/iotaledger/twin-api/issues/164)) ([b69f408](https://github.com/iotaledger/twin-api/commit/b69f408fc06a0599723b048fa4a5053305a06b78))
114
+
115
+ ## [0.0.3-next.44](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.43...api-models-v0.0.3-next.44) (2026-06-11)
116
+
117
+
118
+ ### Features
119
+
120
+ * organization identifiers ([#158](https://github.com/iotaledger/twin-api/issues/158)) ([ce13244](https://github.com/iotaledger/twin-api/commit/ce13244aaacbf82d9e5f87d905e283b36ad63bbf))
121
+
122
+ ## [0.0.3-next.43](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.42...api-models-v0.0.3-next.43) (2026-06-10)
123
+
124
+
125
+ ### Miscellaneous Chores
126
+
127
+ * **api-models:** Synchronize repo versions
128
+
129
+ ## [0.0.3-next.42](https://github.com/iotaledger/twin-api/compare/api-models-v0.0.3-next.41...api-models-v0.0.3-next.42) (2026-06-08)
130
+
131
+
132
+ ### Miscellaneous Chores
133
+
134
+ * **api-models:** Synchronize repo versions
135
+
136
+ ## [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)
137
+
138
+
139
+ ### Features
140
+
141
+ * matches local origin ([#148](https://github.com/iotaledger/twin-api/issues/148)) ([7f6d30c](https://github.com/iotaledger/twin-api/commit/7f6d30c4dd1fe699f6171c41251bb56b803934e5))
142
+
143
+ ## [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)
144
+
145
+
146
+ ### Features
147
+
148
+ * add tenant component ([#145](https://github.com/iotaledger/twin-api/issues/145)) ([a440c53](https://github.com/iotaledger/twin-api/commit/a440c53f36618946daee7372fe664f8ace341a08))
149
+
150
+ ## [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)
151
+
152
+
153
+ ### Features
154
+
155
+ * tenant id in jwt ([#140](https://github.com/iotaledger/twin-api/issues/140)) ([8d37a7b](https://github.com/iotaledger/twin-api/commit/8d37a7b98b45fde53df1e909cffc0869aa758655))
156
+
157
+ ## [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)
158
+
159
+
160
+ ### Miscellaneous Chores
161
+
162
+ * **api-models:** Synchronize repo versions
163
+
164
+ ## [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)
165
+
166
+
167
+ ### Miscellaneous Chores
168
+
169
+ * **api-models:** Synchronize repo versions
170
+
171
+ ## [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)
172
+
173
+
174
+ ### Miscellaneous Chores
175
+
176
+ * **api-models:** Synchronize repo versions
177
+
178
+ ## [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)
179
+
180
+
181
+ ### Miscellaneous Chores
182
+
183
+ * **api-models:** Synchronize repo versions
184
+
185
+ ## [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)
186
+
187
+
188
+ ### Features
189
+
190
+ * update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
191
+
192
+ ## [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)
193
+
194
+
195
+ ### Features
196
+
197
+ * typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
198
+
199
+ ## [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)
200
+
201
+
202
+ ### Miscellaneous Chores
203
+
204
+ * **api-models:** Synchronize repo versions
205
+
206
+ ## [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)
207
+
208
+
209
+ ### Features
210
+
211
+ * update health format ([cfbfbbb](https://github.com/iotaledger/twin-api/commit/cfbfbbb2e9afbd2574ffd2446ad51e4217437951))
212
+
213
+ ## [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)
214
+
215
+
216
+ ### Features
217
+
218
+ * separate service responsibilities ([#116](https://github.com/iotaledger/twin-api/issues/116)) ([2234648](https://github.com/iotaledger/twin-api/commit/2234648de4a2de5b7356aadde328f40470bc12e3))
219
+
220
+ ## [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)
221
+
222
+
223
+ ### Features
224
+
225
+ * hosting service ([#109](https://github.com/iotaledger/twin-api/issues/109)) ([985bf1f](https://github.com/iotaledger/twin-api/commit/985bf1f5c07b09ecb800df7120bc2422ac7a6d25))
226
+
227
+ ## [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)
228
+
229
+
230
+ ### Miscellaneous Chores
231
+
232
+ * **api-models:** Synchronize repo versions
233
+
234
+ ## [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)
235
+
236
+
237
+ ### Miscellaneous Chores
238
+
239
+ * **api-models:** Synchronize repo versions
240
+
241
+ ## [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)
242
+
243
+
244
+ ### Bug Fixes
245
+
246
+ * 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))
247
+
248
+ ## [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)
249
+
250
+
251
+ ### Miscellaneous Chores
252
+
253
+ * **api-models:** Synchronize repo versions
254
+
255
+ ## [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)
256
+
257
+
258
+ ### Miscellaneous Chores
259
+
260
+ * **api-models:** Synchronize repo versions
261
+
262
+ ## [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)
263
+
264
+
265
+ ### Features
266
+
267
+ * auth enhancements ([#93](https://github.com/iotaledger/twin-api/issues/93)) ([921a50c](https://github.com/iotaledger/twin-api/commit/921a50cd89d26e530a6be6174a5a803060fa0eb6))
268
+
269
+ ## [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)
270
+
271
+
272
+ ### Features
273
+
274
+ * add new error types ([#86](https://github.com/iotaledger/twin-api/issues/86)) ([71e3c07](https://github.com/iotaledger/twin-api/commit/71e3c07c792984af01c307943e0e09a3ae98710d))
275
+
276
+ ## [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)
277
+
278
+
279
+ ### Miscellaneous Chores
280
+
281
+ * **api-models:** Synchronize repo versions
282
+
283
+ ## [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)
284
+
285
+
286
+ ### Miscellaneous Chores
287
+
288
+ * **api-models:** Synchronize repo versions
289
+
290
+ ## [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)
291
+
292
+
293
+ ### Miscellaneous Chores
294
+
295
+ * **api-models:** Synchronize repo versions
296
+
297
+ ## [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)
298
+
299
+
300
+ ### Features
301
+
302
+ * tenant api and scopes ([#75](https://github.com/iotaledger/twin-api/issues/75)) ([c663141](https://github.com/iotaledger/twin-api/commit/c663141091e8974d769f8f9904ecdab009ebd083))
303
+
304
+ ## [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)
305
+
306
+
307
+ ### Features
308
+
309
+ * update public origin building ([6c8e042](https://github.com/iotaledger/twin-api/commit/6c8e0422d9ddbed42a843e1c23498c99977b2fc7))
310
+
311
+ ## [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)
312
+
313
+
314
+ ### Features
315
+
316
+ * public base url ([#70](https://github.com/iotaledger/twin-api/issues/70)) ([5b958cd](https://github.com/iotaledger/twin-api/commit/5b958cd91e8a38cdae2835ff5f2356c7e48d37c3))
317
+
318
+ ## [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)
319
+
320
+
321
+ ### Miscellaneous Chores
322
+
323
+ * **api-models:** Synchronize repo versions
324
+
325
+ ## [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)
326
+
327
+
328
+ ### Features
329
+
330
+ * export error type map ([#68](https://github.com/iotaledger/twin-api/issues/68)) ([697dfc4](https://github.com/iotaledger/twin-api/commit/697dfc4c9f6a7be493bf4b3619d7bcebf2e4584e))
331
+
332
+ ## [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)
333
+
334
+
335
+ ### Features
336
+
337
+ * remove authentication generators ([#66](https://github.com/iotaledger/twin-api/issues/66)) ([adaa169](https://github.com/iotaledger/twin-api/commit/adaa1698df1c5ccb0ad645a7a7c0d3ef82ef6ac1))
338
+
339
+ ## [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)
340
+
341
+
342
+ ### Miscellaneous Chores
343
+
344
+ * **api-models:** Synchronize repo versions
345
+
346
+ ## [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)
347
+
348
+
349
+ ### Miscellaneous Chores
350
+
351
+ * **api-models:** Synchronize repo versions
352
+
353
+ ## [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)
354
+
355
+
356
+ ### Miscellaneous Chores
357
+
358
+ * **api-models:** Synchronize repo versions
359
+
360
+ ## [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)
361
+
362
+
363
+ ### Features
364
+
365
+ * add authentication generators and process features option ([a67edf1](https://github.com/iotaledger/twin-api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
366
+ * add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
367
+ * add livez endpoint ([#57](https://github.com/iotaledger/twin-api/issues/57)) ([ef007db](https://github.com/iotaledger/twin-api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
368
+ * add logging component type to request contexts ([210de1b](https://github.com/iotaledger/twin-api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
369
+ * add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
370
+ * add socket id, connect and disconnect ([20b0d0e](https://github.com/iotaledger/twin-api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
371
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
372
+ * decodeURIComponent for query and path params ([ead68a2](https://github.com/iotaledger/twin-api/commit/ead68a257425c10dd912497f7edd473c469ca132))
373
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
374
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
375
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
376
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
377
+ * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/iotaledger/twin-api/commit/6452b153af786eee14b21152420f8a2578b70593))
378
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
379
+ * validationError mapped to http status badrequest ([adc5eb1](https://github.com/iotaledger/twin-api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
380
+
381
+
382
+ ### Bug Fixes
383
+
384
+ * error handling make sure primary error takes precedence ([84b61f2](https://github.com/iotaledger/twin-api/commit/84b61f27fe5e4919c0c9f9a1edc8ff46dc45c1f7))
385
+
386
+ ## [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)
387
+
388
+
389
+ ### Miscellaneous Chores
390
+
391
+ * **api-models:** Synchronize repo versions
392
+
393
+ ## [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)
394
+
395
+
396
+ ### Bug Fixes
397
+
398
+ * error handling make sure primary error takes precedence ([84b61f2](https://github.com/iotaledger/twin-api/commit/84b61f27fe5e4919c0c9f9a1edc8ff46dc45c1f7))
399
+
400
+ ## [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)
44
401
 
45
402
 
46
403
  ### Miscellaneous Chores
47
404
 
48
405
  * **api-models:** Synchronize repo versions
49
406
 
50
- ## [0.0.3-next.5](https://github.com/twinfoundation/api/compare/api-models-v0.0.3-next.4...api-models-v0.0.3-next.5) (2025-11-14)
407
+ ## [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)
51
408
 
52
409
 
53
410
  ### Features
54
411
 
55
- * decodeURIComponent for query and path params ([ead68a2](https://github.com/twinfoundation/api/commit/ead68a257425c10dd912497f7edd473c469ca132))
412
+ * decodeURIComponent for query and path params ([ead68a2](https://github.com/iotaledger/twin-api/commit/ead68a257425c10dd912497f7edd473c469ca132))
56
413
 
57
- ## [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)
414
+ ## [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)
58
415
 
59
416
 
60
417
  ### Features
61
418
 
62
- * add authentication generators and process features option ([a67edf1](https://github.com/twinfoundation/api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
63
- * add context id features ([#42](https://github.com/twinfoundation/api/issues/42)) ([0186055](https://github.com/twinfoundation/api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
64
- * add logging component type to request contexts ([210de1b](https://github.com/twinfoundation/api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
65
- * add root, favicon routes ([71da1c3](https://github.com/twinfoundation/api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
66
- * add socket id, connect and disconnect ([20b0d0e](https://github.com/twinfoundation/api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
67
- * add validate-locales ([cdba610](https://github.com/twinfoundation/api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
68
- * eslint migration to flat config ([0dd5820](https://github.com/twinfoundation/api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
69
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
70
- * update framework core ([d8eebf2](https://github.com/twinfoundation/api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
71
- * update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
72
- * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/twinfoundation/api/commit/6452b153af786eee14b21152420f8a2578b70593))
73
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
74
- * validationError mapped to http status badrequest ([adc5eb1](https://github.com/twinfoundation/api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
419
+ * add authentication generators and process features option ([a67edf1](https://github.com/iotaledger/twin-api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
420
+ * add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
421
+ * add logging component type to request contexts ([210de1b](https://github.com/iotaledger/twin-api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
422
+ * add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
423
+ * add socket id, connect and disconnect ([20b0d0e](https://github.com/iotaledger/twin-api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
424
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
425
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
426
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
427
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
428
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
429
+ * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/iotaledger/twin-api/commit/6452b153af786eee14b21152420f8a2578b70593))
430
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
431
+ * validationError mapped to http status badrequest ([adc5eb1](https://github.com/iotaledger/twin-api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
75
432
 
76
- ## [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)
433
+ ## [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)
77
434
 
78
435
 
79
436
  ### Miscellaneous Chores
80
437
 
81
438
  * **api-models:** Synchronize repo versions
82
439
 
83
- ## [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)
440
+ ## [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)
84
441
 
85
442
 
86
443
  ### Miscellaneous Chores
87
444
 
88
445
  * **api-models:** Synchronize repo versions
89
446
 
90
- ## [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)
447
+ ## [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)
91
448
 
92
449
 
93
450
  ### Features
94
451
 
95
- * add authentication generators and process features option ([a67edf1](https://github.com/twinfoundation/api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
96
- * add context id features ([#42](https://github.com/twinfoundation/api/issues/42)) ([0186055](https://github.com/twinfoundation/api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
97
- * add logging component type to request contexts ([210de1b](https://github.com/twinfoundation/api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
98
- * add root, favicon routes ([71da1c3](https://github.com/twinfoundation/api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
99
- * add socket id, connect and disconnect ([20b0d0e](https://github.com/twinfoundation/api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
100
- * add validate-locales ([cdba610](https://github.com/twinfoundation/api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
101
- * eslint migration to flat config ([0dd5820](https://github.com/twinfoundation/api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
102
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
103
- * update framework core ([d8eebf2](https://github.com/twinfoundation/api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
104
- * update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
105
- * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/twinfoundation/api/commit/6452b153af786eee14b21152420f8a2578b70593))
106
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
107
- * validationError mapped to http status badrequest ([adc5eb1](https://github.com/twinfoundation/api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
452
+ * add authentication generators and process features option ([a67edf1](https://github.com/iotaledger/twin-api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
453
+ * add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
454
+ * add logging component type to request contexts ([210de1b](https://github.com/iotaledger/twin-api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
455
+ * add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
456
+ * add socket id, connect and disconnect ([20b0d0e](https://github.com/iotaledger/twin-api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
457
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
458
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
459
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
460
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
461
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
462
+ * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/iotaledger/twin-api/commit/6452b153af786eee14b21152420f8a2578b70593))
463
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
464
+ * validationError mapped to http status badrequest ([adc5eb1](https://github.com/iotaledger/twin-api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
108
465
 
109
- ## [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)
466
+ ## [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)
110
467
 
111
468
 
112
469
  ### Miscellaneous Chores
113
470
 
114
471
  * **api-models:** Synchronize repo versions
115
472
 
116
- ## [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)
473
+ ## [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)
117
474
 
118
475
 
119
476
  ### Features
120
477
 
121
- * add validate-locales ([cdba610](https://github.com/twinfoundation/api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
478
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
122
479
 
123
- ## [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)
480
+ ## [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)
124
481
 
125
482
 
126
483
  ### Features
127
484
 
128
- * update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
485
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
129
486
 
130
- ## [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)
487
+ ## [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)
131
488
 
132
489
 
133
490
  ### Features
134
491
 
135
- * add authentication generators and process features option ([a67edf1](https://github.com/twinfoundation/api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
492
+ * add authentication generators and process features option ([a67edf1](https://github.com/iotaledger/twin-api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
136
493
 
137
- ## [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)
494
+ ## [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)
138
495
 
139
496
 
140
497
  ### Features
141
498
 
142
- * eslint migration to flat config ([0dd5820](https://github.com/twinfoundation/api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
499
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
143
500
 
144
- ## [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)
501
+ ## [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)
145
502
 
146
503
 
147
504
  ### Features
148
505
 
149
- * add root, favicon routes ([71da1c3](https://github.com/twinfoundation/api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
506
+ * add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
150
507
 
151
- ## [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)
508
+ ## [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)
152
509
 
153
510
 
154
511
  ### Miscellaneous Chores
155
512
 
156
513
  * **api-models:** Synchronize repo versions
157
514
 
158
- ## [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)
515
+ ## [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)
159
516
 
160
517
 
161
518
  ### Features
162
519
 
163
- * update framework core ([d8eebf2](https://github.com/twinfoundation/api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
520
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
164
521
 
165
- ## [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)
522
+ ## [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)
166
523
 
167
524
 
168
525
  ### Features
169
526
 
170
- * add logging component type to request contexts ([210de1b](https://github.com/twinfoundation/api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
171
- * add socket id, connect and disconnect ([20b0d0e](https://github.com/twinfoundation/api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
172
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
173
- * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/twinfoundation/api/commit/6452b153af786eee14b21152420f8a2578b70593))
174
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
175
- * validationError mapped to http status badrequest ([adc5eb1](https://github.com/twinfoundation/api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
527
+ * add logging component type to request contexts ([210de1b](https://github.com/iotaledger/twin-api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
528
+ * add socket id, connect and disconnect ([20b0d0e](https://github.com/iotaledger/twin-api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
529
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
530
+ * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/iotaledger/twin-api/commit/6452b153af786eee14b21152420f8a2578b70593))
531
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
532
+ * validationError mapped to http status badrequest ([adc5eb1](https://github.com/iotaledger/twin-api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
176
533
 
177
- ## [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)
534
+ ## [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)
178
535
 
179
536
 
180
537
  ### Features
181
538
 
182
- * add logging component type to request contexts ([210de1b](https://github.com/twinfoundation/api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
539
+ * add logging component type to request contexts ([210de1b](https://github.com/iotaledger/twin-api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
183
540
 
184
- ## [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)
541
+ ## [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)
185
542
 
186
543
 
187
544
  ### Features
188
545
 
189
- * add socket id, connect and disconnect ([20b0d0e](https://github.com/twinfoundation/api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
546
+ * add socket id, connect and disconnect ([20b0d0e](https://github.com/iotaledger/twin-api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
190
547
 
191
- ## [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)
548
+ ## [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)
192
549
 
193
550
 
194
551
  ### Miscellaneous Chores
195
552
 
196
553
  * **api-models:** Synchronize repo versions
197
554
 
198
- ## [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)
555
+ ## [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)
199
556
 
200
557
 
201
558
  ### Features
202
559
 
203
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
204
- * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/twinfoundation/api/commit/6452b153af786eee14b21152420f8a2578b70593))
205
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
206
- * validationError mapped to http status badrequest ([adc5eb1](https://github.com/twinfoundation/api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
560
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
561
+ * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/iotaledger/twin-api/commit/6452b153af786eee14b21152420f8a2578b70593))
562
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
563
+ * validationError mapped to http status badrequest ([adc5eb1](https://github.com/iotaledger/twin-api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
207
564
 
208
565
  ## 0.0.1 (2025-07-03)
209
566
 
210
567
 
211
568
  ### Features
212
569
 
213
- * release to production ([70ee2d5](https://github.com/twinfoundation/api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
570
+ * release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
214
571
 
215
- ## [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)
572
+ ## [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)
216
573
 
217
574
 
218
575
  ### Features
219
576
 
220
- * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/twinfoundation/api/commit/6452b153af786eee14b21152420f8a2578b70593))
577
+ * use new includeStackTrace flag for toJsonObject ([6452b15](https://github.com/iotaledger/twin-api/commit/6452b153af786eee14b21152420f8a2578b70593))
221
578
 
222
- ## [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)
579
+ ## [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)
223
580
 
224
581
 
225
582
  ### Features
226
583
 
227
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
584
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
228
585
 
229
- ## [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)
586
+ ## [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)
230
587
 
231
588
 
232
589
  ### Features
233
590
 
234
- * validationError mapped to http status badrequest ([adc5eb1](https://github.com/twinfoundation/api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
591
+ * validationError mapped to http status badrequest ([adc5eb1](https://github.com/iotaledger/twin-api/commit/adc5eb11d987abb0ab9f7e0dc8e1fdae207e436e))
235
592
 
236
- ## [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)
593
+ ## [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)
237
594
 
238
595
 
239
596
  ### Features
240
597
 
241
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
598
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
242
599
 
243
- ## [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)
600
+ ## [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)
244
601
 
245
602
 
246
603
  ### Miscellaneous Chores