@twin.org/node 0.9.2-next.1 → 0.9.2-next.11

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.
@@ -14,10 +14,11 @@
14
14
  "cliCommandParamMissing": "Parameter \"{param}\" is required for command \"{command}\"",
15
15
  "cliCommandParamExtra": "Parameter(s) \"{params}\" are not recognised for command \"{command}\"",
16
16
  "cliEnvVarMissing": "Environment variable \"{envVar}\" does not exist",
17
+ "invalidEnvVarValue": "Environment variable \"{key}\" has an invalid value \"{value}\", expected {type} type",
17
18
  "unknownEnvVars": "Unknown environment variable properties [{keys}]. Check for typos in variable names, for custom variables use the {prefix}ENV_ALLOW_LIST."
18
19
  },
19
- "bootstrapLegacy": {
20
- "noFeaturesEnabled": "No features are enabled in legacy bootstrap mode, at least one feature must be enabled.",
20
+ "bootstrapDev": {
21
+ "noFeaturesEnabled": "No features are enabled, at least one feature must be enabled.",
21
22
  "organizationNotSet": "The organisation identity has not been set. Run \"node-org-id-set\"."
22
23
  },
23
24
  "identityCreate": {
@@ -93,51 +94,7 @@
93
94
  "identityResolve": {
94
95
  "identityNotFound": "The identity \"{identity}\" was not found."
95
96
  },
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
97
  "validation": {
140
- "saltEntropyTooLow": "Salt must have at least 8 unique characters for sufficient entropy.",
141
98
  "beEmpty": "{fieldName} must be empty",
142
99
  "beNotEmpty": "{fieldName} must not be empty",
143
100
  "beText": "{fieldName} must be text",
@@ -183,11 +140,11 @@
183
140
  "atLeastOneUpperCase": "The value should contain at least one uppercase character",
184
141
  "atLeastOneNumber": "The value should contain at least one number",
185
142
  "atLeastOneSpecialChar": "The value should contain at least one symbol",
143
+ "saltEntropyTooLow": "Salt must have at least 8 unique characters for sufficient entropy.",
186
144
  "schema": {
187
145
  "missingType": "Failed to validate as there is no handler for type \"{dataType}\""
188
146
  },
189
147
  "schemaFailed": "Schema failed validation, \"{message}\", keyword: \"{keyword}\", schemaPath: \"{schemaPath}\"",
190
- "missingType": "The object must include at least one @type value",
191
148
  "geo": {
192
149
  "coordinatesLatitudeNumber": "The latitude value must be a number",
193
150
  "coordinatesLatitudeRange": "The latitude value must be between -90 and 90",
@@ -196,7 +153,8 @@
196
153
  },
197
154
  "auditableItemGraphService": {
198
155
  "edgeIdSameAsVertexId": "The edge with target id \"{targetId}\" can not point to the vertex it belongs to"
199
- }
156
+ },
157
+ "missingType": "The object must include at least one @type value"
200
158
  },
201
159
  "guard": {
202
160
  "undefined": "Property \"{property}\" must be defined, it is \"{value}\"",
@@ -347,6 +305,50 @@
347
305
  "pbkdf2": {
348
306
  "keyLengthTooSmall": "The key length must be at least 1, it is \"{keyLength}\""
349
307
  },
308
+ "entityStorageAuthenticationService": {
309
+ "loginFailed": "Login failed",
310
+ "userNotFound": "The user with the specified e-mail could not be found",
311
+ "passwordMismatch": "The password does not match the user's password",
312
+ "nodeIdNotSet": "The node ID has not been set"
313
+ },
314
+ "entityStorageAuthenticationAdminService": {
315
+ "userExists": "The user with the specified e-mail already exists",
316
+ "createUserFailed": "Creating the user failed",
317
+ "getUserFailed": "Getting the user failed",
318
+ "updateUserFailed": "Updating the user failed",
319
+ "removeUserFailed": "Removing the user failed",
320
+ "updatePasswordFailed": "Updating the user's password failed",
321
+ "userNotFound": "The user with the specified e-mail could not be found \"{notFoundId}\"",
322
+ "insufficientScopeForEscalatedPrivilege": "Caller does not hold the required scope \"{scopeName}\" to assign a role with escalated privilege."
323
+ },
324
+ "authHeaderProcessor": {
325
+ "nodeIdNotSet": "The node ID has not been set"
326
+ },
327
+ "passwordHelper": {
328
+ "currentPasswordMismatch": "The current password is incorrect"
329
+ },
330
+ "entityStorageAuthenticationAuditService": {
331
+ "auditEntryNotFound": "The audit entry with the specified identifier could not be found \"{notFoundId}\"",
332
+ "getAuditEntryFailed": "Getting the audit entry failed",
333
+ "updateAuditEntryFailed": "Updating the audit entry failed",
334
+ "removeAuditEntryFailed": "Removing the audit entry failed"
335
+ },
336
+ "entityStorageAuthenticationRateService": {
337
+ "actionConfigMissing": "No rate-limit configuration exists for action \"{action}\".",
338
+ "rateLimitExceeded": "The rate limit for action \"{action}\" has been exceeded. Retry after {retryAfterSeconds} seconds."
339
+ },
340
+ "tokenHelper": {
341
+ "missing": "The JSON Web token could not be found in the authorization header",
342
+ "headerKeyIdMismatch": "The JSON Web token key identifier does not match the expected signing key",
343
+ "payloadIssuerMismatch": "The JSON Web token issuer does not match the expected signing key",
344
+ "payloadMissingSubject": "The JSON Web token payload does not contain a subject",
345
+ "payloadMissingOrganization": "The JSON Web token payload does not contain an organization",
346
+ "expired": "The JSON Web token has expired",
347
+ "insufficientScopes": "The JSON Web token does not have the required scopes to access this resource",
348
+ "userNotVerified": "The user associated with the JSON Web token could not be verified",
349
+ "organizationNotVerified": "The organization associated with the JSON Web token could not be verified",
350
+ "tenantNotVerified": "The tenant associated with the JSON Web token could not be verified"
351
+ },
350
352
  "baseRestClient": {
351
353
  "missingRouteProp": "Missing route parameter in data \"{routeProp}\" for route \"{route}\"",
352
354
  "decodingFailed": "Decoding JSON failed for route \"{route}\"",
@@ -374,7 +376,9 @@
374
376
  "invalidEntityProperty": "The entity value of \"{value}\" does not match the type \"{type}\" for property \"{property}\"",
375
377
  "invalidOptional": "The entity property \"{property}\" of type \"{type}\" is not optional, but no value has been provided",
376
378
  "invalidEntityKeys": "The entity had additional properties that are not in the schema, \"{keys}\"",
377
- "versionMustBeGreaterThanOrEqualZero": "Property \"entitySchema.version\" must be an integer >= 0, but got {version}"
379
+ "versionMustBeGreaterThanOrEqualZero": "Property \"entitySchema.version\" must be an integer >= 0, but got {version}",
380
+ "multipleVersionProperties": "The schema has more than one property with isVersion set, only one is allowed",
381
+ "versionPropertyMustBeInteger": "The version property \"{property}\" has type \"{type}\" but must be of type integer"
378
382
  },
379
383
  "entityStorageHelper": {
380
384
  "sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
@@ -397,6 +401,10 @@
397
401
  "apiKeyNotFound": "No tenant found for API key \"{key}\".",
398
402
  "organizationIdNotFound": "No tenant found for organization ID \"{organizationId}\"."
399
403
  },
404
+ "tenantOverrideProcessor": {
405
+ "insufficientScopeForTenantOverride": "Caller does not hold the required scope for tenant override.",
406
+ "tenantNotFound": "Tenant \"{notFoundId}\" not found."
407
+ },
400
408
  "singleTenantProcessor": {
401
409
  "invalidOrganizationId": "Organization ID query parameter \"{paramName}\" value \"{value}\" is not valid for this node"
402
410
  },
@@ -424,45 +432,47 @@
424
432
  "invalidUrl": "The JSON-LD processing failed to retrieve from the following url \"{url}\"",
425
433
  "jsonLdError": "The JSON-LD processing failed due to the following error: \"{code}\""
426
434
  },
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."
435
+ "accountHelper": {
436
+ "addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
437
+ "missingPublicKey": "The public key is missing for vault key \"{keyName}\""
449
438
  },
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"
439
+ "iota": {
440
+ "insufficientFunds": "There were insufficient funds to complete the operation",
441
+ "packageNotFoundOnNetwork": "The package \"{packageId}\" was not found on the network",
442
+ "packageObjectError": "Failed to fetch the package object \"{packageId}\"",
443
+ "valueTransactionFailed": "The value transaction failed",
444
+ "transactionFailed": "The transaction failed",
445
+ "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",
446
+ "gasStationTransactionFailed": "The gas station transaction failed",
447
+ "dryRunFailed": "The dry run execution failed",
448
+ "fundingFailed": "Fund the address from faucet failed",
449
+ "faucetRateLimit": "Faucet rate limit exceeded"
457
450
  },
458
- "silentTelemetryConnector": {
459
- "notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
451
+ "vaultJwkStorage": {
452
+ "generateNotSupported": "Key generation is not supported; keys are managed by the vault"
460
453
  },
461
- "dataspaceProtocolHelper": {
462
- "schemaNotRegistered": "JSON Schema \"{schemaId}\" is not registered in DataTypeHandlerFactory"
454
+ "iotaIdentityUtils": {
455
+ "getControllerCapInfoFailed": "Getting the controller capability info for the identity failed",
456
+ "identityNotFound": "The identity could not be found \"{notFoundId}\"",
457
+ "identityDeleted": "The identity \"{identityId}\" has been deleted and cannot be used for minting",
458
+ "controllerTokenNotFound": "No controller token found for the identity \"{notFoundId}\" with the provided controller address"
463
459
  },
464
- "trustHelper": {
465
- "trustVerifyFailed": "Trust verification failed for action \"{action}\""
460
+ "iotaSmartContractUtils": {
461
+ "migrationFailed": "Smart contract migration failed",
462
+ "migrateSmartContractFailed": "Failed to migrate smart contract for object \"{objectId}\"",
463
+ "enableMigrationFailed": "Failed to enable migration for smart contract",
464
+ "disableMigrationFailed": "Failed to disable migration for smart contract",
465
+ "migrationStateNotReadable": "Cannot read migration state for ID \"{migrationStateId}\"",
466
+ "isMigrationActiveFailed": "Failed to check if migration is active",
467
+ "invalidVersionData": "Invalid version data received from smart contract",
468
+ "getCurrentContractVersionNoData": "No version data returned from contract",
469
+ "getCurrentContractVersionFailed": "Failed to get current contract version",
470
+ "objectNotReadable": "Cannot read object with ID \"{objectId}\"",
471
+ "objectInvalidFormat": "Object \"{objectId}\" has invalid format",
472
+ "validateObjectVersionFailed": "Failed to validate object version for \"{objectId}\"",
473
+ "getContractObjectIdsFailed": "Failed to get contract object IDs for namespace \"{namespace}\" on network \"{network}\"",
474
+ "adminCapNotFound": "AdminCap object not found for type \"{adminCapType}\" and address \"{adminAddress}\"",
475
+ "migrationStateNotFound": "MigrationState object not found for type \"{migrationStateType}\" and address \"{adminAddress}\""
466
476
  },
467
477
  "engineCore": {
468
478
  "componentUnknownType": "Unknown component type \"{type}\" specified for \"{componentType}\"",
@@ -488,7 +498,10 @@
488
498
  "connectorUnknownType": "Unknown connector type \"{type}\" specified for \"{connectorType}\""
489
499
  },
490
500
  "healthService": {
491
- "componentHealthCheckFailed": "Health check failed for component \"{className}\""
501
+ "componentHealthCheckFailed": "Health check failed for component \"{className}\"",
502
+ "componentHealthApplicationInitFailed": "Application health check init failed for component \"{className}\"",
503
+ "componentHealthApplicationCheckFailed": "Application health check failed for component \"{className}\"",
504
+ "componentHealthApplicationTeardownFailed": "Application health check teardown failed for component \"{className}\""
492
505
  },
493
506
  "nftAttestationConnector": {
494
507
  "attestingFailed": "Attesting the data failed",
@@ -497,6 +510,36 @@
497
510
  "destroyFailed": "Destroying the attestation failed",
498
511
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the NFT Attestation connector \"{namespace}\""
499
512
  },
513
+ "proofHelper": {
514
+ "unsupportedProofType": "Proof type \"{proofType}\" not supported."
515
+ },
516
+ "jsonWebSignature2020SignerVerifier": {
517
+ "missingJws": "JWS is missing from proof."
518
+ },
519
+ "dataIntegrityProofSignerVerifier": {
520
+ "cryptosuiteNotSupported": "Cryptosuite \"{cryptoSuite}\" is not supported.",
521
+ "missingPrivateKey": "Private key is missing.",
522
+ "missingPublicKey": "Public key is missing."
523
+ },
524
+ "multikeyHelper": {
525
+ "invalidPublicKeyMultibase": "Public key multibase \"{publicKeyMultibase}\" is invalid.",
526
+ "invalidSecretKeyMultibase": "Secret key multibase \"{secretKeyMultibase}\" is invalid.",
527
+ "unsupportedCrv": "Curve \"{crv}\" is not supported.",
528
+ "unsupportedKty": "Key type \"{kty}\" is not supported.",
529
+ "publicKeyMultibaseMissingHeader": "Public key multibase \"{publicKeyMultibase}\" is missing the multi codec header",
530
+ "secretKeyMultibaseMissingHeader": "Secret key multibase \"{secretKeyMultibase}\" is missing the multi codec header"
531
+ },
532
+ "silentTelemetryConnector": {
533
+ "notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
534
+ },
535
+ "verificationHelper": {
536
+ "jwtDecodeFailed": "Decoding the JWT failed",
537
+ "proofMissingVerificationMethod": "The proof is missing the verification method"
538
+ },
539
+ "documentHelper": {
540
+ "verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
541
+ "verificationMethodJwkNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" is missing the JWK"
542
+ },
500
543
  "attestationService": {
501
544
  "noConnectors": "There are no connectors registered with the attestation factory",
502
545
  "attestFailed": "The attestation of the data failed",
@@ -562,7 +605,8 @@
562
605
  "dispatchFailed": "Failed to dispatch task \"{taskId}\" with type \"{taskType}\"",
563
606
  "stateChangeCallbackFailed": "The state change callback failed for task \"{id}\" with type \"{type}\" and status \"{status}\"",
564
607
  "taskFinishedProcessingFailed": "Failed to finalise background task processing for task \"{id}\" with method \"{type}\"",
565
- "executionTimeout": "Task \"{id}\" with type \"{type}\" exceeded its execution timeout of {timeout} ms and has been marked as failed"
608
+ "executionTimeout": "Task \"{id}\" with type \"{type}\" exceeded its execution timeout of {timeout} ms and has been marked as failed",
609
+ "healthCheckTimeout": "Health check task exceeded its timeout of {timeout} ms and has been marked as failed"
566
610
  },
567
611
  "s3BlobStorageConnector": {
568
612
  "bucketCreateFailed": "Creating bucket \"{bucket}\" failed",
@@ -622,6 +666,7 @@
622
666
  "emptyFailed": "There was a problem emptying the blob storage",
623
667
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the blob storage service \"{namespace}\"",
624
668
  "vaultConnectorNotConfigured": "The vault connector is not configured, but encryption/decryption was requested.",
669
+ "vaultKeyIdMissing": "The blob is encrypted but no vault key id is available for decryption.",
625
670
  "blobNotFound": "The blob with id \"{notFoundId}\" was not found",
626
671
  "entityNotFound": "The entity with id \"{notFoundId}\" was not found"
627
672
  },
@@ -688,6 +733,7 @@
688
733
  "transferRequestRejectedByProvider": "Provider rejected transfer request for agreement {agreementId} at {providerEndpoint} (code: {code})",
689
734
  "providerPidMissingInResponse": "Provider accepted transfer request for {consumerPid} but returned no providerPid",
690
735
  "unsupportedTransferFormat": "Transfer format \"{format}\" is not supported. Supported formats: {supported}",
736
+ "transferFormatNotInDistributions": "Transfer format \"{format}\" is not available in any distribution of dataset \"{datasetId}\" (Agreement: {agreementId}). Available formats: {availableFormats}",
691
737
  "catalogDatasetMissingId": "Catalog dataset is missing a required @id identifier",
692
738
  "providerIdentityMissing": "Provider identity (DID) is required to sign data access tokens but was not set on the Transfer Process",
693
739
  "callerNotAuthorizedForAgreement": "The caller's verified identity does not match the agreement assignee (consumer)",
@@ -717,6 +763,16 @@
717
763
  "pushTransferDataPathNotConfigured": "POST transfer cannot start: dataPlanePath is not configured (consumerPid: {consumerPid})",
718
764
  "providerIdentityMissing": "Provider identity (DID) is required to sign data access tokens but was not set on the Transfer Process"
719
765
  },
766
+ "odrlPolicyHelper": {
767
+ "policyMissingAssignee": "The {policyType} with id \"{policyId}\" is missing an assignee.",
768
+ "policyMissingAssigner": "The {policyType} with id \"{policyId}\" is missing an assigner."
769
+ },
770
+ "dataspaceProtocolHelper": {
771
+ "schemaNotRegistered": "JSON Schema \"{schemaId}\" is not registered in DataTypeHandlerFactory"
772
+ },
773
+ "trustHelper": {
774
+ "trustVerifyFailed": "Trust verification failed for action \"{action}\""
775
+ },
720
776
  "dataspaceDataPlaneRestClient": {
721
777
  "notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
722
778
  },
@@ -770,13 +826,15 @@
770
826
  "removeRevisionFailed": "Failed to remove document revision"
771
827
  },
772
828
  "cosmosDbEntityStorageConnector": {
829
+ "optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
830
+ "conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
773
831
  "setFailed": "Unable to set entity \"{id}\"",
774
832
  "getFailed": "Unable to get entity \"{id}\"",
775
833
  "removeFailed": "Unable to remove entity \"{id}\"",
776
834
  "queryFailed": "The query failed",
777
835
  "comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
778
836
  "conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
779
- "sortSingle": "You can only sort by a single property",
837
+ "sortUnsupported": "Sorting supports at most one property other than the primary key \"{primaryKey}\"",
780
838
  "containerCreateFailed": "The container couldn't be created \"{containerId}\"",
781
839
  "databaseCreateFailed": "Unable to create database \"{databaseId}\"",
782
840
  "containerDoesNotExist": "Container \"{containerId}\" does not exist",
@@ -789,6 +847,8 @@
789
847
  "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
790
848
  },
791
849
  "dynamoDbEntityStorageConnector": {
850
+ "optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
851
+ "conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
792
852
  "tableCreateFailed": "Creating table \"{tableName}\" failed",
793
853
  "tableDoesNotExist": "Table \"{tableName}\" does not exist",
794
854
  "setFailed": "Unable to set entity \"{id}\"",
@@ -797,7 +857,7 @@
797
857
  "queryFailed": "The query failed",
798
858
  "comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
799
859
  "conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
800
- "sortSingle": "You can only sort by a single property",
860
+ "sortUnsupported": "Sorting supports at most one property other than the primary key \"{primaryKey}\"",
801
861
  "propertyNotFound": "The property \"{property}\" was not found on the entity schema",
802
862
  "getPartitionContextIdsFailed": "Unable to get partition context ids",
803
863
  "setBatchFailed": "Unable to set batch of entities",
@@ -808,6 +868,8 @@
808
868
  "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
809
869
  },
810
870
  "fileEntityStorageConnector": {
871
+ "optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
872
+ "conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
811
873
  "directoryCreateFailed": "Creating directory \"{directory}\" failed",
812
874
  "emptyFailed": "Unable to empty entity storage",
813
875
  "readStoreCorrupt": "The entity storage store file in directory \"{directory}\" contains corrupt JSON",
@@ -817,6 +879,8 @@
817
879
  "writeStoreFailed": "Unable to write the entity storage store file in directory \"{directory}\""
818
880
  },
819
881
  "firestoreEntityStorageConnector": {
882
+ "optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
883
+ "conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
820
884
  "firestoreCreationFailed": "Failed to connect to Firestore",
821
885
  "getPartitionContextIdsFailed": "Unable to get partition context ids",
822
886
  "setEntityFailed": "Failed to set entity \"{id}\"",
@@ -831,7 +895,13 @@
831
895
  "teardownFailed": "Unable to teardown entity storage",
832
896
  "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
833
897
  },
898
+ "memoryEntityStorageConnector": {
899
+ "optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
900
+ "conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state"
901
+ },
834
902
  "mongoDbEntityStorageConnector": {
903
+ "optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
904
+ "conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
835
905
  "setFailed": "Unable to set entity \"{id}\"",
836
906
  "getFailed": "Unable to get entity \"{id}\"",
837
907
  "removeFailed": "Unable to remove entity \"{id}\"",
@@ -846,6 +916,8 @@
846
916
  "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
847
917
  },
848
918
  "mySqlEntityStorageConnector": {
919
+ "optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
920
+ "conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
849
921
  "setFailed": "Unable to set entity \"{id}\"",
850
922
  "getFailed": "Unable to get entity \"{id}\"",
851
923
  "removeFailed": "Unable to remove entity \"{id}\"",
@@ -863,6 +935,8 @@
863
935
  "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
864
936
  },
865
937
  "postgreSqlEntityStorageConnector": {
938
+ "optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
939
+ "conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
866
940
  "databaseCreateFailed": "Unable to create database \"{databaseName}\"",
867
941
  "setFailed": "Unable to set entity \"{id}\"",
868
942
  "getFailed": "Unable to get entity \"{id}\"",
@@ -880,6 +954,8 @@
880
954
  "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
881
955
  },
882
956
  "scyllaDBTableConnector": {
957
+ "optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
958
+ "conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
883
959
  "tableCreateFailed": "Creating table \"{table}\" failed",
884
960
  "removeFailed": "Removing item with \"{id}\" failed",
885
961
  "setFailed": "Setting item with \"{id}\" failed",
@@ -1011,48 +1087,9 @@
1011
1087
  "unrevokeVerifiableCredentialsFailed": "Unrevoking verifiable credentials failed",
1012
1088
  "verificationKeyMissing": "The verification key is missing from the vault for method \"{method}\"",
1013
1089
  "verificationMethodNotFound": "The verification method could not be found",
1090
+ "signatureVerificationFailed": "The document integrity check failed",
1014
1091
  "verifyProofFailed": "Verifying the signature for the data failed"
1015
1092
  },
1016
- "iota": {
1017
- "insufficientFunds": "There were insufficient funds to complete the operation",
1018
- "packageNotFoundOnNetwork": "The package \"{packageId}\" was not found on the network",
1019
- "packageObjectError": "Failed to fetch the package object \"{packageId}\"",
1020
- "valueTransactionFailed": "The value transaction failed",
1021
- "transactionFailed": "The transaction failed",
1022
- "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",
1023
- "addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
1024
- "gasStationTransactionFailed": "The gas station transaction failed",
1025
- "dryRunFailed": "The dry run execution failed",
1026
- "fundingFailed": "Fund the address from faucet failed",
1027
- "faucetRateLimit": "Faucet rate limit exceeded",
1028
- "missingPublicKey": "The public key is missing for vault key \"{keyName}\""
1029
- },
1030
- "vaultJwkStorage": {
1031
- "generateNotSupported": "Key generation is not supported; keys are managed by the vault"
1032
- },
1033
- "iotaIdentityUtils": {
1034
- "getControllerCapInfoFailed": "Getting the controller capability info for the identity failed",
1035
- "identityNotFound": "The identity could not be found \"{notFoundId}\"",
1036
- "identityDeleted": "The identity \"{identityId}\" has been deleted and cannot be used for minting",
1037
- "controllerTokenNotFound": "No controller token found for the identity \"{notFoundId}\" with the provided controller address"
1038
- },
1039
- "iotaSmartContractUtils": {
1040
- "migrationFailed": "Smart contract migration failed",
1041
- "migrateSmartContractFailed": "Failed to migrate smart contract for object \"{objectId}\"",
1042
- "enableMigrationFailed": "Failed to enable migration for smart contract",
1043
- "disableMigrationFailed": "Failed to disable migration for smart contract",
1044
- "migrationStateNotReadable": "Cannot read migration state for ID \"{migrationStateId}\"",
1045
- "isMigrationActiveFailed": "Failed to check if migration is active",
1046
- "invalidVersionData": "Invalid version data received from smart contract",
1047
- "getCurrentContractVersionNoData": "No version data returned from contract",
1048
- "getCurrentContractVersionFailed": "Failed to get current contract version",
1049
- "objectNotReadable": "Cannot read object with ID \"{objectId}\"",
1050
- "objectInvalidFormat": "Object \"{objectId}\" has invalid format",
1051
- "validateObjectVersionFailed": "Failed to validate object version for \"{objectId}\"",
1052
- "getContractObjectIdsFailed": "Failed to get contract object IDs for namespace \"{namespace}\" on network \"{network}\"",
1053
- "adminCapNotFound": "AdminCap object not found for type \"{adminCapType}\" and address \"{adminAddress}\"",
1054
- "migrationStateNotFound": "MigrationState object not found for type \"{migrationStateType}\" and address \"{adminAddress}\""
1055
- },
1056
1093
  "universalResolverConnector": {
1057
1094
  "resolveDocumentFailed": "Resolving the document failed \"{documentId}\""
1058
1095
  },
@@ -1091,7 +1128,8 @@
1091
1128
  "updateFailed": "Updating the identity profile failed \"{identity}\"",
1092
1129
  "notFound": "The identity profile could not be found \"{notFoundId}\"",
1093
1130
  "removeFailed": "Removing the identity profile failed \"{identity}\"",
1094
- "listFailed": "Failed listing identities"
1131
+ "listFailed": "Failed listing identities",
1132
+ "listAdminFailed": "Failed listing identities with private data"
1095
1133
  },
1096
1134
  "immutableProofService": {
1097
1135
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Immutable Proof service \"{namespace}\"",
@@ -1101,7 +1139,8 @@
1101
1139
  "removeFailed": "Removing the Immutable Proof failed",
1102
1140
  "removeNotarizationFailed": "Removing notarization entry from the Immutable Proof failed",
1103
1141
  "proofNotFound": "The proof with the Id \"{notFoundId}\" was not found",
1104
- "createProofFailed": "Creating the immutable proof failed"
1142
+ "createProofFailed": "Creating the immutable proof failed",
1143
+ "sweepFailed": "The reconciliation sweep cycle failed"
1105
1144
  },
1106
1145
  "immutableProofTask": {
1107
1146
  "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"
@@ -1337,12 +1376,21 @@
1337
1376
  "gaugeNoIncDec": "A gauge can not be incremented or decremented",
1338
1377
  "maxHistoryMustBePositiveInteger": "The maxHistory option must be a positive integer"
1339
1378
  },
1340
- "openTelemetryTelemetryConnector": {
1341
- "unknownReaderType": "The reader type \"{type}\" is not supported, valid values are: prometheus"
1342
- },
1343
1379
  "metricsCollectorService": {
1344
1380
  "producerCollectionFailed": "Failed to collect metrics from producer \"{producer}\""
1345
1381
  },
1382
+ "entityStorageTracingConnector": {
1383
+ "spanNotFound": "The span could not be found \"{notFoundId}\""
1384
+ },
1385
+ "spanHelper": {
1386
+ "traceFlagsOutOfRange": "The trace flags value \"{traceFlags}\" is outside the valid range 0 to 255"
1387
+ },
1388
+ "openTelemetryTracingConnector": {
1389
+ "sampleRatioOutOfRange": "The sample ratio \"{sampleRatio}\" must be between 0 and 1"
1390
+ },
1391
+ "tracingRoutes": {
1392
+ "spanIdMismatch": "The span id in the path \"{pathSpanId}\" does not match the span id in the body \"{bodySpanId}\""
1393
+ },
1346
1394
  "trustService": {
1347
1395
  "notVerified": "Payload verification failed",
1348
1396
  "noGeneratorsRegistered": "No trust generators are registered in the factory",
@@ -1460,8 +1508,15 @@
1460
1508
  "pushSubscriptionNotFoundForActivity": "Push subscription not found for outbound activity (consumerPid: {consumerPid})",
1461
1509
  "transferRetrievalRecordFailed": "Failed to record the transfer retrieval (consumerPid: {consumerPid})"
1462
1510
  },
1511
+ "schemaVersionService": {
1512
+ "migrationDisabled": "Schema migration is disabled. Schema \"{schemaName}\" requires migration from version {from} to {to}. Continuing without migration may cause errors."
1513
+ },
1463
1514
  "immutableProofService": {
1464
- "taskRecordRemoveFailed": "Removing the completed task record for proof \"{proofId}\" failed, the record will be removed when its retention expires"
1515
+ "taskRecordRemoveFailed": "Removing the completed task record for proof \"{proofId}\" failed, the record will be removed when its retention expires",
1516
+ "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",
1517
+ "supersededTaskRemoveFailed": "Removing the superseded background task \"{taskId}\" for proof \"{proofId}\" failed, the record will be removed when its retention expires",
1518
+ "sweepParked": "Parked proof \"{proofId}\" after {sweepAttempts} sweep attempts",
1519
+ "sweepParkedTotal": "{totalParked} proof(s) are currently parked and require operator investigation"
1465
1520
  },
1466
1521
  "immutableProofTask": {
1467
1522
  "taskEngineStopFailed": "Stopping the task engine for proof \"{proofId}\" failed, the task result is unaffected"
@@ -1470,7 +1525,8 @@
1470
1525
  "sendTerminateFailed": "Failed to send terminate to consumer for negotiation id: \"{id}\", correlation id: \"{correlationId}\""
1471
1526
  },
1472
1527
  "policyNegotiationPointService": {
1473
- "terminatedCallbackFailed": "Failed to notify requester via terminated() for negotiation id: \"{negotiationId}\""
1528
+ "terminatedCallbackFailed": "Failed to notify requester via terminated() for negotiation id: \"{negotiationId}\"",
1529
+ "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"
1474
1530
  }
1475
1531
  },
1476
1532
  "node": {
@@ -1503,9 +1559,9 @@
1503
1559
  "singleTenantOnly": "single-tenant only"
1504
1560
  }
1505
1561
  },
1506
- "bootstrap-legacy": {
1507
- "description": "Bootstrap in legacy mode for backwards compatibility, **will be deprecated in future versions**",
1508
- "example": "bootstrap-legacy --load-env=\"./.env.bootstrap-legacy\"",
1562
+ "bootstrap-dev": {
1563
+ "description": "Bootstrap the development environment",
1564
+ "example": "bootstrap-dev --load-env=\"./.env.bootstrap-dev\"",
1509
1565
  "params": {
1510
1566
  "env-prefix": {
1511
1567
  "description": "Prefix to use for standard .env files e.g. TWIN_."
@@ -2312,13 +2368,12 @@
2312
2368
  "migrateSchemaFinalizing": "Finalizing migration of schema \"{schemaName}\"",
2313
2369
  "migrateSchemaComplete": "Migration of schema \"{schemaName}\" complete"
2314
2370
  },
2371
+ "iota": {
2372
+ "transactionCosts": "Transaction costs for operation \"{operation}\", \"{cost}\""
2373
+ },
2315
2374
  "engineTypes": {
2316
2375
  "configuringEntityStorage": "Configuring {element} with name \"{storageName}\" using \"{storageType}\" connector"
2317
2376
  },
2318
- "memoryEntityStorageConnector": {
2319
- "storeTearingDown": "Tearing down entity storage",
2320
- "storeTornDown": "Entity storage torn down"
2321
- },
2322
2377
  "fetchAction": {
2323
2378
  "fetch": "Fetch \"{url}\" with method \"{method}\""
2324
2379
  },
@@ -2385,6 +2440,7 @@
2385
2440
  "offerFoundInCatalog": "Offer found in Federated Catalogue and validated",
2386
2441
  "negotiationInitiated": "Contract negotiation initiated successfully",
2387
2442
  "implicitTrustAgreementCreated": "Implicit trust agreement created (agreementId: {agreementId}, datasetId: {datasetId}, organizationId: {organizationId})",
2443
+ "agreementReused": "Existing agreement reused (agreementId: {agreementId}, offerId: {offerId}, datasetId: {datasetId})",
2388
2444
  "implicitTrustAgreementReused": "Existing implicit trust agreement reused (agreementId: {agreementId}, datasetId: {datasetId}, organizationId: {organizationId})",
2389
2445
  "getNegotiation": "Retrieving negotiation status",
2390
2446
  "negotiationStateRetrieved": "Negotiation state retrieved successfully",
@@ -2444,6 +2500,10 @@
2444
2500
  "storeTearingDown": "Tearing down entity storage",
2445
2501
  "storeTornDown": "Entity storage torn down"
2446
2502
  },
2503
+ "memoryEntityStorageConnector": {
2504
+ "storeTearingDown": "Tearing down entity storage",
2505
+ "storeTornDown": "Entity storage torn down"
2506
+ },
2447
2507
  "mongoDbEntityStorageConnector": {
2448
2508
  "databaseCreating": "Database \"{databaseName}\" creating",
2449
2509
  "databaseExists": "Database \"{databaseName}\" created or it already exists",
@@ -2488,6 +2548,8 @@
2488
2548
  "schemaVersionService": {
2489
2549
  "noMigrationRequired": "No migration required for schema \"{schemaName}\", version {version}.",
2490
2550
  "migrationRequired": "Migration required for schema \"{schemaName}\" from version {from} to {to}.",
2551
+ "connectorVersionUpdated": "Connector version changed from {from} to {to}; forcing schema migrations.",
2552
+ "connectorVersionForceUpgrade": "Forcing migration for schema \"{schemaName}\" because connector version changed.",
2491
2553
  "partitionStart": "Starting migration of {itemTotal} partitions.",
2492
2554
  "partitionProgress": "Migrating partition {itemIndex} of {itemTotal}.",
2493
2555
  "partitionEnd": "Completed migration of {itemTotal} partitions.",
@@ -2512,11 +2574,10 @@
2512
2574
  "catalogQueryComplete": "Catalogue query complete, found {resultCount} results",
2513
2575
  "filterIndexPersisted": "Filter indexes persisted for dataset \"{datasetId}\" using filter \"{filterType}\", {indexCount} entries"
2514
2576
  },
2515
- "iota": {
2516
- "transactionCosts": "Transaction costs for operation \"{operation}\", \"{cost}\""
2517
- },
2518
2577
  "immutableProofService": {
2519
- "createdProof": "The immutable proof with Id \"{proofId}\" has been created successfully"
2578
+ "createdProof": "The immutable proof with Id \"{proofId}\" has been created successfully",
2579
+ "sweepReEnqueued": "Re-enqueued stuck proof \"{proofId}\" as task \"{taskId}\"",
2580
+ "sweepCompleted": "Reconciliation sweep cycle completed (scanned: {scanned}, reEnqueued: {reEnqueued}, skippedInFlight: {skippedInFlight}, newlyParked: {newlyParked}, totalParked: {totalParked})"
2520
2581
  },
2521
2582
  "openTelemetryLoggingConnector": {
2522
2583
  "connectorStarted": "The connector was started with \"{exporterCount}\" exporter(s)",
@@ -2615,6 +2676,10 @@
2615
2676
  "connectorStarted": "The connector was started with \"{readerCount}\" metric reader(s)",
2616
2677
  "connectorStopped": "The connector was stopped"
2617
2678
  },
2679
+ "openTelemetryTracingConnector": {
2680
+ "connectorStarted": "The connector was started with \"{exporterCount}\" exporter(s)",
2681
+ "connectorStopped": "The connector was stopped"
2682
+ },
2618
2683
  "trustService": {
2619
2684
  "verifying": "Verifying payload: \"{payload}\"",
2620
2685
  "verified": "Payload verified successfully"
@@ -2624,7 +2689,7 @@
2624
2689
  },
2625
2690
  "fastifyWebServer": {
2626
2691
  "building": "Building Web Server",
2627
- "starting": "Starting Web Server at address \"{host}\" on port \"{port}\"",
2692
+ "starting": "Starting Web Server with binding \"{host}\" on port \"{port}\"",
2628
2693
  "started": "The Web Server started on {addresses}",
2629
2694
  "stopped": "The Web Server was stopped",
2630
2695
  "restRouteAdded": "Added REST route \"{route}\" \"{method}\"",
@@ -2712,8 +2777,17 @@
2712
2777
  }
2713
2778
  },
2714
2779
  "health": {
2715
- "memoryEntityStorageConnector": {
2716
- "healthDescription": "Memory entity storage for \"{entityType}\" is always available"
2780
+ "attestationService": {
2781
+ "healthDescription": "Attestation lifecycle (create, get, destroy) using the \"{namespace}\" namespace",
2782
+ "getAttestationFailed": "Failed to get the health check attestation"
2783
+ },
2784
+ "auditableItemGraphService": {
2785
+ "healthDescription": "Auditable item graph service application health check",
2786
+ "getVertexFailed": "Failed to complete the auditable item graph vertex storage health check"
2787
+ },
2788
+ "auditableItemStreamService": {
2789
+ "healthDescription": "Auditable item stream service application health check",
2790
+ "getStreamFailed": "Failed to complete the auditable item stream storage health check"
2717
2791
  },
2718
2792
  "s3BlobStorageConnector": {
2719
2793
  "healthDescription": "S3 blob storage connector is healthy, bucket \"{bucketName}\" in region \"{region}\"",
@@ -2724,8 +2798,10 @@
2724
2798
  "healthCheckFailed": "Failed to connect to Azure blob storage container \"{containerName}\" in account \"{accountName}\""
2725
2799
  },
2726
2800
  "fileBlobStorageConnector": {
2727
- "healthDescription": "File blob storage connector is healthy, directory \"{directory}\"",
2728
- "healthCheckFailed": "Failed to access the storage directory \"{directory}\""
2801
+ "healthDescription": "Checks if there is sufficient disk space in directory \"{directory}\" for the file blob storage connector to operate properly",
2802
+ "diskSpaceError": "Disk space critically low in directory \"{directory}\", {freeBytes} bytes free, threshold is {thresholdBytes} bytes",
2803
+ "diskSpaceWarning": "Disk space low in directory \"{directory}\", {freeBytes} bytes free, threshold is {thresholdBytes} bytes",
2804
+ "diskSpaceCheckFailed": "Failed to check disk space in directory \"{directory}\""
2729
2805
  },
2730
2806
  "gcpBlobStorageConnector": {
2731
2807
  "healthDescription": "GCP blob storage connector is healthy, bucket \"{bucketName}\" in project \"{projectId}\"",
@@ -2738,6 +2814,10 @@
2738
2814
  "memoryBlobStorageConnector": {
2739
2815
  "healthDescription": "Memory blob storage connector is healthy, storing \"{storedItemCount}\" items"
2740
2816
  },
2817
+ "documentManagementService": {
2818
+ "healthDescription": "Document management service application health check",
2819
+ "getBlobFailed": "Failed to retrieve the health check blob"
2820
+ },
2741
2821
  "cosmosDbEntityStorageConnector": {
2742
2822
  "healthDescription": "Checks if the Cosmos DB container \"{containerId}\" in database \"{databaseId}\" is available",
2743
2823
  "connectionFailed": "Failed to connect to Cosmos DB container \"{containerId}\" in database \"{databaseId}\""
@@ -2756,6 +2836,9 @@
2756
2836
  "healthDescription": "Checks if the Firestore collection \"{collectionName}\" in project \"{projectId}\" is available",
2757
2837
  "connectionFailed": "Failed to connect to Firestore collection \"{collectionName}\" in project \"{projectId}\""
2758
2838
  },
2839
+ "memoryEntityStorageConnector": {
2840
+ "healthDescription": "Memory entity storage for \"{entityType}\" is always available"
2841
+ },
2759
2842
  "mongoDbEntityStorageConnector": {
2760
2843
  "healthDescription": "Checks if the MongoDB collection \"{collection}\" in database \"{database}\" is available",
2761
2844
  "connectionFailed": "Failed to connect to MongoDB collection \"{collection}\" in database \"{database}\""
@@ -2774,11 +2857,11 @@
2774
2857
  },
2775
2858
  "iotaIdentityConnector": {
2776
2859
  "healthDescription": "Connectivity and availability of the IOTA node \"{endpoint}\"",
2777
- "nodeHealthCheckFailed": "Failed to check IOTA node health status \"{endpoint}\""
2778
- },
2779
- "iotaIdentityConnectorGasStation": {
2780
- "healthDescription": "Connectivity and availability of the IOTA gas station \"{endpoint}\"",
2781
- "healthCheckFailed": "Failed to check gas station health status \"{endpoint}\""
2860
+ "nodeHealthCheckFailed": "Failed to check IOTA node health status \"{endpoint}\"",
2861
+ "healthDescriptionGasStationConnectivity": "Connectivity and availability of the IOTA gas station \"{endpoint}\"",
2862
+ "healthCheckFailedGasStationConnectivity": "Failed to check gas station connectivity \"{endpoint}\"",
2863
+ "healthDescriptionGasStationWorking": "Operational status of the IOTA gas station \"{endpoint}\"",
2864
+ "healthCheckFailedGasStationWorking": "Gas station sponsored transaction check failed \"{endpoint}\""
2782
2865
  },
2783
2866
  "iotaIdentityResolverConnector": {
2784
2867
  "healthDescription": "Connectivity and availability of the IOTA resolver node \"{endpoint}\"",
@@ -2788,14 +2871,47 @@
2788
2871
  "healthDescription": "Connectivity and availability of the universal resolver \"{endpoint}\"",
2789
2872
  "resolverHealthCheckFailed": "Failed to check universal resolver health status \"{endpoint}\""
2790
2873
  },
2874
+ "identityService": {
2875
+ "healthDescription": "DID document lifecycle (create, resolve, remove) using the \"{namespace}\" namespace",
2876
+ "createDocumentFailed": "Failed to create the health check identity document",
2877
+ "resolveDocumentFailed": "Failed to resolve the health check identity document"
2878
+ },
2879
+ "immutableProofService": {
2880
+ "healthDescription": "Immutable proof service application health check",
2881
+ "getNotarizationFailed": "Failed to retrieve the health check notarization"
2882
+ },
2883
+ "nftService": {
2884
+ "healthDescription": "NFT service application health check",
2885
+ "resolveNftFailed": "Failed to resolve the health check NFT"
2886
+ },
2887
+ "notarizationService": {
2888
+ "healthDescription": "Notarization service application health check",
2889
+ "getNotarizationFailed": "Failed to retrieve the health check notarization"
2890
+ },
2791
2891
  "hashicorpVaultConnector": {
2792
2892
  "healthDescription": "Connectivity and availability of the Hashicorp Vault server \"{endpoint}\"",
2793
2893
  "vaultHealthCheckFailed": "Failed to check Vault health status \"{endpoint}\""
2794
2894
  },
2895
+ "entityStorageWalletConnector": {
2896
+ "healthDescription": "Entity storage wallet connector application health check",
2897
+ "fundFromFaucet": "Fund wallet from faucet on address \"{address}\"",
2898
+ "healthNoFaucet": "No faucet available for the network",
2899
+ "fundWalletFailed": "Failed to fund the wallet"
2900
+ },
2901
+ "iotaWalletConnector": {
2902
+ "healthDescription": "IOTA wallet connector application health check",
2903
+ "fundFromFaucet": "Fund wallet from faucet on address \"{address}\"",
2904
+ "healthNoFaucet": "No faucet available for the network",
2905
+ "fundWalletFailed": "Failed to fund the wallet"
2906
+ },
2795
2907
  "fastifyWebServer": {
2796
- "description": "Checks if the Web Server is reachable",
2908
+ "healthConnectivityDescription": "Checks if the Web Server is reachable",
2797
2909
  "reachable": "The Web Server is reachable",
2798
- "unreachable": "The Web Server is unreachable"
2910
+ "unreachable": "The Web Server is unreachable",
2911
+ "healthApplicationDescription": "Checks if the root endpoint is reachable",
2912
+ "rootEndpointReachable": "The root endpoint is reachable",
2913
+ "rootEndpointError": "The root endpoint returned an unexpected response",
2914
+ "serverNotBuilt": "The server has not been built"
2799
2915
  }
2800
2916
  },
2801
2917
  "auditableItemGraphService": {},
@@ -2818,6 +2934,9 @@
2818
2934
  "activityLogStatusConnected": "Web Socket Connected: Socket Id: \"{socketId}\"",
2819
2935
  "activityLogStatusDisconnected": "Web Socket disconnected: Socket Id: \"{socketId}\""
2820
2936
  },
2937
+ "immutableProofService": {
2938
+ "sweepSkippedInFlight": "Skipped sweeping proof \"{proofId}\", a task is already in flight"
2939
+ },
2821
2940
  "immutableProofTask": {
2822
2941
  "taskEngineStarted": "The proof task engine started for proof \"{proofId}\" in {elapsedMs}ms",
2823
2942
  "taskVerifiableCredentialCreated": "The verifiable credential for proof \"{proofId}\" was created in {elapsedMs}ms",