@twin.org/api-service 0.0.3-next.4 → 0.0.3-next.40
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 +156 -0
- package/dist/es/healthService.js.map +1 -0
- package/dist/es/hostingService.js +89 -0
- package/dist/es/hostingService.js.map +1 -0
- package/dist/es/index.js +10 -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 +12 -58
- 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/IHostingServiceConfig.js +4 -0
- package/dist/es/models/IHostingServiceConfig.js.map +1 -0
- package/dist/es/models/IHostingServiceConstructorOptions.js +2 -0
- package/dist/es/models/IHostingServiceConstructorOptions.js.map +1 -0
- package/dist/es/models/IUrlTransformerServiceConfig.js +4 -0
- package/dist/es/models/IUrlTransformerServiceConfig.js.map +1 -0
- package/dist/es/models/IUrlTransformerServiceConstructorOptions.js +2 -0
- package/dist/es/models/IUrlTransformerServiceConstructorOptions.js.map +1 -0
- package/dist/es/restEntryPoints.js +7 -0
- package/dist/es/restEntryPoints.js.map +1 -1
- package/dist/es/urlTransformerService.js +256 -0
- package/dist/es/urlTransformerService.js.map +1 -0
- package/dist/types/healthRoutes.d.ts +20 -0
- package/dist/types/healthService.d.ts +42 -0
- package/dist/types/hostingService.d.ts +39 -0
- package/dist/types/index.d.ts +10 -0
- package/dist/types/informationRoutes.d.ts +11 -3
- package/dist/types/informationService.d.ts +11 -16
- package/dist/types/models/IHealthServiceConfig.d.ts +16 -0
- package/dist/types/models/IHealthServiceConstructorOptions.d.ts +10 -0
- package/dist/types/models/IHostingServiceConfig.d.ts +13 -0
- package/dist/types/models/IHostingServiceConstructorOptions.d.ts +15 -0
- package/dist/types/models/IUrlTransformerServiceConfig.d.ts +19 -0
- package/dist/types/models/IUrlTransformerServiceConstructorOptions.d.ts +15 -0
- package/dist/types/urlTransformerService.d.ts +94 -0
- package/docs/changelog.md +574 -55
- package/docs/examples.md +74 -1
- package/docs/reference/classes/HealthService.md +123 -0
- package/docs/reference/classes/HostingService.md +131 -0
- package/docs/reference/classes/InformationService.md +19 -65
- package/docs/reference/classes/UrlTransformerService.md +379 -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 +14 -1
- package/docs/reference/interfaces/IHealthServiceConfig.md +32 -0
- package/docs/reference/interfaces/IHealthServiceConstructorOptions.md +11 -0
- package/docs/reference/interfaces/IHostingServiceConfig.md +19 -0
- package/docs/reference/interfaces/IHostingServiceConstructorOptions.md +25 -0
- package/docs/reference/interfaces/IInformationServiceConfig.md +5 -5
- package/docs/reference/interfaces/IInformationServiceConstructorOptions.md +1 -1
- package/docs/reference/interfaces/IUrlTransformerServiceConfig.md +32 -0
- package/docs/reference/interfaces/IUrlTransformerServiceConstructorOptions.md +25 -0
- package/docs/reference/variables/tagsHealth.md +5 -0
- package/locales/en.json +13 -1
- package/package.json +9 -5
package/docs/changelog.md
CHANGED
|
@@ -1,19 +1,538 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.3-next.
|
|
3
|
+
## [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)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Features
|
|
7
7
|
|
|
8
|
-
* add
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
|
|
8
|
+
* add tenant component ([#145](https://github.com/iotaledger/twin-api/issues/145)) ([a440c53](https://github.com/iotaledger/twin-api/commit/a440c53f36618946daee7372fe664f8ace341a08))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/api-models bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
16
|
+
|
|
17
|
+
## [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)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* tenant id in jwt ([#140](https://github.com/iotaledger/twin-api/issues/140)) ([8d37a7b](https://github.com/iotaledger/twin-api/commit/8d37a7b98b45fde53df1e909cffc0869aa758655))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* The following workspace dependencies were updated
|
|
28
|
+
* dependencies
|
|
29
|
+
* @twin.org/api-models bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
30
|
+
|
|
31
|
+
## [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)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Miscellaneous Chores
|
|
35
|
+
|
|
36
|
+
* **api-service:** Synchronize repo versions
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Dependencies
|
|
40
|
+
|
|
41
|
+
* The following workspace dependencies were updated
|
|
42
|
+
* dependencies
|
|
43
|
+
* @twin.org/api-models bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
44
|
+
|
|
45
|
+
## [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)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Features
|
|
49
|
+
|
|
50
|
+
* add initial interval config for health service ([daf0412](https://github.com/iotaledger/twin-api/commit/daf0412cb24d856bd80f2a6eda02f7294677baae))
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Dependencies
|
|
54
|
+
|
|
55
|
+
* The following workspace dependencies were updated
|
|
56
|
+
* dependencies
|
|
57
|
+
* @twin.org/api-models bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
58
|
+
|
|
59
|
+
## [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)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Miscellaneous Chores
|
|
63
|
+
|
|
64
|
+
* **api-service:** Synchronize repo versions
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
### Dependencies
|
|
68
|
+
|
|
69
|
+
* The following workspace dependencies were updated
|
|
70
|
+
* dependencies
|
|
71
|
+
* @twin.org/api-models bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
72
|
+
|
|
73
|
+
## [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)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Miscellaneous Chores
|
|
77
|
+
|
|
78
|
+
* **api-service:** Synchronize repo versions
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Dependencies
|
|
82
|
+
|
|
83
|
+
* The following workspace dependencies were updated
|
|
84
|
+
* dependencies
|
|
85
|
+
* @twin.org/api-models bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
86
|
+
|
|
87
|
+
## [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)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
### Features
|
|
91
|
+
|
|
92
|
+
* update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
### Dependencies
|
|
96
|
+
|
|
97
|
+
* The following workspace dependencies were updated
|
|
98
|
+
* dependencies
|
|
99
|
+
* @twin.org/api-models bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
100
|
+
|
|
101
|
+
## [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)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Features
|
|
105
|
+
|
|
106
|
+
* typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
### Bug Fixes
|
|
110
|
+
|
|
111
|
+
* docs ([4d7e1d2](https://github.com/iotaledger/twin-api/commit/4d7e1d265a2b2225ea02409a31989727a0534265))
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
### Dependencies
|
|
115
|
+
|
|
116
|
+
* The following workspace dependencies were updated
|
|
117
|
+
* dependencies
|
|
118
|
+
* @twin.org/api-models bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
119
|
+
|
|
120
|
+
## [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)
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
### Features
|
|
124
|
+
|
|
125
|
+
* avoid overlapping health checks ([35150b8](https://github.com/iotaledger/twin-api/commit/35150b81861cd2911641d0c36cd7dc3dfa5fcb68))
|
|
126
|
+
* update health service interval defaults ([2c66ae1](https://github.com/iotaledger/twin-api/commit/2c66ae1320acb0c80a0d7cba4e11a00358707dbb))
|
|
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.31 to 0.0.3-next.32
|
|
134
|
+
|
|
135
|
+
## [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)
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
### Features
|
|
139
|
+
|
|
140
|
+
* update health format ([cfbfbbb](https://github.com/iotaledger/twin-api/commit/cfbfbbb2e9afbd2574ffd2446ad51e4217437951))
|
|
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.30 to 0.0.3-next.31
|
|
148
|
+
|
|
149
|
+
## [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)
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
### Features
|
|
153
|
+
|
|
154
|
+
* separate service responsibilities ([#116](https://github.com/iotaledger/twin-api/issues/116)) ([2234648](https://github.com/iotaledger/twin-api/commit/2234648de4a2de5b7356aadde328f40470bc12e3))
|
|
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.29 to 0.0.3-next.30
|
|
162
|
+
|
|
163
|
+
## [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)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
### Features
|
|
167
|
+
|
|
168
|
+
* hosting service ([#109](https://github.com/iotaledger/twin-api/issues/109)) ([985bf1f](https://github.com/iotaledger/twin-api/commit/985bf1f5c07b09ecb800df7120bc2422ac7a6d25))
|
|
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.28 to 0.0.3-next.29
|
|
176
|
+
|
|
177
|
+
## [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)
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
### Miscellaneous Chores
|
|
181
|
+
|
|
182
|
+
* **api-service:** Synchronize repo versions
|
|
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.27 to 0.0.3-next.28
|
|
190
|
+
|
|
191
|
+
## [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)
|
|
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.26 to 0.0.3-next.27
|
|
204
|
+
|
|
205
|
+
## [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)
|
|
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.25 to 0.0.3-next.26
|
|
218
|
+
|
|
219
|
+
## [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)
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
### Miscellaneous Chores
|
|
223
|
+
|
|
224
|
+
* **api-service:** Synchronize repo versions
|
|
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.24 to 0.0.3-next.25
|
|
232
|
+
|
|
233
|
+
## [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)
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
### Miscellaneous Chores
|
|
237
|
+
|
|
238
|
+
* **api-service:** Synchronize repo versions
|
|
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.23 to 0.0.3-next.24
|
|
246
|
+
|
|
247
|
+
## [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)
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
### Miscellaneous Chores
|
|
251
|
+
|
|
252
|
+
* **api-service:** Synchronize repo versions
|
|
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.22 to 0.0.3-next.23
|
|
260
|
+
|
|
261
|
+
## [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)
|
|
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.21 to 0.0.3-next.22
|
|
274
|
+
|
|
275
|
+
## [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)
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
### Miscellaneous Chores
|
|
279
|
+
|
|
280
|
+
* **api-service:** Synchronize repo versions
|
|
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.20 to 0.0.3-next.21
|
|
288
|
+
|
|
289
|
+
## [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)
|
|
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.19 to 0.0.3-next.20
|
|
302
|
+
|
|
303
|
+
## [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)
|
|
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.18 to 0.0.3-next.19
|
|
316
|
+
|
|
317
|
+
## [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)
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
### Miscellaneous Chores
|
|
321
|
+
|
|
322
|
+
* **api-service:** Synchronize repo versions
|
|
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.17 to 0.0.3-next.18
|
|
330
|
+
|
|
331
|
+
## [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)
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
### Features
|
|
335
|
+
|
|
336
|
+
* update public origin building ([6c8e042](https://github.com/iotaledger/twin-api/commit/6c8e0422d9ddbed42a843e1c23498c99977b2fc7))
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
### Dependencies
|
|
340
|
+
|
|
341
|
+
* The following workspace dependencies were updated
|
|
342
|
+
* dependencies
|
|
343
|
+
* @twin.org/api-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
344
|
+
|
|
345
|
+
## [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)
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
### Features
|
|
349
|
+
|
|
350
|
+
* public base url ([#70](https://github.com/iotaledger/twin-api/issues/70)) ([5b958cd](https://github.com/iotaledger/twin-api/commit/5b958cd91e8a38cdae2835ff5f2356c7e48d37c3))
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
### Dependencies
|
|
354
|
+
|
|
355
|
+
* The following workspace dependencies were updated
|
|
356
|
+
* dependencies
|
|
357
|
+
* @twin.org/api-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
358
|
+
|
|
359
|
+
## [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)
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
### Miscellaneous Chores
|
|
363
|
+
|
|
364
|
+
* **api-service:** Synchronize repo versions
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
### Dependencies
|
|
368
|
+
|
|
369
|
+
* The following workspace dependencies were updated
|
|
370
|
+
* dependencies
|
|
371
|
+
* @twin.org/api-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
372
|
+
|
|
373
|
+
## [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)
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
### Miscellaneous Chores
|
|
377
|
+
|
|
378
|
+
* **api-service:** Synchronize repo versions
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
### Dependencies
|
|
382
|
+
|
|
383
|
+
* The following workspace dependencies were updated
|
|
384
|
+
* dependencies
|
|
385
|
+
* @twin.org/api-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
386
|
+
|
|
387
|
+
## [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)
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
### Miscellaneous Chores
|
|
391
|
+
|
|
392
|
+
* **api-service:** Synchronize repo versions
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
### Dependencies
|
|
396
|
+
|
|
397
|
+
* The following workspace dependencies were updated
|
|
398
|
+
* dependencies
|
|
399
|
+
* @twin.org/api-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
400
|
+
|
|
401
|
+
## [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)
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
### Miscellaneous Chores
|
|
405
|
+
|
|
406
|
+
* **api-service:** Synchronize repo versions
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
### Dependencies
|
|
410
|
+
|
|
411
|
+
* The following workspace dependencies were updated
|
|
412
|
+
* dependencies
|
|
413
|
+
* @twin.org/api-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
414
|
+
|
|
415
|
+
## [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)
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
### Miscellaneous Chores
|
|
419
|
+
|
|
420
|
+
* **api-service:** Synchronize repo versions
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
### Dependencies
|
|
424
|
+
|
|
425
|
+
* The following workspace dependencies were updated
|
|
426
|
+
* dependencies
|
|
427
|
+
* @twin.org/api-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
428
|
+
|
|
429
|
+
## [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)
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
### Miscellaneous Chores
|
|
433
|
+
|
|
434
|
+
* **api-service:** Synchronize repo versions
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
### Dependencies
|
|
438
|
+
|
|
439
|
+
* The following workspace dependencies were updated
|
|
440
|
+
* dependencies
|
|
441
|
+
* @twin.org/api-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
442
|
+
|
|
443
|
+
## [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)
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
### Features
|
|
447
|
+
|
|
448
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
449
|
+
* add livez endpoint ([#57](https://github.com/iotaledger/twin-api/issues/57)) ([ef007db](https://github.com/iotaledger/twin-api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
|
|
450
|
+
* add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
|
|
451
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
452
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
453
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
454
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
455
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
456
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
457
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
### Dependencies
|
|
461
|
+
|
|
462
|
+
* The following workspace dependencies were updated
|
|
463
|
+
* dependencies
|
|
464
|
+
* @twin.org/api-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
465
|
+
|
|
466
|
+
## [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)
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
### Miscellaneous Chores
|
|
470
|
+
|
|
471
|
+
* **api-service:** Synchronize repo versions
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
### Dependencies
|
|
475
|
+
|
|
476
|
+
* The following workspace dependencies were updated
|
|
477
|
+
* dependencies
|
|
478
|
+
* @twin.org/api-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
479
|
+
|
|
480
|
+
## [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)
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
### Miscellaneous Chores
|
|
484
|
+
|
|
485
|
+
* **api-service:** Synchronize repo versions
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
### Dependencies
|
|
489
|
+
|
|
490
|
+
* The following workspace dependencies were updated
|
|
491
|
+
* dependencies
|
|
492
|
+
* @twin.org/api-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
493
|
+
|
|
494
|
+
## [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)
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
### Miscellaneous Chores
|
|
498
|
+
|
|
499
|
+
* **api-service:** Synchronize repo versions
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
### Dependencies
|
|
503
|
+
|
|
504
|
+
* The following workspace dependencies were updated
|
|
505
|
+
* dependencies
|
|
506
|
+
* @twin.org/api-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
507
|
+
|
|
508
|
+
## [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)
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
### Miscellaneous Chores
|
|
512
|
+
|
|
513
|
+
* **api-service:** Synchronize repo versions
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
### Dependencies
|
|
517
|
+
|
|
518
|
+
* The following workspace dependencies were updated
|
|
519
|
+
* dependencies
|
|
520
|
+
* @twin.org/api-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
521
|
+
|
|
522
|
+
## [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)
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
### Features
|
|
526
|
+
|
|
527
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
528
|
+
* add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
|
|
529
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
530
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
531
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
532
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
533
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
534
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
535
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
17
536
|
|
|
18
537
|
|
|
19
538
|
### Dependencies
|
|
@@ -22,7 +541,7 @@
|
|
|
22
541
|
* dependencies
|
|
23
542
|
* @twin.org/api-models bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
24
543
|
|
|
25
|
-
## [0.0.3-next.3](https://github.com/
|
|
544
|
+
## [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)
|
|
26
545
|
|
|
27
546
|
|
|
28
547
|
### Miscellaneous Chores
|
|
@@ -36,7 +555,7 @@
|
|
|
36
555
|
* dependencies
|
|
37
556
|
* @twin.org/api-models bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
38
557
|
|
|
39
|
-
## [0.0.3-next.2](https://github.com/
|
|
558
|
+
## [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)
|
|
40
559
|
|
|
41
560
|
|
|
42
561
|
### Miscellaneous Chores
|
|
@@ -50,20 +569,20 @@
|
|
|
50
569
|
* dependencies
|
|
51
570
|
* @twin.org/api-models bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
52
571
|
|
|
53
|
-
## [0.0.3-next.1](https://github.com/
|
|
572
|
+
## [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)
|
|
54
573
|
|
|
55
574
|
|
|
56
575
|
### Features
|
|
57
576
|
|
|
58
|
-
* add context id features ([#42](https://github.com/
|
|
59
|
-
* add root, favicon routes ([71da1c3](https://github.com/
|
|
60
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
61
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
62
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
63
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
64
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
65
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
66
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
577
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
578
|
+
* add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
|
|
579
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
580
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
581
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
582
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
583
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
584
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
585
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
67
586
|
|
|
68
587
|
|
|
69
588
|
### Dependencies
|
|
@@ -72,7 +591,7 @@
|
|
|
72
591
|
* dependencies
|
|
73
592
|
* @twin.org/api-models bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
74
593
|
|
|
75
|
-
## [0.0.2-next.13](https://github.com/
|
|
594
|
+
## [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)
|
|
76
595
|
|
|
77
596
|
|
|
78
597
|
### Miscellaneous Chores
|
|
@@ -86,12 +605,12 @@
|
|
|
86
605
|
* dependencies
|
|
87
606
|
* @twin.org/api-models bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
88
607
|
|
|
89
|
-
## [0.0.2-next.12](https://github.com/
|
|
608
|
+
## [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)
|
|
90
609
|
|
|
91
610
|
|
|
92
611
|
### Features
|
|
93
612
|
|
|
94
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
613
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
95
614
|
|
|
96
615
|
|
|
97
616
|
### Dependencies
|
|
@@ -100,12 +619,12 @@
|
|
|
100
619
|
* dependencies
|
|
101
620
|
* @twin.org/api-models bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
102
621
|
|
|
103
|
-
## [0.0.2-next.11](https://github.com/
|
|
622
|
+
## [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)
|
|
104
623
|
|
|
105
624
|
|
|
106
625
|
### Features
|
|
107
626
|
|
|
108
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
627
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
109
628
|
|
|
110
629
|
|
|
111
630
|
### Dependencies
|
|
@@ -114,7 +633,7 @@
|
|
|
114
633
|
* dependencies
|
|
115
634
|
* @twin.org/api-models bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
116
635
|
|
|
117
|
-
## [0.0.2-next.10](https://github.com/
|
|
636
|
+
## [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)
|
|
118
637
|
|
|
119
638
|
|
|
120
639
|
### Miscellaneous Chores
|
|
@@ -128,12 +647,12 @@
|
|
|
128
647
|
* dependencies
|
|
129
648
|
* @twin.org/api-models bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
130
649
|
|
|
131
|
-
## [0.0.2-next.9](https://github.com/
|
|
650
|
+
## [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)
|
|
132
651
|
|
|
133
652
|
|
|
134
653
|
### Features
|
|
135
654
|
|
|
136
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
655
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
137
656
|
|
|
138
657
|
|
|
139
658
|
### Dependencies
|
|
@@ -142,12 +661,12 @@
|
|
|
142
661
|
* dependencies
|
|
143
662
|
* @twin.org/api-models bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
144
663
|
|
|
145
|
-
## [0.0.2-next.8](https://github.com/
|
|
664
|
+
## [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)
|
|
146
665
|
|
|
147
666
|
|
|
148
667
|
### Features
|
|
149
668
|
|
|
150
|
-
* add root, favicon routes ([71da1c3](https://github.com/
|
|
669
|
+
* add root, favicon routes ([71da1c3](https://github.com/iotaledger/twin-api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
|
|
151
670
|
|
|
152
671
|
|
|
153
672
|
### Dependencies
|
|
@@ -156,7 +675,7 @@
|
|
|
156
675
|
* dependencies
|
|
157
676
|
* @twin.org/api-models bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
158
677
|
|
|
159
|
-
## [0.0.2-next.7](https://github.com/
|
|
678
|
+
## [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)
|
|
160
679
|
|
|
161
680
|
|
|
162
681
|
### Miscellaneous Chores
|
|
@@ -170,12 +689,12 @@
|
|
|
170
689
|
* dependencies
|
|
171
690
|
* @twin.org/api-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
172
691
|
|
|
173
|
-
## [0.0.2-next.6](https://github.com/
|
|
692
|
+
## [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)
|
|
174
693
|
|
|
175
694
|
|
|
176
695
|
### Features
|
|
177
696
|
|
|
178
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
697
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
179
698
|
|
|
180
699
|
|
|
181
700
|
### Dependencies
|
|
@@ -184,14 +703,14 @@
|
|
|
184
703
|
* dependencies
|
|
185
704
|
* @twin.org/api-models bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
186
705
|
|
|
187
|
-
## [0.0.2-next.5](https://github.com/
|
|
706
|
+
## [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)
|
|
188
707
|
|
|
189
708
|
|
|
190
709
|
### Features
|
|
191
710
|
|
|
192
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
193
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
194
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
711
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
712
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
713
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
195
714
|
|
|
196
715
|
|
|
197
716
|
### Dependencies
|
|
@@ -200,7 +719,7 @@
|
|
|
200
719
|
* dependencies
|
|
201
720
|
* @twin.org/api-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
202
721
|
|
|
203
|
-
## [0.0.2-next.4](https://github.com/
|
|
722
|
+
## [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)
|
|
204
723
|
|
|
205
724
|
|
|
206
725
|
### Miscellaneous Chores
|
|
@@ -214,12 +733,12 @@
|
|
|
214
733
|
* dependencies
|
|
215
734
|
* @twin.org/api-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
216
735
|
|
|
217
|
-
## [0.0.2-next.3](https://github.com/
|
|
736
|
+
## [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)
|
|
218
737
|
|
|
219
738
|
|
|
220
739
|
### Features
|
|
221
740
|
|
|
222
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
741
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
223
742
|
|
|
224
743
|
|
|
225
744
|
### Dependencies
|
|
@@ -228,7 +747,7 @@
|
|
|
228
747
|
* dependencies
|
|
229
748
|
* @twin.org/api-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
230
749
|
|
|
231
|
-
## [0.0.2-next.2](https://github.com/
|
|
750
|
+
## [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)
|
|
232
751
|
|
|
233
752
|
|
|
234
753
|
### Miscellaneous Chores
|
|
@@ -242,13 +761,13 @@
|
|
|
242
761
|
* dependencies
|
|
243
762
|
* @twin.org/api-models bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
244
763
|
|
|
245
|
-
## [0.0.2-next.1](https://github.com/
|
|
764
|
+
## [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)
|
|
246
765
|
|
|
247
766
|
|
|
248
767
|
### Features
|
|
249
768
|
|
|
250
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
251
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
769
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
770
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
252
771
|
|
|
253
772
|
|
|
254
773
|
### Dependencies
|
|
@@ -262,7 +781,7 @@
|
|
|
262
781
|
|
|
263
782
|
### Features
|
|
264
783
|
|
|
265
|
-
* release to production ([70ee2d5](https://github.com/
|
|
784
|
+
* release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
|
|
266
785
|
|
|
267
786
|
|
|
268
787
|
### Dependencies
|
|
@@ -271,7 +790,7 @@
|
|
|
271
790
|
* dependencies
|
|
272
791
|
* @twin.org/api-models bumped from ^0.0.0 to ^0.0.1
|
|
273
792
|
|
|
274
|
-
## [0.0.1-next.36](https://github.com/
|
|
793
|
+
## [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)
|
|
275
794
|
|
|
276
795
|
|
|
277
796
|
### Miscellaneous Chores
|
|
@@ -285,12 +804,12 @@
|
|
|
285
804
|
* dependencies
|
|
286
805
|
* @twin.org/api-models bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
287
806
|
|
|
288
|
-
## [0.0.1-next.35](https://github.com/
|
|
807
|
+
## [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)
|
|
289
808
|
|
|
290
809
|
|
|
291
810
|
### Features
|
|
292
811
|
|
|
293
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
812
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
294
813
|
|
|
295
814
|
|
|
296
815
|
### Dependencies
|
|
@@ -299,7 +818,7 @@
|
|
|
299
818
|
* dependencies
|
|
300
819
|
* @twin.org/api-models bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
301
820
|
|
|
302
|
-
## [0.0.1-next.34](https://github.com/
|
|
821
|
+
## [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)
|
|
303
822
|
|
|
304
823
|
|
|
305
824
|
### Miscellaneous Chores
|
|
@@ -313,12 +832,12 @@
|
|
|
313
832
|
* dependencies
|
|
314
833
|
* @twin.org/api-models bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
315
834
|
|
|
316
|
-
## [0.0.1-next.33](https://github.com/
|
|
835
|
+
## [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)
|
|
317
836
|
|
|
318
837
|
|
|
319
838
|
### Features
|
|
320
839
|
|
|
321
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
840
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
322
841
|
|
|
323
842
|
|
|
324
843
|
### Dependencies
|
|
@@ -327,7 +846,7 @@
|
|
|
327
846
|
* dependencies
|
|
328
847
|
* @twin.org/api-models bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
329
848
|
|
|
330
|
-
## [0.0.1-next.32](https://github.com/
|
|
849
|
+
## [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)
|
|
331
850
|
|
|
332
851
|
|
|
333
852
|
### Miscellaneous Chores
|