@twin.org/node 0.9.2-next.3 → 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.
@@ -488,7 +488,9 @@
488
488
  "connectorUnknownType": "Unknown connector type \"{type}\" specified for \"{connectorType}\""
489
489
  },
490
490
  "healthService": {
491
- "componentHealthCheckFailed": "Health check failed for component \"{className}\""
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",
@@ -689,6 +692,7 @@
689
692
  "transferRequestRejectedByProvider": "Provider rejected transfer request for agreement {agreementId} at {providerEndpoint} (code: {code})",
690
693
  "providerPidMissingInResponse": "Provider accepted transfer request for {consumerPid} but returned no providerPid",
691
694
  "unsupportedTransferFormat": "Transfer format \"{format}\" is not supported. Supported formats: {supported}",
695
+ "transferFormatNotInDistributions": "Transfer format \"{format}\" is not available in any distribution of dataset \"{datasetId}\" (Agreement: {agreementId}). Available formats: {availableFormats}",
692
696
  "catalogDatasetMissingId": "Catalog dataset is missing a required @id identifier",
693
697
  "providerIdentityMissing": "Provider identity (DID) is required to sign data access tokens but was not set on the Transfer Process",
694
698
  "callerNotAuthorizedForAgreement": "The caller's verified identity does not match the agreement assignee (consumer)",
@@ -1339,9 +1343,6 @@
1339
1343
  "gaugeNoIncDec": "A gauge can not be incremented or decremented",
1340
1344
  "maxHistoryMustBePositiveInteger": "The maxHistory option must be a positive integer"
1341
1345
  },
1342
- "openTelemetryTelemetryConnector": {
1343
- "unknownReaderType": "The reader type \"{type}\" is not supported, valid values are: prometheus"
1344
- },
1345
1346
  "metricsCollectorService": {
1346
1347
  "producerCollectionFailed": "Failed to collect metrics from producer \"{producer}\""
1347
1348
  },
@@ -2792,6 +2793,11 @@
2792
2793
  "healthDescription": "Connectivity and availability of the universal resolver \"{endpoint}\"",
2793
2794
  "resolverHealthCheckFailed": "Failed to check universal resolver health status \"{endpoint}\""
2794
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
+ },
2795
2801
  "hashicorpVaultConnector": {
2796
2802
  "healthDescription": "Connectivity and availability of the Hashicorp Vault server \"{endpoint}\"",
2797
2803
  "vaultHealthCheckFailed": "Failed to check Vault health status \"{endpoint}\""
package/docs/changelog.md CHANGED
@@ -1,5 +1,33 @@
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
+
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)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * wire includeErrorStack debug flag into auth and tenant processor configs ([#313](https://github.com/iotaledger/twin-node/issues/313)) ([3c69c51](https://github.com/iotaledger/twin-node/commit/3c69c51bfdd65305efe2fbe9da508e684a4245d1))
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @twin.org/node-core bumped from 0.9.2-next.3 to 0.9.2-next.4
30
+
3
31
  ## [0.9.2-next.3](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.2...node-v0.9.2-next.3) (2026-07-30)
4
32
 
5
33
 
@@ -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",
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.3"
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"