@twin.org/node 0.9.4 → 0.9.5-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 +272 -52
- package/docs/changelog.md +129 -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
|
},
|
|
@@ -377,6 +380,7 @@
|
|
|
377
380
|
"invalidEntityProperty": "The entity value of \"{value}\" does not match the type \"{type}\" for property \"{property}\"",
|
|
378
381
|
"invalidOptional": "The entity property \"{property}\" of type \"{type}\" is not optional, but no value has been provided",
|
|
379
382
|
"invalidEntityKeys": "The entity had additional properties that are not in the schema, \"{keys}\"",
|
|
383
|
+
"maxLengthExceeded": "The entity property \"{property}\" has a length of {length} which exceeds the maximum length of {maxLength}",
|
|
380
384
|
"versionMustBeGreaterThanOrEqualZero": "Property \"entitySchema.version\" must be an integer >= 0, but got {version}",
|
|
381
385
|
"multipleVersionProperties": "The schema has more than one property with isVersion set, only one is allowed",
|
|
382
386
|
"versionPropertyMustBeInteger": "The version property \"{property}\" has type \"{type}\" but must be of type integer"
|
|
@@ -391,7 +395,9 @@
|
|
|
391
395
|
"migrationHelper": {
|
|
392
396
|
"migrateSchemaFailed": "Migration failed for schema \"{schemaName}\".",
|
|
393
397
|
"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"
|
|
398
|
+
"coercionProducedUndefined": "Coercion of property \"{property}\" to type \"{type}\" produced undefined but the property is not optional",
|
|
399
|
+
"connectorBootstrapFailed": "Connector \"{className}\" failed to bootstrap storage for schema \"{schemaName}\"",
|
|
400
|
+
"maxIdentifierLengthTooSmall": "The maximum identifier length {maxIdentifierLength} must be at least {minimum} to fit the migration name suffix"
|
|
395
401
|
},
|
|
396
402
|
"vaultConnectorHelper": {
|
|
397
403
|
"invalidSignature": "The JSON Web token signature could not be verified"
|
|
@@ -433,6 +439,9 @@
|
|
|
433
439
|
"invalidUrl": "The JSON-LD processing failed to retrieve from the following url \"{url}\"",
|
|
434
440
|
"jsonLdError": "The JSON-LD processing failed due to the following error: \"{code}\""
|
|
435
441
|
},
|
|
442
|
+
"jsonSchemaHelper": {
|
|
443
|
+
"schemaLoadFailed": "Failed to load the referenced schema \"{uri}\""
|
|
444
|
+
},
|
|
436
445
|
"accountHelper": {
|
|
437
446
|
"addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
|
|
438
447
|
"missingPublicKey": "The public key is missing for vault key \"{keyName}\""
|
|
@@ -481,7 +490,11 @@
|
|
|
481
490
|
"componentStartFailed": "Failed to start component type \"{className}\" with instance type \"{instanceType}\"",
|
|
482
491
|
"componentStopFailed": "Failed to stop component type \"{className}\" with instance type \"{instanceType}\"",
|
|
483
492
|
"instanceTypeNotFound": "Instance type not found for \"{type}\"",
|
|
484
|
-
"instanceTypeNotFoundWithFeatures": "Instance type not found for \"{type}\" with features \"{features}\""
|
|
493
|
+
"instanceTypeNotFoundWithFeatures": "Instance type not found for \"{type}\" with features \"{features}\"",
|
|
494
|
+
"facadeFactoryUnknown": "The facades \"{facades}\" cannot be applied because there is no factory with the type name \"{factoryTypeName}\"",
|
|
495
|
+
"facadeUnknown": "The facade \"{facadeName}\" is not registered, so it cannot be applied to the \"{factoryTypeName}\" factory",
|
|
496
|
+
"facadeOnFacadeFactory": "The facade \"{facadeName}\" cannot be applied to the \"{factoryTypeName}\" factory, as it is the factory the facades themselves are resolved from",
|
|
497
|
+
"facadeExcludeTypeInvalid": "The exclude type \"{excludeType}\" for the facade \"{facadeName}\" on the \"{factoryTypeName}\" factory is not a valid regular expression"
|
|
485
498
|
},
|
|
486
499
|
"fileStateStorage": {
|
|
487
500
|
"failedLoading": "Failed to load file state storage from \"{filename}\"",
|
|
@@ -500,7 +513,11 @@
|
|
|
500
513
|
},
|
|
501
514
|
"healthService": {
|
|
502
515
|
"componentHealthCheckFailed": "Health check failed for component \"{className}\"",
|
|
503
|
-
"applicationHealthCheckTaskFailed": "Application health check background task failed"
|
|
516
|
+
"applicationHealthCheckTaskFailed": "Application health check background task failed",
|
|
517
|
+
"invalidExcludeCloneComponent": "The exclude clone component pattern \"{pattern}\" is not a valid regular expression"
|
|
518
|
+
},
|
|
519
|
+
"applicationHealthTask": {
|
|
520
|
+
"engineNotStarted": "Application health engine is not started"
|
|
504
521
|
},
|
|
505
522
|
"nftAttestationConnector": {
|
|
506
523
|
"attestingFailed": "Attesting the data failed",
|
|
@@ -533,7 +550,10 @@
|
|
|
533
550
|
},
|
|
534
551
|
"verificationHelper": {
|
|
535
552
|
"jwtDecodeFailed": "Decoding the JWT failed",
|
|
536
|
-
"proofMissingVerificationMethod": "The proof is missing the verification method"
|
|
553
|
+
"proofMissingVerificationMethod": "The proof is missing the verification method",
|
|
554
|
+
"credentialNotYetValid": "The credential is not valid until \"{validFrom}\"",
|
|
555
|
+
"credentialExpired": "The credential expired at \"{validUntil}\"",
|
|
556
|
+
"credentialValidityDateInvalid": "The credential validity date is not a valid ISO 8601 timestamp \"{date}\""
|
|
537
557
|
},
|
|
538
558
|
"documentHelper": {
|
|
539
559
|
"verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
|
|
@@ -547,9 +567,6 @@
|
|
|
547
567
|
"destroyFailed": "The destruction of the attestation failed",
|
|
548
568
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the attestation service \"{namespace}\""
|
|
549
569
|
},
|
|
550
|
-
"spanHelper": {
|
|
551
|
-
"traceFlagsOutOfRange": "The trace flags value \"{traceFlags}\" is outside the valid range 0 to 255"
|
|
552
|
-
},
|
|
553
570
|
"auditableItemGraphService": {
|
|
554
571
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Graph service \"{namespace}\"",
|
|
555
572
|
"createFailed": "Creating the Auditable Item Graph vertex failed",
|
|
@@ -565,7 +582,8 @@
|
|
|
565
582
|
"resourceIdMissing": "You must provide either the id, or the resourceObject must contain an id property for index \"{index}\"",
|
|
566
583
|
"aliasNotUnique": "The alias id \"{aliasId}\" is already in use on another vertex and the unique flag was set",
|
|
567
584
|
"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"
|
|
585
|
+
"listPatchInvalidFormat": "The property \"{property}\" must be a list patch object with add and/or remove, not a bare array",
|
|
586
|
+
"auditModeTransitionNotAllowed": "The vertex audit mode can not be changed from \"{currentMode}\" to \"{requestedMode}\", bypass is a terminal mode"
|
|
569
587
|
},
|
|
570
588
|
"auditableItemStreamService": {
|
|
571
589
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Stream service \"{namespace}\"",
|
|
@@ -608,7 +626,8 @@
|
|
|
608
626
|
"stateChangeCallbackFailed": "The state change callback failed for task \"{id}\" with type \"{type}\" and status \"{status}\"",
|
|
609
627
|
"taskFinishedProcessingFailed": "Failed to finalise background task processing for task \"{id}\" with method \"{type}\"",
|
|
610
628
|
"executionTimeout": "Task \"{id}\" with type \"{type}\" exceeded its execution timeout of {timeout} ms and has been marked as failed",
|
|
611
|
-
"healthCheckTimeout": "Health check task exceeded its timeout of {timeout} ms and has been marked as failed"
|
|
629
|
+
"healthCheckTimeout": "Health check task exceeded its timeout of {timeout} ms and has been marked as failed",
|
|
630
|
+
"taskInterrupted": "Task \"{id}\" with type \"{type}\" was interrupted on each of its {dispatchCount} dispatches and has been marked as failed"
|
|
612
631
|
},
|
|
613
632
|
"s3BlobStorageConnector": {
|
|
614
633
|
"bucketCreateFailed": "Creating bucket \"{bucket}\" failed",
|
|
@@ -696,6 +715,16 @@
|
|
|
696
715
|
"dataspaceControlPlaneRestClient": {
|
|
697
716
|
"notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
|
|
698
717
|
},
|
|
718
|
+
"odrlPolicyHelper": {
|
|
719
|
+
"policyMissingAssignee": "The {policyType} with id \"{policyId}\" is missing an assignee.",
|
|
720
|
+
"policyMissingAssigner": "The {policyType} with id \"{policyId}\" is missing an assigner."
|
|
721
|
+
},
|
|
722
|
+
"dataspaceProtocolHelper": {
|
|
723
|
+
"schemaNotRegistered": "JSON Schema \"{schemaId}\" is not registered in DataTypeHandlerFactory"
|
|
724
|
+
},
|
|
725
|
+
"trustHelper": {
|
|
726
|
+
"trustVerifyFailed": "Trust verification failed for action \"{action}\""
|
|
727
|
+
},
|
|
699
728
|
"dataspaceControlPlaneService": {
|
|
700
729
|
"transferCallbackRejected": "Consumer rejected a transfer state-change callback (messageKind: {messageKind}, consumerPid: {consumerPid}, providerPid: {providerPid}, callbackAddress: {callbackAddress})",
|
|
701
730
|
"transferCallbackFailed": "Failed to deliver a transfer state-change callback to the consumer (messageKind: {messageKind}, consumerPid: {consumerPid}, providerPid: {providerPid}, callbackAddress: {callbackAddress})",
|
|
@@ -766,16 +795,6 @@
|
|
|
766
795
|
"pushTransferDataPathNotConfigured": "POST transfer cannot start: dataPlanePath is not configured (consumerPid: {consumerPid})",
|
|
767
796
|
"providerIdentityMissing": "Provider identity (DID) is required to sign data access tokens but was not set on the Transfer Process"
|
|
768
797
|
},
|
|
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
798
|
"dataspaceDataPlaneRestClient": {
|
|
780
799
|
"notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
|
|
781
800
|
},
|
|
@@ -841,6 +860,7 @@
|
|
|
841
860
|
"containerCreateFailed": "The container couldn't be created \"{containerId}\"",
|
|
842
861
|
"databaseCreateFailed": "Unable to create database \"{databaseId}\"",
|
|
843
862
|
"containerDoesNotExist": "Container \"{containerId}\" does not exist",
|
|
863
|
+
"indexPolicyUpdateFailed": "Updating the indexing policy for container \"{containerId}\" failed",
|
|
844
864
|
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
845
865
|
"setBatchFailed": "Unable to set batch of entities",
|
|
846
866
|
"countFailed": "Unable to count entities",
|
|
@@ -854,6 +874,8 @@
|
|
|
854
874
|
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
855
875
|
"tableCreateFailed": "Creating table \"{tableName}\" failed",
|
|
856
876
|
"tableDoesNotExist": "Table \"{tableName}\" does not exist",
|
|
877
|
+
"indexCreateFailed": "Creating the missing indexes on table \"{tableName}\" failed",
|
|
878
|
+
"indexCreateTimeout": "Index \"{indexName}\" on table \"{tableName}\" was still building when the wait expired",
|
|
857
879
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
858
880
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
859
881
|
"removeFailed": "Unable to remove entity \"{id}\"",
|
|
@@ -909,6 +931,7 @@
|
|
|
909
931
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
910
932
|
"removeFailed": "Unable to remove entity \"{id}\"",
|
|
911
933
|
"databaseCreateFailed": "The database creation failed for \"{databaseName}\"",
|
|
934
|
+
"indexCreateFailed": "Unable to create index for property \"{property}\"",
|
|
912
935
|
"unsupportedComparisonOperator": "Comparison operator \"{comparison}\" is not supported",
|
|
913
936
|
"setBatchFailed": "Unable to set batch of entities",
|
|
914
937
|
"removeBatchFailed": "Unable to remove batch of entities",
|
|
@@ -929,6 +952,7 @@
|
|
|
929
952
|
"conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
|
|
930
953
|
"entitySchemaPropertiesUndefined": "The entity schema properties are undefined",
|
|
931
954
|
"databaseCreateFailed": "Unable to create database \"{databaseName}\"",
|
|
955
|
+
"tableCreateFailed": "Unable to create table \"{tableName}\"",
|
|
932
956
|
"setBatchFailed": "Unable to set batch of entities",
|
|
933
957
|
"countFailed": "Unable to count entities",
|
|
934
958
|
"emptyFailed": "Unable to empty entity storage",
|
|
@@ -941,6 +965,7 @@
|
|
|
941
965
|
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
942
966
|
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
943
967
|
"databaseCreateFailed": "Unable to create database \"{databaseName}\"",
|
|
968
|
+
"tableCreateFailed": "Unable to create table \"{tableName}\"",
|
|
944
969
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
945
970
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
946
971
|
"removeFailed": "Unable to remove entity \"{id}\"",
|
|
@@ -1026,6 +1051,7 @@
|
|
|
1026
1051
|
"createVerifiablePresentationFailed": "Creating the verifiable presentation failed",
|
|
1027
1052
|
"documentNotFound": "The document could not be found \"{notFoundId}\"",
|
|
1028
1053
|
"invalidAlias": "The alias is invalid it must be a Url or Urn, it is \"{alias}\"",
|
|
1054
|
+
"issuerMismatch": "The credential issuer \"{issuer}\" does not match the DID of the proof verification method \"{method}\"",
|
|
1029
1055
|
"jwkSignatureFailed": "The signature on the JWK failed verification",
|
|
1030
1056
|
"methodMissing": "The verification method specified does not exist \"{method}\"",
|
|
1031
1057
|
"missingDid": "The full id including DID is required",
|
|
@@ -1053,7 +1079,9 @@
|
|
|
1053
1079
|
"listFailed": "Failed listing identities"
|
|
1054
1080
|
},
|
|
1055
1081
|
"iotaIdentityResolverConnector": {
|
|
1082
|
+
"didResolutionTimeout": "Resolving the document \"{documentId}\" timed out after {timeoutMs} ms",
|
|
1056
1083
|
"documentNotFound": "The document could not be found",
|
|
1084
|
+
"identityClientCreationTimeout": "Creating the identity client timed out after {timeoutMs} ms",
|
|
1057
1085
|
"resolveDocumentFailed": "Resolving the document failed \"{documentId}\""
|
|
1058
1086
|
},
|
|
1059
1087
|
"iotaIdentityConnector": {
|
|
@@ -1068,10 +1096,13 @@
|
|
|
1068
1096
|
"createVerifiableCredentialFailed": "Creating the verifiable credential failed",
|
|
1069
1097
|
"createVerifiablePresentationFailed": "Creating the verifiable presentation failed",
|
|
1070
1098
|
"didExtractionFailed": "Extracting the DID from the document id failed",
|
|
1099
|
+
"didResolutionTimeout": "Resolving the DID \"{did}\" timed out after {timeoutMs} ms",
|
|
1071
1100
|
"documentNotFound": "The document could not be found",
|
|
1072
1101
|
"gasStationTransactionBuildFailed": "Building the gas station transaction failed",
|
|
1102
|
+
"identityClientCreationTimeout": "Creating the identity client timed out after {timeoutMs} ms",
|
|
1073
1103
|
"identityNotFound": "The identity could not be found \"{notFoundId}\"",
|
|
1074
1104
|
"invalidAlias": "The alias is invalid it must be a Url or Urn, it is \"{alias}\"",
|
|
1105
|
+
"issuerMismatch": "The credential issuer \"{issuer}\" does not match the DID of the proof verification method \"{method}\"",
|
|
1075
1106
|
"invalidSubjectId": "The subject id format is invalid it must be a Url or Urn, it is \"{subjectId}\"",
|
|
1076
1107
|
"methodMissing": "The verification method specified does not exist \"{method}\"",
|
|
1077
1108
|
"missingControllerToken": "The controller token is missing",
|
|
@@ -1154,6 +1185,53 @@
|
|
|
1154
1185
|
"openTelemetryLoggingConnector": {
|
|
1155
1186
|
"unknownExporterType": "The exporter type \"{type}\" is not supported, valid values are: otlp"
|
|
1156
1187
|
},
|
|
1188
|
+
"gmailEmailConnector": {
|
|
1189
|
+
"pollFailed": "Poll failed",
|
|
1190
|
+
"authCodeExchangeFailed": "The authorization code could not be exchanged for tokens",
|
|
1191
|
+
"noRefreshTokenIssued": "The consent flow did not issue a refresh token",
|
|
1192
|
+
"authFlowNotStarted": "The connector has no authentication flow in progress to complete",
|
|
1193
|
+
"consentAccountMismatch": "The consent was given by an account other than {emailAddress}",
|
|
1194
|
+
"missingOAuthCredentials": "The clientId and clientSecret are required when no serviceAccountKey is supplied",
|
|
1195
|
+
"invalidServiceAccountKey": "The serviceAccountKey is not a valid service account JSON key"
|
|
1196
|
+
},
|
|
1197
|
+
"imapEmailConnector": {
|
|
1198
|
+
"pollFailed": "Poll failed"
|
|
1199
|
+
},
|
|
1200
|
+
"outlookEmailConnector": {
|
|
1201
|
+
"pollFailed": "Poll failed",
|
|
1202
|
+
"authCodeExchangeFailed": "The authorization code could not be exchanged for tokens",
|
|
1203
|
+
"noRefreshTokenIssued": "The consent flow did not issue a refresh token",
|
|
1204
|
+
"noAccessTokenIssued": "No access token was issued for the mailbox",
|
|
1205
|
+
"authFlowNotStarted": "The connector has no authentication flow in progress to complete",
|
|
1206
|
+
"consentAccountMismatch": "The consent was given by an account other than {emailAddress}",
|
|
1207
|
+
"mailboxNotConsented": "The stored credentials hold no consented account for {emailAddress}",
|
|
1208
|
+
"missingClientCredential": "The clientSecret or clientCertificate is required",
|
|
1209
|
+
"invalidClientCertificate": "The clientCertificate is not a valid JSON certificate credential"
|
|
1210
|
+
},
|
|
1211
|
+
"pop3EmailConnector": {
|
|
1212
|
+
"pollFailed": "Poll failed"
|
|
1213
|
+
},
|
|
1214
|
+
"mailboxRestClient": {
|
|
1215
|
+
"notSupported": "Method \"{methodName}\" is not supported over REST."
|
|
1216
|
+
},
|
|
1217
|
+
"mailStorageRestClient": {
|
|
1218
|
+
"notSupported": "Method \"{methodName}\" is not supported over REST."
|
|
1219
|
+
},
|
|
1220
|
+
"mailboxService": {
|
|
1221
|
+
"mailboxNotFound": "Mailbox {notFoundId} was not found.",
|
|
1222
|
+
"schemaNotFound": "No schema is registered for connector type {notFoundId}.",
|
|
1223
|
+
"unknownConnectorType": "No connector is registered for connector type {connectorType}.",
|
|
1224
|
+
"connectorTypeCannotChange": "The connector type of a mailbox cannot be changed.",
|
|
1225
|
+
"retrievalCallbackFailed": "The retrieval callback for mailbox {mailboxId} failed",
|
|
1226
|
+
"authNotSupported": "Connector type {connectorType} does not support an authentication flow.",
|
|
1227
|
+
"authNotPending": "Mailbox {mailboxId} is not awaiting authentication.",
|
|
1228
|
+
"authStateMismatch": "The authentication callback for mailbox {mailboxId} did not carry the state its flow was started with.",
|
|
1229
|
+
"connectorConfigInvalid": "The configuration was rejected by connector type {connectorType}."
|
|
1230
|
+
},
|
|
1231
|
+
"mailStorageService": {
|
|
1232
|
+
"emailNotFound": "Email {notFoundId} was not found.",
|
|
1233
|
+
"retentionCleanupFailed": "Failed to remove expired emails."
|
|
1234
|
+
},
|
|
1157
1235
|
"awsMessagingSmsConnector": {
|
|
1158
1236
|
"sendSMSFailed": "Failed to send SMS"
|
|
1159
1237
|
},
|
|
@@ -1179,6 +1257,9 @@
|
|
|
1179
1257
|
"entityStorageMessagingEmailConnector": {
|
|
1180
1258
|
"sendCustomEmailFailed": "Failed to send custom email"
|
|
1181
1259
|
},
|
|
1260
|
+
"smtpMessagingEmailConnector": {
|
|
1261
|
+
"sendCustomEmailFailed": "Failed to send custom email"
|
|
1262
|
+
},
|
|
1182
1263
|
"messagingService": {
|
|
1183
1264
|
"notConfiguredEmailMessagingConnector": "Email messaging connector was not configured",
|
|
1184
1265
|
"notConfiguredPushNotificationMessagingConnector": "Push notification messaging connector was not configured",
|
|
@@ -1280,9 +1361,10 @@
|
|
|
1280
1361
|
"transferFailed": "The transfer of the notarization failed"
|
|
1281
1362
|
},
|
|
1282
1363
|
"dataAccessPointService": {
|
|
1283
|
-
"noHandlerForAssetType": "No handler registered for asset type \"{assetType}\""
|
|
1364
|
+
"noHandlerForAssetType": "No handler registered for asset type \"{assetType}\"",
|
|
1365
|
+
"notAuthorizedToQuery": "Not authorized to query asset type \"{assetType}\"",
|
|
1366
|
+
"notAuthorizedToGet": "Not authorized to get asset type \"{assetType}\" with id \"{id}\""
|
|
1284
1367
|
},
|
|
1285
|
-
"dataAccessRequestPointService": {},
|
|
1286
1368
|
"policyAdministrationPointService": {
|
|
1287
1369
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the rights management components \"{namespace}\"",
|
|
1288
1370
|
"policyAlreadyExists": "A policy with id: \"{existingId}\" already exists",
|
|
@@ -1355,11 +1437,11 @@
|
|
|
1355
1437
|
"agreementNotAccepted": "Agreement with id: \"{agreementId}\" was not accepted by the requester",
|
|
1356
1438
|
"noAgreementCreated": "No agreement was created for offer with id: \"{offerId}\"",
|
|
1357
1439
|
"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"
|
|
1440
|
+
"callerNotAuthorizedForNegotiation": "The caller's verified identity does not match any authorized party in this negotiation",
|
|
1441
|
+
"cleanupFailed": "Failed to cleanup old negotiations"
|
|
1359
1442
|
},
|
|
1360
1443
|
"policyNegotiationAdminPointService": {
|
|
1361
1444
|
"policyNotFound": "Contract negotiation with id: \"{notFoundId}\" not found",
|
|
1362
|
-
"cleanupFailed": "Failed to cleanup old negotiations",
|
|
1363
1445
|
"negotiationAlreadyExists": "Contract negotiation with correlationId: \"{existingId}\" already exists"
|
|
1364
1446
|
},
|
|
1365
1447
|
"policyExecutionPointService": {
|
|
@@ -1377,7 +1459,19 @@
|
|
|
1377
1459
|
"upDownCounterIncOrDecOnly": "An up/down counter metric can only be incremented, decremented or adjusted with an integer",
|
|
1378
1460
|
"gaugeNoIncDec": "A gauge can not be incremented or decremented",
|
|
1379
1461
|
"maxHistoryMustBePositiveInteger": "The maxHistory option must be a positive integer",
|
|
1380
|
-
"
|
|
1462
|
+
"metricValueTaskFailed": "The metric value background task failed \"{taskId}\"",
|
|
1463
|
+
"backgroundTaskComponentMissing": "The metric values cannot be written as no background task component is available",
|
|
1464
|
+
"metricValueThreadStalled": "No metric value background task has completed for \"{stalledForMs}\" ms, with task \"{taskId}\" outstanding of \"{taskCount}\", so the background thread is being replaced",
|
|
1465
|
+
"metricValueThreadRestartFailed": "The stalled metric value background thread could not be replaced, so no further metric values can be written",
|
|
1466
|
+
"stopFlushFailed": "The final metric value write failed while stopping, so the values the background thread was holding may not have been persisted",
|
|
1467
|
+
"metricValueThreadCheckFailed": "The check for a stalled metric value background thread failed"
|
|
1468
|
+
},
|
|
1469
|
+
"metricValueWriter": {
|
|
1470
|
+
"flushFailed": "Failed to flush metric values to storage",
|
|
1471
|
+
"invalidMetricOperation": "The operation \"{operation}\" is not valid for metric \"{id}\" of type \"{type}\"",
|
|
1472
|
+
"trimFailed": "Failed to trim the history of metric \"{id}\" to its retention cap",
|
|
1473
|
+
"trimPassFailed": "The interval trim of the metric histories failed",
|
|
1474
|
+
"intervalWriteFailed": "The interval write of the pending metric values failed"
|
|
1381
1475
|
},
|
|
1382
1476
|
"openTelemetryTelemetryConnector": {
|
|
1383
1477
|
"metricNotFound": "The metric could not be found \"{notFoundId}\"",
|
|
@@ -1385,14 +1479,28 @@
|
|
|
1385
1479
|
"gaugeNoIncDec": "A gauge can not be incremented or decremented"
|
|
1386
1480
|
},
|
|
1387
1481
|
"metricsCollectorService": {
|
|
1388
|
-
"producerCollectionFailed": "Failed to collect metrics from producer \"{producer}\""
|
|
1482
|
+
"producerCollectionFailed": "Failed to collect metrics from producer \"{producer}\"",
|
|
1483
|
+
"metricRecordFailed": "Failed to record the collected metric values",
|
|
1484
|
+
"collectionCycleFailed": "Failed to run the metrics collection cycle"
|
|
1485
|
+
},
|
|
1486
|
+
"spanHelper": {
|
|
1487
|
+
"traceFlagsOutOfRange": "The trace flags value \"{traceFlags}\" is outside the valid range 0 to 255"
|
|
1488
|
+
},
|
|
1489
|
+
"tracingHelper": {
|
|
1490
|
+
"startSpanFailed": "The span \"{name}\" could not be started, so the operation was not traced",
|
|
1491
|
+
"endSpanFailed": "The span \"{name}\" could not be ended"
|
|
1389
1492
|
},
|
|
1390
1493
|
"entityStorageTracingConnector": {
|
|
1391
|
-
"spanNotFound": "The span could not be found \"{notFoundId}\""
|
|
1494
|
+
"spanNotFound": "The span could not be found \"{notFoundId}\"",
|
|
1495
|
+
"retentionFailed": "The span retention cleanup failed",
|
|
1496
|
+
"flushFailed": "Failed to flush cached spans to storage"
|
|
1392
1497
|
},
|
|
1393
1498
|
"openTelemetryTracingConnector": {
|
|
1394
1499
|
"sampleRatioOutOfRange": "The sample ratio \"{sampleRatio}\" must be between 0 and 1"
|
|
1395
1500
|
},
|
|
1501
|
+
"tracingFacade": {
|
|
1502
|
+
"selfWrapped": "The component \"{instanceType}\" is itself wrapped by this facade, so recording a span would record a span for recording the span, use the facade exclusions to leave it unwrapped"
|
|
1503
|
+
},
|
|
1396
1504
|
"tracingRouteProcessor": {
|
|
1397
1505
|
"startSpanFailed": "The span for the request could not be started",
|
|
1398
1506
|
"endSpanFailed": "The span for the request could not be ended"
|
|
@@ -1414,6 +1522,7 @@
|
|
|
1414
1522
|
"tokenMissingCredential": "The JWT token does not contain a verifiable credential.",
|
|
1415
1523
|
"tokenMissingIssuer": "The verifiable credential in the JWT does not contain an issuer.",
|
|
1416
1524
|
"tokenExpired": "The JWT token has expired.",
|
|
1525
|
+
"tokenRevoked": "The verifiable credential in the JWT has been revoked.",
|
|
1417
1526
|
"tokenMissingSubject": "The verifiable credential in the JWT does not contain a subject.",
|
|
1418
1527
|
"tokenDecodingFailed": "Failed to decode the JWT token."
|
|
1419
1528
|
},
|
|
@@ -1442,7 +1551,6 @@
|
|
|
1442
1551
|
"exportKeyFailed": "Failed to export key \"{name}\" with keyPath \"{keyPath}\"",
|
|
1443
1552
|
"getKeyDeleteConfigurationFailed": "Failed to get key delete configuration \"{name}\"",
|
|
1444
1553
|
"exportKeyNotFound": "Export key with name \"{notFoundId}\" not found",
|
|
1445
|
-
"versionsNotFound": "Versions for key \"{notFoundId}\" not found",
|
|
1446
1554
|
"keyNotFound": "The key \"{notFoundId}\" was not found in the vault",
|
|
1447
1555
|
"secretNotFound": "The secret \"{notFoundId}\" was not found in the vault",
|
|
1448
1556
|
"getKeyFailed": "Failed to get key \"{name}\"",
|
|
@@ -1490,7 +1598,9 @@
|
|
|
1490
1598
|
},
|
|
1491
1599
|
"warn": {
|
|
1492
1600
|
"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."
|
|
1601
|
+
"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.",
|
|
1602
|
+
"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.",
|
|
1603
|
+
"deprecatedEnvVarNoReplacement": "The environment variable \"{key}\" is deprecated and no longer has any effect. This variable will be removed in a future release."
|
|
1494
1604
|
},
|
|
1495
1605
|
"common": {
|
|
1496
1606
|
"devOnlyTool": "This tool is intended to be used for development purposes, it is not recommended for use in production scenarios."
|
|
@@ -1499,7 +1609,9 @@
|
|
|
1499
1609
|
"taskStalled": "Task with id \"{id}\" is stalled, last run at \"{lastRunTime}\" and exceeded timeout \"{stalledTaskTimeoutMs}\" ms"
|
|
1500
1610
|
},
|
|
1501
1611
|
"backgroundTaskService": {
|
|
1502
|
-
"maxSystemWorkerCountReached": "The maximum system worker count of {maxSystemWorkerCount} has been reached, can not create any more worker for task type \"{type}\""
|
|
1612
|
+
"maxSystemWorkerCountReached": "The maximum system worker count of {maxSystemWorkerCount} has been reached, can not create any more worker for task type \"{type}\" (consecutive blocks: {count})",
|
|
1613
|
+
"taskClaimRetained": "Task \"{id}\" with type \"{type}\" ran but could not be finalised, it is held until restart so it is not processed twice",
|
|
1614
|
+
"taskRequeueFailed": "Task \"{id}\" with type \"{type}\" could not be returned to pending after its worker was torn down"
|
|
1503
1615
|
},
|
|
1504
1616
|
"dataspaceControlPlaneService": {
|
|
1505
1617
|
"catalogDatasetHasNoOffers": "Dataset has no Offers (odrl:hasPolicy) in Federated Catalogue",
|
|
@@ -1535,7 +1647,8 @@
|
|
|
1535
1647
|
"partitionIdsSkipped": "Skipping partition ids whose depth does not match the {expected} configured partition keys: {partitionIds}. Entities in these partitions are ignored by migration."
|
|
1536
1648
|
},
|
|
1537
1649
|
"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."
|
|
1650
|
+
"partitionIdsSkipped": "Skipping partition ids whose depth does not match the {expected} configured partition keys: {partitionIds}. Entities in these partitions are ignored by migration.",
|
|
1651
|
+
"indexOptionsConflict": "An index already exists on property \"{property}\" with incompatible options and will not be overwritten"
|
|
1539
1652
|
},
|
|
1540
1653
|
"mySqlEntityStorageConnector": {
|
|
1541
1654
|
"partitionIdsSkipped": "Skipping partition ids whose depth does not match the {expected} configured partition keys: {partitionIds}. Entities in these partitions are ignored by migration."
|
|
@@ -1557,14 +1670,36 @@
|
|
|
1557
1670
|
"sweepParkedTotal": "{totalParked} proof(s) are currently parked and require operator investigation"
|
|
1558
1671
|
},
|
|
1559
1672
|
"immutableProofTask": {
|
|
1560
|
-
"taskEngineStopFailed": "Stopping the task engine
|
|
1673
|
+
"taskEngineStopFailed": "Stopping the proof task worker engine failed, a new engine will be started for the next task"
|
|
1561
1674
|
},
|
|
1562
|
-
"
|
|
1563
|
-
"
|
|
1675
|
+
"gmailEmailConnector": {
|
|
1676
|
+
"consentRequired": "Mailbox requires OAuth consent before it can be polled",
|
|
1677
|
+
"historyExpired": "Mailbox history expired, restarting the mailbox sync"
|
|
1678
|
+
},
|
|
1679
|
+
"outlookEmailConnector": {
|
|
1680
|
+
"consentRequired": "Mailbox requires OAuth consent before it can be polled",
|
|
1681
|
+
"consentUrlFailed": "The consent URL could not be produced",
|
|
1682
|
+
"deltaExpired": "Delta cursor expired for folder \"{folderId}\", restarting the folder sync"
|
|
1683
|
+
},
|
|
1684
|
+
"mailboxService": {
|
|
1685
|
+
"consumerNotificationFailed": "Failed to notify consumer {consumerName}.",
|
|
1686
|
+
"startConnectorFailed": "Failed to start connector for mailbox {mailboxId}."
|
|
1564
1687
|
},
|
|
1565
1688
|
"policyNegotiationPointService": {
|
|
1566
1689
|
"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"
|
|
1690
|
+
"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",
|
|
1691
|
+
"sendTerminateFailed": "Failed to send terminate to consumer for negotiation id: \"{id}\", correlation id: \"{correlationId}\""
|
|
1692
|
+
},
|
|
1693
|
+
"entityStorageTelemetryConnector": {
|
|
1694
|
+
"flushTimeout": "The background thread did not confirm the flush within \"{timeoutMs}\" ms for task \"{taskId}\", with \"{taskCount}\" tasks outstanding",
|
|
1695
|
+
"metricValueThreadRestarted": "The stalled metric value background thread was replaced, and the tasks it was given will be processed by the new one",
|
|
1696
|
+
"metricValueTaskNotScheduled": "The metric value background task \"{taskId}\" has waited \"{stalledForMs}\" ms to be scheduled, with \"{taskCount}\" tasks outstanding, so the background thread is left in place as it has not been given the task",
|
|
1697
|
+
"metricValueTaskStateMissed": "The completion of the metric value background task \"{taskId}\" was never reported, its state is now \"{status}\", so the background thread is treated as working rather than replaced"
|
|
1698
|
+
},
|
|
1699
|
+
"metricsRouteProcessor": {
|
|
1700
|
+
"metricRecordsFailed": "Failed to record \"{count}\" request metrics",
|
|
1701
|
+
"metricDrainFailed": "Failed to hand the queued request metrics to the telemetry component",
|
|
1702
|
+
"metricRecordsDropped": "Dropped \"{count}\" request metrics because the recording queue was full"
|
|
1568
1703
|
}
|
|
1569
1704
|
},
|
|
1570
1705
|
"node": {
|
|
@@ -2429,7 +2564,8 @@
|
|
|
2429
2564
|
"start": "Processing task \"{id}\" with type \"{type}\"",
|
|
2430
2565
|
"complete": "Completed processing task \"{id}\" with type \"{type}\" with status \"{status}\" in {duration} ms",
|
|
2431
2566
|
"initialisingWorker": "Initialising worker for task type \"{type}\"",
|
|
2432
|
-
"shutdownWorker": "Shutting down worker for task type \"{type}\""
|
|
2567
|
+
"shutdownWorker": "Shutting down worker for task type \"{type}\"",
|
|
2568
|
+
"taskRequeued": "Task \"{id}\" with type \"{type}\" has no worker running it and has been returned to pending"
|
|
2433
2569
|
},
|
|
2434
2570
|
"s3BlobStorageConnector": {
|
|
2435
2571
|
"bucketCreating": "Creating bucket \"{bucket}\"",
|
|
@@ -2519,14 +2655,18 @@
|
|
|
2519
2655
|
"containerCreating": "Container \"{containerId}\" creating",
|
|
2520
2656
|
"containerExists": "Container \"{containerId}\" created or it already exists",
|
|
2521
2657
|
"containerDeleting": "Deleting container \"{containerId}\"",
|
|
2522
|
-
"containerDeleted": "Container \"{containerId}\" deleted"
|
|
2658
|
+
"containerDeleted": "Container \"{containerId}\" deleted",
|
|
2659
|
+
"indexPolicyUpdating": "Adding {count} missing composite indexes to container \"{containerId}\"",
|
|
2660
|
+
"indexPolicyUpdated": "Added {count} missing composite indexes to container \"{containerId}\""
|
|
2523
2661
|
},
|
|
2524
2662
|
"dynamoDbEntityStorageConnector": {
|
|
2525
2663
|
"tableCreating": "Creating table \"{tableName}\"",
|
|
2526
2664
|
"tableCreated": "Created table \"{tableName}\"",
|
|
2527
2665
|
"tableExists": "Skipping create table \"{tableName}\" as it already exists",
|
|
2528
2666
|
"tableDeleting": "Deleting table \"{tableName}\"",
|
|
2529
|
-
"tableDeleted": "Table \"{tableName}\" deleted"
|
|
2667
|
+
"tableDeleted": "Table \"{tableName}\" deleted",
|
|
2668
|
+
"indexCreating": "Creating index \"{indexName}\" on table \"{tableName}\"",
|
|
2669
|
+
"indexCreated": "Created index \"{indexName}\" on table \"{tableName}\""
|
|
2530
2670
|
},
|
|
2531
2671
|
"fileEntityStorageConnector": {
|
|
2532
2672
|
"directoryCreating": "Creating directory \"{directory}\"",
|
|
@@ -2558,7 +2698,9 @@
|
|
|
2558
2698
|
"tableCreating": "Table \"{tableName}\" creating",
|
|
2559
2699
|
"tableExists": "Table \"{tableName}\" created or it already exists",
|
|
2560
2700
|
"tableDropping": "Dropping table \"{tableName}\"",
|
|
2561
|
-
"tableDropped": "Table \"{tableName}\" dropped"
|
|
2701
|
+
"tableDropped": "Table \"{tableName}\" dropped",
|
|
2702
|
+
"legacyIndexDropped": "Legacy index \"{indexName}\" dropped from table \"{tableName}\", \"{newIndexName}\" already covers the column",
|
|
2703
|
+
"legacyIndexRenamed": "Legacy index \"{indexName}\" renamed to \"{newIndexName}\" on table \"{tableName}\""
|
|
2562
2704
|
},
|
|
2563
2705
|
"postgreSqlEntityStorageConnector": {
|
|
2564
2706
|
"databaseCreating": "Database \"{databaseName}\" creating",
|
|
@@ -2566,7 +2708,9 @@
|
|
|
2566
2708
|
"tableCreating": "Table \"{tableName}\" creating",
|
|
2567
2709
|
"tableExists": "Table \"{tableName}\" created or it already exists",
|
|
2568
2710
|
"tableDropping": "Dropping table \"{tableName}\"",
|
|
2569
|
-
"tableDropped": "Table \"{tableName}\" dropped"
|
|
2711
|
+
"tableDropped": "Table \"{tableName}\" dropped",
|
|
2712
|
+
"legacyIndexDropped": "Legacy index \"{indexName}\" dropped from table \"{tableName}\", \"{newIndexName}\" already covers the column",
|
|
2713
|
+
"legacyIndexRenamed": "Legacy index \"{indexName}\" renamed to \"{newIndexName}\" on table \"{tableName}\""
|
|
2570
2714
|
},
|
|
2571
2715
|
"scyllaDBTableConnector": {
|
|
2572
2716
|
"keyspaceCreating": "Creating keyspace \"{keyspace}\"",
|
|
@@ -2624,6 +2768,21 @@
|
|
|
2624
2768
|
"connectorStarted": "The connector was started with \"{exporterCount}\" exporter(s)",
|
|
2625
2769
|
"connectorStopped": "The connector was stopped"
|
|
2626
2770
|
},
|
|
2771
|
+
"gmailEmailConnector": {
|
|
2772
|
+
"emailReceived": "Email received \"{subject}\""
|
|
2773
|
+
},
|
|
2774
|
+
"imapEmailConnector": {
|
|
2775
|
+
"emailReceived": "Email received \"{subject}\""
|
|
2776
|
+
},
|
|
2777
|
+
"outlookEmailConnector": {
|
|
2778
|
+
"emailReceived": "Email received \"{subject}\""
|
|
2779
|
+
},
|
|
2780
|
+
"pop3EmailConnector": {
|
|
2781
|
+
"emailReceived": "Email received \"{subject}\""
|
|
2782
|
+
},
|
|
2783
|
+
"mailboxService": {
|
|
2784
|
+
"migratedLegacySecret": "Moved the vaulted {propertyKey} of mailbox {mailboxId} to its current key."
|
|
2785
|
+
},
|
|
2627
2786
|
"awsMessagingSmsConnector": {
|
|
2628
2787
|
"smsSending": "Sending SMS of type"
|
|
2629
2788
|
},
|
|
@@ -2636,7 +2795,7 @@
|
|
|
2636
2795
|
"platformAppCreating": "Creating platform application"
|
|
2637
2796
|
},
|
|
2638
2797
|
"awsMessagingEmailConnector": {
|
|
2639
|
-
"emailSending": "Sending email
|
|
2798
|
+
"emailSending": "Sending email \"{subject}\""
|
|
2640
2799
|
},
|
|
2641
2800
|
"entityStorageMessagingSmsConnector": {
|
|
2642
2801
|
"smsSending": "Sending SMS"
|
|
@@ -2646,20 +2805,16 @@
|
|
|
2646
2805
|
"pushNotificationSending": "Sending push notification"
|
|
2647
2806
|
},
|
|
2648
2807
|
"entityStorageMessagingEmailConnector": {
|
|
2649
|
-
"emailSending": "Sending email"
|
|
2808
|
+
"emailSending": "Sending email \"{subject}\""
|
|
2809
|
+
},
|
|
2810
|
+
"smtpMessagingEmailConnector": {
|
|
2811
|
+
"emailSending": "Sending email \"{subject}\""
|
|
2650
2812
|
},
|
|
2651
2813
|
"messagingService": {},
|
|
2652
2814
|
"iotaNftConnector": {
|
|
2653
2815
|
"contractReady": "Contract ready for use"
|
|
2654
2816
|
},
|
|
2655
2817
|
"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
2818
|
"policyEnforcementPointService": {
|
|
2664
2819
|
"processing": "Processing information using processor with id: \"{processorId}\", policy id: \"{policyId}\"",
|
|
2665
2820
|
"intercepting": "Intercepting information for policy id: \"{policyId}\""
|
|
@@ -2718,7 +2873,9 @@
|
|
|
2718
2873
|
"metricCreated": "The metric was created \"{id}\" with type \"type\" and label \"{label}\"",
|
|
2719
2874
|
"metricUpdated": "The metric was updated \"{id}\" with type \"type\" and label \"{label}\"",
|
|
2720
2875
|
"metricRemoved": "The metric was removed \"{id}\"",
|
|
2721
|
-
"metricValueCreated": "The metric value was
|
|
2876
|
+
"metricValueCreated": "The metric value was queued for \"{id}\"",
|
|
2877
|
+
"metricValuesCreated": "\"{count}\" metric values were queued",
|
|
2878
|
+
"metricsCreated": "\"{count}\" metrics were created"
|
|
2722
2879
|
},
|
|
2723
2880
|
"openTelemetryTelemetryConnector": {
|
|
2724
2881
|
"connectorStarted": "The connector was started with \"{readerCount}\" metric reader(s)",
|
|
@@ -2987,7 +3144,7 @@
|
|
|
2987
3144
|
"sweepSkippedInFlight": "Skipped sweeping proof \"{proofId}\", a task is already in flight"
|
|
2988
3145
|
},
|
|
2989
3146
|
"immutableProofTask": {
|
|
2990
|
-
"taskEngineStarted": "The proof task engine started
|
|
3147
|
+
"taskEngineStarted": "The proof task worker engine started in {elapsedMs}ms",
|
|
2991
3148
|
"taskVerifiableCredentialCreated": "The verifiable credential for proof \"{proofId}\" was created in {elapsedMs}ms",
|
|
2992
3149
|
"taskNotarizationComplete": "The notarization for proof \"{proofId}\" completed in {elapsedMs}ms, total task time {totalElapsedMs}ms"
|
|
2993
3150
|
}
|
|
@@ -17560,5 +17717,68 @@
|
|
|
17560
17717
|
"unece:specifiedParameter": "A parameter specified for this XHE context.",
|
|
17561
17718
|
"unece:specifiedParameter_label": "Specified Parameter"
|
|
17562
17719
|
}
|
|
17720
|
+
},
|
|
17721
|
+
"gmailEmailConnectorConfigSchema": {
|
|
17722
|
+
"emailAddress": "Email Address",
|
|
17723
|
+
"clientId": "OAuth Client ID",
|
|
17724
|
+
"clientSecret": "OAuth Client Secret",
|
|
17725
|
+
"serviceAccountKey": "Service Account Key",
|
|
17726
|
+
"labelIds": "Label IDs",
|
|
17727
|
+
"maxMessagesPerPoll": "Maximum Messages Per Poll",
|
|
17728
|
+
"pollingIntervalMinutes": "Polling Interval (Minutes)"
|
|
17729
|
+
},
|
|
17730
|
+
"gmailEmailConnectorStateSchema": {
|
|
17731
|
+
"refreshToken": "OAuth Refresh Token",
|
|
17732
|
+
"historyId": "Mailbox History ID",
|
|
17733
|
+
"syncPageTokens": "Sync Page Tokens",
|
|
17734
|
+
"syncCompletedLabelIds": "Synced Label IDs",
|
|
17735
|
+
"initialSyncComplete": "Initial Sync Complete",
|
|
17736
|
+
"deliveredMessageIds": "Delivered Message IDs"
|
|
17737
|
+
},
|
|
17738
|
+
"imapEmailConnectorConfigSchema": {
|
|
17739
|
+
"host": "Host",
|
|
17740
|
+
"port": "Port",
|
|
17741
|
+
"secure": "Secure",
|
|
17742
|
+
"username": "Username",
|
|
17743
|
+
"password": "Password",
|
|
17744
|
+
"folders": "Folders",
|
|
17745
|
+
"pollingIntervalMinutes": "Polling Interval (Minutes)"
|
|
17746
|
+
},
|
|
17747
|
+
"imapEmailConnectorStateSchema": {
|
|
17748
|
+
"folders": "Folder State"
|
|
17749
|
+
},
|
|
17750
|
+
"outlookEmailConnectorConfigSchema": {
|
|
17751
|
+
"emailAddress": "Email Address",
|
|
17752
|
+
"tenantId": "Directory (Tenant) ID",
|
|
17753
|
+
"clientId": "Application (Client) ID",
|
|
17754
|
+
"clientSecret": "Client Secret",
|
|
17755
|
+
"clientCertificate": "Client Certificate",
|
|
17756
|
+
"appOnlyAccess": "Application Only Access",
|
|
17757
|
+
"folderIds": "Folder IDs",
|
|
17758
|
+
"maxMessagesPerPoll": "Maximum Messages Per Poll",
|
|
17759
|
+
"pollingIntervalMinutes": "Polling Interval (Minutes)"
|
|
17760
|
+
},
|
|
17761
|
+
"outlookEmailConnectorStateSchema": {
|
|
17762
|
+
"tokenCache": "OAuth Token Cache",
|
|
17763
|
+
"accountId": "Consented Account ID",
|
|
17764
|
+
"deltaLinks": "Delta Cursors",
|
|
17765
|
+
"syncNextLinks": "Sync Page Links",
|
|
17766
|
+
"syncCompletedFolderIds": "Synced Folder IDs",
|
|
17767
|
+
"syncFromDateTime": "Sync From Date",
|
|
17768
|
+
"initialSyncComplete": "Initial Sync Complete",
|
|
17769
|
+
"lastReceivedDateTime": "Last Received Date",
|
|
17770
|
+
"deliveredMessageIds": "Delivered Message IDs"
|
|
17771
|
+
},
|
|
17772
|
+
"pop3EmailConnectorConfigSchema": {
|
|
17773
|
+
"host": "Host",
|
|
17774
|
+
"port": "Port",
|
|
17775
|
+
"secure": "Secure",
|
|
17776
|
+
"username": "Username",
|
|
17777
|
+
"password": "Password",
|
|
17778
|
+
"pollingIntervalMinutes": "Polling Interval (Minutes)",
|
|
17779
|
+
"retainMessages": "Retain Messages"
|
|
17780
|
+
},
|
|
17781
|
+
"pop3EmailConnectorStateSchema": {
|
|
17782
|
+
"seenUidls": "Seen UIDLs"
|
|
17563
17783
|
}
|
|
17564
17784
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,134 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.5-next.2](https://github.com/iotaledger/twin-node/compare/node-v0.9.5-next.1...node-v0.9.5-next.2) (2026-09-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* configure which factories receive tracing facades ([#412](https://github.com/iotaledger/twin-node/issues/412)) ([da56bcb](https://github.com/iotaledger/twin-node/commit/da56bcbeba04d1091b3cd237624951c31ff9c185))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/node-core bumped from 0.9.5-next.1 to 0.9.5-next.2
|
|
16
|
+
|
|
17
|
+
## [0.9.5-next.1](https://github.com/iotaledger/twin-node/compare/node-v0.9.5-next.0...node-v0.9.5-next.1) (2026-09-14)
|
|
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 background task max dispatch count ([f0965a0](https://github.com/iotaledger/twin-node/commit/f0965a004dc0e0a856fc0fe1e58330f84e09aa3b))
|
|
25
|
+
* 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))
|
|
26
|
+
* 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))
|
|
27
|
+
* add context id features ([#53](https://github.com/iotaledger/twin-node/issues/53)) ([827adf5](https://github.com/iotaledger/twin-node/commit/827adf52cb87fca53cec52b27e67f7a9dba2c088))
|
|
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 immutable proof task worker idle timeout env var ([#409](https://github.com/iotaledger/twin-node/issues/409)) ([12a524e](https://github.com/iotaledger/twin-node/commit/12a524e44d353cbfa690e522c139ec7083baefab))
|
|
31
|
+
* add mutex settings ([#222](https://github.com/iotaledger/twin-node/issues/222)) ([492c55f](https://github.com/iotaledger/twin-node/commit/492c55f67d5f70c2a4a27dfdb2700a644ee87955))
|
|
32
|
+
* add notarization ([#121](https://github.com/iotaledger/twin-node/issues/121)) ([b2a11df](https://github.com/iotaledger/twin-node/commit/b2a11df92c7b5026f73f08a018c0586ebe008e92))
|
|
33
|
+
* 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))
|
|
34
|
+
* add outlook connector ([cf7ee0b](https://github.com/iotaledger/twin-node/commit/cf7ee0b73042cb33e693f3677386ca94567bb6e4))
|
|
35
|
+
* add rights management components ([0fc6293](https://github.com/iotaledger/twin-node/commit/0fc629332db24494bd73003625c7bf3f939a2597))
|
|
36
|
+
* 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))
|
|
37
|
+
* 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))
|
|
38
|
+
* add support for dynamodb connection timeout ([63051b0](https://github.com/iotaledger/twin-node/commit/63051b0d22138079115dfac921e7f0c45eaad34e))
|
|
39
|
+
* add tenant override ([#337](https://github.com/iotaledger/twin-node/issues/337)) ([b4ea765](https://github.com/iotaledger/twin-node/commit/b4ea7656e2557c19053365dd5d4af14d0d945cd5))
|
|
40
|
+
* add tracing ([#344](https://github.com/iotaledger/twin-node/issues/344)) ([4fa71cd](https://github.com/iotaledger/twin-node/commit/4fa71cd0eafd7d708df15c8f0a85323fecd05561))
|
|
41
|
+
* add tracing console connector ([#373](https://github.com/iotaledger/twin-node/issues/373)) ([fb36cb8](https://github.com/iotaledger/twin-node/commit/fb36cb8bebc2e8c1b94fa332cead8283ca5d636a))
|
|
42
|
+
* add tracing support ([a4986fc](https://github.com/iotaledger/twin-node/commit/a4986fc4af603ee461ec8d18ff502dddbc43edec))
|
|
43
|
+
* add trust and rights management plugin support ([cdeb504](https://github.com/iotaledger/twin-node/commit/cdeb504ee5986a347466162b9afa781645b4a54c))
|
|
44
|
+
* add trust ttl ([#73](https://github.com/iotaledger/twin-node/issues/73)) ([911cee7](https://github.com/iotaledger/twin-node/commit/911cee771bba490143bb1574ca8360f7cf8baa1a))
|
|
45
|
+
* add validate-locales ([1a19dcb](https://github.com/iotaledger/twin-node/commit/1a19dcb005c2f0e3103e290db28c48a3464094cb))
|
|
46
|
+
* add vault prefix configuration ([#75](https://github.com/iotaledger/twin-node/issues/75)) ([1d4afb1](https://github.com/iotaledger/twin-node/commit/1d4afb1b1a8aa60795898eeb9e7f5153c279527d))
|
|
47
|
+
* 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))
|
|
48
|
+
* additional cli commands ([#269](https://github.com/iotaledger/twin-node/issues/269)) ([c9e7c93](https://github.com/iotaledger/twin-node/commit/c9e7c939aedfceed9cbe501f2dc936e84289ed62))
|
|
49
|
+
* additional env vars and validation ([#324](https://github.com/iotaledger/twin-node/issues/324)) ([6b01e8c](https://github.com/iotaledger/twin-node/commit/6b01e8c10f9aa7181f51f13534d8164db3e7322d))
|
|
50
|
+
* additional options for enabling components ([e13d772](https://github.com/iotaledger/twin-node/commit/e13d7721a0dd7143d456fff246622cbe63dbd0f1))
|
|
51
|
+
* additional route logging env vars ([7152c88](https://github.com/iotaledger/twin-node/commit/7152c887c3ba76778e2d9e68ba57198b8d81d802))
|
|
52
|
+
* 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))
|
|
53
|
+
* bootstrap-legacy rename ([#310](https://github.com/iotaledger/twin-node/issues/310)) ([53af8a2](https://github.com/iotaledger/twin-node/commit/53af8a2e797e90bb601416215247cd8649dd6220))
|
|
54
|
+
* 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))
|
|
55
|
+
* custom plugin timeout ([#395](https://github.com/iotaledger/twin-node/issues/395)) ([d4a33ba](https://github.com/iotaledger/twin-node/commit/d4a33ba10a54c6dfab0b845b386201ac326df88a))
|
|
56
|
+
* custom REST paths ([#99](https://github.com/iotaledger/twin-node/issues/99)) ([dcab1b2](https://github.com/iotaledger/twin-node/commit/dcab1b2b23c13b4c9f39c3c1c67284f56e732bd1))
|
|
57
|
+
* dataspace plane path ([#272](https://github.com/iotaledger/twin-node/issues/272)) ([5998eeb](https://github.com/iotaledger/twin-node/commit/5998eeb6fa1392ae753eb6bafeccefa1fb690573))
|
|
58
|
+
* email ingestion ([#379](https://github.com/iotaledger/twin-node/issues/379)) ([12da79d](https://github.com/iotaledger/twin-node/commit/12da79dc9b167e288c555d4f1909a61c190eee4d))
|
|
59
|
+
* 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))
|
|
60
|
+
* enhanced cli commands ([#288](https://github.com/iotaledger/twin-node/issues/288)) ([479fb34](https://github.com/iotaledger/twin-node/commit/479fb3448c493a134aee35b69ae39458e493a4ad))
|
|
61
|
+
* env var simplification ([460b0f2](https://github.com/iotaledger/twin-node/commit/460b0f20a73cb482f7443af502f261d5f9d01759))
|
|
62
|
+
* env var validation ([#243](https://github.com/iotaledger/twin-node/issues/243)) ([569945a](https://github.com/iotaledger/twin-node/commit/569945a751eb52d008a681777a3cba881af1b9a4))
|
|
63
|
+
* env vars consistency ([1823b7a](https://github.com/iotaledger/twin-node/commit/1823b7aeae5dc7484861534b851080afda64d869))
|
|
64
|
+
* 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))
|
|
65
|
+
* eslint migration to flat config ([080db74](https://github.com/iotaledger/twin-node/commit/080db746390230f78725d214bc957da2efee9eb1))
|
|
66
|
+
* 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))
|
|
67
|
+
* 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))
|
|
68
|
+
* federated catalogue trust mode ([#194](https://github.com/iotaledger/twin-node/issues/194)) ([c18e6fb](https://github.com/iotaledger/twin-node/commit/c18e6fbe0014eb5faf8084d16169d86f3d3b23a6))
|
|
69
|
+
* file logging config ([#287](https://github.com/iotaledger/twin-node/issues/287)) ([a567b25](https://github.com/iotaledger/twin-node/commit/a567b253cbb8b9af872bb0e494c013212f4f55a2))
|
|
70
|
+
* 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))
|
|
71
|
+
* health and url transformer ([#131](https://github.com/iotaledger/twin-node/issues/131)) ([3658903](https://github.com/iotaledger/twin-node/commit/36589036b9bea120880fc395b0d123a89032cf40))
|
|
72
|
+
* health exclude config ([#403](https://github.com/iotaledger/twin-node/issues/403)) ([646024b](https://github.com/iotaledger/twin-node/commit/646024b0ebe0f6f11630da2ab4b48e9ea6c2970b))
|
|
73
|
+
* identity profile information source ([dbb53d1](https://github.com/iotaledger/twin-node/commit/dbb53d145f517070d864f37650a6dbc1f3e9c3a8))
|
|
74
|
+
* immutable proof config ([#307](https://github.com/iotaledger/twin-node/issues/307)) ([9257495](https://github.com/iotaledger/twin-node/commit/92574953329647756aa6ab4cca80b1707e14a33f))
|
|
75
|
+
* immutable proof gate and additional config ([#157](https://github.com/iotaledger/twin-node/issues/157)) ([1d1fbb7](https://github.com/iotaledger/twin-node/commit/1d1fbb7c53525af848761dc25b42e9e676929972))
|
|
76
|
+
* improve bootstrapping and shutdown behaviour ([#66](https://github.com/iotaledger/twin-node/issues/66)) ([65b3452](https://github.com/iotaledger/twin-node/commit/65b345240334bfff48b52e136cc486cd7ac7f290))
|
|
77
|
+
* improve node logging ([c25b9c6](https://github.com/iotaledger/twin-node/commit/c25b9c6779bdb76f341df072c39b4c2fae4565a3))
|
|
78
|
+
* improved cli commands ([#206](https://github.com/iotaledger/twin-node/issues/206)) ([cf00850](https://github.com/iotaledger/twin-node/commit/cf0085023a66e187aaaaf3889128c845c73a1faf))
|
|
79
|
+
* migration options ([#293](https://github.com/iotaledger/twin-node/issues/293)) ([91acc88](https://github.com/iotaledger/twin-node/commit/91acc881f665be0177b2e895e2810dd4d6145105))
|
|
80
|
+
* migration testing ([#199](https://github.com/iotaledger/twin-node/issues/199)) ([97a731c](https://github.com/iotaledger/twin-node/commit/97a731c520d66ab0588d80987a0f88d388ce51ae))
|
|
81
|
+
* 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))
|
|
82
|
+
* new tenant auth mechanisms ([#168](https://github.com/iotaledger/twin-node/issues/168)) ([686f111](https://github.com/iotaledger/twin-node/commit/686f1118e79e6f26a8dc72a5e9172584057f4518))
|
|
83
|
+
* organization identifiers ([#203](https://github.com/iotaledger/twin-node/issues/203)) ([1a6b176](https://github.com/iotaledger/twin-node/commit/1a6b1760d9f8e43a769407668426c70e1c8e1aa8))
|
|
84
|
+
* pool env vars ([#331](https://github.com/iotaledger/twin-node/issues/331)) ([338ea61](https://github.com/iotaledger/twin-node/commit/338ea612b37aa4d15971c8a09def47bee9395d0c))
|
|
85
|
+
* publish nightly soak reports as a web-hosted dashboard ([#378](https://github.com/iotaledger/twin-node/issues/378)) ([e6984f9](https://github.com/iotaledger/twin-node/commit/e6984f9183e50b78e10de2124b94e3c22c7306ca))
|
|
86
|
+
* remove dap and darp ([36c3ffb](https://github.com/iotaledger/twin-node/commit/36c3ffb31af65a0e3025859dab675efeee043155))
|
|
87
|
+
* remove mutex timeout from logger ([e5a5407](https://github.com/iotaledger/twin-node/commit/e5a540725fa97b523f88589f582501f41b982d5b))
|
|
88
|
+
* remove old mutex timeouts ([fe6444a](https://github.com/iotaledger/twin-node/commit/fe6444af1a2e53cf6bce8517dbb8352e8b07bb31))
|
|
89
|
+
* remove set-tenant ([#186](https://github.com/iotaledger/twin-node/issues/186)) ([1fc1909](https://github.com/iotaledger/twin-node/commit/1fc1909e6335dea51dfec3bb91fba4badaa9790a))
|
|
90
|
+
* rest metrics ([#341](https://github.com/iotaledger/twin-node/issues/341)) ([ebec573](https://github.com/iotaledger/twin-node/commit/ebec5736bb66adfd97f7d73912bec1ce7392e5f8))
|
|
91
|
+
* 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))
|
|
92
|
+
* separate script directory from exec directory ([f6bb4db](https://github.com/iotaledger/twin-node/commit/f6bb4dbea1f1e200e0640fa154c6997ef99c99b4))
|
|
93
|
+
* silent telemetry and tracing options ([#351](https://github.com/iotaledger/twin-node/issues/351)) ([3a5752f](https://github.com/iotaledger/twin-node/commit/3a5752fc0bf8a028b3ebfc34878524ac799fb81e))
|
|
94
|
+
* support public origin and hosting service ([#77](https://github.com/iotaledger/twin-node/issues/77)) ([3b9039f](https://github.com/iotaledger/twin-node/commit/3b9039fcba7f7038c06f8fd6a5ccc9fdbbf535b3))
|
|
95
|
+
* telemetry batching ([#347](https://github.com/iotaledger/twin-node/issues/347)) ([5d5b0a9](https://github.com/iotaledger/twin-node/commit/5d5b0a91396298fe774ae26193b0595875cd118a))
|
|
96
|
+
* telemetry tracing multi ([#357](https://github.com/iotaledger/twin-node/issues/357)) ([b6412ac](https://github.com/iotaledger/twin-node/commit/b6412ac3141a94a0f9f7d1dd391451ac9247e862))
|
|
97
|
+
* typescript 6 update ([ce2e3ca](https://github.com/iotaledger/twin-node/commit/ce2e3ca5219587709f7b9cf6c65909b48fba11b5))
|
|
98
|
+
* update background tasks and add fedcat filters ([1fd297e](https://github.com/iotaledger/twin-node/commit/1fd297e29f60b5bb3909638b68e326c5b0e2d77d))
|
|
99
|
+
* update dependencies ([64c8ea8](https://github.com/iotaledger/twin-node/commit/64c8ea8c8b5e918f7ad419c4e3b8d08faf5e3fdd))
|
|
100
|
+
* update dependencies ([aab05b5](https://github.com/iotaledger/twin-node/commit/aab05b552152a208a504fb9a080603f1990d4f79))
|
|
101
|
+
* update dependencies ([6cb3d3a](https://github.com/iotaledger/twin-node/commit/6cb3d3a63f7b976f80074ddecfba034b7e92f919))
|
|
102
|
+
* update dependencies ([351f777](https://github.com/iotaledger/twin-node/commit/351f777e001bf4183762657fc565b133a317600a))
|
|
103
|
+
* update dependencies ([#316](https://github.com/iotaledger/twin-node/issues/316)) ([f3fe328](https://github.com/iotaledger/twin-node/commit/f3fe3281a80f34763c923eacca58364273a550b7))
|
|
104
|
+
* update docs ([61e5a00](https://github.com/iotaledger/twin-node/commit/61e5a004089a0c11ec03e354b076604ecdeb4817))
|
|
105
|
+
* update docs ([409126a](https://github.com/iotaledger/twin-node/commit/409126a1325998face4634426b71682944c6a504))
|
|
106
|
+
* update document management components ([ed2c065](https://github.com/iotaledger/twin-node/commit/ed2c065a5030a7233f3623818d7325d85654ef0d))
|
|
107
|
+
* update engine ([a40b377](https://github.com/iotaledger/twin-node/commit/a40b37726c3b61c6bb40265ec0006d1071ffac7e))
|
|
108
|
+
* update engine ([4b438e2](https://github.com/iotaledger/twin-node/commit/4b438e22c27d784ee6cc964b7cb4401e9699ab16))
|
|
109
|
+
* update for livez endpoint ([9fc2e6a](https://github.com/iotaledger/twin-node/commit/9fc2e6ade38b3ec9591399a633d02b1e5fe07910))
|
|
110
|
+
* update framework components ([4bee2b9](https://github.com/iotaledger/twin-node/commit/4bee2b9d3651df09b8550a9ed226be1b46031854))
|
|
111
|
+
* update logging retention units in config ([0b9bb69](https://github.com/iotaledger/twin-node/commit/0b9bb696db0722f6b33e37e1ebd1f4d6ffbcf7cc))
|
|
112
|
+
* update rights management ([5c992c6](https://github.com/iotaledger/twin-node/commit/5c992c6b0d72f3eeaa39ee267e096d9a3f477f4e))
|
|
113
|
+
* update rights management components ([176a0d6](https://github.com/iotaledger/twin-node/commit/176a0d611f88360fc845ae233b26ee0b43d7cb23))
|
|
114
|
+
* update to latest engine ([00d4974](https://github.com/iotaledger/twin-node/commit/00d4974f9cfb02bf48505cfb4af4a7aba1df4b3d))
|
|
115
|
+
* updated context id features ([ef7be07](https://github.com/iotaledger/twin-node/commit/ef7be07d44dccdeacf10f90cb4ffde0303faa6fa))
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Bug Fixes
|
|
119
|
+
|
|
120
|
+
* improve calculation of execution directory ([106d65d](https://github.com/iotaledger/twin-node/commit/106d65d7ad5524e2e147b681d68f9476c024cfaa))
|
|
121
|
+
* 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))
|
|
122
|
+
* update dependencies ([#283](https://github.com/iotaledger/twin-node/issues/283)) ([053c53d](https://github.com/iotaledger/twin-node/commit/053c53d45ec233e6936e56f8de8d5a5346ad2242))
|
|
123
|
+
* 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))
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
### Dependencies
|
|
127
|
+
|
|
128
|
+
* The following workspace dependencies were updated
|
|
129
|
+
* dependencies
|
|
130
|
+
* @twin.org/node-core bumped from 0.9.5-next.0 to 0.9.5-next.1
|
|
131
|
+
|
|
3
132
|
## [0.9.4](https://github.com/iotaledger/twin-node/compare/node-v0.9.4...node-v0.9.4) (2026-09-14)
|
|
4
133
|
|
|
5
134
|
|
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.5-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.5-next.2"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|