@twin.org/node 0.9.3 → 0.9.4-next.2
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 +142 -42
- package/docs/changelog.md +126 -0
- package/docs/open-api/spec.json +67 -10
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -212,7 +212,10 @@
|
|
|
212
212
|
"factory": {
|
|
213
213
|
"noUnregister": "There is no {typeName} registered with the name \"{name}\"",
|
|
214
214
|
"noGet": "The requested {typeName} \"{name}\" does not exist in the factory",
|
|
215
|
-
"noCreate": "The requested {typeName} \"{name}\" cannot be created by the factory, with params \"{params}\""
|
|
215
|
+
"noCreate": "The requested {typeName} \"{name}\" cannot be created by the factory, with params \"{params}\"",
|
|
216
|
+
"noFacade": "The requested facade \"{name}\" is not registered, so it cannot be applied to the {typeName} factory",
|
|
217
|
+
"noFacadeOnFacades": "Facades cannot be applied to the facade factory itself",
|
|
218
|
+
"noFacadeWrap": "The facade \"{name}\" did not return a wrapped instance for the {typeName} factory"
|
|
216
219
|
},
|
|
217
220
|
"bitString": {
|
|
218
221
|
"outOfRange": "The index should be >= 0 and less than the length of the bit string, the index is \"{index}\" and the number of bit is \"{numberBits}\""
|
|
@@ -232,7 +235,7 @@
|
|
|
232
235
|
"mutex": {
|
|
233
236
|
"lockNotFound": "The key \"{key}\" has no active lock",
|
|
234
237
|
"lockAlreadyReleased": "The key \"{key}\" is not currently locked",
|
|
235
|
-
"lockTimeout": "Failed to acquire lock for key \"{key}\" within the timeout of {
|
|
238
|
+
"lockTimeout": "Failed to acquire lock for key \"{key}\" within the timeout of {timeoutMs} milliseconds",
|
|
236
239
|
"bufferFetchFailed": "Failed to retrieve shared buffer for key \"{key}\" from the main thread",
|
|
237
240
|
"invalidTimeout": "The timeout value \"{timeoutMs}\" is invalid, it must be a non-negative integer"
|
|
238
241
|
},
|
|
@@ -391,7 +394,9 @@
|
|
|
391
394
|
"migrationHelper": {
|
|
392
395
|
"migrateSchemaFailed": "Migration failed for schema \"{schemaName}\".",
|
|
393
396
|
"transformRequiredForProperty": "A transformation function is required to migrate property \"{from}\" to \"{to}\" of type \"{type}\"",
|
|
394
|
-
"coercionProducedUndefined": "Coercion of property \"{property}\" to type \"{type}\" produced undefined but the property is not optional"
|
|
397
|
+
"coercionProducedUndefined": "Coercion of property \"{property}\" to type \"{type}\" produced undefined but the property is not optional",
|
|
398
|
+
"connectorBootstrapFailed": "Connector \"{className}\" failed to bootstrap storage for schema \"{schemaName}\"",
|
|
399
|
+
"maxIdentifierLengthTooSmall": "The maximum identifier length {maxIdentifierLength} must be at least {minimum} to fit the migration name suffix"
|
|
395
400
|
},
|
|
396
401
|
"vaultConnectorHelper": {
|
|
397
402
|
"invalidSignature": "The JSON Web token signature could not be verified"
|
|
@@ -533,7 +538,10 @@
|
|
|
533
538
|
},
|
|
534
539
|
"verificationHelper": {
|
|
535
540
|
"jwtDecodeFailed": "Decoding the JWT failed",
|
|
536
|
-
"proofMissingVerificationMethod": "The proof is missing the verification method"
|
|
541
|
+
"proofMissingVerificationMethod": "The proof is missing the verification method",
|
|
542
|
+
"credentialNotYetValid": "The credential is not valid until \"{validFrom}\"",
|
|
543
|
+
"credentialExpired": "The credential expired at \"{validUntil}\"",
|
|
544
|
+
"credentialValidityDateInvalid": "The credential validity date is not a valid ISO 8601 timestamp \"{date}\""
|
|
537
545
|
},
|
|
538
546
|
"documentHelper": {
|
|
539
547
|
"verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
|
|
@@ -550,6 +558,10 @@
|
|
|
550
558
|
"spanHelper": {
|
|
551
559
|
"traceFlagsOutOfRange": "The trace flags value \"{traceFlags}\" is outside the valid range 0 to 255"
|
|
552
560
|
},
|
|
561
|
+
"tracingHelper": {
|
|
562
|
+
"startSpanFailed": "The span \"{name}\" could not be started, so the operation was not traced",
|
|
563
|
+
"endSpanFailed": "The span \"{name}\" could not be ended"
|
|
564
|
+
},
|
|
553
565
|
"auditableItemGraphService": {
|
|
554
566
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Graph service \"{namespace}\"",
|
|
555
567
|
"createFailed": "Creating the Auditable Item Graph vertex failed",
|
|
@@ -565,7 +577,8 @@
|
|
|
565
577
|
"resourceIdMissing": "You must provide either the id, or the resourceObject must contain an id property for index \"{index}\"",
|
|
566
578
|
"aliasNotUnique": "The alias id \"{aliasId}\" is already in use on another vertex and the unique flag was set",
|
|
567
579
|
"invalidEdgeId": "The edge id \"{edgeId}\" is not valid",
|
|
568
|
-
"listPatchInvalidFormat": "The property \"{property}\" must be a list patch object with add and/or remove, not a bare array"
|
|
580
|
+
"listPatchInvalidFormat": "The property \"{property}\" must be a list patch object with add and/or remove, not a bare array",
|
|
581
|
+
"auditModeTransitionNotAllowed": "The vertex audit mode can not be changed from \"{currentMode}\" to \"{requestedMode}\", bypass is a terminal mode"
|
|
569
582
|
},
|
|
570
583
|
"auditableItemStreamService": {
|
|
571
584
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Stream service \"{namespace}\"",
|
|
@@ -696,6 +709,16 @@
|
|
|
696
709
|
"dataspaceControlPlaneRestClient": {
|
|
697
710
|
"notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
|
|
698
711
|
},
|
|
712
|
+
"odrlPolicyHelper": {
|
|
713
|
+
"policyMissingAssignee": "The {policyType} with id \"{policyId}\" is missing an assignee.",
|
|
714
|
+
"policyMissingAssigner": "The {policyType} with id \"{policyId}\" is missing an assigner."
|
|
715
|
+
},
|
|
716
|
+
"dataspaceProtocolHelper": {
|
|
717
|
+
"schemaNotRegistered": "JSON Schema \"{schemaId}\" is not registered in DataTypeHandlerFactory"
|
|
718
|
+
},
|
|
719
|
+
"trustHelper": {
|
|
720
|
+
"trustVerifyFailed": "Trust verification failed for action \"{action}\""
|
|
721
|
+
},
|
|
699
722
|
"dataspaceControlPlaneService": {
|
|
700
723
|
"transferCallbackRejected": "Consumer rejected a transfer state-change callback (messageKind: {messageKind}, consumerPid: {consumerPid}, providerPid: {providerPid}, callbackAddress: {callbackAddress})",
|
|
701
724
|
"transferCallbackFailed": "Failed to deliver a transfer state-change callback to the consumer (messageKind: {messageKind}, consumerPid: {consumerPid}, providerPid: {providerPid}, callbackAddress: {callbackAddress})",
|
|
@@ -766,16 +789,6 @@
|
|
|
766
789
|
"pushTransferDataPathNotConfigured": "POST transfer cannot start: dataPlanePath is not configured (consumerPid: {consumerPid})",
|
|
767
790
|
"providerIdentityMissing": "Provider identity (DID) is required to sign data access tokens but was not set on the Transfer Process"
|
|
768
791
|
},
|
|
769
|
-
"odrlPolicyHelper": {
|
|
770
|
-
"policyMissingAssignee": "The {policyType} with id \"{policyId}\" is missing an assignee.",
|
|
771
|
-
"policyMissingAssigner": "The {policyType} with id \"{policyId}\" is missing an assigner."
|
|
772
|
-
},
|
|
773
|
-
"dataspaceProtocolHelper": {
|
|
774
|
-
"schemaNotRegistered": "JSON Schema \"{schemaId}\" is not registered in DataTypeHandlerFactory"
|
|
775
|
-
},
|
|
776
|
-
"trustHelper": {
|
|
777
|
-
"trustVerifyFailed": "Trust verification failed for action \"{action}\""
|
|
778
|
-
},
|
|
779
792
|
"dataspaceDataPlaneRestClient": {
|
|
780
793
|
"notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
|
|
781
794
|
},
|
|
@@ -841,6 +854,7 @@
|
|
|
841
854
|
"containerCreateFailed": "The container couldn't be created \"{containerId}\"",
|
|
842
855
|
"databaseCreateFailed": "Unable to create database \"{databaseId}\"",
|
|
843
856
|
"containerDoesNotExist": "Container \"{containerId}\" does not exist",
|
|
857
|
+
"indexPolicyUpdateFailed": "Updating the indexing policy for container \"{containerId}\" failed",
|
|
844
858
|
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
845
859
|
"setBatchFailed": "Unable to set batch of entities",
|
|
846
860
|
"countFailed": "Unable to count entities",
|
|
@@ -854,6 +868,8 @@
|
|
|
854
868
|
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
855
869
|
"tableCreateFailed": "Creating table \"{tableName}\" failed",
|
|
856
870
|
"tableDoesNotExist": "Table \"{tableName}\" does not exist",
|
|
871
|
+
"indexCreateFailed": "Creating the missing indexes on table \"{tableName}\" failed",
|
|
872
|
+
"indexCreateTimeout": "Index \"{indexName}\" on table \"{tableName}\" was still building when the wait expired",
|
|
857
873
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
858
874
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
859
875
|
"removeFailed": "Unable to remove entity \"{id}\"",
|
|
@@ -909,6 +925,7 @@
|
|
|
909
925
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
910
926
|
"removeFailed": "Unable to remove entity \"{id}\"",
|
|
911
927
|
"databaseCreateFailed": "The database creation failed for \"{databaseName}\"",
|
|
928
|
+
"indexCreateFailed": "Unable to create index for property \"{property}\"",
|
|
912
929
|
"unsupportedComparisonOperator": "Comparison operator \"{comparison}\" is not supported",
|
|
913
930
|
"setBatchFailed": "Unable to set batch of entities",
|
|
914
931
|
"removeBatchFailed": "Unable to remove batch of entities",
|
|
@@ -929,6 +946,7 @@
|
|
|
929
946
|
"conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
|
|
930
947
|
"entitySchemaPropertiesUndefined": "The entity schema properties are undefined",
|
|
931
948
|
"databaseCreateFailed": "Unable to create database \"{databaseName}\"",
|
|
949
|
+
"tableCreateFailed": "Unable to create table \"{tableName}\"",
|
|
932
950
|
"setBatchFailed": "Unable to set batch of entities",
|
|
933
951
|
"countFailed": "Unable to count entities",
|
|
934
952
|
"emptyFailed": "Unable to empty entity storage",
|
|
@@ -941,6 +959,7 @@
|
|
|
941
959
|
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
942
960
|
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
943
961
|
"databaseCreateFailed": "Unable to create database \"{databaseName}\"",
|
|
962
|
+
"tableCreateFailed": "Unable to create table \"{tableName}\"",
|
|
944
963
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
945
964
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
946
965
|
"removeFailed": "Unable to remove entity \"{id}\"",
|
|
@@ -1026,6 +1045,7 @@
|
|
|
1026
1045
|
"createVerifiablePresentationFailed": "Creating the verifiable presentation failed",
|
|
1027
1046
|
"documentNotFound": "The document could not be found \"{notFoundId}\"",
|
|
1028
1047
|
"invalidAlias": "The alias is invalid it must be a Url or Urn, it is \"{alias}\"",
|
|
1048
|
+
"issuerMismatch": "The credential issuer \"{issuer}\" does not match the DID of the proof verification method \"{method}\"",
|
|
1029
1049
|
"jwkSignatureFailed": "The signature on the JWK failed verification",
|
|
1030
1050
|
"methodMissing": "The verification method specified does not exist \"{method}\"",
|
|
1031
1051
|
"missingDid": "The full id including DID is required",
|
|
@@ -1053,7 +1073,9 @@
|
|
|
1053
1073
|
"listFailed": "Failed listing identities"
|
|
1054
1074
|
},
|
|
1055
1075
|
"iotaIdentityResolverConnector": {
|
|
1076
|
+
"didResolutionTimeout": "Resolving the document \"{documentId}\" timed out after {timeoutMs} ms",
|
|
1056
1077
|
"documentNotFound": "The document could not be found",
|
|
1078
|
+
"identityClientCreationTimeout": "Creating the identity client timed out after {timeoutMs} ms",
|
|
1057
1079
|
"resolveDocumentFailed": "Resolving the document failed \"{documentId}\""
|
|
1058
1080
|
},
|
|
1059
1081
|
"iotaIdentityConnector": {
|
|
@@ -1068,10 +1090,13 @@
|
|
|
1068
1090
|
"createVerifiableCredentialFailed": "Creating the verifiable credential failed",
|
|
1069
1091
|
"createVerifiablePresentationFailed": "Creating the verifiable presentation failed",
|
|
1070
1092
|
"didExtractionFailed": "Extracting the DID from the document id failed",
|
|
1093
|
+
"didResolutionTimeout": "Resolving the DID \"{did}\" timed out after {timeoutMs} ms",
|
|
1071
1094
|
"documentNotFound": "The document could not be found",
|
|
1072
1095
|
"gasStationTransactionBuildFailed": "Building the gas station transaction failed",
|
|
1096
|
+
"identityClientCreationTimeout": "Creating the identity client timed out after {timeoutMs} ms",
|
|
1073
1097
|
"identityNotFound": "The identity could not be found \"{notFoundId}\"",
|
|
1074
1098
|
"invalidAlias": "The alias is invalid it must be a Url or Urn, it is \"{alias}\"",
|
|
1099
|
+
"issuerMismatch": "The credential issuer \"{issuer}\" does not match the DID of the proof verification method \"{method}\"",
|
|
1075
1100
|
"invalidSubjectId": "The subject id format is invalid it must be a Url or Urn, it is \"{subjectId}\"",
|
|
1076
1101
|
"methodMissing": "The verification method specified does not exist \"{method}\"",
|
|
1077
1102
|
"missingControllerToken": "The controller token is missing",
|
|
@@ -1154,6 +1179,26 @@
|
|
|
1154
1179
|
"openTelemetryLoggingConnector": {
|
|
1155
1180
|
"unknownExporterType": "The exporter type \"{type}\" is not supported, valid values are: otlp"
|
|
1156
1181
|
},
|
|
1182
|
+
"imapEmailConnector": {
|
|
1183
|
+
"pollFailed": "Poll failed"
|
|
1184
|
+
},
|
|
1185
|
+
"pop3EmailConnector": {
|
|
1186
|
+
"pollFailed": "Poll failed"
|
|
1187
|
+
},
|
|
1188
|
+
"mailStorageRestClient": {
|
|
1189
|
+
"notSupported": "Method \"{methodName}\" is not supported over REST."
|
|
1190
|
+
},
|
|
1191
|
+
"mailboxService": {
|
|
1192
|
+
"mailboxNotFound": "Mailbox {notFoundId} was not found.",
|
|
1193
|
+
"schemaNotFound": "No schema is registered for connector type {notFoundId}.",
|
|
1194
|
+
"unknownConnectorType": "No connector is registered for connector type {connectorType}.",
|
|
1195
|
+
"connectorTypeCannotChange": "The connector type of a mailbox cannot be changed.",
|
|
1196
|
+
"retrievalCallbackFailed": "The retrieval callback for mailbox {mailboxId} failed"
|
|
1197
|
+
},
|
|
1198
|
+
"mailStorageService": {
|
|
1199
|
+
"emailNotFound": "Email {notFoundId} was not found.",
|
|
1200
|
+
"retentionCleanupFailed": "Failed to remove expired emails."
|
|
1201
|
+
},
|
|
1157
1202
|
"awsMessagingSmsConnector": {
|
|
1158
1203
|
"sendSMSFailed": "Failed to send SMS"
|
|
1159
1204
|
},
|
|
@@ -1179,6 +1224,9 @@
|
|
|
1179
1224
|
"entityStorageMessagingEmailConnector": {
|
|
1180
1225
|
"sendCustomEmailFailed": "Failed to send custom email"
|
|
1181
1226
|
},
|
|
1227
|
+
"smtpMessagingEmailConnector": {
|
|
1228
|
+
"sendCustomEmailFailed": "Failed to send custom email"
|
|
1229
|
+
},
|
|
1182
1230
|
"messagingService": {
|
|
1183
1231
|
"notConfiguredEmailMessagingConnector": "Email messaging connector was not configured",
|
|
1184
1232
|
"notConfiguredPushNotificationMessagingConnector": "Push notification messaging connector was not configured",
|
|
@@ -1280,9 +1328,10 @@
|
|
|
1280
1328
|
"transferFailed": "The transfer of the notarization failed"
|
|
1281
1329
|
},
|
|
1282
1330
|
"dataAccessPointService": {
|
|
1283
|
-
"noHandlerForAssetType": "No handler registered for asset type \"{assetType}\""
|
|
1331
|
+
"noHandlerForAssetType": "No handler registered for asset type \"{assetType}\"",
|
|
1332
|
+
"notAuthorizedToQuery": "Not authorized to query asset type \"{assetType}\"",
|
|
1333
|
+
"notAuthorizedToGet": "Not authorized to get asset type \"{assetType}\" with id \"{id}\""
|
|
1284
1334
|
},
|
|
1285
|
-
"dataAccessRequestPointService": {},
|
|
1286
1335
|
"policyAdministrationPointService": {
|
|
1287
1336
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the rights management components \"{namespace}\"",
|
|
1288
1337
|
"policyAlreadyExists": "A policy with id: \"{existingId}\" already exists",
|
|
@@ -1355,11 +1404,11 @@
|
|
|
1355
1404
|
"agreementNotAccepted": "Agreement with id: \"{agreementId}\" was not accepted by the requester",
|
|
1356
1405
|
"noAgreementCreated": "No agreement was created for offer with id: \"{offerId}\"",
|
|
1357
1406
|
"providerInitiatedNotSupported": "Provider initiated negotiations are currently not supported as the consumer identity is required to be set as the trust identity in the negotiation",
|
|
1358
|
-
"callerNotAuthorizedForNegotiation": "The caller's verified identity does not match any authorized party in this negotiation"
|
|
1407
|
+
"callerNotAuthorizedForNegotiation": "The caller's verified identity does not match any authorized party in this negotiation",
|
|
1408
|
+
"cleanupFailed": "Failed to cleanup old negotiations"
|
|
1359
1409
|
},
|
|
1360
1410
|
"policyNegotiationAdminPointService": {
|
|
1361
1411
|
"policyNotFound": "Contract negotiation with id: \"{notFoundId}\" not found",
|
|
1362
|
-
"cleanupFailed": "Failed to cleanup old negotiations",
|
|
1363
1412
|
"negotiationAlreadyExists": "Contract negotiation with correlationId: \"{existingId}\" already exists"
|
|
1364
1413
|
},
|
|
1365
1414
|
"policyExecutionPointService": {
|
|
@@ -1377,7 +1426,13 @@
|
|
|
1377
1426
|
"upDownCounterIncOrDecOnly": "An up/down counter metric can only be incremented, decremented or adjusted with an integer",
|
|
1378
1427
|
"gaugeNoIncDec": "A gauge can not be incremented or decremented",
|
|
1379
1428
|
"maxHistoryMustBePositiveInteger": "The maxHistory option must be a positive integer",
|
|
1380
|
-
"
|
|
1429
|
+
"metricValueTaskFailed": "The metric value background task failed \"{taskId}\"",
|
|
1430
|
+
"backgroundTaskComponentMissing": "The metric values cannot be written as no background task component is available"
|
|
1431
|
+
},
|
|
1432
|
+
"metricValueWriter": {
|
|
1433
|
+
"flushFailed": "Failed to flush metric values to storage",
|
|
1434
|
+
"invalidMetricOperation": "The operation \"{operation}\" is not valid for metric \"{id}\" of type \"{type}\"",
|
|
1435
|
+
"trimFailed": "Failed to trim the metric history to its retention cap"
|
|
1381
1436
|
},
|
|
1382
1437
|
"openTelemetryTelemetryConnector": {
|
|
1383
1438
|
"metricNotFound": "The metric could not be found \"{notFoundId}\"",
|
|
@@ -1385,10 +1440,14 @@
|
|
|
1385
1440
|
"gaugeNoIncDec": "A gauge can not be incremented or decremented"
|
|
1386
1441
|
},
|
|
1387
1442
|
"metricsCollectorService": {
|
|
1388
|
-
"producerCollectionFailed": "Failed to collect metrics from producer \"{producer}\""
|
|
1443
|
+
"producerCollectionFailed": "Failed to collect metrics from producer \"{producer}\"",
|
|
1444
|
+
"metricRecordFailed": "Failed to record the collected metric values",
|
|
1445
|
+
"collectionCycleFailed": "Failed to run the metrics collection cycle"
|
|
1389
1446
|
},
|
|
1390
1447
|
"entityStorageTracingConnector": {
|
|
1391
|
-
"spanNotFound": "The span could not be found \"{notFoundId}\""
|
|
1448
|
+
"spanNotFound": "The span could not be found \"{notFoundId}\"",
|
|
1449
|
+
"retentionFailed": "The span retention cleanup failed",
|
|
1450
|
+
"flushFailed": "Failed to flush cached spans to storage"
|
|
1392
1451
|
},
|
|
1393
1452
|
"openTelemetryTracingConnector": {
|
|
1394
1453
|
"sampleRatioOutOfRange": "The sample ratio \"{sampleRatio}\" must be between 0 and 1"
|
|
@@ -1414,6 +1473,7 @@
|
|
|
1414
1473
|
"tokenMissingCredential": "The JWT token does not contain a verifiable credential.",
|
|
1415
1474
|
"tokenMissingIssuer": "The verifiable credential in the JWT does not contain an issuer.",
|
|
1416
1475
|
"tokenExpired": "The JWT token has expired.",
|
|
1476
|
+
"tokenRevoked": "The verifiable credential in the JWT has been revoked.",
|
|
1417
1477
|
"tokenMissingSubject": "The verifiable credential in the JWT does not contain a subject.",
|
|
1418
1478
|
"tokenDecodingFailed": "Failed to decode the JWT token."
|
|
1419
1479
|
},
|
|
@@ -1442,7 +1502,6 @@
|
|
|
1442
1502
|
"exportKeyFailed": "Failed to export key \"{name}\" with keyPath \"{keyPath}\"",
|
|
1443
1503
|
"getKeyDeleteConfigurationFailed": "Failed to get key delete configuration \"{name}\"",
|
|
1444
1504
|
"exportKeyNotFound": "Export key with name \"{notFoundId}\" not found",
|
|
1445
|
-
"versionsNotFound": "Versions for key \"{notFoundId}\" not found",
|
|
1446
1505
|
"keyNotFound": "The key \"{notFoundId}\" was not found in the vault",
|
|
1447
1506
|
"secretNotFound": "The secret \"{notFoundId}\" was not found in the vault",
|
|
1448
1507
|
"getKeyFailed": "Failed to get key \"{name}\"",
|
|
@@ -1490,7 +1549,9 @@
|
|
|
1490
1549
|
},
|
|
1491
1550
|
"warn": {
|
|
1492
1551
|
"node": {
|
|
1493
|
-
"unknownEnvVars": "Unknown environment variable properties [{keys}], they will be ignored. Check for typos in variable names, for custom variables use the {prefix}ENV_ALLOW_LIST."
|
|
1552
|
+
"unknownEnvVars": "Unknown environment variable properties [{keys}], they will be ignored. Check for typos in variable names, for custom variables use the {prefix}ENV_ALLOW_LIST.",
|
|
1553
|
+
"deprecatedEnvVar": "The environment variable \"{key}\" is deprecated and no longer has any effect, please use {replacements} instead. This variable will be removed in a future release.",
|
|
1554
|
+
"deprecatedEnvVarNoReplacement": "The environment variable \"{key}\" is deprecated and no longer has any effect. This variable will be removed in a future release."
|
|
1494
1555
|
},
|
|
1495
1556
|
"common": {
|
|
1496
1557
|
"devOnlyTool": "This tool is intended to be used for development purposes, it is not recommended for use in production scenarios."
|
|
@@ -1535,7 +1596,8 @@
|
|
|
1535
1596
|
"partitionIdsSkipped": "Skipping partition ids whose depth does not match the {expected} configured partition keys: {partitionIds}. Entities in these partitions are ignored by migration."
|
|
1536
1597
|
},
|
|
1537
1598
|
"mongoDbEntityStorageConnector": {
|
|
1538
|
-
"partitionIdsSkipped": "Skipping partition ids whose depth does not match the {expected} configured partition keys: {partitionIds}. Entities in these partitions are ignored by migration."
|
|
1599
|
+
"partitionIdsSkipped": "Skipping partition ids whose depth does not match the {expected} configured partition keys: {partitionIds}. Entities in these partitions are ignored by migration.",
|
|
1600
|
+
"indexOptionsConflict": "An index already exists on property \"{property}\" with incompatible options and will not be overwritten"
|
|
1539
1601
|
},
|
|
1540
1602
|
"mySqlEntityStorageConnector": {
|
|
1541
1603
|
"partitionIdsSkipped": "Skipping partition ids whose depth does not match the {expected} configured partition keys: {partitionIds}. Entities in these partitions are ignored by migration."
|
|
@@ -1559,12 +1621,17 @@
|
|
|
1559
1621
|
"immutableProofTask": {
|
|
1560
1622
|
"taskEngineStopFailed": "Stopping the task engine for proof \"{proofId}\" failed, the task result is unaffected"
|
|
1561
1623
|
},
|
|
1562
|
-
"
|
|
1563
|
-
"
|
|
1624
|
+
"mailboxService": {
|
|
1625
|
+
"consumerNotificationFailed": "Failed to notify consumer {consumerName}.",
|
|
1626
|
+
"startConnectorFailed": "Failed to start connector for mailbox {mailboxId}."
|
|
1564
1627
|
},
|
|
1565
1628
|
"policyNegotiationPointService": {
|
|
1566
1629
|
"terminatedCallbackFailed": "Failed to notify requester via terminated() for negotiation id: \"{negotiationId}\"",
|
|
1567
|
-
"callbackDeliveryFailed": "Failed to deliver the negotiation callback to \"{callbackAddress}\" for negotiation id: \"{negotiationId}\" in state \"{state}\"; the negotiation is unchanged and remains discoverable by polling"
|
|
1630
|
+
"callbackDeliveryFailed": "Failed to deliver the negotiation callback to \"{callbackAddress}\" for negotiation id: \"{negotiationId}\" in state \"{state}\"; the negotiation is unchanged and remains discoverable by polling",
|
|
1631
|
+
"sendTerminateFailed": "Failed to send terminate to consumer for negotiation id: \"{id}\", correlation id: \"{correlationId}\""
|
|
1632
|
+
},
|
|
1633
|
+
"entityStorageTelemetryConnector": {
|
|
1634
|
+
"flushTimeout": "The background thread did not confirm the flush within \"{timeoutMs}\" ms for task \"{taskId}\""
|
|
1568
1635
|
}
|
|
1569
1636
|
},
|
|
1570
1637
|
"node": {
|
|
@@ -2519,14 +2586,18 @@
|
|
|
2519
2586
|
"containerCreating": "Container \"{containerId}\" creating",
|
|
2520
2587
|
"containerExists": "Container \"{containerId}\" created or it already exists",
|
|
2521
2588
|
"containerDeleting": "Deleting container \"{containerId}\"",
|
|
2522
|
-
"containerDeleted": "Container \"{containerId}\" deleted"
|
|
2589
|
+
"containerDeleted": "Container \"{containerId}\" deleted",
|
|
2590
|
+
"indexPolicyUpdating": "Adding {count} missing composite indexes to container \"{containerId}\"",
|
|
2591
|
+
"indexPolicyUpdated": "Added {count} missing composite indexes to container \"{containerId}\""
|
|
2523
2592
|
},
|
|
2524
2593
|
"dynamoDbEntityStorageConnector": {
|
|
2525
2594
|
"tableCreating": "Creating table \"{tableName}\"",
|
|
2526
2595
|
"tableCreated": "Created table \"{tableName}\"",
|
|
2527
2596
|
"tableExists": "Skipping create table \"{tableName}\" as it already exists",
|
|
2528
2597
|
"tableDeleting": "Deleting table \"{tableName}\"",
|
|
2529
|
-
"tableDeleted": "Table \"{tableName}\" deleted"
|
|
2598
|
+
"tableDeleted": "Table \"{tableName}\" deleted",
|
|
2599
|
+
"indexCreating": "Creating index \"{indexName}\" on table \"{tableName}\"",
|
|
2600
|
+
"indexCreated": "Created index \"{indexName}\" on table \"{tableName}\""
|
|
2530
2601
|
},
|
|
2531
2602
|
"fileEntityStorageConnector": {
|
|
2532
2603
|
"directoryCreating": "Creating directory \"{directory}\"",
|
|
@@ -2558,7 +2629,9 @@
|
|
|
2558
2629
|
"tableCreating": "Table \"{tableName}\" creating",
|
|
2559
2630
|
"tableExists": "Table \"{tableName}\" created or it already exists",
|
|
2560
2631
|
"tableDropping": "Dropping table \"{tableName}\"",
|
|
2561
|
-
"tableDropped": "Table \"{tableName}\" dropped"
|
|
2632
|
+
"tableDropped": "Table \"{tableName}\" dropped",
|
|
2633
|
+
"legacyIndexDropped": "Legacy index \"{indexName}\" dropped from table \"{tableName}\", \"{newIndexName}\" already covers the column",
|
|
2634
|
+
"legacyIndexRenamed": "Legacy index \"{indexName}\" renamed to \"{newIndexName}\" on table \"{tableName}\""
|
|
2562
2635
|
},
|
|
2563
2636
|
"postgreSqlEntityStorageConnector": {
|
|
2564
2637
|
"databaseCreating": "Database \"{databaseName}\" creating",
|
|
@@ -2566,7 +2639,9 @@
|
|
|
2566
2639
|
"tableCreating": "Table \"{tableName}\" creating",
|
|
2567
2640
|
"tableExists": "Table \"{tableName}\" created or it already exists",
|
|
2568
2641
|
"tableDropping": "Dropping table \"{tableName}\"",
|
|
2569
|
-
"tableDropped": "Table \"{tableName}\" dropped"
|
|
2642
|
+
"tableDropped": "Table \"{tableName}\" dropped",
|
|
2643
|
+
"legacyIndexDropped": "Legacy index \"{indexName}\" dropped from table \"{tableName}\", \"{newIndexName}\" already covers the column",
|
|
2644
|
+
"legacyIndexRenamed": "Legacy index \"{indexName}\" renamed to \"{newIndexName}\" on table \"{tableName}\""
|
|
2570
2645
|
},
|
|
2571
2646
|
"scyllaDBTableConnector": {
|
|
2572
2647
|
"keyspaceCreating": "Creating keyspace \"{keyspace}\"",
|
|
@@ -2624,6 +2699,12 @@
|
|
|
2624
2699
|
"connectorStarted": "The connector was started with \"{exporterCount}\" exporter(s)",
|
|
2625
2700
|
"connectorStopped": "The connector was stopped"
|
|
2626
2701
|
},
|
|
2702
|
+
"imapEmailConnector": {
|
|
2703
|
+
"emailReceived": "Email received \"{subject}\""
|
|
2704
|
+
},
|
|
2705
|
+
"pop3EmailConnector": {
|
|
2706
|
+
"emailReceived": "Email received \"{subject}\""
|
|
2707
|
+
},
|
|
2627
2708
|
"awsMessagingSmsConnector": {
|
|
2628
2709
|
"smsSending": "Sending SMS of type"
|
|
2629
2710
|
},
|
|
@@ -2636,7 +2717,7 @@
|
|
|
2636
2717
|
"platformAppCreating": "Creating platform application"
|
|
2637
2718
|
},
|
|
2638
2719
|
"awsMessagingEmailConnector": {
|
|
2639
|
-
"emailSending": "Sending email
|
|
2720
|
+
"emailSending": "Sending email \"{subject}\""
|
|
2640
2721
|
},
|
|
2641
2722
|
"entityStorageMessagingSmsConnector": {
|
|
2642
2723
|
"smsSending": "Sending SMS"
|
|
@@ -2646,20 +2727,16 @@
|
|
|
2646
2727
|
"pushNotificationSending": "Sending push notification"
|
|
2647
2728
|
},
|
|
2648
2729
|
"entityStorageMessagingEmailConnector": {
|
|
2649
|
-
"emailSending": "Sending email"
|
|
2730
|
+
"emailSending": "Sending email \"{subject}\""
|
|
2731
|
+
},
|
|
2732
|
+
"smtpMessagingEmailConnector": {
|
|
2733
|
+
"emailSending": "Sending email \"{subject}\""
|
|
2650
2734
|
},
|
|
2651
2735
|
"messagingService": {},
|
|
2652
2736
|
"iotaNftConnector": {
|
|
2653
2737
|
"contractReady": "Contract ready for use"
|
|
2654
2738
|
},
|
|
2655
2739
|
"iotaNotarizationConnector": {},
|
|
2656
|
-
"dataAccessPointService": {
|
|
2657
|
-
"registeredHandler": "Handler registered with id: \"{handlerId}\"",
|
|
2658
|
-
"unregisteredHandler": "Handler unregistered with id: \"{handlerId}\""
|
|
2659
|
-
},
|
|
2660
|
-
"dataAccessRequestPointService": {
|
|
2661
|
-
"missingNodeIdentity": "The node identity is missing"
|
|
2662
|
-
},
|
|
2663
2740
|
"policyEnforcementPointService": {
|
|
2664
2741
|
"processing": "Processing information using processor with id: \"{processorId}\", policy id: \"{policyId}\"",
|
|
2665
2742
|
"intercepting": "Intercepting information for policy id: \"{policyId}\""
|
|
@@ -2718,7 +2795,9 @@
|
|
|
2718
2795
|
"metricCreated": "The metric was created \"{id}\" with type \"type\" and label \"{label}\"",
|
|
2719
2796
|
"metricUpdated": "The metric was updated \"{id}\" with type \"type\" and label \"{label}\"",
|
|
2720
2797
|
"metricRemoved": "The metric was removed \"{id}\"",
|
|
2721
|
-
"metricValueCreated": "The metric value was
|
|
2798
|
+
"metricValueCreated": "The metric value was queued for \"{id}\"",
|
|
2799
|
+
"metricValuesCreated": "\"{count}\" metric values were queued",
|
|
2800
|
+
"metricsCreated": "\"{count}\" metrics were created"
|
|
2722
2801
|
},
|
|
2723
2802
|
"openTelemetryTelemetryConnector": {
|
|
2724
2803
|
"connectorStarted": "The connector was started with \"{readerCount}\" metric reader(s)",
|
|
@@ -2990,6 +3069,9 @@
|
|
|
2990
3069
|
"taskEngineStarted": "The proof task engine started for proof \"{proofId}\" in {elapsedMs}ms",
|
|
2991
3070
|
"taskVerifiableCredentialCreated": "The verifiable credential for proof \"{proofId}\" was created in {elapsedMs}ms",
|
|
2992
3071
|
"taskNotarizationComplete": "The notarization for proof \"{proofId}\" completed in {elapsedMs}ms, total task time {totalElapsedMs}ms"
|
|
3072
|
+
},
|
|
3073
|
+
"metricsRouteProcessor": {
|
|
3074
|
+
"metricRecordFailed": "Failed to record the request metric for route {route}"
|
|
2993
3075
|
}
|
|
2994
3076
|
},
|
|
2995
3077
|
"codeLists": {
|
|
@@ -17560,5 +17642,23 @@
|
|
|
17560
17642
|
"unece:specifiedParameter": "A parameter specified for this XHE context.",
|
|
17561
17643
|
"unece:specifiedParameter_label": "Specified Parameter"
|
|
17562
17644
|
}
|
|
17645
|
+
},
|
|
17646
|
+
"imapEmailConnectorConfigSchema": {
|
|
17647
|
+
"host": "Host",
|
|
17648
|
+
"port": "Port",
|
|
17649
|
+
"secure": "Secure",
|
|
17650
|
+
"username": "Username",
|
|
17651
|
+
"password": "Password",
|
|
17652
|
+
"folders": "Folders",
|
|
17653
|
+
"pollingIntervalMinutes": "Polling Interval (Minutes)"
|
|
17654
|
+
},
|
|
17655
|
+
"pop3EmailConnectorConfigSchema": {
|
|
17656
|
+
"host": "Host",
|
|
17657
|
+
"port": "Port",
|
|
17658
|
+
"secure": "Secure",
|
|
17659
|
+
"username": "Username",
|
|
17660
|
+
"password": "Password",
|
|
17661
|
+
"pollingIntervalMinutes": "Polling Interval (Minutes)",
|
|
17662
|
+
"retainMessages": "Retain Messages"
|
|
17563
17663
|
}
|
|
17564
17664
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,131 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.4-next.2](https://github.com/iotaledger/twin-node/compare/node-v0.9.4-next.1...node-v0.9.4-next.2) (2026-09-08)
|
|
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.4-next.1 to 0.9.4-next.2
|
|
16
|
+
|
|
17
|
+
## [0.9.4-next.1](https://github.com/iotaledger/twin-node/compare/node-v0.9.4-next.0...node-v0.9.4-next.1) (2026-09-07)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add additional env vars ([#328](https://github.com/iotaledger/twin-node/issues/328)) ([6ca8718](https://github.com/iotaledger/twin-node/commit/6ca87184bc4d78829c957ea055d3c281aca6cf9f))
|
|
23
|
+
* add automation ([cfc63b4](https://github.com/iotaledger/twin-node/commit/cfc63b465c139280f696877df21d54dc6a065a7e))
|
|
24
|
+
* add CLI commands and remove automated bootstrap code ([#69](https://github.com/iotaledger/twin-node/issues/69)) ([6e40933](https://github.com/iotaledger/twin-node/commit/6e40933d8bb820b380e1074fc88feeedca0ef7d9))
|
|
25
|
+
* add cloud soak profile, disabled groups filter, and nightly GHA workflow ([#266](https://github.com/iotaledger/twin-node/issues/266)) ([6e8179c](https://github.com/iotaledger/twin-node/commit/6e8179c2dadbba8a2f0d577b44dc1ed9c8288046))
|
|
26
|
+
* add context id features ([#53](https://github.com/iotaledger/twin-node/issues/53)) ([827adf5](https://github.com/iotaledger/twin-node/commit/827adf52cb87fca53cec52b27e67f7a9dba2c088))
|
|
27
|
+
* add data space connector ([157e8b0](https://github.com/iotaledger/twin-node/commit/157e8b0a76e3a8a63c1991924f7f963eb83e27ae))
|
|
28
|
+
* add dsp sweep vars ([#340](https://github.com/iotaledger/twin-node/issues/340)) ([5487c13](https://github.com/iotaledger/twin-node/commit/5487c13197fcd386206ec37f9f342c55ec5b1176))
|
|
29
|
+
* add extensions support ([476d5a8](https://github.com/iotaledger/twin-node/commit/476d5a864026a2f78e5b02bc9eb81359777a4a45))
|
|
30
|
+
* add mutex settings ([#222](https://github.com/iotaledger/twin-node/issues/222)) ([492c55f](https://github.com/iotaledger/twin-node/commit/492c55f67d5f70c2a4a27dfdb2700a644ee87955))
|
|
31
|
+
* add notarization ([#121](https://github.com/iotaledger/twin-node/issues/121)) ([b2a11df](https://github.com/iotaledger/twin-node/commit/b2a11df92c7b5026f73f08a018c0586ebe008e92))
|
|
32
|
+
* add obligation enforcers and multi instance support ([#89](https://github.com/iotaledger/twin-node/issues/89)) ([d81af99](https://github.com/iotaledger/twin-node/commit/d81af99b8c4db6e9a1370b7065bf6d9d222c71ed))
|
|
33
|
+
* add rights management components ([0fc6293](https://github.com/iotaledger/twin-node/commit/0fc629332db24494bd73003625c7bf3f939a2597))
|
|
34
|
+
* add soak and load test harness for the node server with k6 and memory-growth detection ([#248](https://github.com/iotaledger/twin-node/issues/248)) ([5dc9193](https://github.com/iotaledger/twin-node/commit/5dc91931d448796f4dedbab912c73817a8041b11))
|
|
35
|
+
* add standalone federated catalogue example config and endpoint tests ([#235](https://github.com/iotaledger/twin-node/issues/235)) ([ffb51dd](https://github.com/iotaledger/twin-node/commit/ffb51ddda5188c2f21b8ce65343b39a28f4eee4b))
|
|
36
|
+
* add support for dynamodb connection timeout ([63051b0](https://github.com/iotaledger/twin-node/commit/63051b0d22138079115dfac921e7f0c45eaad34e))
|
|
37
|
+
* add synchronised storage config ([e315869](https://github.com/iotaledger/twin-node/commit/e315869adbffcd7fe5d3ce151dd35f662f6134a9))
|
|
38
|
+
* add tenant override ([#337](https://github.com/iotaledger/twin-node/issues/337)) ([b4ea765](https://github.com/iotaledger/twin-node/commit/b4ea7656e2557c19053365dd5d4af14d0d945cd5))
|
|
39
|
+
* add tracing ([#344](https://github.com/iotaledger/twin-node/issues/344)) ([4fa71cd](https://github.com/iotaledger/twin-node/commit/4fa71cd0eafd7d708df15c8f0a85323fecd05561))
|
|
40
|
+
* add tracing console connector ([#373](https://github.com/iotaledger/twin-node/issues/373)) ([fb36cb8](https://github.com/iotaledger/twin-node/commit/fb36cb8bebc2e8c1b94fa332cead8283ca5d636a))
|
|
41
|
+
* add tracing support ([a4986fc](https://github.com/iotaledger/twin-node/commit/a4986fc4af603ee461ec8d18ff502dddbc43edec))
|
|
42
|
+
* add trust and rights management plugin support ([cdeb504](https://github.com/iotaledger/twin-node/commit/cdeb504ee5986a347466162b9afa781645b4a54c))
|
|
43
|
+
* add trust ttl ([#73](https://github.com/iotaledger/twin-node/issues/73)) ([911cee7](https://github.com/iotaledger/twin-node/commit/911cee771bba490143bb1574ca8360f7cf8baa1a))
|
|
44
|
+
* add validate-locales ([1a19dcb](https://github.com/iotaledger/twin-node/commit/1a19dcb005c2f0e3103e290db28c48a3464094cb))
|
|
45
|
+
* add vault prefix configuration ([#75](https://github.com/iotaledger/twin-node/issues/75)) ([1d4afb1](https://github.com/iotaledger/twin-node/commit/1d4afb1b1a8aa60795898eeb9e7f5153c279527d))
|
|
46
|
+
* adding npm and https protocols to load extensions ([#45](https://github.com/iotaledger/twin-node/issues/45)) ([33940b7](https://github.com/iotaledger/twin-node/commit/33940b7e771a0c5af32c18d442deb26a8631fd02))
|
|
47
|
+
* additional cli commands ([#269](https://github.com/iotaledger/twin-node/issues/269)) ([c9e7c93](https://github.com/iotaledger/twin-node/commit/c9e7c939aedfceed9cbe501f2dc936e84289ed62))
|
|
48
|
+
* additional env vars and validation ([#324](https://github.com/iotaledger/twin-node/issues/324)) ([6b01e8c](https://github.com/iotaledger/twin-node/commit/6b01e8c10f9aa7181f51f13534d8164db3e7322d))
|
|
49
|
+
* additional options for enabling components ([e13d772](https://github.com/iotaledger/twin-node/commit/e13d7721a0dd7143d456fff246622cbe63dbd0f1))
|
|
50
|
+
* additional route logging env vars ([7152c88](https://github.com/iotaledger/twin-node/commit/7152c887c3ba76778e2d9e68ba57198b8d81d802))
|
|
51
|
+
* align node module with dataspace rename and control plane integ… ([#95](https://github.com/iotaledger/twin-node/issues/95)) ([8129868](https://github.com/iotaledger/twin-node/commit/812986886fb5d779dd380956c4e6cc47c2d73530))
|
|
52
|
+
* bootstrap-legacy rename ([#310](https://github.com/iotaledger/twin-node/issues/310)) ([53af8a2](https://github.com/iotaledger/twin-node/commit/53af8a2e797e90bb601416215247cd8649dd6220))
|
|
53
|
+
* 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))
|
|
54
|
+
* custom REST paths ([#99](https://github.com/iotaledger/twin-node/issues/99)) ([dcab1b2](https://github.com/iotaledger/twin-node/commit/dcab1b2b23c13b4c9f39c3c1c67284f56e732bd1))
|
|
55
|
+
* dataspace plane path ([#272](https://github.com/iotaledger/twin-node/issues/272)) ([5998eeb](https://github.com/iotaledger/twin-node/commit/5998eeb6fa1392ae753eb6bafeccefa1fb690573))
|
|
56
|
+
* email ingestion ([#379](https://github.com/iotaledger/twin-node/issues/379)) ([12da79d](https://github.com/iotaledger/twin-node/commit/12da79dc9b167e288c555d4f1909a61c190eee4d))
|
|
57
|
+
* enable N2N dataspace protocol with synchronized storage ([#98](https://github.com/iotaledger/twin-node/issues/98)) ([f67e366](https://github.com/iotaledger/twin-node/commit/f67e366c5ed3c829955a62b19c420361f035a578))
|
|
58
|
+
* enhanced cli commands ([#288](https://github.com/iotaledger/twin-node/issues/288)) ([479fb34](https://github.com/iotaledger/twin-node/commit/479fb3448c493a134aee35b69ae39458e493a4ad))
|
|
59
|
+
* env var simplification ([460b0f2](https://github.com/iotaledger/twin-node/commit/460b0f20a73cb482f7443af502f261d5f9d01759))
|
|
60
|
+
* env var validation ([#243](https://github.com/iotaledger/twin-node/issues/243)) ([569945a](https://github.com/iotaledger/twin-node/commit/569945a751eb52d008a681777a3cba881af1b9a4))
|
|
61
|
+
* env vars consistency ([1823b7a](https://github.com/iotaledger/twin-node/commit/1823b7aeae5dc7484861534b851080afda64d869))
|
|
62
|
+
* env-prefix option and user-update cli command ([#83](https://github.com/iotaledger/twin-node/issues/83)) ([fc48efa](https://github.com/iotaledger/twin-node/commit/fc48efa7ad72173def048170c3afb5eeb9f1b292))
|
|
63
|
+
* eslint migration to flat config ([080db74](https://github.com/iotaledger/twin-node/commit/080db746390230f78725d214bc957da2efee9eb1))
|
|
64
|
+
* exclude unece codes from open api spec ([16b72f3](https://github.com/iotaledger/twin-node/commit/16b72f37af0d5aa107e5007741690a3fc043153a))
|
|
65
|
+
* expose gasBudget and gasReservationDuration as configurable env vars ([#286](https://github.com/iotaledger/twin-node/issues/286)) ([d678b27](https://github.com/iotaledger/twin-node/commit/d678b27d629930a6ce85eeab9caf89d1187c3461))
|
|
66
|
+
* extend to 7-group weighted mix, fix REST paths + JSON-LD contexts ([#257](https://github.com/iotaledger/twin-node/issues/257)) ([d9f8d55](https://github.com/iotaledger/twin-node/commit/d9f8d55d389a82947b7a0297f44f76f7f6b3ba21))
|
|
67
|
+
* federated catalogue trust mode ([#194](https://github.com/iotaledger/twin-node/issues/194)) ([c18e6fb](https://github.com/iotaledger/twin-node/commit/c18e6fbe0014eb5faf8084d16169d86f3d3b23a6))
|
|
68
|
+
* file logging config ([#287](https://github.com/iotaledger/twin-node/issues/287)) ([a567b25](https://github.com/iotaledger/twin-node/commit/a567b253cbb8b9af872bb0e494c013212f4f55a2))
|
|
69
|
+
* first metrics in the core and app for testing ([#139](https://github.com/iotaledger/twin-node/issues/139)) ([abe17bb](https://github.com/iotaledger/twin-node/commit/abe17bb9a6261dcb7fd46253221182fbb1dc2259))
|
|
70
|
+
* health and url transformer ([#131](https://github.com/iotaledger/twin-node/issues/131)) ([3658903](https://github.com/iotaledger/twin-node/commit/36589036b9bea120880fc395b0d123a89032cf40))
|
|
71
|
+
* identity profile information source ([dbb53d1](https://github.com/iotaledger/twin-node/commit/dbb53d145f517070d864f37650a6dbc1f3e9c3a8))
|
|
72
|
+
* immutable proof config ([#307](https://github.com/iotaledger/twin-node/issues/307)) ([9257495](https://github.com/iotaledger/twin-node/commit/92574953329647756aa6ab4cca80b1707e14a33f))
|
|
73
|
+
* immutable proof gate and additional config ([#157](https://github.com/iotaledger/twin-node/issues/157)) ([1d1fbb7](https://github.com/iotaledger/twin-node/commit/1d1fbb7c53525af848761dc25b42e9e676929972))
|
|
74
|
+
* improve bootstrapping and shutdown behaviour ([#66](https://github.com/iotaledger/twin-node/issues/66)) ([65b3452](https://github.com/iotaledger/twin-node/commit/65b345240334bfff48b52e136cc486cd7ac7f290))
|
|
75
|
+
* improve node logging ([c25b9c6](https://github.com/iotaledger/twin-node/commit/c25b9c6779bdb76f341df072c39b4c2fae4565a3))
|
|
76
|
+
* improved cli commands ([#206](https://github.com/iotaledger/twin-node/issues/206)) ([cf00850](https://github.com/iotaledger/twin-node/commit/cf0085023a66e187aaaaf3889128c845c73a1faf))
|
|
77
|
+
* migration options ([#293](https://github.com/iotaledger/twin-node/issues/293)) ([91acc88](https://github.com/iotaledger/twin-node/commit/91acc881f665be0177b2e895e2810dd4d6145105))
|
|
78
|
+
* migration testing ([#199](https://github.com/iotaledger/twin-node/issues/199)) ([97a731c](https://github.com/iotaledger/twin-node/commit/97a731c520d66ab0588d80987a0f88d388ce51ae))
|
|
79
|
+
* multi-tenant env wiring, trust auto-enable, tenant-token vault key, engine-driven callbackPath ([#128](https://github.com/iotaledger/twin-node/issues/128)) ([0de4d35](https://github.com/iotaledger/twin-node/commit/0de4d356fb2f825afae5469005d475700f510ee4))
|
|
80
|
+
* new tenant auth mechanisms ([#168](https://github.com/iotaledger/twin-node/issues/168)) ([686f111](https://github.com/iotaledger/twin-node/commit/686f1118e79e6f26a8dc72a5e9172584057f4518))
|
|
81
|
+
* organization identifiers ([#203](https://github.com/iotaledger/twin-node/issues/203)) ([1a6b176](https://github.com/iotaledger/twin-node/commit/1a6b1760d9f8e43a769407668426c70e1c8e1aa8))
|
|
82
|
+
* pool env vars ([#331](https://github.com/iotaledger/twin-node/issues/331)) ([338ea61](https://github.com/iotaledger/twin-node/commit/338ea612b37aa4d15971c8a09def47bee9395d0c))
|
|
83
|
+
* remove dap and darp ([36c3ffb](https://github.com/iotaledger/twin-node/commit/36c3ffb31af65a0e3025859dab675efeee043155))
|
|
84
|
+
* remove set-tenant ([#186](https://github.com/iotaledger/twin-node/issues/186)) ([1fc1909](https://github.com/iotaledger/twin-node/commit/1fc1909e6335dea51dfec3bb91fba4badaa9790a))
|
|
85
|
+
* rest metrics ([#341](https://github.com/iotaledger/twin-node/issues/341)) ([ebec573](https://github.com/iotaledger/twin-node/commit/ebec5736bb66adfd97f7d73912bec1ce7392e5f8))
|
|
86
|
+
* rework soak memory-growth verdict to stop flip-flopping on identical code ([#372](https://github.com/iotaledger/twin-node/issues/372)) ([2afa74d](https://github.com/iotaledger/twin-node/commit/2afa74dd4c638cd9542638e2ea4fb34ab7dc1379))
|
|
87
|
+
* separate script directory from exec directory ([f6bb4db](https://github.com/iotaledger/twin-node/commit/f6bb4dbea1f1e200e0640fa154c6997ef99c99b4))
|
|
88
|
+
* silent telemetry and tracing options ([#351](https://github.com/iotaledger/twin-node/issues/351)) ([3a5752f](https://github.com/iotaledger/twin-node/commit/3a5752fc0bf8a028b3ebfc34878524ac799fb81e))
|
|
89
|
+
* support multiple entity and blob storage connectors ([a489f79](https://github.com/iotaledger/twin-node/commit/a489f7907544aef5708d5111e9f72985e1377bae))
|
|
90
|
+
* support public origin and hosting service ([#77](https://github.com/iotaledger/twin-node/issues/77)) ([3b9039f](https://github.com/iotaledger/twin-node/commit/3b9039fcba7f7038c06f8fd6a5ccc9fdbbf535b3))
|
|
91
|
+
* telemetry batching ([#347](https://github.com/iotaledger/twin-node/issues/347)) ([5d5b0a9](https://github.com/iotaledger/twin-node/commit/5d5b0a91396298fe774ae26193b0595875cd118a))
|
|
92
|
+
* telemetry tracing multi ([#357](https://github.com/iotaledger/twin-node/issues/357)) ([b6412ac](https://github.com/iotaledger/twin-node/commit/b6412ac3141a94a0f9f7d1dd391451ac9247e862))
|
|
93
|
+
* typescript 6 update ([ce2e3ca](https://github.com/iotaledger/twin-node/commit/ce2e3ca5219587709f7b9cf6c65909b48fba11b5))
|
|
94
|
+
* update background tasks and add fedcat filters ([1fd297e](https://github.com/iotaledger/twin-node/commit/1fd297e29f60b5bb3909638b68e326c5b0e2d77d))
|
|
95
|
+
* update dependencies ([64c8ea8](https://github.com/iotaledger/twin-node/commit/64c8ea8c8b5e918f7ad419c4e3b8d08faf5e3fdd))
|
|
96
|
+
* update dependencies ([aab05b5](https://github.com/iotaledger/twin-node/commit/aab05b552152a208a504fb9a080603f1990d4f79))
|
|
97
|
+
* update dependencies ([6cb3d3a](https://github.com/iotaledger/twin-node/commit/6cb3d3a63f7b976f80074ddecfba034b7e92f919))
|
|
98
|
+
* update dependencies ([351f777](https://github.com/iotaledger/twin-node/commit/351f777e001bf4183762657fc565b133a317600a))
|
|
99
|
+
* update dependencies ([#316](https://github.com/iotaledger/twin-node/issues/316)) ([f3fe328](https://github.com/iotaledger/twin-node/commit/f3fe3281a80f34763c923eacca58364273a550b7))
|
|
100
|
+
* update docs ([61e5a00](https://github.com/iotaledger/twin-node/commit/61e5a004089a0c11ec03e354b076604ecdeb4817))
|
|
101
|
+
* update docs ([409126a](https://github.com/iotaledger/twin-node/commit/409126a1325998face4634426b71682944c6a504))
|
|
102
|
+
* update document management components ([ed2c065](https://github.com/iotaledger/twin-node/commit/ed2c065a5030a7233f3623818d7325d85654ef0d))
|
|
103
|
+
* update engine ([a40b377](https://github.com/iotaledger/twin-node/commit/a40b37726c3b61c6bb40265ec0006d1071ffac7e))
|
|
104
|
+
* update engine ([4b438e2](https://github.com/iotaledger/twin-node/commit/4b438e22c27d784ee6cc964b7cb4401e9699ab16))
|
|
105
|
+
* update for livez endpoint ([9fc2e6a](https://github.com/iotaledger/twin-node/commit/9fc2e6ade38b3ec9591399a633d02b1e5fe07910))
|
|
106
|
+
* update framework components ([4bee2b9](https://github.com/iotaledger/twin-node/commit/4bee2b9d3651df09b8550a9ed226be1b46031854))
|
|
107
|
+
* update framework core ([8bd769a](https://github.com/iotaledger/twin-node/commit/8bd769a4451f5f1f6be3f115a5e94eeb05bce7f1))
|
|
108
|
+
* update logging retention units in config ([0b9bb69](https://github.com/iotaledger/twin-node/commit/0b9bb696db0722f6b33e37e1ebd1f4d6ffbcf7cc))
|
|
109
|
+
* update rights management ([5c992c6](https://github.com/iotaledger/twin-node/commit/5c992c6b0d72f3eeaa39ee267e096d9a3f477f4e))
|
|
110
|
+
* update rights management components ([176a0d6](https://github.com/iotaledger/twin-node/commit/176a0d611f88360fc845ae233b26ee0b43d7cb23))
|
|
111
|
+
* update to latest engine ([00d4974](https://github.com/iotaledger/twin-node/commit/00d4974f9cfb02bf48505cfb4af4a7aba1df4b3d))
|
|
112
|
+
* updated context id features ([ef7be07](https://github.com/iotaledger/twin-node/commit/ef7be07d44dccdeacf10f90cb4ffde0303faa6fa))
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
### Bug Fixes
|
|
116
|
+
|
|
117
|
+
* improve calculation of execution directory ([106d65d](https://github.com/iotaledger/twin-node/commit/106d65d7ad5524e2e147b681d68f9476c024cfaa))
|
|
118
|
+
* stalled timeout now is provided in seconds ([#241](https://github.com/iotaledger/twin-node/issues/241)) ([ebd827d](https://github.com/iotaledger/twin-node/commit/ebd827d02a9a4f8ad4f4c84d064d02831ef015cb))
|
|
119
|
+
* update dependencies ([#283](https://github.com/iotaledger/twin-node/issues/283)) ([053c53d](https://github.com/iotaledger/twin-node/commit/053c53d45ec233e6936e56f8de8d5a5346ad2242))
|
|
120
|
+
* 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))
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
### Dependencies
|
|
124
|
+
|
|
125
|
+
* The following workspace dependencies were updated
|
|
126
|
+
* dependencies
|
|
127
|
+
* @twin.org/node-core bumped from 0.9.4-next.0 to 0.9.4-next.1
|
|
128
|
+
|
|
3
129
|
## [0.9.3](https://github.com/iotaledger/twin-node/compare/node-v0.9.3...node-v0.9.3) (2026-09-04)
|
|
4
130
|
|
|
5
131
|
|
package/docs/open-api/spec.json
CHANGED
|
@@ -6986,7 +6986,7 @@
|
|
|
6986
6986
|
"/telemetry/metric": {
|
|
6987
6987
|
"post": {
|
|
6988
6988
|
"operationId": "telemetryCreateMetric",
|
|
6989
|
-
"summary": "Create
|
|
6989
|
+
"summary": "Create one or more telemetry metrics",
|
|
6990
6990
|
"tags": [
|
|
6991
6991
|
"Telemetry"
|
|
6992
6992
|
],
|
|
@@ -6996,12 +6996,12 @@
|
|
|
6996
6996
|
}
|
|
6997
6997
|
],
|
|
6998
6998
|
"requestBody": {
|
|
6999
|
-
"description": "Create
|
|
6999
|
+
"description": "Create one or more telemetry metrics.",
|
|
7000
7000
|
"required": true,
|
|
7001
7001
|
"content": {
|
|
7002
7002
|
"application/json": {
|
|
7003
7003
|
"schema": {
|
|
7004
|
-
"$ref": "#/components/schemas/
|
|
7004
|
+
"$ref": "#/components/schemas/TelemetryCreateMetricRequest"
|
|
7005
7005
|
},
|
|
7006
7006
|
"examples": {
|
|
7007
7007
|
"telemetryCreateMetricRequestExample": {
|
|
@@ -7010,8 +7010,24 @@
|
|
|
7010
7010
|
"label": "My Counter",
|
|
7011
7011
|
"description": "This is my counter",
|
|
7012
7012
|
"type": 0,
|
|
7013
|
-
"unit": "KG"
|
|
7013
|
+
"unit": "KG",
|
|
7014
|
+
"maxHistory": 1000
|
|
7014
7015
|
}
|
|
7016
|
+
},
|
|
7017
|
+
"telemetryCreateMetricsRequestExample": {
|
|
7018
|
+
"value": [
|
|
7019
|
+
{
|
|
7020
|
+
"id": "my-counter",
|
|
7021
|
+
"label": "My Counter",
|
|
7022
|
+
"type": 0,
|
|
7023
|
+
"maxHistory": 1000
|
|
7024
|
+
},
|
|
7025
|
+
{
|
|
7026
|
+
"id": "my-gauge",
|
|
7027
|
+
"label": "My Gauge",
|
|
7028
|
+
"type": 2
|
|
7029
|
+
}
|
|
7030
|
+
]
|
|
7015
7031
|
}
|
|
7016
7032
|
}
|
|
7017
7033
|
}
|
|
@@ -19400,6 +19416,24 @@
|
|
|
19400
19416
|
"schema": {
|
|
19401
19417
|
"type": "string"
|
|
19402
19418
|
}
|
|
19419
|
+
},
|
|
19420
|
+
{
|
|
19421
|
+
"name": "orderBy",
|
|
19422
|
+
"description": "The policy property to order the results by.",
|
|
19423
|
+
"in": "query",
|
|
19424
|
+
"required": false,
|
|
19425
|
+
"schema": {
|
|
19426
|
+
"type": "string"
|
|
19427
|
+
}
|
|
19428
|
+
},
|
|
19429
|
+
{
|
|
19430
|
+
"name": "orderByDirection",
|
|
19431
|
+
"description": "The direction for the order, defaults to descending.",
|
|
19432
|
+
"in": "query",
|
|
19433
|
+
"required": false,
|
|
19434
|
+
"schema": {
|
|
19435
|
+
"type": "string"
|
|
19436
|
+
}
|
|
19403
19437
|
}
|
|
19404
19438
|
],
|
|
19405
19439
|
"security": [
|
|
@@ -22201,6 +22235,9 @@
|
|
|
22201
22235
|
"type": "string",
|
|
22202
22236
|
"description": "The identity of the organization which controls the vertex."
|
|
22203
22237
|
},
|
|
22238
|
+
"auditMode": {
|
|
22239
|
+
"$ref": "https://schema.twindev.org/aig/AuditableItemGraphAuditMode"
|
|
22240
|
+
},
|
|
22204
22241
|
"annotationObject": {
|
|
22205
22242
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
22206
22243
|
},
|
|
@@ -22227,11 +22264,11 @@
|
|
|
22227
22264
|
},
|
|
22228
22265
|
"verified": {
|
|
22229
22266
|
"type": "boolean",
|
|
22230
|
-
"description": "Is the vertex verified, will only be populated when verification is requested."
|
|
22267
|
+
"description": "Is the vertex verified, will only be populated when verification is requested.\nAlways undefined when the vertex is in bypass mode."
|
|
22231
22268
|
},
|
|
22232
22269
|
"version": {
|
|
22233
22270
|
"type": "number",
|
|
22234
|
-
"description": "The version of the vertex, populated only when getting a specific version.\nMaps to https://schema.org/version."
|
|
22271
|
+
"description": "The version of the vertex, populated only when getting a specific version.\nAlways undefined when the vertex is in bypass mode.\nMaps to https://schema.org/version."
|
|
22235
22272
|
}
|
|
22236
22273
|
},
|
|
22237
22274
|
"required": [
|
|
@@ -22275,16 +22312,19 @@
|
|
|
22275
22312
|
"type": "string",
|
|
22276
22313
|
"description": "The identity of the organization which controls the vertex."
|
|
22277
22314
|
},
|
|
22315
|
+
"auditMode": {
|
|
22316
|
+
"$ref": "https://schema.twindev.org/aig/AuditableItemGraphAuditMode"
|
|
22317
|
+
},
|
|
22278
22318
|
"annotationObject": {
|
|
22279
22319
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
22280
22320
|
},
|
|
22281
22321
|
"verified": {
|
|
22282
22322
|
"type": "boolean",
|
|
22283
|
-
"description": "Is the vertex verified, will only be populated when verification is requested."
|
|
22323
|
+
"description": "Is the vertex verified, will only be populated when verification is requested.\nAlways undefined when the vertex is in bypass mode."
|
|
22284
22324
|
},
|
|
22285
22325
|
"version": {
|
|
22286
22326
|
"type": "number",
|
|
22287
|
-
"description": "The version of the vertex, populated only when getting a specific version.\nMaps to https://schema.org/version."
|
|
22327
|
+
"description": "The version of the vertex, populated only when getting a specific version.\nAlways undefined when the vertex is in bypass mode.\nMaps to https://schema.org/version."
|
|
22288
22328
|
},
|
|
22289
22329
|
"type": {
|
|
22290
22330
|
"const": "AuditableItemGraphVertex",
|
|
@@ -22344,6 +22384,9 @@
|
|
|
22344
22384
|
"type": "string",
|
|
22345
22385
|
"description": "The identity of the organization which controls the vertex."
|
|
22346
22386
|
},
|
|
22387
|
+
"auditMode": {
|
|
22388
|
+
"$ref": "https://schema.twindev.org/aig/AuditableItemGraphAuditMode"
|
|
22389
|
+
},
|
|
22347
22390
|
"annotationObject": {
|
|
22348
22391
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
22349
22392
|
},
|
|
@@ -22370,11 +22413,11 @@
|
|
|
22370
22413
|
},
|
|
22371
22414
|
"verified": {
|
|
22372
22415
|
"type": "boolean",
|
|
22373
|
-
"description": "Is the vertex verified, will only be populated when verification is requested."
|
|
22416
|
+
"description": "Is the vertex verified, will only be populated when verification is requested.\nAlways undefined when the vertex is in bypass mode."
|
|
22374
22417
|
},
|
|
22375
22418
|
"version": {
|
|
22376
22419
|
"type": "number",
|
|
22377
|
-
"description": "The version of the vertex, populated only when getting a specific version.\nMaps to https://schema.org/version."
|
|
22420
|
+
"description": "The version of the vertex, populated only when getting a specific version.\nAlways undefined when the vertex is in bypass mode.\nMaps to https://schema.org/version."
|
|
22378
22421
|
}
|
|
22379
22422
|
},
|
|
22380
22423
|
"required": [
|
|
@@ -24516,6 +24559,20 @@
|
|
|
24516
24559
|
],
|
|
24517
24560
|
"description": "The data to be used in the update."
|
|
24518
24561
|
},
|
|
24562
|
+
"TelemetryCreateMetricRequest": {
|
|
24563
|
+
"anyOf": [
|
|
24564
|
+
{
|
|
24565
|
+
"$ref": "#/components/schemas/TelemetryMetric"
|
|
24566
|
+
},
|
|
24567
|
+
{
|
|
24568
|
+
"type": "array",
|
|
24569
|
+
"items": {
|
|
24570
|
+
"$ref": "#/components/schemas/TelemetryMetric"
|
|
24571
|
+
}
|
|
24572
|
+
}
|
|
24573
|
+
],
|
|
24574
|
+
"description": "The data to be used in the create. A single metric fails if it already exists; an array\ndeclares the set that should exist, creating the ones that are missing."
|
|
24575
|
+
},
|
|
24519
24576
|
"TelemetryGetMetricResponse": {
|
|
24520
24577
|
"type": "object",
|
|
24521
24578
|
"properties": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4-next.2",
|
|
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": "
|
|
17
|
+
"@twin.org/node-core": "0.9.4-next.2"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|