@twin.org/node 0.9.2-next.4 → 0.9.2-next.5
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/dist/locales/en.json +10 -2
- package/docs/changelog.md +14 -0
- package/docs/open-api/spec.json +31 -6
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -488,7 +488,9 @@
|
|
|
488
488
|
"connectorUnknownType": "Unknown connector type \"{type}\" specified for \"{connectorType}\""
|
|
489
489
|
},
|
|
490
490
|
"healthService": {
|
|
491
|
-
"
|
|
491
|
+
"componentHealthInitFailed": "Health check init failed for component \"{className}\"",
|
|
492
|
+
"componentHealthCheckFailed": "Health check failed for component \"{className}\"",
|
|
493
|
+
"componentHealthTeardownFailed": "Health check teardown failed for component \"{className}\""
|
|
492
494
|
},
|
|
493
495
|
"nftAttestationConnector": {
|
|
494
496
|
"attestingFailed": "Attesting the data failed",
|
|
@@ -562,7 +564,8 @@
|
|
|
562
564
|
"dispatchFailed": "Failed to dispatch task \"{taskId}\" with type \"{taskType}\"",
|
|
563
565
|
"stateChangeCallbackFailed": "The state change callback failed for task \"{id}\" with type \"{type}\" and status \"{status}\"",
|
|
564
566
|
"taskFinishedProcessingFailed": "Failed to finalise background task processing for task \"{id}\" with method \"{type}\"",
|
|
565
|
-
"executionTimeout": "Task \"{id}\" with type \"{type}\" exceeded its execution timeout of {timeout} ms and has been marked as failed"
|
|
567
|
+
"executionTimeout": "Task \"{id}\" with type \"{type}\" exceeded its execution timeout of {timeout} ms and has been marked as failed",
|
|
568
|
+
"healthCheckTimeout": "Health check task exceeded its timeout of {timeout} ms and has been marked as failed"
|
|
566
569
|
},
|
|
567
570
|
"s3BlobStorageConnector": {
|
|
568
571
|
"bucketCreateFailed": "Creating bucket \"{bucket}\" failed",
|
|
@@ -2790,6 +2793,11 @@
|
|
|
2790
2793
|
"healthDescription": "Connectivity and availability of the universal resolver \"{endpoint}\"",
|
|
2791
2794
|
"resolverHealthCheckFailed": "Failed to check universal resolver health status \"{endpoint}\""
|
|
2792
2795
|
},
|
|
2796
|
+
"identityService": {
|
|
2797
|
+
"healthDescription": "DID document lifecycle (create, resolve, remove) using the \"{namespace}\" namespace",
|
|
2798
|
+
"createDocumentFailed": "Failed to create the health check identity document",
|
|
2799
|
+
"resolveDocumentFailed": "Failed to resolve the health check identity document"
|
|
2800
|
+
},
|
|
2793
2801
|
"hashicorpVaultConnector": {
|
|
2794
2802
|
"healthDescription": "Connectivity and availability of the Hashicorp Vault server \"{endpoint}\"",
|
|
2795
2803
|
"vaultHealthCheckFailed": "Failed to check Vault health status \"{endpoint}\""
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.2-next.5](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.4...node-v0.9.2-next.5) (2026-08-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update dependencies ([#316](https://github.com/iotaledger/twin-node/issues/316)) ([f3fe328](https://github.com/iotaledger/twin-node/commit/f3fe3281a80f34763c923eacca58364273a550b7))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/node-core bumped from 0.9.2-next.4 to 0.9.2-next.5
|
|
16
|
+
|
|
3
17
|
## [0.9.2-next.4](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.3...node-v0.9.2-next.4) (2026-08-03)
|
|
4
18
|
|
|
5
19
|
|
package/docs/open-api/spec.json
CHANGED
|
@@ -153,11 +153,13 @@
|
|
|
153
153
|
"components": [
|
|
154
154
|
{
|
|
155
155
|
"source": "Database",
|
|
156
|
-
"status": "ok"
|
|
156
|
+
"status": "ok",
|
|
157
|
+
"category": "connectivity"
|
|
157
158
|
},
|
|
158
159
|
{
|
|
159
160
|
"source": "Storage",
|
|
160
|
-
"status": "ok"
|
|
161
|
+
"status": "ok",
|
|
162
|
+
"category": "connectivity"
|
|
161
163
|
}
|
|
162
164
|
]
|
|
163
165
|
}
|
|
@@ -170,11 +172,13 @@
|
|
|
170
172
|
{
|
|
171
173
|
"source": "Database",
|
|
172
174
|
"status": "warning",
|
|
173
|
-
"description": "slowRunning"
|
|
175
|
+
"description": "slowRunning",
|
|
176
|
+
"category": "connectivity"
|
|
174
177
|
},
|
|
175
178
|
{
|
|
176
179
|
"source": "Storage",
|
|
177
|
-
"status": "ok"
|
|
180
|
+
"status": "ok",
|
|
181
|
+
"category": "connectivity"
|
|
178
182
|
}
|
|
179
183
|
]
|
|
180
184
|
}
|
|
@@ -186,12 +190,14 @@
|
|
|
186
190
|
"components": [
|
|
187
191
|
{
|
|
188
192
|
"source": "Database",
|
|
189
|
-
"status": "ok"
|
|
193
|
+
"status": "ok",
|
|
194
|
+
"category": "connectivity"
|
|
190
195
|
},
|
|
191
196
|
{
|
|
192
197
|
"source": "Storage",
|
|
193
198
|
"status": "error",
|
|
194
|
-
"description": "storageFull"
|
|
199
|
+
"description": "storageFull",
|
|
200
|
+
"category": "connectivity"
|
|
195
201
|
}
|
|
196
202
|
]
|
|
197
203
|
}
|
|
@@ -22478,9 +22484,15 @@
|
|
|
22478
22484
|
"type": "string",
|
|
22479
22485
|
"description": "The description of the component as an i18n key."
|
|
22480
22486
|
},
|
|
22487
|
+
"category": {
|
|
22488
|
+
"$ref": "#/components/schemas/HealthCategory"
|
|
22489
|
+
},
|
|
22481
22490
|
"status": {
|
|
22482
22491
|
"$ref": "#/components/schemas/HealthStatus"
|
|
22483
22492
|
},
|
|
22493
|
+
"error": {
|
|
22494
|
+
"$ref": "#/components/schemas/Error"
|
|
22495
|
+
},
|
|
22484
22496
|
"message": {
|
|
22485
22497
|
"type": "string",
|
|
22486
22498
|
"description": "The message for the status if there are further details to provide as an i18n key."
|
|
@@ -22503,6 +22515,19 @@
|
|
|
22503
22515
|
"status"
|
|
22504
22516
|
]
|
|
22505
22517
|
},
|
|
22518
|
+
"HealthCategory": {
|
|
22519
|
+
"description": "The category of a health check.",
|
|
22520
|
+
"anyOf": [
|
|
22521
|
+
{
|
|
22522
|
+
"const": "connectivity",
|
|
22523
|
+
"description": "Connectivity health check for infrastructure connectors."
|
|
22524
|
+
},
|
|
22525
|
+
{
|
|
22526
|
+
"const": "application",
|
|
22527
|
+
"description": "Application health check for domain services."
|
|
22528
|
+
}
|
|
22529
|
+
]
|
|
22530
|
+
},
|
|
22506
22531
|
"HealthStatus": {
|
|
22507
22532
|
"description": "The health status of the component.",
|
|
22508
22533
|
"anyOf": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.9.2-next.
|
|
3
|
+
"version": "0.9.2-next.5",
|
|
4
4
|
"description": "TWIN Node serving APIs using the specified configuration",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"node": ">=24.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/node-core": "0.9.2-next.
|
|
17
|
+
"@twin.org/node-core": "0.9.2-next.5"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|