@twin.org/api-service 0.0.3-next.8 → 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.
- package/README.md +1 -1
- package/dist/es/healthRoutes.js +107 -0
- package/dist/es/healthRoutes.js.map +1 -0
- package/dist/es/healthService.js +155 -0
- package/dist/es/healthService.js.map +1 -0
- package/dist/es/index.js +7 -0
- package/dist/es/index.js.map +1 -1
- package/dist/es/informationRoutes.js +92 -62
- package/dist/es/informationRoutes.js.map +1 -1
- package/dist/es/informationService.js +13 -59
- package/dist/es/informationService.js.map +1 -1
- package/dist/es/models/IHealthServiceConfig.js +4 -0
- package/dist/es/models/IHealthServiceConfig.js.map +1 -0
- package/dist/es/models/IHealthServiceConstructorOptions.js +2 -0
- package/dist/es/models/IHealthServiceConstructorOptions.js.map +1 -0
- package/dist/es/models/IPlatformServiceConfig.js +4 -0
- package/dist/es/models/IPlatformServiceConfig.js.map +1 -0
- package/dist/es/models/IPlatformServiceConstructorOptions.js +2 -0
- package/dist/es/models/IPlatformServiceConstructorOptions.js.map +1 -0
- package/dist/es/platformService.js +155 -0
- package/dist/es/platformService.js.map +1 -0
- package/dist/es/restEntryPoints.js +10 -0
- package/dist/es/restEntryPoints.js.map +1 -1
- package/dist/types/healthRoutes.d.ts +20 -0
- package/dist/types/healthService.d.ts +42 -0
- package/dist/types/index.d.ts +7 -0
- package/dist/types/informationRoutes.d.ts +11 -3
- package/dist/types/informationService.d.ts +12 -17
- package/dist/types/models/IHealthServiceConfig.d.ts +16 -0
- package/dist/types/models/IHealthServiceConstructorOptions.d.ts +10 -0
- package/dist/types/models/IPlatformServiceConfig.d.ts +10 -0
- package/dist/types/models/IPlatformServiceConstructorOptions.d.ts +15 -0
- package/dist/types/platformService.d.ts +39 -0
- package/dist/types/restEntryPoints.d.ts +3 -0
- package/docs/changelog.md +752 -59
- package/docs/examples.md +74 -1
- package/docs/reference/classes/HealthService.md +123 -0
- package/docs/reference/classes/InformationService.md +20 -66
- package/docs/reference/classes/PlatformService.md +123 -0
- package/docs/reference/functions/generateRestRoutesHealth.md +25 -0
- package/docs/reference/functions/serverLivez.md +31 -0
- package/docs/reference/functions/serverReadyz.md +31 -0
- package/docs/reference/index.md +11 -1
- package/docs/reference/interfaces/IHealthServiceConfig.md +32 -0
- package/docs/reference/interfaces/IHealthServiceConstructorOptions.md +11 -0
- package/docs/reference/interfaces/IInformationServiceConfig.md +5 -5
- package/docs/reference/interfaces/IInformationServiceConstructorOptions.md +1 -1
- package/docs/reference/interfaces/IPlatformServiceConfig.md +17 -0
- package/docs/reference/interfaces/IPlatformServiceConstructorOptions.md +25 -0
- package/docs/reference/variables/restEntryPoints.md +2 -0
- package/docs/reference/variables/tagsHealth.md +5 -0
- package/locales/en.json +7 -1
- package/package.json +13 -8
package/docs/changelog.md
CHANGED
|
@@ -1,6 +1,699 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0
|
|
3
|
+
## [0.9.0-next.1](https://github.com/iotaledger/twin-api/compare/api-service-v0.9.0-next.0...api-service-v0.9.0-next.1) (2026-06-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
9
|
+
* add getLocalOriginContext ([bd3162f](https://github.com/iotaledger/twin-api/commit/bd3162f5b06e22bfb09a95bb9aca40471efe6a64))
|
|
10
|
+
* add initial interval config for health service ([daf0412](https://github.com/iotaledger/twin-api/commit/daf0412cb24d856bd80f2a6eda02f7294677baae))
|
|
11
|
+
* add livez endpoint ([#57](https://github.com/iotaledger/twin-api/issues/57)) ([ef007db](https://github.com/iotaledger/twin-api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
|
|
12
|
+
* add platform isLocalOrigin ([#173](https://github.com/iotaledger/twin-api/issues/173)) ([5e024d5](https://github.com/iotaledger/twin-api/commit/5e024d55c0201a5109ad9c688c0e755fe50cb554))
|
|
13
|
+
* add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
|
|
14
|
+
* add tenant component ([#145](https://github.com/iotaledger/twin-api/issues/145)) ([a440c53](https://github.com/iotaledger/twin-api/commit/a440c53f36618946daee7372fe664f8ace341a08))
|
|
15
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
16
|
+
* avoid overlapping health checks ([35150b8](https://github.com/iotaledger/twin-api/commit/35150b81861cd2911641d0c36cd7dc3dfa5fcb68))
|
|
17
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
18
|
+
* hosting service ([#109](https://github.com/iotaledger/twin-api/issues/109)) ([985bf1f](https://github.com/iotaledger/twin-api/commit/985bf1f5c07b09ecb800df7120bc2422ac7a6d25))
|
|
19
|
+
* matches local origin ([#148](https://github.com/iotaledger/twin-api/issues/148)) ([7f6d30c](https://github.com/iotaledger/twin-api/commit/7f6d30c4dd1fe699f6171c41251bb56b803934e5))
|
|
20
|
+
* organization identifiers ([#158](https://github.com/iotaledger/twin-api/issues/158)) ([ce13244](https://github.com/iotaledger/twin-api/commit/ce13244aaacbf82d9e5f87d905e283b36ad63bbf))
|
|
21
|
+
* public base url ([#70](https://github.com/iotaledger/twin-api/issues/70)) ([5b958cd](https://github.com/iotaledger/twin-api/commit/5b958cd91e8a38cdae2835ff5f2356c7e48d37c3))
|
|
22
|
+
* remove hosting component ([#170](https://github.com/iotaledger/twin-api/issues/170)) ([e78c1e8](https://github.com/iotaledger/twin-api/commit/e78c1e87d2747bf58da02b6b77680708ff681122))
|
|
23
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
24
|
+
* separate service responsibilities ([#116](https://github.com/iotaledger/twin-api/issues/116)) ([2234648](https://github.com/iotaledger/twin-api/commit/2234648de4a2de5b7356aadde328f40470bc12e3))
|
|
25
|
+
* tenant id in jwt ([#140](https://github.com/iotaledger/twin-api/issues/140)) ([8d37a7b](https://github.com/iotaledger/twin-api/commit/8d37a7b98b45fde53df1e909cffc0869aa758655))
|
|
26
|
+
* typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
|
|
27
|
+
* update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
|
|
28
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
29
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
30
|
+
* update health format ([cfbfbbb](https://github.com/iotaledger/twin-api/commit/cfbfbbb2e9afbd2574ffd2446ad51e4217437951))
|
|
31
|
+
* update health service interval defaults ([2c66ae1](https://github.com/iotaledger/twin-api/commit/2c66ae1320acb0c80a0d7cba4e11a00358707dbb))
|
|
32
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
33
|
+
* update public origin building ([6c8e042](https://github.com/iotaledger/twin-api/commit/6c8e0422d9ddbed42a843e1c23498c99977b2fc7))
|
|
34
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
### Bug Fixes
|
|
38
|
+
|
|
39
|
+
* docs ([4d7e1d2](https://github.com/iotaledger/twin-api/commit/4d7e1d265a2b2225ea02409a31989727a0534265))
|
|
40
|
+
* ensure publicOrigin is unique ([1aaf7f5](https://github.com/iotaledger/twin-api/commit/1aaf7f518d1e090e25f38ed335f8d1efa3c69197))
|
|
41
|
+
* 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))
|
|
42
|
+
* 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))
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
### Dependencies
|
|
46
|
+
|
|
47
|
+
* The following workspace dependencies were updated
|
|
48
|
+
* dependencies
|
|
49
|
+
* @twin.org/api-models bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
50
|
+
|
|
51
|
+
## [0.0.3-next.53](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.52...api-service-v0.0.3-next.53) (2026-06-23)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
### Miscellaneous Chores
|
|
55
|
+
|
|
56
|
+
* **api-service:** Synchronize repo versions
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
### Dependencies
|
|
60
|
+
|
|
61
|
+
* The following workspace dependencies were updated
|
|
62
|
+
* dependencies
|
|
63
|
+
* @twin.org/api-models bumped from 0.0.3-next.52 to 0.0.3-next.53
|
|
64
|
+
|
|
65
|
+
## [0.0.3-next.52](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.51...api-service-v0.0.3-next.52) (2026-06-22)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
### Miscellaneous Chores
|
|
69
|
+
|
|
70
|
+
* **api-service:** Synchronize repo versions
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
### Dependencies
|
|
74
|
+
|
|
75
|
+
* The following workspace dependencies were updated
|
|
76
|
+
* dependencies
|
|
77
|
+
* @twin.org/api-models bumped from 0.0.3-next.51 to 0.0.3-next.52
|
|
78
|
+
|
|
79
|
+
## [0.0.3-next.51](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.50...api-service-v0.0.3-next.51) (2026-06-20)
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
### Bug Fixes
|
|
83
|
+
|
|
84
|
+
* 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))
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
### Dependencies
|
|
88
|
+
|
|
89
|
+
* The following workspace dependencies were updated
|
|
90
|
+
* dependencies
|
|
91
|
+
* @twin.org/api-models bumped from 0.0.3-next.50 to 0.0.3-next.51
|
|
92
|
+
|
|
93
|
+
## [0.0.3-next.50](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.49...api-service-v0.0.3-next.50) (2026-06-19)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
### Bug Fixes
|
|
97
|
+
|
|
98
|
+
* ensure publicOrigin is unique ([1aaf7f5](https://github.com/iotaledger/twin-api/commit/1aaf7f518d1e090e25f38ed335f8d1efa3c69197))
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
### Dependencies
|
|
102
|
+
|
|
103
|
+
* The following workspace dependencies were updated
|
|
104
|
+
* dependencies
|
|
105
|
+
* @twin.org/api-models bumped from 0.0.3-next.49 to 0.0.3-next.50
|
|
106
|
+
|
|
107
|
+
## [0.0.3-next.49](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.48...api-service-v0.0.3-next.49) (2026-06-19)
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
### Features
|
|
111
|
+
|
|
112
|
+
* add getLocalOriginContext ([bd3162f](https://github.com/iotaledger/twin-api/commit/bd3162f5b06e22bfb09a95bb9aca40471efe6a64))
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
### Dependencies
|
|
116
|
+
|
|
117
|
+
* The following workspace dependencies were updated
|
|
118
|
+
* dependencies
|
|
119
|
+
* @twin.org/api-models bumped from 0.0.3-next.48 to 0.0.3-next.49
|
|
120
|
+
|
|
121
|
+
## [0.0.3-next.48](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.47...api-service-v0.0.3-next.48) (2026-06-19)
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
### Features
|
|
125
|
+
|
|
126
|
+
* add platform isLocalOrigin ([#173](https://github.com/iotaledger/twin-api/issues/173)) ([5e024d5](https://github.com/iotaledger/twin-api/commit/5e024d55c0201a5109ad9c688c0e755fe50cb554))
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
### Dependencies
|
|
130
|
+
|
|
131
|
+
* The following workspace dependencies were updated
|
|
132
|
+
* dependencies
|
|
133
|
+
* @twin.org/api-models bumped from 0.0.3-next.47 to 0.0.3-next.48
|
|
134
|
+
|
|
135
|
+
## [0.0.3-next.47](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.46...api-service-v0.0.3-next.47) (2026-06-18)
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
### Features
|
|
139
|
+
|
|
140
|
+
* remove hosting component ([#170](https://github.com/iotaledger/twin-api/issues/170)) ([e78c1e8](https://github.com/iotaledger/twin-api/commit/e78c1e87d2747bf58da02b6b77680708ff681122))
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
### Dependencies
|
|
144
|
+
|
|
145
|
+
* The following workspace dependencies were updated
|
|
146
|
+
* dependencies
|
|
147
|
+
* @twin.org/api-models bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
148
|
+
|
|
149
|
+
## [0.0.3-next.46](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.45...api-service-v0.0.3-next.46) (2026-06-17)
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
### Miscellaneous Chores
|
|
153
|
+
|
|
154
|
+
* **api-service:** Synchronize repo versions
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
### Dependencies
|
|
158
|
+
|
|
159
|
+
* The following workspace dependencies were updated
|
|
160
|
+
* dependencies
|
|
161
|
+
* @twin.org/api-models bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
162
|
+
|
|
163
|
+
## [0.0.3-next.45](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.44...api-service-v0.0.3-next.45) (2026-06-15)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
### Bug Fixes
|
|
167
|
+
|
|
168
|
+
* 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))
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
### Dependencies
|
|
172
|
+
|
|
173
|
+
* The following workspace dependencies were updated
|
|
174
|
+
* dependencies
|
|
175
|
+
* @twin.org/api-models bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
176
|
+
|
|
177
|
+
## [0.0.3-next.44](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.43...api-service-v0.0.3-next.44) (2026-06-11)
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
### Features
|
|
181
|
+
|
|
182
|
+
* organization identifiers ([#158](https://github.com/iotaledger/twin-api/issues/158)) ([ce13244](https://github.com/iotaledger/twin-api/commit/ce13244aaacbf82d9e5f87d905e283b36ad63bbf))
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
### Dependencies
|
|
186
|
+
|
|
187
|
+
* The following workspace dependencies were updated
|
|
188
|
+
* dependencies
|
|
189
|
+
* @twin.org/api-models bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
190
|
+
|
|
191
|
+
## [0.0.3-next.43](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.42...api-service-v0.0.3-next.43) (2026-06-10)
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
### Miscellaneous Chores
|
|
195
|
+
|
|
196
|
+
* **api-service:** Synchronize repo versions
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
### Dependencies
|
|
200
|
+
|
|
201
|
+
* The following workspace dependencies were updated
|
|
202
|
+
* dependencies
|
|
203
|
+
* @twin.org/api-models bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
204
|
+
|
|
205
|
+
## [0.0.3-next.42](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.41...api-service-v0.0.3-next.42) (2026-06-08)
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
### Miscellaneous Chores
|
|
209
|
+
|
|
210
|
+
* **api-service:** Synchronize repo versions
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
### Dependencies
|
|
214
|
+
|
|
215
|
+
* The following workspace dependencies were updated
|
|
216
|
+
* dependencies
|
|
217
|
+
* @twin.org/api-models bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
218
|
+
|
|
219
|
+
## [0.0.3-next.41](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.40...api-service-v0.0.3-next.41) (2026-06-05)
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
### Features
|
|
223
|
+
|
|
224
|
+
* matches local origin ([#148](https://github.com/iotaledger/twin-api/issues/148)) ([7f6d30c](https://github.com/iotaledger/twin-api/commit/7f6d30c4dd1fe699f6171c41251bb56b803934e5))
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
### Dependencies
|
|
228
|
+
|
|
229
|
+
* The following workspace dependencies were updated
|
|
230
|
+
* dependencies
|
|
231
|
+
* @twin.org/api-models bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
232
|
+
|
|
233
|
+
## [0.0.3-next.40](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.39...api-service-v0.0.3-next.40) (2026-06-04)
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
### Features
|
|
237
|
+
|
|
238
|
+
* add tenant component ([#145](https://github.com/iotaledger/twin-api/issues/145)) ([a440c53](https://github.com/iotaledger/twin-api/commit/a440c53f36618946daee7372fe664f8ace341a08))
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
### Dependencies
|
|
242
|
+
|
|
243
|
+
* The following workspace dependencies were updated
|
|
244
|
+
* dependencies
|
|
245
|
+
* @twin.org/api-models bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
246
|
+
|
|
247
|
+
## [0.0.3-next.39](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.38...api-service-v0.0.3-next.39) (2026-06-02)
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
### Features
|
|
251
|
+
|
|
252
|
+
* tenant id in jwt ([#140](https://github.com/iotaledger/twin-api/issues/140)) ([8d37a7b](https://github.com/iotaledger/twin-api/commit/8d37a7b98b45fde53df1e909cffc0869aa758655))
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
### Dependencies
|
|
256
|
+
|
|
257
|
+
* The following workspace dependencies were updated
|
|
258
|
+
* dependencies
|
|
259
|
+
* @twin.org/api-models bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
260
|
+
|
|
261
|
+
## [0.0.3-next.38](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.37...api-service-v0.0.3-next.38) (2026-05-28)
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
### Miscellaneous Chores
|
|
265
|
+
|
|
266
|
+
* **api-service:** Synchronize repo versions
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
### Dependencies
|
|
270
|
+
|
|
271
|
+
* The following workspace dependencies were updated
|
|
272
|
+
* dependencies
|
|
273
|
+
* @twin.org/api-models bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
274
|
+
|
|
275
|
+
## [0.0.3-next.37](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.36...api-service-v0.0.3-next.37) (2026-05-22)
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
### Features
|
|
279
|
+
|
|
280
|
+
* add initial interval config for health service ([daf0412](https://github.com/iotaledger/twin-api/commit/daf0412cb24d856bd80f2a6eda02f7294677baae))
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
### Dependencies
|
|
284
|
+
|
|
285
|
+
* The following workspace dependencies were updated
|
|
286
|
+
* dependencies
|
|
287
|
+
* @twin.org/api-models bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
288
|
+
|
|
289
|
+
## [0.0.3-next.36](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.35...api-service-v0.0.3-next.36) (2026-05-22)
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
### Miscellaneous Chores
|
|
293
|
+
|
|
294
|
+
* **api-service:** Synchronize repo versions
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
### Dependencies
|
|
298
|
+
|
|
299
|
+
* The following workspace dependencies were updated
|
|
300
|
+
* dependencies
|
|
301
|
+
* @twin.org/api-models bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
302
|
+
|
|
303
|
+
## [0.0.3-next.35](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.34...api-service-v0.0.3-next.35) (2026-05-21)
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
### Miscellaneous Chores
|
|
307
|
+
|
|
308
|
+
* **api-service:** Synchronize repo versions
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
### Dependencies
|
|
312
|
+
|
|
313
|
+
* The following workspace dependencies were updated
|
|
314
|
+
* dependencies
|
|
315
|
+
* @twin.org/api-models bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
316
|
+
|
|
317
|
+
## [0.0.3-next.34](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.33...api-service-v0.0.3-next.34) (2026-05-19)
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
### Features
|
|
321
|
+
|
|
322
|
+
* update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
### Dependencies
|
|
326
|
+
|
|
327
|
+
* The following workspace dependencies were updated
|
|
328
|
+
* dependencies
|
|
329
|
+
* @twin.org/api-models bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
330
|
+
|
|
331
|
+
## [0.0.3-next.33](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.32...api-service-v0.0.3-next.33) (2026-05-11)
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
### Features
|
|
335
|
+
|
|
336
|
+
* typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
### Bug Fixes
|
|
340
|
+
|
|
341
|
+
* docs ([4d7e1d2](https://github.com/iotaledger/twin-api/commit/4d7e1d265a2b2225ea02409a31989727a0534265))
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
### Dependencies
|
|
345
|
+
|
|
346
|
+
* The following workspace dependencies were updated
|
|
347
|
+
* dependencies
|
|
348
|
+
* @twin.org/api-models bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
349
|
+
|
|
350
|
+
## [0.0.3-next.32](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.31...api-service-v0.0.3-next.32) (2026-05-07)
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
### Features
|
|
354
|
+
|
|
355
|
+
* avoid overlapping health checks ([35150b8](https://github.com/iotaledger/twin-api/commit/35150b81861cd2911641d0c36cd7dc3dfa5fcb68))
|
|
356
|
+
* update health service interval defaults ([2c66ae1](https://github.com/iotaledger/twin-api/commit/2c66ae1320acb0c80a0d7cba4e11a00358707dbb))
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
### Dependencies
|
|
360
|
+
|
|
361
|
+
* The following workspace dependencies were updated
|
|
362
|
+
* dependencies
|
|
363
|
+
* @twin.org/api-models bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
364
|
+
|
|
365
|
+
## [0.0.3-next.31](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.30...api-service-v0.0.3-next.31) (2026-05-06)
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
### Features
|
|
369
|
+
|
|
370
|
+
* update health format ([cfbfbbb](https://github.com/iotaledger/twin-api/commit/cfbfbbb2e9afbd2574ffd2446ad51e4217437951))
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
### Dependencies
|
|
374
|
+
|
|
375
|
+
* The following workspace dependencies were updated
|
|
376
|
+
* dependencies
|
|
377
|
+
* @twin.org/api-models bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
378
|
+
|
|
379
|
+
## [0.0.3-next.30](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.29...api-service-v0.0.3-next.30) (2026-05-05)
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
### Features
|
|
383
|
+
|
|
384
|
+
* separate service responsibilities ([#116](https://github.com/iotaledger/twin-api/issues/116)) ([2234648](https://github.com/iotaledger/twin-api/commit/2234648de4a2de5b7356aadde328f40470bc12e3))
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
### Dependencies
|
|
388
|
+
|
|
389
|
+
* The following workspace dependencies were updated
|
|
390
|
+
* dependencies
|
|
391
|
+
* @twin.org/api-models bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
392
|
+
|
|
393
|
+
## [0.0.3-next.29](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.28...api-service-v0.0.3-next.29) (2026-05-01)
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
### Features
|
|
397
|
+
|
|
398
|
+
* hosting service ([#109](https://github.com/iotaledger/twin-api/issues/109)) ([985bf1f](https://github.com/iotaledger/twin-api/commit/985bf1f5c07b09ecb800df7120bc2422ac7a6d25))
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
### Dependencies
|
|
402
|
+
|
|
403
|
+
* The following workspace dependencies were updated
|
|
404
|
+
* dependencies
|
|
405
|
+
* @twin.org/api-models bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
406
|
+
|
|
407
|
+
## [0.0.3-next.28](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.27...api-service-v0.0.3-next.28) (2026-04-30)
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
### Miscellaneous Chores
|
|
411
|
+
|
|
412
|
+
* **api-service:** Synchronize repo versions
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
### Dependencies
|
|
416
|
+
|
|
417
|
+
* The following workspace dependencies were updated
|
|
418
|
+
* dependencies
|
|
419
|
+
* @twin.org/api-models bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
420
|
+
|
|
421
|
+
## [0.0.3-next.27](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.26...api-service-v0.0.3-next.27) (2026-04-23)
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
### Miscellaneous Chores
|
|
425
|
+
|
|
426
|
+
* **api-service:** Synchronize repo versions
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
### Dependencies
|
|
430
|
+
|
|
431
|
+
* The following workspace dependencies were updated
|
|
432
|
+
* dependencies
|
|
433
|
+
* @twin.org/api-models bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
434
|
+
|
|
435
|
+
## [0.0.3-next.26](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.25...api-service-v0.0.3-next.26) (2026-04-22)
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
### Miscellaneous Chores
|
|
439
|
+
|
|
440
|
+
* **api-service:** Synchronize repo versions
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
### Dependencies
|
|
444
|
+
|
|
445
|
+
* The following workspace dependencies were updated
|
|
446
|
+
* dependencies
|
|
447
|
+
* @twin.org/api-models bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
448
|
+
|
|
449
|
+
## [0.0.3-next.25](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.24...api-service-v0.0.3-next.25) (2026-04-14)
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
### Miscellaneous Chores
|
|
453
|
+
|
|
454
|
+
* **api-service:** Synchronize repo versions
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
### Dependencies
|
|
458
|
+
|
|
459
|
+
* The following workspace dependencies were updated
|
|
460
|
+
* dependencies
|
|
461
|
+
* @twin.org/api-models bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
462
|
+
|
|
463
|
+
## [0.0.3-next.24](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.23...api-service-v0.0.3-next.24) (2026-04-14)
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
### Miscellaneous Chores
|
|
467
|
+
|
|
468
|
+
* **api-service:** Synchronize repo versions
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
### Dependencies
|
|
472
|
+
|
|
473
|
+
* The following workspace dependencies were updated
|
|
474
|
+
* dependencies
|
|
475
|
+
* @twin.org/api-models bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
476
|
+
|
|
477
|
+
## [0.0.3-next.23](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.22...api-service-v0.0.3-next.23) (2026-04-14)
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
### Miscellaneous Chores
|
|
481
|
+
|
|
482
|
+
* **api-service:** Synchronize repo versions
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
### Dependencies
|
|
486
|
+
|
|
487
|
+
* The following workspace dependencies were updated
|
|
488
|
+
* dependencies
|
|
489
|
+
* @twin.org/api-models bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
490
|
+
|
|
491
|
+
## [0.0.3-next.22](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.21...api-service-v0.0.3-next.22) (2026-03-27)
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
### Miscellaneous Chores
|
|
495
|
+
|
|
496
|
+
* **api-service:** Synchronize repo versions
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
### Dependencies
|
|
500
|
+
|
|
501
|
+
* The following workspace dependencies were updated
|
|
502
|
+
* dependencies
|
|
503
|
+
* @twin.org/api-models bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
504
|
+
|
|
505
|
+
## [0.0.3-next.21](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.20...api-service-v0.0.3-next.21) (2026-03-11)
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
### Miscellaneous Chores
|
|
509
|
+
|
|
510
|
+
* **api-service:** Synchronize repo versions
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
### Dependencies
|
|
514
|
+
|
|
515
|
+
* The following workspace dependencies were updated
|
|
516
|
+
* dependencies
|
|
517
|
+
* @twin.org/api-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
518
|
+
|
|
519
|
+
## [0.0.3-next.20](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.19...api-service-v0.0.3-next.20) (2026-02-09)
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
### Miscellaneous Chores
|
|
523
|
+
|
|
524
|
+
* **api-service:** Synchronize repo versions
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
### Dependencies
|
|
528
|
+
|
|
529
|
+
* The following workspace dependencies were updated
|
|
530
|
+
* dependencies
|
|
531
|
+
* @twin.org/api-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
532
|
+
|
|
533
|
+
## [0.0.3-next.19](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.18...api-service-v0.0.3-next.19) (2026-02-06)
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
### Miscellaneous Chores
|
|
537
|
+
|
|
538
|
+
* **api-service:** Synchronize repo versions
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
### Dependencies
|
|
542
|
+
|
|
543
|
+
* The following workspace dependencies were updated
|
|
544
|
+
* dependencies
|
|
545
|
+
* @twin.org/api-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
546
|
+
|
|
547
|
+
## [0.0.3-next.18](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.17...api-service-v0.0.3-next.18) (2026-02-04)
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
### Miscellaneous Chores
|
|
551
|
+
|
|
552
|
+
* **api-service:** Synchronize repo versions
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
### Dependencies
|
|
556
|
+
|
|
557
|
+
* The following workspace dependencies were updated
|
|
558
|
+
* dependencies
|
|
559
|
+
* @twin.org/api-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
560
|
+
|
|
561
|
+
## [0.0.3-next.17](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.16...api-service-v0.0.3-next.17) (2026-01-26)
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
### Features
|
|
565
|
+
|
|
566
|
+
* update public origin building ([6c8e042](https://github.com/iotaledger/twin-api/commit/6c8e0422d9ddbed42a843e1c23498c99977b2fc7))
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
### Dependencies
|
|
570
|
+
|
|
571
|
+
* The following workspace dependencies were updated
|
|
572
|
+
* dependencies
|
|
573
|
+
* @twin.org/api-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
574
|
+
|
|
575
|
+
## [0.0.3-next.16](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.15...api-service-v0.0.3-next.16) (2026-01-26)
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
### Features
|
|
579
|
+
|
|
580
|
+
* public base url ([#70](https://github.com/iotaledger/twin-api/issues/70)) ([5b958cd](https://github.com/iotaledger/twin-api/commit/5b958cd91e8a38cdae2835ff5f2356c7e48d37c3))
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
### Dependencies
|
|
584
|
+
|
|
585
|
+
* The following workspace dependencies were updated
|
|
586
|
+
* dependencies
|
|
587
|
+
* @twin.org/api-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
588
|
+
|
|
589
|
+
## [0.0.3-next.15](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.14...api-service-v0.0.3-next.15) (2026-01-22)
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
### Miscellaneous Chores
|
|
593
|
+
|
|
594
|
+
* **api-service:** Synchronize repo versions
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
### Dependencies
|
|
598
|
+
|
|
599
|
+
* The following workspace dependencies were updated
|
|
600
|
+
* dependencies
|
|
601
|
+
* @twin.org/api-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
602
|
+
|
|
603
|
+
## [0.0.3-next.14](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.13...api-service-v0.0.3-next.14) (2026-01-20)
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
### Miscellaneous Chores
|
|
607
|
+
|
|
608
|
+
* **api-service:** Synchronize repo versions
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
### Dependencies
|
|
612
|
+
|
|
613
|
+
* The following workspace dependencies were updated
|
|
614
|
+
* dependencies
|
|
615
|
+
* @twin.org/api-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
616
|
+
|
|
617
|
+
## [0.0.3-next.13](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.12...api-service-v0.0.3-next.13) (2026-01-19)
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
### Miscellaneous Chores
|
|
621
|
+
|
|
622
|
+
* **api-service:** Synchronize repo versions
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
### Dependencies
|
|
626
|
+
|
|
627
|
+
* The following workspace dependencies were updated
|
|
628
|
+
* dependencies
|
|
629
|
+
* @twin.org/api-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
630
|
+
|
|
631
|
+
## [0.0.3-next.12](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.11...api-service-v0.0.3-next.12) (2026-01-12)
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
### Miscellaneous Chores
|
|
635
|
+
|
|
636
|
+
* **api-service:** Synchronize repo versions
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
### Dependencies
|
|
640
|
+
|
|
641
|
+
* The following workspace dependencies were updated
|
|
642
|
+
* dependencies
|
|
643
|
+
* @twin.org/api-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
644
|
+
|
|
645
|
+
## [0.0.3-next.11](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.10...api-service-v0.0.3-next.11) (2026-01-08)
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
### Miscellaneous Chores
|
|
649
|
+
|
|
650
|
+
* **api-service:** Synchronize repo versions
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
### Dependencies
|
|
654
|
+
|
|
655
|
+
* The following workspace dependencies were updated
|
|
656
|
+
* dependencies
|
|
657
|
+
* @twin.org/api-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
658
|
+
|
|
659
|
+
## [0.0.3-next.10](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.9...api-service-v0.0.3-next.10) (2026-01-05)
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
### Miscellaneous Chores
|
|
663
|
+
|
|
664
|
+
* **api-service:** Synchronize repo versions
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
### Dependencies
|
|
668
|
+
|
|
669
|
+
* The following workspace dependencies were updated
|
|
670
|
+
* dependencies
|
|
671
|
+
* @twin.org/api-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
672
|
+
|
|
673
|
+
## [0.0.3-next.9](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.8...api-service-v0.0.3-next.9) (2026-01-05)
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
### Features
|
|
677
|
+
|
|
678
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
679
|
+
* add livez endpoint ([#57](https://github.com/iotaledger/twin-api/issues/57)) ([ef007db](https://github.com/iotaledger/twin-api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
|
|
680
|
+
* add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
|
|
681
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
682
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
683
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
684
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
685
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
686
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
687
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
### Dependencies
|
|
691
|
+
|
|
692
|
+
* The following workspace dependencies were updated
|
|
693
|
+
* dependencies
|
|
694
|
+
* @twin.org/api-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
695
|
+
|
|
696
|
+
## [0.0.3-next.8](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.7...api-service-v0.0.3-next.8) (2025-12-17)
|
|
4
697
|
|
|
5
698
|
|
|
6
699
|
### Miscellaneous Chores
|
|
@@ -14,7 +707,7 @@
|
|
|
14
707
|
* dependencies
|
|
15
708
|
* @twin.org/api-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
16
709
|
|
|
17
|
-
## [0.0.3-next.7](https://github.com/
|
|
710
|
+
## [0.0.3-next.7](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.6...api-service-v0.0.3-next.7) (2025-11-26)
|
|
18
711
|
|
|
19
712
|
|
|
20
713
|
### Miscellaneous Chores
|
|
@@ -28,7 +721,7 @@
|
|
|
28
721
|
* dependencies
|
|
29
722
|
* @twin.org/api-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
30
723
|
|
|
31
|
-
## [0.0.3-next.6](https://github.com/
|
|
724
|
+
## [0.0.3-next.6](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.5...api-service-v0.0.3-next.6) (2025-11-20)
|
|
32
725
|
|
|
33
726
|
|
|
34
727
|
### Miscellaneous Chores
|
|
@@ -42,7 +735,7 @@
|
|
|
42
735
|
* dependencies
|
|
43
736
|
* @twin.org/api-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
44
737
|
|
|
45
|
-
## [0.0.3-next.5](https://github.com/
|
|
738
|
+
## [0.0.3-next.5](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.4...api-service-v0.0.3-next.5) (2025-11-14)
|
|
46
739
|
|
|
47
740
|
|
|
48
741
|
### Miscellaneous Chores
|
|
@@ -56,20 +749,20 @@
|
|
|
56
749
|
* dependencies
|
|
57
750
|
* @twin.org/api-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
58
751
|
|
|
59
|
-
## [0.0.3-next.4](https://github.com/
|
|
752
|
+
## [0.0.3-next.4](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.3...api-service-v0.0.3-next.4) (2025-11-14)
|
|
60
753
|
|
|
61
754
|
|
|
62
755
|
### Features
|
|
63
756
|
|
|
64
|
-
* add context id features ([#42](https://github.com/
|
|
65
|
-
* add root, favicon routes ([71da1c3](https://github.com/
|
|
66
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
67
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
68
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
69
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
70
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
71
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
72
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
757
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
758
|
+
* add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
|
|
759
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
760
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
761
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
762
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
763
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
764
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
765
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
73
766
|
|
|
74
767
|
|
|
75
768
|
### Dependencies
|
|
@@ -78,7 +771,7 @@
|
|
|
78
771
|
* dependencies
|
|
79
772
|
* @twin.org/api-models bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
80
773
|
|
|
81
|
-
## [0.0.3-next.3](https://github.com/
|
|
774
|
+
## [0.0.3-next.3](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.2...api-service-v0.0.3-next.3) (2025-11-14)
|
|
82
775
|
|
|
83
776
|
|
|
84
777
|
### Miscellaneous Chores
|
|
@@ -92,7 +785,7 @@
|
|
|
92
785
|
* dependencies
|
|
93
786
|
* @twin.org/api-models bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
94
787
|
|
|
95
|
-
## [0.0.3-next.2](https://github.com/
|
|
788
|
+
## [0.0.3-next.2](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.1...api-service-v0.0.3-next.2) (2025-11-12)
|
|
96
789
|
|
|
97
790
|
|
|
98
791
|
### Miscellaneous Chores
|
|
@@ -106,20 +799,20 @@
|
|
|
106
799
|
* dependencies
|
|
107
800
|
* @twin.org/api-models bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
108
801
|
|
|
109
|
-
## [0.0.3-next.1](https://github.com/
|
|
802
|
+
## [0.0.3-next.1](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.3-next.0...api-service-v0.0.3-next.1) (2025-11-10)
|
|
110
803
|
|
|
111
804
|
|
|
112
805
|
### Features
|
|
113
806
|
|
|
114
|
-
* add context id features ([#42](https://github.com/
|
|
115
|
-
* add root, favicon routes ([71da1c3](https://github.com/
|
|
116
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
117
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
118
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
119
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
120
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
121
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
122
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
807
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
808
|
+
* add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
|
|
809
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
810
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
811
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
812
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
813
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
814
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
815
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
123
816
|
|
|
124
817
|
|
|
125
818
|
### Dependencies
|
|
@@ -128,7 +821,7 @@
|
|
|
128
821
|
* dependencies
|
|
129
822
|
* @twin.org/api-models bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
130
823
|
|
|
131
|
-
## [0.0.2-next.13](https://github.com/
|
|
824
|
+
## [0.0.2-next.13](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.2-next.12...api-service-v0.0.2-next.13) (2025-10-09)
|
|
132
825
|
|
|
133
826
|
|
|
134
827
|
### Miscellaneous Chores
|
|
@@ -142,12 +835,12 @@
|
|
|
142
835
|
* dependencies
|
|
143
836
|
* @twin.org/api-models bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
144
837
|
|
|
145
|
-
## [0.0.2-next.12](https://github.com/
|
|
838
|
+
## [0.0.2-next.12](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.2-next.11...api-service-v0.0.2-next.12) (2025-10-09)
|
|
146
839
|
|
|
147
840
|
|
|
148
841
|
### Features
|
|
149
842
|
|
|
150
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
843
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
151
844
|
|
|
152
845
|
|
|
153
846
|
### Dependencies
|
|
@@ -156,12 +849,12 @@
|
|
|
156
849
|
* dependencies
|
|
157
850
|
* @twin.org/api-models bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
158
851
|
|
|
159
|
-
## [0.0.2-next.11](https://github.com/
|
|
852
|
+
## [0.0.2-next.11](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.2-next.10...api-service-v0.0.2-next.11) (2025-09-29)
|
|
160
853
|
|
|
161
854
|
|
|
162
855
|
### Features
|
|
163
856
|
|
|
164
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
857
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
165
858
|
|
|
166
859
|
|
|
167
860
|
### Dependencies
|
|
@@ -170,7 +863,7 @@
|
|
|
170
863
|
* dependencies
|
|
171
864
|
* @twin.org/api-models bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
172
865
|
|
|
173
|
-
## [0.0.2-next.10](https://github.com/
|
|
866
|
+
## [0.0.2-next.10](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.2-next.9...api-service-v0.0.2-next.10) (2025-09-23)
|
|
174
867
|
|
|
175
868
|
|
|
176
869
|
### Miscellaneous Chores
|
|
@@ -184,12 +877,12 @@
|
|
|
184
877
|
* dependencies
|
|
185
878
|
* @twin.org/api-models bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
186
879
|
|
|
187
|
-
## [0.0.2-next.9](https://github.com/
|
|
880
|
+
## [0.0.2-next.9](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.2-next.8...api-service-v0.0.2-next.9) (2025-08-29)
|
|
188
881
|
|
|
189
882
|
|
|
190
883
|
### Features
|
|
191
884
|
|
|
192
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
885
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
193
886
|
|
|
194
887
|
|
|
195
888
|
### Dependencies
|
|
@@ -198,12 +891,12 @@
|
|
|
198
891
|
* dependencies
|
|
199
892
|
* @twin.org/api-models bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
200
893
|
|
|
201
|
-
## [0.0.2-next.8](https://github.com/
|
|
894
|
+
## [0.0.2-next.8](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.2-next.7...api-service-v0.0.2-next.8) (2025-08-21)
|
|
202
895
|
|
|
203
896
|
|
|
204
897
|
### Features
|
|
205
898
|
|
|
206
|
-
* add root, favicon routes ([71da1c3](https://github.com/
|
|
899
|
+
* add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
|
|
207
900
|
|
|
208
901
|
|
|
209
902
|
### Dependencies
|
|
@@ -212,7 +905,7 @@
|
|
|
212
905
|
* dependencies
|
|
213
906
|
* @twin.org/api-models bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
214
907
|
|
|
215
|
-
## [0.0.2-next.7](https://github.com/
|
|
908
|
+
## [0.0.2-next.7](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.2-next.6...api-service-v0.0.2-next.7) (2025-08-20)
|
|
216
909
|
|
|
217
910
|
|
|
218
911
|
### Miscellaneous Chores
|
|
@@ -226,12 +919,12 @@
|
|
|
226
919
|
* dependencies
|
|
227
920
|
* @twin.org/api-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
228
921
|
|
|
229
|
-
## [0.0.2-next.6](https://github.com/
|
|
922
|
+
## [0.0.2-next.6](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.2-next.5...api-service-v0.0.2-next.6) (2025-08-19)
|
|
230
923
|
|
|
231
924
|
|
|
232
925
|
### Features
|
|
233
926
|
|
|
234
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
927
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
235
928
|
|
|
236
929
|
|
|
237
930
|
### Dependencies
|
|
@@ -240,14 +933,14 @@
|
|
|
240
933
|
* dependencies
|
|
241
934
|
* @twin.org/api-models bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
242
935
|
|
|
243
|
-
## [0.0.2-next.5](https://github.com/
|
|
936
|
+
## [0.0.2-next.5](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.2-next.4...api-service-v0.0.2-next.5) (2025-07-25)
|
|
244
937
|
|
|
245
938
|
|
|
246
939
|
### Features
|
|
247
940
|
|
|
248
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
249
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
250
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
941
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
942
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
943
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
251
944
|
|
|
252
945
|
|
|
253
946
|
### Dependencies
|
|
@@ -256,7 +949,7 @@
|
|
|
256
949
|
* dependencies
|
|
257
950
|
* @twin.org/api-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
258
951
|
|
|
259
|
-
## [0.0.2-next.4](https://github.com/
|
|
952
|
+
## [0.0.2-next.4](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.2-next.3...api-service-v0.0.2-next.4) (2025-07-25)
|
|
260
953
|
|
|
261
954
|
|
|
262
955
|
### Miscellaneous Chores
|
|
@@ -270,12 +963,12 @@
|
|
|
270
963
|
* dependencies
|
|
271
964
|
* @twin.org/api-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
272
965
|
|
|
273
|
-
## [0.0.2-next.3](https://github.com/
|
|
966
|
+
## [0.0.2-next.3](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.2-next.2...api-service-v0.0.2-next.3) (2025-07-24)
|
|
274
967
|
|
|
275
968
|
|
|
276
969
|
### Features
|
|
277
970
|
|
|
278
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
971
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
279
972
|
|
|
280
973
|
|
|
281
974
|
### Dependencies
|
|
@@ -284,7 +977,7 @@
|
|
|
284
977
|
* dependencies
|
|
285
978
|
* @twin.org/api-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
286
979
|
|
|
287
|
-
## [0.0.2-next.2](https://github.com/
|
|
980
|
+
## [0.0.2-next.2](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.2-next.1...api-service-v0.0.2-next.2) (2025-07-17)
|
|
288
981
|
|
|
289
982
|
|
|
290
983
|
### Miscellaneous Chores
|
|
@@ -298,13 +991,13 @@
|
|
|
298
991
|
* dependencies
|
|
299
992
|
* @twin.org/api-models bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
300
993
|
|
|
301
|
-
## [0.0.2-next.1](https://github.com/
|
|
994
|
+
## [0.0.2-next.1](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.2-next.0...api-service-v0.0.2-next.1) (2025-07-08)
|
|
302
995
|
|
|
303
996
|
|
|
304
997
|
### Features
|
|
305
998
|
|
|
306
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
307
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
999
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
1000
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
308
1001
|
|
|
309
1002
|
|
|
310
1003
|
### Dependencies
|
|
@@ -318,7 +1011,7 @@
|
|
|
318
1011
|
|
|
319
1012
|
### Features
|
|
320
1013
|
|
|
321
|
-
* release to production ([70ee2d5](https://github.com/
|
|
1014
|
+
* release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
|
|
322
1015
|
|
|
323
1016
|
|
|
324
1017
|
### Dependencies
|
|
@@ -327,7 +1020,7 @@
|
|
|
327
1020
|
* dependencies
|
|
328
1021
|
* @twin.org/api-models bumped from ^0.0.0 to ^0.0.1
|
|
329
1022
|
|
|
330
|
-
## [0.0.1-next.36](https://github.com/
|
|
1023
|
+
## [0.0.1-next.36](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.1-next.35...api-service-v0.0.1-next.36) (2025-06-17)
|
|
331
1024
|
|
|
332
1025
|
|
|
333
1026
|
### Miscellaneous Chores
|
|
@@ -341,12 +1034,12 @@
|
|
|
341
1034
|
* dependencies
|
|
342
1035
|
* @twin.org/api-models bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
343
1036
|
|
|
344
|
-
## [0.0.1-next.35](https://github.com/
|
|
1037
|
+
## [0.0.1-next.35](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.1-next.34...api-service-v0.0.1-next.35) (2025-06-11)
|
|
345
1038
|
|
|
346
1039
|
|
|
347
1040
|
### Features
|
|
348
1041
|
|
|
349
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
1042
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
350
1043
|
|
|
351
1044
|
|
|
352
1045
|
### Dependencies
|
|
@@ -355,7 +1048,7 @@
|
|
|
355
1048
|
* dependencies
|
|
356
1049
|
* @twin.org/api-models bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
357
1050
|
|
|
358
|
-
## [0.0.1-next.34](https://github.com/
|
|
1051
|
+
## [0.0.1-next.34](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.1-next.33...api-service-v0.0.1-next.34) (2025-05-27)
|
|
359
1052
|
|
|
360
1053
|
|
|
361
1054
|
### Miscellaneous Chores
|
|
@@ -369,12 +1062,12 @@
|
|
|
369
1062
|
* dependencies
|
|
370
1063
|
* @twin.org/api-models bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
371
1064
|
|
|
372
|
-
## [0.0.1-next.33](https://github.com/
|
|
1065
|
+
## [0.0.1-next.33](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.1-next.32...api-service-v0.0.1-next.33) (2025-04-17)
|
|
373
1066
|
|
|
374
1067
|
|
|
375
1068
|
### Features
|
|
376
1069
|
|
|
377
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
1070
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
378
1071
|
|
|
379
1072
|
|
|
380
1073
|
### Dependencies
|
|
@@ -383,7 +1076,7 @@
|
|
|
383
1076
|
* dependencies
|
|
384
1077
|
* @twin.org/api-models bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
385
1078
|
|
|
386
|
-
## [0.0.1-next.32](https://github.com/
|
|
1079
|
+
## [0.0.1-next.32](https://github.com/iotaledger/twin-api/compare/api-service-v0.0.1-next.31...api-service-v0.0.1-next.32) (2025-03-28)
|
|
387
1080
|
|
|
388
1081
|
|
|
389
1082
|
### Miscellaneous Chores
|