@twin.org/node 0.9.2-next.15 → 0.9.2-next.17

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.
@@ -15,6 +15,7 @@
15
15
  "cliCommandParamExtra": "Parameter(s) \"{params}\" are not recognised for command \"{command}\"",
16
16
  "cliEnvVarMissing": "Environment variable \"{envVar}\" does not exist",
17
17
  "invalidEnvVarValue": "Environment variable \"{key}\" has an invalid value \"{value}\", expected {type} type",
18
+ "invalidEnvVarPair": "Environment variable \"{key}\" has an invalid entry \"{value}\", expected unique name=integer pairs",
18
19
  "unknownEnvVars": "Unknown environment variable properties [{keys}]. Check for typos in variable names, for custom variables use the {prefix}ENV_ALLOW_LIST."
19
20
  },
20
21
  "bootstrapDev": {
@@ -527,8 +528,8 @@
527
528
  "publicKeyMultibaseMissingHeader": "Public key multibase \"{publicKeyMultibase}\" is missing the multi codec header",
528
529
  "secretKeyMultibaseMissingHeader": "Secret key multibase \"{secretKeyMultibase}\" is missing the multi codec header"
529
530
  },
530
- "silentTelemetryConnector": {
531
- "notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
531
+ "multiTelemetryConnector": {
532
+ "notSupported": "The method \"{methodName}\" is not supported on multi telemetry connector."
532
533
  },
533
534
  "verificationHelper": {
534
535
  "jwtDecodeFailed": "Decoding the JWT failed",
@@ -546,6 +547,9 @@
546
547
  "destroyFailed": "The destruction of the attestation failed",
547
548
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the attestation service \"{namespace}\""
548
549
  },
550
+ "spanHelper": {
551
+ "traceFlagsOutOfRange": "The trace flags value \"{traceFlags}\" is outside the valid range 0 to 255"
552
+ },
549
553
  "auditableItemGraphService": {
550
554
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Graph service \"{namespace}\"",
551
555
  "createFailed": "Creating the Auditable Item Graph vertex failed",
@@ -1373,7 +1377,13 @@
1373
1377
  "counterIncOnly": "A counter metric can only be incremented, or added to with an integer",
1374
1378
  "upDownCounterIncOrDecOnly": "An up/down counter metric can only be incremented, decremented or adjusted with an integer",
1375
1379
  "gaugeNoIncDec": "A gauge can not be incremented or decremented",
1376
- "maxHistoryMustBePositiveInteger": "The maxHistory option must be a positive integer"
1380
+ "maxHistoryMustBePositiveInteger": "The maxHistory option must be a positive integer",
1381
+ "flushFailed": "Failed to flush metric values to storage"
1382
+ },
1383
+ "openTelemetryTelemetryConnector": {
1384
+ "metricNotFound": "The metric could not be found \"{notFoundId}\"",
1385
+ "counterIncOnly": "A counter metric can only be incremented, or added to with an integer",
1386
+ "gaugeNoIncDec": "A gauge can not be incremented or decremented"
1377
1387
  },
1378
1388
  "metricsCollectorService": {
1379
1389
  "producerCollectionFailed": "Failed to collect metrics from producer \"{producer}\""
@@ -1381,9 +1391,6 @@
1381
1391
  "entityStorageTracingConnector": {
1382
1392
  "spanNotFound": "The span could not be found \"{notFoundId}\""
1383
1393
  },
1384
- "spanHelper": {
1385
- "traceFlagsOutOfRange": "The trace flags value \"{traceFlags}\" is outside the valid range 0 to 255"
1386
- },
1387
1394
  "openTelemetryTracingConnector": {
1388
1395
  "sampleRatioOutOfRange": "The sample ratio \"{sampleRatio}\" must be between 0 and 1"
1389
1396
  },
@@ -1465,7 +1472,9 @@
1465
1472
  "noRestProcessors": "You must configure at least one REST processor",
1466
1473
  "noSocketProcessors": "You must configure at least one socket processor",
1467
1474
  "postProcessorError": "There was a failure after in a post processor for route \"{route}\"",
1468
- "invalidPublicOrigin": "The public origin \"{publicOrigin}\" is not a valid origin URL, it should be in the format \"protocol://host[:port]\"."
1475
+ "invalidPublicOrigin": "The public origin \"{publicOrigin}\" is not a valid origin URL, it should be in the format \"protocol://host[:port]\".",
1476
+ "unknownBodyLimit": "The route \"{route}\" uses the body limit named \"{bodyLimit}\", which is not configured",
1477
+ "invalidBodyLimit": "The body limit named \"{bodyLimit}\" must be an integer greater than zero, but it is \"{value}\""
1469
1478
  },
1470
1479
  "restRouteProcessor": {
1471
1480
  "routeNotFound": "The web server could not find the REST route \"{notFoundId}\""
package/docs/changelog.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.2-next.17](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.16...node-v0.9.2-next.17) (2026-08-24)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **node:** Synchronize repo versions
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.16 to 0.9.2-next.17
16
+
17
+ ## [0.9.2-next.16](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.15...node-v0.9.2-next.16) (2026-08-21)
18
+
19
+
20
+ ### Features
21
+
22
+ * configure web server body limits from the environment ([#356](https://github.com/iotaledger/twin-node/issues/356)) ([f196ad3](https://github.com/iotaledger/twin-node/commit/f196ad368559515184e37a99d6876570074ebcd5))
23
+ * telemetry tracing multi ([#357](https://github.com/iotaledger/twin-node/issues/357)) ([b6412ac](https://github.com/iotaledger/twin-node/commit/b6412ac3141a94a0f9f7d1dd391451ac9247e862))
24
+
25
+
26
+ ### Dependencies
27
+
28
+ * The following workspace dependencies were updated
29
+ * dependencies
30
+ * @twin.org/node-core bumped from 0.9.2-next.15 to 0.9.2-next.16
31
+
3
32
  ## [0.9.2-next.15](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.14...node-v0.9.2-next.15) (2026-08-20)
4
33
 
5
34
 
@@ -22773,6 +22773,10 @@
22773
22773
  {
22774
22774
  "const": "duration",
22775
22775
  "description": "Duration in seconds."
22776
+ },
22777
+ {
22778
+ "const": "array",
22779
+ "description": "Array."
22776
22780
  }
22777
22781
  ]
22778
22782
  },
@@ -24523,8 +24527,7 @@
24523
24527
  }
24524
24528
  },
24525
24529
  "required": [
24526
- "metric",
24527
- "value"
24530
+ "metric"
24528
24531
  ],
24529
24532
  "description": "The body parameters."
24530
24533
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/node",
3
- "version": "0.9.2-next.15",
3
+ "version": "0.9.2-next.17",
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.15"
17
+ "@twin.org/node-core": "0.9.2-next.17"
18
18
  },
19
19
  "bugs": {
20
20
  "url": "git+https://github.com/iotaledger/twin-node/issues"