@twin.org/node 0.9.2-next.5 → 0.9.2-next.6

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.
@@ -93,51 +93,7 @@
93
93
  "identityResolve": {
94
94
  "identityNotFound": "The identity \"{identity}\" was not found."
95
95
  },
96
- "entityStorageAuthenticationService": {
97
- "loginFailed": "Login failed",
98
- "userNotFound": "The user with the specified e-mail could not be found",
99
- "passwordMismatch": "The password does not match the user's password",
100
- "nodeIdNotSet": "The node ID has not been set"
101
- },
102
- "entityStorageAuthenticationAdminService": {
103
- "userExists": "The user with the specified e-mail already exists",
104
- "createUserFailed": "Creating the user failed",
105
- "getUserFailed": "Getting the user failed",
106
- "updateUserFailed": "Updating the user failed",
107
- "removeUserFailed": "Removing the user failed",
108
- "updatePasswordFailed": "Updating the user's password failed",
109
- "userNotFound": "The user with the specified e-mail could not be found \"{notFoundId}\""
110
- },
111
- "authHeaderProcessor": {
112
- "nodeIdNotSet": "The node ID has not been set"
113
- },
114
- "passwordHelper": {
115
- "currentPasswordMismatch": "The current password is incorrect"
116
- },
117
- "entityStorageAuthenticationAuditService": {
118
- "auditEntryNotFound": "The audit entry with the specified identifier could not be found \"{notFoundId}\"",
119
- "getAuditEntryFailed": "Getting the audit entry failed",
120
- "updateAuditEntryFailed": "Updating the audit entry failed",
121
- "removeAuditEntryFailed": "Removing the audit entry failed"
122
- },
123
- "entityStorageAuthenticationRateService": {
124
- "actionConfigMissing": "No rate-limit configuration exists for action \"{action}\".",
125
- "rateLimitExceeded": "The rate limit for action \"{action}\" has been exceeded. Retry after {retryAfterSeconds} seconds."
126
- },
127
- "tokenHelper": {
128
- "missing": "The JSON Web token could not be found in the authorization header",
129
- "headerKeyIdMismatch": "The JSON Web token key identifier does not match the expected signing key",
130
- "payloadIssuerMismatch": "The JSON Web token issuer does not match the expected signing key",
131
- "payloadMissingSubject": "The JSON Web token payload does not contain a subject",
132
- "payloadMissingOrganization": "The JSON Web token payload does not contain an organization",
133
- "expired": "The JSON Web token has expired",
134
- "insufficientScopes": "The JSON Web token does not have the required scopes to access this resource",
135
- "userNotVerified": "The user associated with the JSON Web token could not be verified",
136
- "organizationNotVerified": "The organization associated with the JSON Web token could not be verified",
137
- "tenantNotVerified": "The tenant associated with the JSON Web token could not be verified"
138
- },
139
96
  "validation": {
140
- "saltEntropyTooLow": "Salt must have at least 8 unique characters for sufficient entropy.",
141
97
  "beEmpty": "{fieldName} must be empty",
142
98
  "beNotEmpty": "{fieldName} must not be empty",
143
99
  "beText": "{fieldName} must be text",
@@ -183,11 +139,11 @@
183
139
  "atLeastOneUpperCase": "The value should contain at least one uppercase character",
184
140
  "atLeastOneNumber": "The value should contain at least one number",
185
141
  "atLeastOneSpecialChar": "The value should contain at least one symbol",
142
+ "saltEntropyTooLow": "Salt must have at least 8 unique characters for sufficient entropy.",
186
143
  "schema": {
187
144
  "missingType": "Failed to validate as there is no handler for type \"{dataType}\""
188
145
  },
189
146
  "schemaFailed": "Schema failed validation, \"{message}\", keyword: \"{keyword}\", schemaPath: \"{schemaPath}\"",
190
- "missingType": "The object must include at least one @type value",
191
147
  "geo": {
192
148
  "coordinatesLatitudeNumber": "The latitude value must be a number",
193
149
  "coordinatesLatitudeRange": "The latitude value must be between -90 and 90",
@@ -196,7 +152,8 @@
196
152
  },
197
153
  "auditableItemGraphService": {
198
154
  "edgeIdSameAsVertexId": "The edge with target id \"{targetId}\" can not point to the vertex it belongs to"
199
- }
155
+ },
156
+ "missingType": "The object must include at least one @type value"
200
157
  },
201
158
  "guard": {
202
159
  "undefined": "Property \"{property}\" must be defined, it is \"{value}\"",
@@ -347,6 +304,49 @@
347
304
  "pbkdf2": {
348
305
  "keyLengthTooSmall": "The key length must be at least 1, it is \"{keyLength}\""
349
306
  },
307
+ "entityStorageAuthenticationService": {
308
+ "loginFailed": "Login failed",
309
+ "userNotFound": "The user with the specified e-mail could not be found",
310
+ "passwordMismatch": "The password does not match the user's password",
311
+ "nodeIdNotSet": "The node ID has not been set"
312
+ },
313
+ "entityStorageAuthenticationAdminService": {
314
+ "userExists": "The user with the specified e-mail already exists",
315
+ "createUserFailed": "Creating the user failed",
316
+ "getUserFailed": "Getting the user failed",
317
+ "updateUserFailed": "Updating the user failed",
318
+ "removeUserFailed": "Removing the user failed",
319
+ "updatePasswordFailed": "Updating the user's password failed",
320
+ "userNotFound": "The user with the specified e-mail could not be found \"{notFoundId}\""
321
+ },
322
+ "authHeaderProcessor": {
323
+ "nodeIdNotSet": "The node ID has not been set"
324
+ },
325
+ "passwordHelper": {
326
+ "currentPasswordMismatch": "The current password is incorrect"
327
+ },
328
+ "entityStorageAuthenticationAuditService": {
329
+ "auditEntryNotFound": "The audit entry with the specified identifier could not be found \"{notFoundId}\"",
330
+ "getAuditEntryFailed": "Getting the audit entry failed",
331
+ "updateAuditEntryFailed": "Updating the audit entry failed",
332
+ "removeAuditEntryFailed": "Removing the audit entry failed"
333
+ },
334
+ "entityStorageAuthenticationRateService": {
335
+ "actionConfigMissing": "No rate-limit configuration exists for action \"{action}\".",
336
+ "rateLimitExceeded": "The rate limit for action \"{action}\" has been exceeded. Retry after {retryAfterSeconds} seconds."
337
+ },
338
+ "tokenHelper": {
339
+ "missing": "The JSON Web token could not be found in the authorization header",
340
+ "headerKeyIdMismatch": "The JSON Web token key identifier does not match the expected signing key",
341
+ "payloadIssuerMismatch": "The JSON Web token issuer does not match the expected signing key",
342
+ "payloadMissingSubject": "The JSON Web token payload does not contain a subject",
343
+ "payloadMissingOrganization": "The JSON Web token payload does not contain an organization",
344
+ "expired": "The JSON Web token has expired",
345
+ "insufficientScopes": "The JSON Web token does not have the required scopes to access this resource",
346
+ "userNotVerified": "The user associated with the JSON Web token could not be verified",
347
+ "organizationNotVerified": "The organization associated with the JSON Web token could not be verified",
348
+ "tenantNotVerified": "The tenant associated with the JSON Web token could not be verified"
349
+ },
350
350
  "baseRestClient": {
351
351
  "missingRouteProp": "Missing route parameter in data \"{routeProp}\" for route \"{route}\"",
352
352
  "decodingFailed": "Decoding JSON failed for route \"{route}\"",
@@ -424,45 +424,47 @@
424
424
  "invalidUrl": "The JSON-LD processing failed to retrieve from the following url \"{url}\"",
425
425
  "jsonLdError": "The JSON-LD processing failed due to the following error: \"{code}\""
426
426
  },
427
- "odrlPolicyHelper": {
428
- "policyMissingAssignee": "The {policyType} with id \"{policyId}\" is missing an assignee.",
429
- "policyMissingAssigner": "The {policyType} with id \"{policyId}\" is missing an assigner."
430
- },
431
- "verificationHelper": {
432
- "jwtDecodeFailed": "Decoding the JWT failed",
433
- "proofMissingVerificationMethod": "The proof is missing the verification method"
434
- },
435
- "documentHelper": {
436
- "verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
437
- "verificationMethodJwkNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" is missing the JWK"
438
- },
439
- "proofHelper": {
440
- "unsupportedProofType": "Proof type \"{proofType}\" not supported."
441
- },
442
- "jsonWebSignature2020SignerVerifier": {
443
- "missingJws": "JWS is missing from proof."
444
- },
445
- "dataIntegrityProofSignerVerifier": {
446
- "cryptosuiteNotSupported": "Cryptosuite \"{cryptoSuite}\" is not supported.",
447
- "missingPrivateKey": "Private key is missing.",
448
- "missingPublicKey": "Public key is missing."
427
+ "accountHelper": {
428
+ "addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
429
+ "missingPublicKey": "The public key is missing for vault key \"{keyName}\""
449
430
  },
450
- "multikeyHelper": {
451
- "invalidPublicKeyMultibase": "Public key multibase \"{publicKeyMultibase}\" is invalid.",
452
- "invalidSecretKeyMultibase": "Secret key multibase \"{secretKeyMultibase}\" is invalid.",
453
- "unsupportedCrv": "Curve \"{crv}\" is not supported.",
454
- "unsupportedKty": "Key type \"{kty}\" is not supported.",
455
- "publicKeyMultibaseMissingHeader": "Public key multibase \"{publicKeyMultibase}\" is missing the multi codec header",
456
- "secretKeyMultibaseMissingHeader": "Secret key multibase \"{secretKeyMultibase}\" is missing the multi codec header"
431
+ "iota": {
432
+ "insufficientFunds": "There were insufficient funds to complete the operation",
433
+ "packageNotFoundOnNetwork": "The package \"{packageId}\" was not found on the network",
434
+ "packageObjectError": "Failed to fetch the package object \"{packageId}\"",
435
+ "valueTransactionFailed": "The value transaction failed",
436
+ "transactionFailed": "The transaction failed",
437
+ "objectReservationConflict": "One or more of the transaction's owned objects are contended by another in-flight transaction; submit transactions that share objects sequentially and retry",
438
+ "gasStationTransactionFailed": "The gas station transaction failed",
439
+ "dryRunFailed": "The dry run execution failed",
440
+ "fundingFailed": "Fund the address from faucet failed",
441
+ "faucetRateLimit": "Faucet rate limit exceeded"
457
442
  },
458
- "silentTelemetryConnector": {
459
- "notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
443
+ "vaultJwkStorage": {
444
+ "generateNotSupported": "Key generation is not supported; keys are managed by the vault"
460
445
  },
461
- "dataspaceProtocolHelper": {
462
- "schemaNotRegistered": "JSON Schema \"{schemaId}\" is not registered in DataTypeHandlerFactory"
446
+ "iotaIdentityUtils": {
447
+ "getControllerCapInfoFailed": "Getting the controller capability info for the identity failed",
448
+ "identityNotFound": "The identity could not be found \"{notFoundId}\"",
449
+ "identityDeleted": "The identity \"{identityId}\" has been deleted and cannot be used for minting",
450
+ "controllerTokenNotFound": "No controller token found for the identity \"{notFoundId}\" with the provided controller address"
463
451
  },
464
- "trustHelper": {
465
- "trustVerifyFailed": "Trust verification failed for action \"{action}\""
452
+ "iotaSmartContractUtils": {
453
+ "migrationFailed": "Smart contract migration failed",
454
+ "migrateSmartContractFailed": "Failed to migrate smart contract for object \"{objectId}\"",
455
+ "enableMigrationFailed": "Failed to enable migration for smart contract",
456
+ "disableMigrationFailed": "Failed to disable migration for smart contract",
457
+ "migrationStateNotReadable": "Cannot read migration state for ID \"{migrationStateId}\"",
458
+ "isMigrationActiveFailed": "Failed to check if migration is active",
459
+ "invalidVersionData": "Invalid version data received from smart contract",
460
+ "getCurrentContractVersionNoData": "No version data returned from contract",
461
+ "getCurrentContractVersionFailed": "Failed to get current contract version",
462
+ "objectNotReadable": "Cannot read object with ID \"{objectId}\"",
463
+ "objectInvalidFormat": "Object \"{objectId}\" has invalid format",
464
+ "validateObjectVersionFailed": "Failed to validate object version for \"{objectId}\"",
465
+ "getContractObjectIdsFailed": "Failed to get contract object IDs for namespace \"{namespace}\" on network \"{network}\"",
466
+ "adminCapNotFound": "AdminCap object not found for type \"{adminCapType}\" and address \"{adminAddress}\"",
467
+ "migrationStateNotFound": "MigrationState object not found for type \"{migrationStateType}\" and address \"{adminAddress}\""
466
468
  },
467
469
  "engineCore": {
468
470
  "componentUnknownType": "Unknown component type \"{type}\" specified for \"{componentType}\"",
@@ -488,9 +490,10 @@
488
490
  "connectorUnknownType": "Unknown connector type \"{type}\" specified for \"{connectorType}\""
489
491
  },
490
492
  "healthService": {
491
- "componentHealthInitFailed": "Health check init failed for component \"{className}\"",
492
493
  "componentHealthCheckFailed": "Health check failed for component \"{className}\"",
493
- "componentHealthTeardownFailed": "Health check teardown failed for component \"{className}\""
494
+ "componentHealthApplicationInitFailed": "Application health check init failed for component \"{className}\"",
495
+ "componentHealthApplicationCheckFailed": "Application health check failed for component \"{className}\"",
496
+ "componentHealthApplicationTeardownFailed": "Application health check teardown failed for component \"{className}\""
494
497
  },
495
498
  "nftAttestationConnector": {
496
499
  "attestingFailed": "Attesting the data failed",
@@ -499,6 +502,36 @@
499
502
  "destroyFailed": "Destroying the attestation failed",
500
503
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the NFT Attestation connector \"{namespace}\""
501
504
  },
505
+ "proofHelper": {
506
+ "unsupportedProofType": "Proof type \"{proofType}\" not supported."
507
+ },
508
+ "jsonWebSignature2020SignerVerifier": {
509
+ "missingJws": "JWS is missing from proof."
510
+ },
511
+ "dataIntegrityProofSignerVerifier": {
512
+ "cryptosuiteNotSupported": "Cryptosuite \"{cryptoSuite}\" is not supported.",
513
+ "missingPrivateKey": "Private key is missing.",
514
+ "missingPublicKey": "Public key is missing."
515
+ },
516
+ "multikeyHelper": {
517
+ "invalidPublicKeyMultibase": "Public key multibase \"{publicKeyMultibase}\" is invalid.",
518
+ "invalidSecretKeyMultibase": "Secret key multibase \"{secretKeyMultibase}\" is invalid.",
519
+ "unsupportedCrv": "Curve \"{crv}\" is not supported.",
520
+ "unsupportedKty": "Key type \"{kty}\" is not supported.",
521
+ "publicKeyMultibaseMissingHeader": "Public key multibase \"{publicKeyMultibase}\" is missing the multi codec header",
522
+ "secretKeyMultibaseMissingHeader": "Secret key multibase \"{secretKeyMultibase}\" is missing the multi codec header"
523
+ },
524
+ "silentTelemetryConnector": {
525
+ "notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
526
+ },
527
+ "verificationHelper": {
528
+ "jwtDecodeFailed": "Decoding the JWT failed",
529
+ "proofMissingVerificationMethod": "The proof is missing the verification method"
530
+ },
531
+ "documentHelper": {
532
+ "verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
533
+ "verificationMethodJwkNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" is missing the JWK"
534
+ },
502
535
  "attestationService": {
503
536
  "noConnectors": "There are no connectors registered with the attestation factory",
504
537
  "attestFailed": "The attestation of the data failed",
@@ -722,6 +755,16 @@
722
755
  "pushTransferDataPathNotConfigured": "POST transfer cannot start: dataPlanePath is not configured (consumerPid: {consumerPid})",
723
756
  "providerIdentityMissing": "Provider identity (DID) is required to sign data access tokens but was not set on the Transfer Process"
724
757
  },
758
+ "odrlPolicyHelper": {
759
+ "policyMissingAssignee": "The {policyType} with id \"{policyId}\" is missing an assignee.",
760
+ "policyMissingAssigner": "The {policyType} with id \"{policyId}\" is missing an assigner."
761
+ },
762
+ "dataspaceProtocolHelper": {
763
+ "schemaNotRegistered": "JSON Schema \"{schemaId}\" is not registered in DataTypeHandlerFactory"
764
+ },
765
+ "trustHelper": {
766
+ "trustVerifyFailed": "Trust verification failed for action \"{action}\""
767
+ },
725
768
  "dataspaceDataPlaneRestClient": {
726
769
  "notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
727
770
  },
@@ -1019,46 +1062,6 @@
1019
1062
  "signatureVerificationFailed": "The document integrity check failed",
1020
1063
  "verifyProofFailed": "Verifying the signature for the data failed"
1021
1064
  },
1022
- "iota": {
1023
- "insufficientFunds": "There were insufficient funds to complete the operation",
1024
- "packageNotFoundOnNetwork": "The package \"{packageId}\" was not found on the network",
1025
- "packageObjectError": "Failed to fetch the package object \"{packageId}\"",
1026
- "valueTransactionFailed": "The value transaction failed",
1027
- "transactionFailed": "The transaction failed",
1028
- "objectReservationConflict": "One or more of the transaction's owned objects are contended by another in-flight transaction; submit transactions that share objects sequentially and retry",
1029
- "addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
1030
- "gasStationTransactionFailed": "The gas station transaction failed",
1031
- "dryRunFailed": "The dry run execution failed",
1032
- "fundingFailed": "Fund the address from faucet failed",
1033
- "faucetRateLimit": "Faucet rate limit exceeded",
1034
- "missingPublicKey": "The public key is missing for vault key \"{keyName}\""
1035
- },
1036
- "vaultJwkStorage": {
1037
- "generateNotSupported": "Key generation is not supported; keys are managed by the vault"
1038
- },
1039
- "iotaIdentityUtils": {
1040
- "getControllerCapInfoFailed": "Getting the controller capability info for the identity failed",
1041
- "identityNotFound": "The identity could not be found \"{notFoundId}\"",
1042
- "identityDeleted": "The identity \"{identityId}\" has been deleted and cannot be used for minting",
1043
- "controllerTokenNotFound": "No controller token found for the identity \"{notFoundId}\" with the provided controller address"
1044
- },
1045
- "iotaSmartContractUtils": {
1046
- "migrationFailed": "Smart contract migration failed",
1047
- "migrateSmartContractFailed": "Failed to migrate smart contract for object \"{objectId}\"",
1048
- "enableMigrationFailed": "Failed to enable migration for smart contract",
1049
- "disableMigrationFailed": "Failed to disable migration for smart contract",
1050
- "migrationStateNotReadable": "Cannot read migration state for ID \"{migrationStateId}\"",
1051
- "isMigrationActiveFailed": "Failed to check if migration is active",
1052
- "invalidVersionData": "Invalid version data received from smart contract",
1053
- "getCurrentContractVersionNoData": "No version data returned from contract",
1054
- "getCurrentContractVersionFailed": "Failed to get current contract version",
1055
- "objectNotReadable": "Cannot read object with ID \"{objectId}\"",
1056
- "objectInvalidFormat": "Object \"{objectId}\" has invalid format",
1057
- "validateObjectVersionFailed": "Failed to validate object version for \"{objectId}\"",
1058
- "getContractObjectIdsFailed": "Failed to get contract object IDs for namespace \"{namespace}\" on network \"{network}\"",
1059
- "adminCapNotFound": "AdminCap object not found for type \"{adminCapType}\" and address \"{adminAddress}\"",
1060
- "migrationStateNotFound": "MigrationState object not found for type \"{migrationStateType}\" and address \"{adminAddress}\""
1061
- },
1062
1065
  "universalResolverConnector": {
1063
1066
  "resolveDocumentFailed": "Resolving the document failed \"{documentId}\""
1064
1067
  },
@@ -1107,7 +1110,8 @@
1107
1110
  "removeFailed": "Removing the Immutable Proof failed",
1108
1111
  "removeNotarizationFailed": "Removing notarization entry from the Immutable Proof failed",
1109
1112
  "proofNotFound": "The proof with the Id \"{notFoundId}\" was not found",
1110
- "createProofFailed": "Creating the immutable proof failed"
1113
+ "createProofFailed": "Creating the immutable proof failed",
1114
+ "sweepFailed": "The reconciliation sweep cycle failed"
1111
1115
  },
1112
1116
  "immutableProofTask": {
1113
1117
  "taskNotarizationFailed": "The notarization for proof \"{proofId}\" failed after {elapsedMs}ms, the task will not be retried as the notarization may already be on the ledger"
@@ -1346,6 +1350,18 @@
1346
1350
  "metricsCollectorService": {
1347
1351
  "producerCollectionFailed": "Failed to collect metrics from producer \"{producer}\""
1348
1352
  },
1353
+ "entityStorageTracingConnector": {
1354
+ "spanNotFound": "The span could not be found \"{notFoundId}\""
1355
+ },
1356
+ "spanHelper": {
1357
+ "traceFlagsOutOfRange": "The trace flags value \"{traceFlags}\" is outside the valid range 0 to 255"
1358
+ },
1359
+ "openTelemetryTracingConnector": {
1360
+ "sampleRatioOutOfRange": "The sample ratio \"{sampleRatio}\" must be between 0 and 1"
1361
+ },
1362
+ "tracingRoutes": {
1363
+ "spanIdMismatch": "The span id in the path \"{pathSpanId}\" does not match the span id in the body \"{bodySpanId}\""
1364
+ },
1349
1365
  "trustService": {
1350
1366
  "notVerified": "Payload verification failed",
1351
1367
  "noGeneratorsRegistered": "No trust generators are registered in the factory",
@@ -1464,7 +1480,11 @@
1464
1480
  "transferRetrievalRecordFailed": "Failed to record the transfer retrieval (consumerPid: {consumerPid})"
1465
1481
  },
1466
1482
  "immutableProofService": {
1467
- "taskRecordRemoveFailed": "Removing the completed task record for proof \"{proofId}\" failed, the record will be removed when its retention expires"
1483
+ "taskRecordRemoveFailed": "Removing the completed task record for proof \"{proofId}\" failed, the record will be removed when its retention expires",
1484
+ "orphanedTaskRemoveFailed": "Removing the background task \"{taskId}\" for proof \"{proofId}\" failed after the proof entity could not be persisted; the task will still run to completion",
1485
+ "supersededTaskRemoveFailed": "Removing the superseded background task \"{taskId}\" for proof \"{proofId}\" failed, the record will be removed when its retention expires",
1486
+ "sweepParked": "Parked proof \"{proofId}\" after {sweepAttempts} sweep attempts",
1487
+ "sweepParkedTotal": "{totalParked} proof(s) are currently parked and require operator investigation"
1468
1488
  },
1469
1489
  "immutableProofTask": {
1470
1490
  "taskEngineStopFailed": "Stopping the task engine for proof \"{proofId}\" failed, the task result is unaffected"
@@ -1473,7 +1493,8 @@
1473
1493
  "sendTerminateFailed": "Failed to send terminate to consumer for negotiation id: \"{id}\", correlation id: \"{correlationId}\""
1474
1494
  },
1475
1495
  "policyNegotiationPointService": {
1476
- "terminatedCallbackFailed": "Failed to notify requester via terminated() for negotiation id: \"{negotiationId}\""
1496
+ "terminatedCallbackFailed": "Failed to notify requester via terminated() for negotiation id: \"{negotiationId}\"",
1497
+ "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"
1477
1498
  }
1478
1499
  },
1479
1500
  "node": {
@@ -2315,13 +2336,12 @@
2315
2336
  "migrateSchemaFinalizing": "Finalizing migration of schema \"{schemaName}\"",
2316
2337
  "migrateSchemaComplete": "Migration of schema \"{schemaName}\" complete"
2317
2338
  },
2339
+ "iota": {
2340
+ "transactionCosts": "Transaction costs for operation \"{operation}\", \"{cost}\""
2341
+ },
2318
2342
  "engineTypes": {
2319
2343
  "configuringEntityStorage": "Configuring {element} with name \"{storageName}\" using \"{storageType}\" connector"
2320
2344
  },
2321
- "memoryEntityStorageConnector": {
2322
- "storeTearingDown": "Tearing down entity storage",
2323
- "storeTornDown": "Entity storage torn down"
2324
- },
2325
2345
  "fetchAction": {
2326
2346
  "fetch": "Fetch \"{url}\" with method \"{method}\""
2327
2347
  },
@@ -2447,6 +2467,10 @@
2447
2467
  "storeTearingDown": "Tearing down entity storage",
2448
2468
  "storeTornDown": "Entity storage torn down"
2449
2469
  },
2470
+ "memoryEntityStorageConnector": {
2471
+ "storeTearingDown": "Tearing down entity storage",
2472
+ "storeTornDown": "Entity storage torn down"
2473
+ },
2450
2474
  "mongoDbEntityStorageConnector": {
2451
2475
  "databaseCreating": "Database \"{databaseName}\" creating",
2452
2476
  "databaseExists": "Database \"{databaseName}\" created or it already exists",
@@ -2515,11 +2539,10 @@
2515
2539
  "catalogQueryComplete": "Catalogue query complete, found {resultCount} results",
2516
2540
  "filterIndexPersisted": "Filter indexes persisted for dataset \"{datasetId}\" using filter \"{filterType}\", {indexCount} entries"
2517
2541
  },
2518
- "iota": {
2519
- "transactionCosts": "Transaction costs for operation \"{operation}\", \"{cost}\""
2520
- },
2521
2542
  "immutableProofService": {
2522
- "createdProof": "The immutable proof with Id \"{proofId}\" has been created successfully"
2543
+ "createdProof": "The immutable proof with Id \"{proofId}\" has been created successfully",
2544
+ "sweepReEnqueued": "Re-enqueued stuck proof \"{proofId}\" as task \"{taskId}\"",
2545
+ "sweepCompleted": "Reconciliation sweep cycle completed (scanned: {scanned}, reEnqueued: {reEnqueued}, skippedInFlight: {skippedInFlight}, newlyParked: {newlyParked}, totalParked: {totalParked})"
2523
2546
  },
2524
2547
  "openTelemetryLoggingConnector": {
2525
2548
  "connectorStarted": "The connector was started with \"{exporterCount}\" exporter(s)",
@@ -2618,6 +2641,10 @@
2618
2641
  "connectorStarted": "The connector was started with \"{readerCount}\" metric reader(s)",
2619
2642
  "connectorStopped": "The connector was stopped"
2620
2643
  },
2644
+ "openTelemetryTracingConnector": {
2645
+ "connectorStarted": "The connector was started with \"{exporterCount}\" exporter(s)",
2646
+ "connectorStopped": "The connector was stopped"
2647
+ },
2621
2648
  "trustService": {
2622
2649
  "verifying": "Verifying payload: \"{payload}\"",
2623
2650
  "verified": "Payload verified successfully"
@@ -2627,7 +2654,7 @@
2627
2654
  },
2628
2655
  "fastifyWebServer": {
2629
2656
  "building": "Building Web Server",
2630
- "starting": "Starting Web Server at address \"{host}\" on port \"{port}\"",
2657
+ "starting": "Starting Web Server with binding \"{host}\" on port \"{port}\"",
2631
2658
  "started": "The Web Server started on {addresses}",
2632
2659
  "stopped": "The Web Server was stopped",
2633
2660
  "restRouteAdded": "Added REST route \"{route}\" \"{method}\"",
@@ -2715,8 +2742,17 @@
2715
2742
  }
2716
2743
  },
2717
2744
  "health": {
2718
- "memoryEntityStorageConnector": {
2719
- "healthDescription": "Memory entity storage for \"{entityType}\" is always available"
2745
+ "attestationService": {
2746
+ "healthDescription": "Attestation lifecycle (create, get, destroy) using the \"{namespace}\" namespace",
2747
+ "getAttestationFailed": "Failed to get the health check attestation"
2748
+ },
2749
+ "auditableItemGraphService": {
2750
+ "healthDescription": "Auditable item graph service application health check",
2751
+ "getVertexFailed": "Failed to complete the auditable item graph vertex storage health check"
2752
+ },
2753
+ "auditableItemStreamService": {
2754
+ "healthDescription": "Auditable item stream service application health check",
2755
+ "getStreamFailed": "Failed to complete the auditable item stream storage health check"
2720
2756
  },
2721
2757
  "s3BlobStorageConnector": {
2722
2758
  "healthDescription": "S3 blob storage connector is healthy, bucket \"{bucketName}\" in region \"{region}\"",
@@ -2743,6 +2779,10 @@
2743
2779
  "memoryBlobStorageConnector": {
2744
2780
  "healthDescription": "Memory blob storage connector is healthy, storing \"{storedItemCount}\" items"
2745
2781
  },
2782
+ "documentManagementService": {
2783
+ "healthDescription": "Document management service application health check",
2784
+ "getBlobFailed": "Failed to retrieve the health check blob"
2785
+ },
2746
2786
  "cosmosDbEntityStorageConnector": {
2747
2787
  "healthDescription": "Checks if the Cosmos DB container \"{containerId}\" in database \"{databaseId}\" is available",
2748
2788
  "connectionFailed": "Failed to connect to Cosmos DB container \"{containerId}\" in database \"{databaseId}\""
@@ -2761,6 +2801,9 @@
2761
2801
  "healthDescription": "Checks if the Firestore collection \"{collectionName}\" in project \"{projectId}\" is available",
2762
2802
  "connectionFailed": "Failed to connect to Firestore collection \"{collectionName}\" in project \"{projectId}\""
2763
2803
  },
2804
+ "memoryEntityStorageConnector": {
2805
+ "healthDescription": "Memory entity storage for \"{entityType}\" is always available"
2806
+ },
2764
2807
  "mongoDbEntityStorageConnector": {
2765
2808
  "healthDescription": "Checks if the MongoDB collection \"{collection}\" in database \"{database}\" is available",
2766
2809
  "connectionFailed": "Failed to connect to MongoDB collection \"{collection}\" in database \"{database}\""
@@ -2779,11 +2822,11 @@
2779
2822
  },
2780
2823
  "iotaIdentityConnector": {
2781
2824
  "healthDescription": "Connectivity and availability of the IOTA node \"{endpoint}\"",
2782
- "nodeHealthCheckFailed": "Failed to check IOTA node health status \"{endpoint}\""
2783
- },
2784
- "iotaIdentityConnectorGasStation": {
2785
- "healthDescription": "Connectivity and availability of the IOTA gas station \"{endpoint}\"",
2786
- "healthCheckFailed": "Failed to check gas station health status \"{endpoint}\""
2825
+ "nodeHealthCheckFailed": "Failed to check IOTA node health status \"{endpoint}\"",
2826
+ "healthDescriptionGasStationConnectivity": "Connectivity and availability of the IOTA gas station \"{endpoint}\"",
2827
+ "healthCheckFailedGasStationConnectivity": "Failed to check gas station connectivity \"{endpoint}\"",
2828
+ "healthDescriptionGasStationWorking": "Operational status of the IOTA gas station \"{endpoint}\"",
2829
+ "healthCheckFailedGasStationWorking": "Gas station sponsored transaction check failed \"{endpoint}\""
2787
2830
  },
2788
2831
  "iotaIdentityResolverConnector": {
2789
2832
  "healthDescription": "Connectivity and availability of the IOTA resolver node \"{endpoint}\"",
@@ -2798,14 +2841,42 @@
2798
2841
  "createDocumentFailed": "Failed to create the health check identity document",
2799
2842
  "resolveDocumentFailed": "Failed to resolve the health check identity document"
2800
2843
  },
2844
+ "immutableProofService": {
2845
+ "healthDescription": "Immutable proof service application health check",
2846
+ "getNotarizationFailed": "Failed to retrieve the health check notarization"
2847
+ },
2848
+ "nftService": {
2849
+ "healthDescription": "NFT service application health check",
2850
+ "resolveNftFailed": "Failed to resolve the health check NFT"
2851
+ },
2852
+ "notarizationService": {
2853
+ "healthDescription": "Notarization service application health check",
2854
+ "getNotarizationFailed": "Failed to retrieve the health check notarization"
2855
+ },
2801
2856
  "hashicorpVaultConnector": {
2802
2857
  "healthDescription": "Connectivity and availability of the Hashicorp Vault server \"{endpoint}\"",
2803
2858
  "vaultHealthCheckFailed": "Failed to check Vault health status \"{endpoint}\""
2804
2859
  },
2860
+ "entityStorageWalletConnector": {
2861
+ "healthDescription": "Entity storage wallet connector application health check",
2862
+ "fundFromFaucet": "Fund wallet from faucet on address \"{address}\"",
2863
+ "healthNoFaucet": "No faucet available for the network",
2864
+ "fundWalletFailed": "Failed to fund the wallet"
2865
+ },
2866
+ "iotaWalletConnector": {
2867
+ "healthDescription": "IOTA wallet connector application health check",
2868
+ "fundFromFaucet": "Fund wallet from faucet on address \"{address}\"",
2869
+ "healthNoFaucet": "No faucet available for the network",
2870
+ "fundWalletFailed": "Failed to fund the wallet"
2871
+ },
2805
2872
  "fastifyWebServer": {
2806
- "description": "Checks if the Web Server is reachable",
2873
+ "healthConnectivityDescription": "Checks if the Web Server is reachable",
2807
2874
  "reachable": "The Web Server is reachable",
2808
- "unreachable": "The Web Server is unreachable"
2875
+ "unreachable": "The Web Server is unreachable",
2876
+ "healthApplicationDescription": "Checks if the root endpoint is reachable",
2877
+ "rootEndpointReachable": "The root endpoint is reachable",
2878
+ "rootEndpointError": "The root endpoint returned an unexpected response",
2879
+ "serverNotBuilt": "The server has not been built"
2809
2880
  }
2810
2881
  },
2811
2882
  "auditableItemGraphService": {},
@@ -2828,6 +2899,9 @@
2828
2899
  "activityLogStatusConnected": "Web Socket Connected: Socket Id: \"{socketId}\"",
2829
2900
  "activityLogStatusDisconnected": "Web Socket disconnected: Socket Id: \"{socketId}\""
2830
2901
  },
2902
+ "immutableProofService": {
2903
+ "sweepSkippedInFlight": "Skipped sweeping proof \"{proofId}\", a task is already in flight"
2904
+ },
2831
2905
  "immutableProofTask": {
2832
2906
  "taskEngineStarted": "The proof task engine started for proof \"{proofId}\" in {elapsedMs}ms",
2833
2907
  "taskVerifiableCredentialCreated": "The verifiable credential for proof \"{proofId}\" was created in {elapsedMs}ms",
package/docs/changelog.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.2-next.6](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.5...node-v0.9.2-next.6) (2026-08-07)
4
+
5
+
6
+ ### Features
7
+
8
+ * add tracing support ([a4986fc](https://github.com/iotaledger/twin-node/commit/a4986fc4af603ee461ec8d18ff502dddbc43edec))
9
+ * update docs ([61e5a00](https://github.com/iotaledger/twin-node/commit/61e5a004089a0c11ec03e354b076604ecdeb4817))
10
+
11
+
12
+ ### Dependencies
13
+
14
+ * The following workspace dependencies were updated
15
+ * dependencies
16
+ * @twin.org/node-core bumped from 0.9.2-next.5 to 0.9.2-next.6
17
+
3
18
  ## [0.9.2-next.5](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.4...node-v0.9.2-next.5) (2026-08-03)
4
19
 
5
20
 
@@ -2390,6 +2390,15 @@
2390
2390
  },
2391
2391
  "style": "simple",
2392
2392
  "example": "did:iota:tst:0xe3088ba9aa8c28e1d139708a14e8c0fdff11ee8223baac4aa5bcf3321e4bfc6a"
2393
+ },
2394
+ {
2395
+ "name": "removeKeys",
2396
+ "description": "Also remove any associated private keys from the vault.",
2397
+ "in": "query",
2398
+ "required": false,
2399
+ "schema": {
2400
+ "type": "string"
2401
+ }
2393
2402
  }
2394
2403
  ],
2395
2404
  "security": [
@@ -2730,6 +2739,15 @@
2730
2739
  },
2731
2740
  "style": "simple",
2732
2741
  "example": "my-assertion"
2742
+ },
2743
+ {
2744
+ "name": "removeKeys",
2745
+ "description": "Also remove any associated private key from the vault.",
2746
+ "in": "query",
2747
+ "required": false,
2748
+ "schema": {
2749
+ "type": "string"
2750
+ }
2733
2751
  }
2734
2752
  ],
2735
2753
  "security": [
@@ -12512,7 +12530,7 @@
12512
12530
  }
12513
12531
  ],
12514
12532
  "requestBody": {
12515
- "description": "Update an auditable item graph vertex (PUT full replacement of vertex state).",
12533
+ "description": "Update an auditable item graph vertex (PUT - full replacement of vertex state).",
12516
12534
  "required": true,
12517
12535
  "content": {
12518
12536
  "application/json": {
@@ -12694,7 +12712,7 @@
12694
12712
  }
12695
12713
  ],
12696
12714
  "requestBody": {
12697
- "description": "Partially update an auditable item graph vertex (PATCH explicit list patches).",
12715
+ "description": "Partially update an auditable item graph vertex (PATCH - explicit list patches).",
12698
12716
  "required": true,
12699
12717
  "content": {
12700
12718
  "application/json": {
@@ -18005,7 +18023,7 @@
18005
18023
  }
18006
18024
  ],
18007
18025
  "requestBody": {
18008
- "description": "API request to register an app dataset.\n\nThe owning `tenantId` is captured automatically from the request's tenant\ncontext callers do not supply it.",
18026
+ "description": "API request to register an app dataset.\n\nThe owning `tenantId` is captured automatically from the request's tenant\ncontext - callers do not supply it.",
18009
18027
  "required": true,
18010
18028
  "content": {
18011
18029
  "application/json": {
@@ -23587,11 +23605,11 @@
23587
23605
  "properties": {
23588
23606
  "dateCreated": {
23589
23607
  "type": "string",
23590
- "description": "schema.org dateCreated ISO 8601 date-time set by PAP on create."
23608
+ "description": "schema.org dateCreated - ISO 8601 date-time set by PAP on create."
23591
23609
  },
23592
23610
  "dateModified": {
23593
23611
  "type": "string",
23594
- "description": "schema.org dateModified ISO 8601 date-time set by PAP on create and update."
23612
+ "description": "schema.org dateModified - ISO 8601 date-time set by PAP on create and update."
23595
23613
  }
23596
23614
  }
23597
23615
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/node",
3
- "version": "0.9.2-next.5",
3
+ "version": "0.9.2-next.6",
4
4
  "description": "TWIN Node serving APIs using the specified configuration",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,7 +14,7 @@
14
14
  "node": ">=24.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/node-core": "0.9.2-next.5"
17
+ "@twin.org/node-core": "0.9.2-next.6"
18
18
  },
19
19
  "bugs": {
20
20
  "url": "git+https://github.com/iotaledger/twin-node/issues"