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