@twin.org/node 0.9.1 → 0.9.2-next.10
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 +280 -169
- package/docs/changelog.md +234 -0
- package/docs/open-api/spec.json +68 -12
- package/docs/usage.md +8 -8
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -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
|
-
"
|
|
20
|
-
"noFeaturesEnabled": "No features are 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,49 @@
|
|
|
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
|
+
},
|
|
323
|
+
"authHeaderProcessor": {
|
|
324
|
+
"nodeIdNotSet": "The node ID has not been set"
|
|
325
|
+
},
|
|
326
|
+
"passwordHelper": {
|
|
327
|
+
"currentPasswordMismatch": "The current password is incorrect"
|
|
328
|
+
},
|
|
329
|
+
"entityStorageAuthenticationAuditService": {
|
|
330
|
+
"auditEntryNotFound": "The audit entry with the specified identifier could not be found \"{notFoundId}\"",
|
|
331
|
+
"getAuditEntryFailed": "Getting the audit entry failed",
|
|
332
|
+
"updateAuditEntryFailed": "Updating the audit entry failed",
|
|
333
|
+
"removeAuditEntryFailed": "Removing the audit entry failed"
|
|
334
|
+
},
|
|
335
|
+
"entityStorageAuthenticationRateService": {
|
|
336
|
+
"actionConfigMissing": "No rate-limit configuration exists for action \"{action}\".",
|
|
337
|
+
"rateLimitExceeded": "The rate limit for action \"{action}\" has been exceeded. Retry after {retryAfterSeconds} seconds."
|
|
338
|
+
},
|
|
339
|
+
"tokenHelper": {
|
|
340
|
+
"missing": "The JSON Web token could not be found in the authorization header",
|
|
341
|
+
"headerKeyIdMismatch": "The JSON Web token key identifier does not match the expected signing key",
|
|
342
|
+
"payloadIssuerMismatch": "The JSON Web token issuer does not match the expected signing key",
|
|
343
|
+
"payloadMissingSubject": "The JSON Web token payload does not contain a subject",
|
|
344
|
+
"payloadMissingOrganization": "The JSON Web token payload does not contain an organization",
|
|
345
|
+
"expired": "The JSON Web token has expired",
|
|
346
|
+
"insufficientScopes": "The JSON Web token does not have the required scopes to access this resource",
|
|
347
|
+
"userNotVerified": "The user associated with the JSON Web token could not be verified",
|
|
348
|
+
"organizationNotVerified": "The organization associated with the JSON Web token could not be verified",
|
|
349
|
+
"tenantNotVerified": "The tenant associated with the JSON Web token could not be verified"
|
|
350
|
+
},
|
|
350
351
|
"baseRestClient": {
|
|
351
352
|
"missingRouteProp": "Missing route parameter in data \"{routeProp}\" for route \"{route}\"",
|
|
352
353
|
"decodingFailed": "Decoding JSON failed for route \"{route}\"",
|
|
@@ -374,7 +375,9 @@
|
|
|
374
375
|
"invalidEntityProperty": "The entity value of \"{value}\" does not match the type \"{type}\" for property \"{property}\"",
|
|
375
376
|
"invalidOptional": "The entity property \"{property}\" of type \"{type}\" is not optional, but no value has been provided",
|
|
376
377
|
"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}"
|
|
378
|
+
"versionMustBeGreaterThanOrEqualZero": "Property \"entitySchema.version\" must be an integer >= 0, but got {version}",
|
|
379
|
+
"multipleVersionProperties": "The schema has more than one property with isVersion set, only one is allowed",
|
|
380
|
+
"versionPropertyMustBeInteger": "The version property \"{property}\" has type \"{type}\" but must be of type integer"
|
|
378
381
|
},
|
|
379
382
|
"entityStorageHelper": {
|
|
380
383
|
"sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
|
|
@@ -424,45 +427,47 @@
|
|
|
424
427
|
"invalidUrl": "The JSON-LD processing failed to retrieve from the following url \"{url}\"",
|
|
425
428
|
"jsonLdError": "The JSON-LD processing failed due to the following error: \"{code}\""
|
|
426
429
|
},
|
|
427
|
-
"
|
|
428
|
-
"
|
|
429
|
-
"
|
|
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."
|
|
430
|
+
"accountHelper": {
|
|
431
|
+
"addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
|
|
432
|
+
"missingPublicKey": "The public key is missing for vault key \"{keyName}\""
|
|
449
433
|
},
|
|
450
|
-
"
|
|
451
|
-
"
|
|
452
|
-
"
|
|
453
|
-
"
|
|
454
|
-
"
|
|
455
|
-
"
|
|
456
|
-
"
|
|
434
|
+
"iota": {
|
|
435
|
+
"insufficientFunds": "There were insufficient funds to complete the operation",
|
|
436
|
+
"packageNotFoundOnNetwork": "The package \"{packageId}\" was not found on the network",
|
|
437
|
+
"packageObjectError": "Failed to fetch the package object \"{packageId}\"",
|
|
438
|
+
"valueTransactionFailed": "The value transaction failed",
|
|
439
|
+
"transactionFailed": "The transaction failed",
|
|
440
|
+
"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",
|
|
441
|
+
"gasStationTransactionFailed": "The gas station transaction failed",
|
|
442
|
+
"dryRunFailed": "The dry run execution failed",
|
|
443
|
+
"fundingFailed": "Fund the address from faucet failed",
|
|
444
|
+
"faucetRateLimit": "Faucet rate limit exceeded"
|
|
457
445
|
},
|
|
458
|
-
"
|
|
459
|
-
"
|
|
446
|
+
"vaultJwkStorage": {
|
|
447
|
+
"generateNotSupported": "Key generation is not supported; keys are managed by the vault"
|
|
460
448
|
},
|
|
461
|
-
"
|
|
462
|
-
"
|
|
449
|
+
"iotaIdentityUtils": {
|
|
450
|
+
"getControllerCapInfoFailed": "Getting the controller capability info for the identity failed",
|
|
451
|
+
"identityNotFound": "The identity could not be found \"{notFoundId}\"",
|
|
452
|
+
"identityDeleted": "The identity \"{identityId}\" has been deleted and cannot be used for minting",
|
|
453
|
+
"controllerTokenNotFound": "No controller token found for the identity \"{notFoundId}\" with the provided controller address"
|
|
463
454
|
},
|
|
464
|
-
"
|
|
465
|
-
"
|
|
455
|
+
"iotaSmartContractUtils": {
|
|
456
|
+
"migrationFailed": "Smart contract migration failed",
|
|
457
|
+
"migrateSmartContractFailed": "Failed to migrate smart contract for object \"{objectId}\"",
|
|
458
|
+
"enableMigrationFailed": "Failed to enable migration for smart contract",
|
|
459
|
+
"disableMigrationFailed": "Failed to disable migration for smart contract",
|
|
460
|
+
"migrationStateNotReadable": "Cannot read migration state for ID \"{migrationStateId}\"",
|
|
461
|
+
"isMigrationActiveFailed": "Failed to check if migration is active",
|
|
462
|
+
"invalidVersionData": "Invalid version data received from smart contract",
|
|
463
|
+
"getCurrentContractVersionNoData": "No version data returned from contract",
|
|
464
|
+
"getCurrentContractVersionFailed": "Failed to get current contract version",
|
|
465
|
+
"objectNotReadable": "Cannot read object with ID \"{objectId}\"",
|
|
466
|
+
"objectInvalidFormat": "Object \"{objectId}\" has invalid format",
|
|
467
|
+
"validateObjectVersionFailed": "Failed to validate object version for \"{objectId}\"",
|
|
468
|
+
"getContractObjectIdsFailed": "Failed to get contract object IDs for namespace \"{namespace}\" on network \"{network}\"",
|
|
469
|
+
"adminCapNotFound": "AdminCap object not found for type \"{adminCapType}\" and address \"{adminAddress}\"",
|
|
470
|
+
"migrationStateNotFound": "MigrationState object not found for type \"{migrationStateType}\" and address \"{adminAddress}\""
|
|
466
471
|
},
|
|
467
472
|
"engineCore": {
|
|
468
473
|
"componentUnknownType": "Unknown component type \"{type}\" specified for \"{componentType}\"",
|
|
@@ -488,7 +493,10 @@
|
|
|
488
493
|
"connectorUnknownType": "Unknown connector type \"{type}\" specified for \"{connectorType}\""
|
|
489
494
|
},
|
|
490
495
|
"healthService": {
|
|
491
|
-
"componentHealthCheckFailed": "Health check failed for component \"{className}\""
|
|
496
|
+
"componentHealthCheckFailed": "Health check failed for component \"{className}\"",
|
|
497
|
+
"componentHealthApplicationInitFailed": "Application health check init failed for component \"{className}\"",
|
|
498
|
+
"componentHealthApplicationCheckFailed": "Application health check failed for component \"{className}\"",
|
|
499
|
+
"componentHealthApplicationTeardownFailed": "Application health check teardown failed for component \"{className}\""
|
|
492
500
|
},
|
|
493
501
|
"nftAttestationConnector": {
|
|
494
502
|
"attestingFailed": "Attesting the data failed",
|
|
@@ -497,6 +505,36 @@
|
|
|
497
505
|
"destroyFailed": "Destroying the attestation failed",
|
|
498
506
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the NFT Attestation connector \"{namespace}\""
|
|
499
507
|
},
|
|
508
|
+
"proofHelper": {
|
|
509
|
+
"unsupportedProofType": "Proof type \"{proofType}\" not supported."
|
|
510
|
+
},
|
|
511
|
+
"jsonWebSignature2020SignerVerifier": {
|
|
512
|
+
"missingJws": "JWS is missing from proof."
|
|
513
|
+
},
|
|
514
|
+
"dataIntegrityProofSignerVerifier": {
|
|
515
|
+
"cryptosuiteNotSupported": "Cryptosuite \"{cryptoSuite}\" is not supported.",
|
|
516
|
+
"missingPrivateKey": "Private key is missing.",
|
|
517
|
+
"missingPublicKey": "Public key is missing."
|
|
518
|
+
},
|
|
519
|
+
"multikeyHelper": {
|
|
520
|
+
"invalidPublicKeyMultibase": "Public key multibase \"{publicKeyMultibase}\" is invalid.",
|
|
521
|
+
"invalidSecretKeyMultibase": "Secret key multibase \"{secretKeyMultibase}\" is invalid.",
|
|
522
|
+
"unsupportedCrv": "Curve \"{crv}\" is not supported.",
|
|
523
|
+
"unsupportedKty": "Key type \"{kty}\" is not supported.",
|
|
524
|
+
"publicKeyMultibaseMissingHeader": "Public key multibase \"{publicKeyMultibase}\" is missing the multi codec header",
|
|
525
|
+
"secretKeyMultibaseMissingHeader": "Secret key multibase \"{secretKeyMultibase}\" is missing the multi codec header"
|
|
526
|
+
},
|
|
527
|
+
"silentTelemetryConnector": {
|
|
528
|
+
"notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
|
|
529
|
+
},
|
|
530
|
+
"verificationHelper": {
|
|
531
|
+
"jwtDecodeFailed": "Decoding the JWT failed",
|
|
532
|
+
"proofMissingVerificationMethod": "The proof is missing the verification method"
|
|
533
|
+
},
|
|
534
|
+
"documentHelper": {
|
|
535
|
+
"verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
|
|
536
|
+
"verificationMethodJwkNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" is missing the JWK"
|
|
537
|
+
},
|
|
500
538
|
"attestationService": {
|
|
501
539
|
"noConnectors": "There are no connectors registered with the attestation factory",
|
|
502
540
|
"attestFailed": "The attestation of the data failed",
|
|
@@ -562,7 +600,8 @@
|
|
|
562
600
|
"dispatchFailed": "Failed to dispatch task \"{taskId}\" with type \"{taskType}\"",
|
|
563
601
|
"stateChangeCallbackFailed": "The state change callback failed for task \"{id}\" with type \"{type}\" and status \"{status}\"",
|
|
564
602
|
"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"
|
|
603
|
+
"executionTimeout": "Task \"{id}\" with type \"{type}\" exceeded its execution timeout of {timeout} ms and has been marked as failed",
|
|
604
|
+
"healthCheckTimeout": "Health check task exceeded its timeout of {timeout} ms and has been marked as failed"
|
|
566
605
|
},
|
|
567
606
|
"s3BlobStorageConnector": {
|
|
568
607
|
"bucketCreateFailed": "Creating bucket \"{bucket}\" failed",
|
|
@@ -622,6 +661,7 @@
|
|
|
622
661
|
"emptyFailed": "There was a problem emptying the blob storage",
|
|
623
662
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the blob storage service \"{namespace}\"",
|
|
624
663
|
"vaultConnectorNotConfigured": "The vault connector is not configured, but encryption/decryption was requested.",
|
|
664
|
+
"vaultKeyIdMissing": "The blob is encrypted but no vault key id is available for decryption.",
|
|
625
665
|
"blobNotFound": "The blob with id \"{notFoundId}\" was not found",
|
|
626
666
|
"entityNotFound": "The entity with id \"{notFoundId}\" was not found"
|
|
627
667
|
},
|
|
@@ -688,6 +728,7 @@
|
|
|
688
728
|
"transferRequestRejectedByProvider": "Provider rejected transfer request for agreement {agreementId} at {providerEndpoint} (code: {code})",
|
|
689
729
|
"providerPidMissingInResponse": "Provider accepted transfer request for {consumerPid} but returned no providerPid",
|
|
690
730
|
"unsupportedTransferFormat": "Transfer format \"{format}\" is not supported. Supported formats: {supported}",
|
|
731
|
+
"transferFormatNotInDistributions": "Transfer format \"{format}\" is not available in any distribution of dataset \"{datasetId}\" (Agreement: {agreementId}). Available formats: {availableFormats}",
|
|
691
732
|
"catalogDatasetMissingId": "Catalog dataset is missing a required @id identifier",
|
|
692
733
|
"providerIdentityMissing": "Provider identity (DID) is required to sign data access tokens but was not set on the Transfer Process",
|
|
693
734
|
"callerNotAuthorizedForAgreement": "The caller's verified identity does not match the agreement assignee (consumer)",
|
|
@@ -701,7 +742,8 @@
|
|
|
701
742
|
"datasetNotFound": "Dataset not found",
|
|
702
743
|
"datasetWrongOrganization": "The calling organization does not own this dataset.",
|
|
703
744
|
"transferWrongOrganization": "The calling organization does not own this transfer.",
|
|
704
|
-
"invalidDatasetId": "Dataset ID \"{id}\" is not a valid URN or URL"
|
|
745
|
+
"invalidDatasetId": "Dataset ID \"{id}\" is not a valid URN or URL",
|
|
746
|
+
"providerTransferTerminateFailed": "Failed to terminate a provider transfer for a lifecycle policy (consumerPid: {consumerPid})"
|
|
705
747
|
},
|
|
706
748
|
"dataspaceControlPlanePolicyRequester": {},
|
|
707
749
|
"httpDataPullTransferHandler": {
|
|
@@ -716,6 +758,16 @@
|
|
|
716
758
|
"pushTransferDataPathNotConfigured": "POST transfer cannot start: dataPlanePath is not configured (consumerPid: {consumerPid})",
|
|
717
759
|
"providerIdentityMissing": "Provider identity (DID) is required to sign data access tokens but was not set on the Transfer Process"
|
|
718
760
|
},
|
|
761
|
+
"odrlPolicyHelper": {
|
|
762
|
+
"policyMissingAssignee": "The {policyType} with id \"{policyId}\" is missing an assignee.",
|
|
763
|
+
"policyMissingAssigner": "The {policyType} with id \"{policyId}\" is missing an assigner."
|
|
764
|
+
},
|
|
765
|
+
"dataspaceProtocolHelper": {
|
|
766
|
+
"schemaNotRegistered": "JSON Schema \"{schemaId}\" is not registered in DataTypeHandlerFactory"
|
|
767
|
+
},
|
|
768
|
+
"trustHelper": {
|
|
769
|
+
"trustVerifyFailed": "Trust verification failed for action \"{action}\""
|
|
770
|
+
},
|
|
719
771
|
"dataspaceDataPlaneRestClient": {
|
|
720
772
|
"notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
|
|
721
773
|
},
|
|
@@ -769,13 +821,15 @@
|
|
|
769
821
|
"removeRevisionFailed": "Failed to remove document revision"
|
|
770
822
|
},
|
|
771
823
|
"cosmosDbEntityStorageConnector": {
|
|
824
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
825
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
772
826
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
773
827
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
774
828
|
"removeFailed": "Unable to remove entity \"{id}\"",
|
|
775
829
|
"queryFailed": "The query failed",
|
|
776
830
|
"comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
|
|
777
831
|
"conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
|
|
778
|
-
"
|
|
832
|
+
"sortUnsupported": "Sorting supports at most one property other than the primary key \"{primaryKey}\"",
|
|
779
833
|
"containerCreateFailed": "The container couldn't be created \"{containerId}\"",
|
|
780
834
|
"databaseCreateFailed": "Unable to create database \"{databaseId}\"",
|
|
781
835
|
"containerDoesNotExist": "Container \"{containerId}\" does not exist",
|
|
@@ -788,6 +842,8 @@
|
|
|
788
842
|
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
789
843
|
},
|
|
790
844
|
"dynamoDbEntityStorageConnector": {
|
|
845
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
846
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
791
847
|
"tableCreateFailed": "Creating table \"{tableName}\" failed",
|
|
792
848
|
"tableDoesNotExist": "Table \"{tableName}\" does not exist",
|
|
793
849
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
@@ -796,7 +852,7 @@
|
|
|
796
852
|
"queryFailed": "The query failed",
|
|
797
853
|
"comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
|
|
798
854
|
"conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
|
|
799
|
-
"
|
|
855
|
+
"sortUnsupported": "Sorting supports at most one property other than the primary key \"{primaryKey}\"",
|
|
800
856
|
"propertyNotFound": "The property \"{property}\" was not found on the entity schema",
|
|
801
857
|
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
802
858
|
"setBatchFailed": "Unable to set batch of entities",
|
|
@@ -807,6 +863,8 @@
|
|
|
807
863
|
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
808
864
|
},
|
|
809
865
|
"fileEntityStorageConnector": {
|
|
866
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
867
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
810
868
|
"directoryCreateFailed": "Creating directory \"{directory}\" failed",
|
|
811
869
|
"emptyFailed": "Unable to empty entity storage",
|
|
812
870
|
"readStoreCorrupt": "The entity storage store file in directory \"{directory}\" contains corrupt JSON",
|
|
@@ -816,6 +874,8 @@
|
|
|
816
874
|
"writeStoreFailed": "Unable to write the entity storage store file in directory \"{directory}\""
|
|
817
875
|
},
|
|
818
876
|
"firestoreEntityStorageConnector": {
|
|
877
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
878
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
819
879
|
"firestoreCreationFailed": "Failed to connect to Firestore",
|
|
820
880
|
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
821
881
|
"setEntityFailed": "Failed to set entity \"{id}\"",
|
|
@@ -830,7 +890,13 @@
|
|
|
830
890
|
"teardownFailed": "Unable to teardown entity storage",
|
|
831
891
|
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
832
892
|
},
|
|
893
|
+
"memoryEntityStorageConnector": {
|
|
894
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
895
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state"
|
|
896
|
+
},
|
|
833
897
|
"mongoDbEntityStorageConnector": {
|
|
898
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
899
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
834
900
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
835
901
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
836
902
|
"removeFailed": "Unable to remove entity \"{id}\"",
|
|
@@ -845,6 +911,8 @@
|
|
|
845
911
|
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
846
912
|
},
|
|
847
913
|
"mySqlEntityStorageConnector": {
|
|
914
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
915
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
848
916
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
849
917
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
850
918
|
"removeFailed": "Unable to remove entity \"{id}\"",
|
|
@@ -862,6 +930,8 @@
|
|
|
862
930
|
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
863
931
|
},
|
|
864
932
|
"postgreSqlEntityStorageConnector": {
|
|
933
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
934
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
865
935
|
"databaseCreateFailed": "Unable to create database \"{databaseName}\"",
|
|
866
936
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
867
937
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
@@ -879,6 +949,8 @@
|
|
|
879
949
|
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
880
950
|
},
|
|
881
951
|
"scyllaDBTableConnector": {
|
|
952
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
953
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
882
954
|
"tableCreateFailed": "Creating table \"{table}\" failed",
|
|
883
955
|
"removeFailed": "Removing item with \"{id}\" failed",
|
|
884
956
|
"setFailed": "Setting item with \"{id}\" failed",
|
|
@@ -1010,48 +1082,9 @@
|
|
|
1010
1082
|
"unrevokeVerifiableCredentialsFailed": "Unrevoking verifiable credentials failed",
|
|
1011
1083
|
"verificationKeyMissing": "The verification key is missing from the vault for method \"{method}\"",
|
|
1012
1084
|
"verificationMethodNotFound": "The verification method could not be found",
|
|
1085
|
+
"signatureVerificationFailed": "The document integrity check failed",
|
|
1013
1086
|
"verifyProofFailed": "Verifying the signature for the data failed"
|
|
1014
1087
|
},
|
|
1015
|
-
"iota": {
|
|
1016
|
-
"insufficientFunds": "There were insufficient funds to complete the operation",
|
|
1017
|
-
"packageNotFoundOnNetwork": "The package \"{packageId}\" was not found on the network",
|
|
1018
|
-
"packageObjectError": "Failed to fetch the package object \"{packageId}\"",
|
|
1019
|
-
"valueTransactionFailed": "The value transaction failed",
|
|
1020
|
-
"transactionFailed": "The transaction failed",
|
|
1021
|
-
"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",
|
|
1022
|
-
"addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
|
|
1023
|
-
"gasStationTransactionFailed": "The gas station transaction failed",
|
|
1024
|
-
"dryRunFailed": "The dry run execution failed",
|
|
1025
|
-
"fundingFailed": "Fund the address from faucet failed",
|
|
1026
|
-
"faucetRateLimit": "Faucet rate limit exceeded",
|
|
1027
|
-
"missingPublicKey": "The public key is missing for vault key \"{keyName}\""
|
|
1028
|
-
},
|
|
1029
|
-
"vaultJwkStorage": {
|
|
1030
|
-
"generateNotSupported": "Key generation is not supported; keys are managed by the vault"
|
|
1031
|
-
},
|
|
1032
|
-
"iotaIdentityUtils": {
|
|
1033
|
-
"getControllerCapInfoFailed": "Getting the controller capability info for the identity failed",
|
|
1034
|
-
"identityNotFound": "The identity could not be found \"{notFoundId}\"",
|
|
1035
|
-
"identityDeleted": "The identity \"{identityId}\" has been deleted and cannot be used for minting",
|
|
1036
|
-
"controllerTokenNotFound": "No controller token found for the identity \"{notFoundId}\" with the provided controller address"
|
|
1037
|
-
},
|
|
1038
|
-
"iotaSmartContractUtils": {
|
|
1039
|
-
"migrationFailed": "Smart contract migration failed",
|
|
1040
|
-
"migrateSmartContractFailed": "Failed to migrate smart contract for object \"{objectId}\"",
|
|
1041
|
-
"enableMigrationFailed": "Failed to enable migration for smart contract",
|
|
1042
|
-
"disableMigrationFailed": "Failed to disable migration for smart contract",
|
|
1043
|
-
"migrationStateNotReadable": "Cannot read migration state for ID \"{migrationStateId}\"",
|
|
1044
|
-
"isMigrationActiveFailed": "Failed to check if migration is active",
|
|
1045
|
-
"invalidVersionData": "Invalid version data received from smart contract",
|
|
1046
|
-
"getCurrentContractVersionNoData": "No version data returned from contract",
|
|
1047
|
-
"getCurrentContractVersionFailed": "Failed to get current contract version",
|
|
1048
|
-
"objectNotReadable": "Cannot read object with ID \"{objectId}\"",
|
|
1049
|
-
"objectInvalidFormat": "Object \"{objectId}\" has invalid format",
|
|
1050
|
-
"validateObjectVersionFailed": "Failed to validate object version for \"{objectId}\"",
|
|
1051
|
-
"getContractObjectIdsFailed": "Failed to get contract object IDs for namespace \"{namespace}\" on network \"{network}\"",
|
|
1052
|
-
"adminCapNotFound": "AdminCap object not found for type \"{adminCapType}\" and address \"{adminAddress}\"",
|
|
1053
|
-
"migrationStateNotFound": "MigrationState object not found for type \"{migrationStateType}\" and address \"{adminAddress}\""
|
|
1054
|
-
},
|
|
1055
1088
|
"universalResolverConnector": {
|
|
1056
1089
|
"resolveDocumentFailed": "Resolving the document failed \"{documentId}\""
|
|
1057
1090
|
},
|
|
@@ -1100,7 +1133,8 @@
|
|
|
1100
1133
|
"removeFailed": "Removing the Immutable Proof failed",
|
|
1101
1134
|
"removeNotarizationFailed": "Removing notarization entry from the Immutable Proof failed",
|
|
1102
1135
|
"proofNotFound": "The proof with the Id \"{notFoundId}\" was not found",
|
|
1103
|
-
"createProofFailed": "Creating the immutable proof failed"
|
|
1136
|
+
"createProofFailed": "Creating the immutable proof failed",
|
|
1137
|
+
"sweepFailed": "The reconciliation sweep cycle failed"
|
|
1104
1138
|
},
|
|
1105
1139
|
"immutableProofTask": {
|
|
1106
1140
|
"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"
|
|
@@ -1237,9 +1271,10 @@
|
|
|
1237
1271
|
"transferFailed": "The transfer of the notarization failed"
|
|
1238
1272
|
},
|
|
1239
1273
|
"dataAccessPointService": {
|
|
1240
|
-
"noHandlerForAssetType": "No handler registered for asset type \"{assetType}\""
|
|
1274
|
+
"noHandlerForAssetType": "No handler registered for asset type \"{assetType}\"",
|
|
1275
|
+
"notAuthorizedToQuery": "Not authorized to query asset type \"{assetType}\"",
|
|
1276
|
+
"notAuthorizedToGet": "Not authorized to get asset type \"{assetType}\" with id \"{id}\""
|
|
1241
1277
|
},
|
|
1242
|
-
"dataAccessRequestPointService": {},
|
|
1243
1278
|
"policyAdministrationPointService": {
|
|
1244
1279
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the rights management components \"{namespace}\"",
|
|
1245
1280
|
"policyAlreadyExists": "A policy with id: \"{existingId}\" already exists",
|
|
@@ -1335,12 +1370,21 @@
|
|
|
1335
1370
|
"gaugeNoIncDec": "A gauge can not be incremented or decremented",
|
|
1336
1371
|
"maxHistoryMustBePositiveInteger": "The maxHistory option must be a positive integer"
|
|
1337
1372
|
},
|
|
1338
|
-
"openTelemetryTelemetryConnector": {
|
|
1339
|
-
"unknownReaderType": "The reader type \"{type}\" is not supported, valid values are: prometheus"
|
|
1340
|
-
},
|
|
1341
1373
|
"metricsCollectorService": {
|
|
1342
1374
|
"producerCollectionFailed": "Failed to collect metrics from producer \"{producer}\""
|
|
1343
1375
|
},
|
|
1376
|
+
"entityStorageTracingConnector": {
|
|
1377
|
+
"spanNotFound": "The span could not be found \"{notFoundId}\""
|
|
1378
|
+
},
|
|
1379
|
+
"spanHelper": {
|
|
1380
|
+
"traceFlagsOutOfRange": "The trace flags value \"{traceFlags}\" is outside the valid range 0 to 255"
|
|
1381
|
+
},
|
|
1382
|
+
"openTelemetryTracingConnector": {
|
|
1383
|
+
"sampleRatioOutOfRange": "The sample ratio \"{sampleRatio}\" must be between 0 and 1"
|
|
1384
|
+
},
|
|
1385
|
+
"tracingRoutes": {
|
|
1386
|
+
"spanIdMismatch": "The span id in the path \"{pathSpanId}\" does not match the span id in the body \"{bodySpanId}\""
|
|
1387
|
+
},
|
|
1344
1388
|
"trustService": {
|
|
1345
1389
|
"notVerified": "Payload verification failed",
|
|
1346
1390
|
"noGeneratorsRegistered": "No trust generators are registered in the factory",
|
|
@@ -1443,7 +1487,10 @@
|
|
|
1443
1487
|
"dataspaceControlPlaneService": {
|
|
1444
1488
|
"catalogDatasetHasNoOffers": "Dataset has no Offers (odrl:hasPolicy) in Federated Catalogue",
|
|
1445
1489
|
"stalledNegotiationCleanedUp": "Stalled negotiation cleaned up (negotiationId: {negotiationId})",
|
|
1446
|
-
"stalledTransferCleanedUp": "Stalled transfer cleaned up (consumerPid: {consumerPid})"
|
|
1490
|
+
"stalledTransferCleanedUp": "Stalled transfer cleaned up (consumerPid: {consumerPid})",
|
|
1491
|
+
"providerTransferIdleTimedOut": "Provider-side STARTED transfer had no data-plane activity within the idle window and will be terminated (consumerPid: {consumerPid}, providerPid: {providerPid}, idleTimeoutMs: {idleTimeoutMs})",
|
|
1492
|
+
"providerTransferIdleStorageMissing": "The idle policy is configured but the transfer-retrieval entity storage is not registered, so the policy is skipped",
|
|
1493
|
+
"providerTransferPolicyNoProviderIdentity": "Removed a Provider-side STARTED transfer with no provider identity (DID), it cannot be transitioned (consumerPid: {consumerPid})"
|
|
1447
1494
|
},
|
|
1448
1495
|
"dataspaceControlPlanePolicyRequester": {
|
|
1449
1496
|
"unknownNegotiationFinalized": "Unknown negotiation finalized (negotiationId: {negotiationId})",
|
|
@@ -1452,10 +1499,15 @@
|
|
|
1452
1499
|
},
|
|
1453
1500
|
"dataspaceDataPlaneService": {
|
|
1454
1501
|
"pushSubscriptionNotFoundOnTeardown": "Push subscription not found for consumerPid \"{consumerPid}\" during teardown — treating as no-op",
|
|
1455
|
-
"pushSubscriptionNotFoundForActivity": "Push subscription not found for outbound activity (consumerPid: {consumerPid})"
|
|
1502
|
+
"pushSubscriptionNotFoundForActivity": "Push subscription not found for outbound activity (consumerPid: {consumerPid})",
|
|
1503
|
+
"transferRetrievalRecordFailed": "Failed to record the transfer retrieval (consumerPid: {consumerPid})"
|
|
1456
1504
|
},
|
|
1457
1505
|
"immutableProofService": {
|
|
1458
|
-
"taskRecordRemoveFailed": "Removing the completed task record for proof \"{proofId}\" failed, the record will be removed when its retention expires"
|
|
1506
|
+
"taskRecordRemoveFailed": "Removing the completed task record for proof \"{proofId}\" failed, the record will be removed when its retention expires",
|
|
1507
|
+
"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",
|
|
1508
|
+
"supersededTaskRemoveFailed": "Removing the superseded background task \"{taskId}\" for proof \"{proofId}\" failed, the record will be removed when its retention expires",
|
|
1509
|
+
"sweepParked": "Parked proof \"{proofId}\" after {sweepAttempts} sweep attempts",
|
|
1510
|
+
"sweepParkedTotal": "{totalParked} proof(s) are currently parked and require operator investigation"
|
|
1459
1511
|
},
|
|
1460
1512
|
"immutableProofTask": {
|
|
1461
1513
|
"taskEngineStopFailed": "Stopping the task engine for proof \"{proofId}\" failed, the task result is unaffected"
|
|
@@ -1464,7 +1516,8 @@
|
|
|
1464
1516
|
"sendTerminateFailed": "Failed to send terminate to consumer for negotiation id: \"{id}\", correlation id: \"{correlationId}\""
|
|
1465
1517
|
},
|
|
1466
1518
|
"policyNegotiationPointService": {
|
|
1467
|
-
"terminatedCallbackFailed": "Failed to notify requester via terminated() for negotiation id: \"{negotiationId}\""
|
|
1519
|
+
"terminatedCallbackFailed": "Failed to notify requester via terminated() for negotiation id: \"{negotiationId}\"",
|
|
1520
|
+
"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"
|
|
1468
1521
|
}
|
|
1469
1522
|
},
|
|
1470
1523
|
"node": {
|
|
@@ -1497,9 +1550,9 @@
|
|
|
1497
1550
|
"singleTenantOnly": "single-tenant only"
|
|
1498
1551
|
}
|
|
1499
1552
|
},
|
|
1500
|
-
"bootstrap-
|
|
1501
|
-
"description": "Bootstrap
|
|
1502
|
-
"example": "bootstrap-
|
|
1553
|
+
"bootstrap-dev": {
|
|
1554
|
+
"description": "Bootstrap the development environment",
|
|
1555
|
+
"example": "bootstrap-dev --load-env=\"./.env.bootstrap-dev\"",
|
|
1503
1556
|
"params": {
|
|
1504
1557
|
"env-prefix": {
|
|
1505
1558
|
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
@@ -2306,13 +2359,12 @@
|
|
|
2306
2359
|
"migrateSchemaFinalizing": "Finalizing migration of schema \"{schemaName}\"",
|
|
2307
2360
|
"migrateSchemaComplete": "Migration of schema \"{schemaName}\" complete"
|
|
2308
2361
|
},
|
|
2362
|
+
"iota": {
|
|
2363
|
+
"transactionCosts": "Transaction costs for operation \"{operation}\", \"{cost}\""
|
|
2364
|
+
},
|
|
2309
2365
|
"engineTypes": {
|
|
2310
2366
|
"configuringEntityStorage": "Configuring {element} with name \"{storageName}\" using \"{storageType}\" connector"
|
|
2311
2367
|
},
|
|
2312
|
-
"memoryEntityStorageConnector": {
|
|
2313
|
-
"storeTearingDown": "Tearing down entity storage",
|
|
2314
|
-
"storeTornDown": "Entity storage torn down"
|
|
2315
|
-
},
|
|
2316
2368
|
"fetchAction": {
|
|
2317
2369
|
"fetch": "Fetch \"{url}\" with method \"{method}\""
|
|
2318
2370
|
},
|
|
@@ -2366,6 +2418,7 @@
|
|
|
2366
2418
|
"dataspaceControlPlaneService": {
|
|
2367
2419
|
"transferProcessInitiated": "Transfer Process initiated",
|
|
2368
2420
|
"transferProcessQueried": "Transfer Process queried (role: {role})",
|
|
2421
|
+
"dataTransfersQueried": "Data transfers queried (agreementId: {agreementId}, count: {count})",
|
|
2369
2422
|
"transferProcessStarted": "Transfer Process started",
|
|
2370
2423
|
"transferProcessCompleted": "Transfer Process completed",
|
|
2371
2424
|
"transferProcessSuspended": "Transfer Process suspended",
|
|
@@ -2378,6 +2431,7 @@
|
|
|
2378
2431
|
"offerFoundInCatalog": "Offer found in Federated Catalogue and validated",
|
|
2379
2432
|
"negotiationInitiated": "Contract negotiation initiated successfully",
|
|
2380
2433
|
"implicitTrustAgreementCreated": "Implicit trust agreement created (agreementId: {agreementId}, datasetId: {datasetId}, organizationId: {organizationId})",
|
|
2434
|
+
"agreementReused": "Existing agreement reused (agreementId: {agreementId}, offerId: {offerId}, datasetId: {datasetId})",
|
|
2381
2435
|
"implicitTrustAgreementReused": "Existing implicit trust agreement reused (agreementId: {agreementId}, datasetId: {datasetId}, organizationId: {organizationId})",
|
|
2382
2436
|
"getNegotiation": "Retrieving negotiation status",
|
|
2383
2437
|
"negotiationStateRetrieved": "Negotiation state retrieved successfully",
|
|
@@ -2385,6 +2439,7 @@
|
|
|
2385
2439
|
"negotiationHistoryRetrieved": "Negotiation history retrieved successfully",
|
|
2386
2440
|
"stalledNegotiationsCleanupComplete": "Stalled negotiations cleanup completed (cleanedUp: {cleanedUp})",
|
|
2387
2441
|
"stalledTransfersCleanupComplete": "Stalled transfers cleanup completed (cleanedUp: {cleanedUp})",
|
|
2442
|
+
"providerTransferPolicySweepComplete": "Provider transfer policy sweep completed (terminated: {terminated})",
|
|
2388
2443
|
"preparingTransfer": "Preparing consumer-initiated data transfer (agreementId: {agreementId}, providerEndpoint: {providerEndpoint}, format: {format})",
|
|
2389
2444
|
"transferPrepared": "Consumer data transfer prepared successfully (consumerPid: {consumerPid}, providerPid: {providerPid}, agreementId: {agreementId}, format: {format})"
|
|
2390
2445
|
},
|
|
@@ -2436,6 +2491,10 @@
|
|
|
2436
2491
|
"storeTearingDown": "Tearing down entity storage",
|
|
2437
2492
|
"storeTornDown": "Entity storage torn down"
|
|
2438
2493
|
},
|
|
2494
|
+
"memoryEntityStorageConnector": {
|
|
2495
|
+
"storeTearingDown": "Tearing down entity storage",
|
|
2496
|
+
"storeTornDown": "Entity storage torn down"
|
|
2497
|
+
},
|
|
2439
2498
|
"mongoDbEntityStorageConnector": {
|
|
2440
2499
|
"databaseCreating": "Database \"{databaseName}\" creating",
|
|
2441
2500
|
"databaseExists": "Database \"{databaseName}\" created or it already exists",
|
|
@@ -2480,6 +2539,8 @@
|
|
|
2480
2539
|
"schemaVersionService": {
|
|
2481
2540
|
"noMigrationRequired": "No migration required for schema \"{schemaName}\", version {version}.",
|
|
2482
2541
|
"migrationRequired": "Migration required for schema \"{schemaName}\" from version {from} to {to}.",
|
|
2542
|
+
"connectorVersionUpdated": "Connector version changed from {from} to {to}; forcing schema migrations.",
|
|
2543
|
+
"connectorVersionForceUpgrade": "Forcing migration for schema \"{schemaName}\" because connector version changed.",
|
|
2483
2544
|
"partitionStart": "Starting migration of {itemTotal} partitions.",
|
|
2484
2545
|
"partitionProgress": "Migrating partition {itemIndex} of {itemTotal}.",
|
|
2485
2546
|
"partitionEnd": "Completed migration of {itemTotal} partitions.",
|
|
@@ -2504,11 +2565,10 @@
|
|
|
2504
2565
|
"catalogQueryComplete": "Catalogue query complete, found {resultCount} results",
|
|
2505
2566
|
"filterIndexPersisted": "Filter indexes persisted for dataset \"{datasetId}\" using filter \"{filterType}\", {indexCount} entries"
|
|
2506
2567
|
},
|
|
2507
|
-
"iota": {
|
|
2508
|
-
"transactionCosts": "Transaction costs for operation \"{operation}\", \"{cost}\""
|
|
2509
|
-
},
|
|
2510
2568
|
"immutableProofService": {
|
|
2511
|
-
"createdProof": "The immutable proof with Id \"{proofId}\" has been created successfully"
|
|
2569
|
+
"createdProof": "The immutable proof with Id \"{proofId}\" has been created successfully",
|
|
2570
|
+
"sweepReEnqueued": "Re-enqueued stuck proof \"{proofId}\" as task \"{taskId}\"",
|
|
2571
|
+
"sweepCompleted": "Reconciliation sweep cycle completed (scanned: {scanned}, reEnqueued: {reEnqueued}, skippedInFlight: {skippedInFlight}, newlyParked: {newlyParked}, totalParked: {totalParked})"
|
|
2512
2572
|
},
|
|
2513
2573
|
"openTelemetryLoggingConnector": {
|
|
2514
2574
|
"connectorStarted": "The connector was started with \"{exporterCount}\" exporter(s)",
|
|
@@ -2543,13 +2603,6 @@
|
|
|
2543
2603
|
"contractReady": "Contract ready for use"
|
|
2544
2604
|
},
|
|
2545
2605
|
"iotaNotarizationConnector": {},
|
|
2546
|
-
"dataAccessPointService": {
|
|
2547
|
-
"registeredHandler": "Handler registered with id: \"{handlerId}\"",
|
|
2548
|
-
"unregisteredHandler": "Handler unregistered with id: \"{handlerId}\""
|
|
2549
|
-
},
|
|
2550
|
-
"dataAccessRequestPointService": {
|
|
2551
|
-
"missingNodeIdentity": "The node identity is missing"
|
|
2552
|
-
},
|
|
2553
2606
|
"policyEnforcementPointService": {
|
|
2554
2607
|
"processing": "Processing information using processor with id: \"{processorId}\", policy id: \"{policyId}\"",
|
|
2555
2608
|
"intercepting": "Intercepting information for policy id: \"{policyId}\""
|
|
@@ -2614,6 +2667,10 @@
|
|
|
2614
2667
|
"connectorStarted": "The connector was started with \"{readerCount}\" metric reader(s)",
|
|
2615
2668
|
"connectorStopped": "The connector was stopped"
|
|
2616
2669
|
},
|
|
2670
|
+
"openTelemetryTracingConnector": {
|
|
2671
|
+
"connectorStarted": "The connector was started with \"{exporterCount}\" exporter(s)",
|
|
2672
|
+
"connectorStopped": "The connector was stopped"
|
|
2673
|
+
},
|
|
2617
2674
|
"trustService": {
|
|
2618
2675
|
"verifying": "Verifying payload: \"{payload}\"",
|
|
2619
2676
|
"verified": "Payload verified successfully"
|
|
@@ -2623,7 +2680,7 @@
|
|
|
2623
2680
|
},
|
|
2624
2681
|
"fastifyWebServer": {
|
|
2625
2682
|
"building": "Building Web Server",
|
|
2626
|
-
"starting": "Starting Web Server
|
|
2683
|
+
"starting": "Starting Web Server with binding \"{host}\" on port \"{port}\"",
|
|
2627
2684
|
"started": "The Web Server started on {addresses}",
|
|
2628
2685
|
"stopped": "The Web Server was stopped",
|
|
2629
2686
|
"restRouteAdded": "Added REST route \"{route}\" \"{method}\"",
|
|
@@ -2711,8 +2768,17 @@
|
|
|
2711
2768
|
}
|
|
2712
2769
|
},
|
|
2713
2770
|
"health": {
|
|
2714
|
-
"
|
|
2715
|
-
"healthDescription": "
|
|
2771
|
+
"attestationService": {
|
|
2772
|
+
"healthDescription": "Attestation lifecycle (create, get, destroy) using the \"{namespace}\" namespace",
|
|
2773
|
+
"getAttestationFailed": "Failed to get the health check attestation"
|
|
2774
|
+
},
|
|
2775
|
+
"auditableItemGraphService": {
|
|
2776
|
+
"healthDescription": "Auditable item graph service application health check",
|
|
2777
|
+
"getVertexFailed": "Failed to complete the auditable item graph vertex storage health check"
|
|
2778
|
+
},
|
|
2779
|
+
"auditableItemStreamService": {
|
|
2780
|
+
"healthDescription": "Auditable item stream service application health check",
|
|
2781
|
+
"getStreamFailed": "Failed to complete the auditable item stream storage health check"
|
|
2716
2782
|
},
|
|
2717
2783
|
"s3BlobStorageConnector": {
|
|
2718
2784
|
"healthDescription": "S3 blob storage connector is healthy, bucket \"{bucketName}\" in region \"{region}\"",
|
|
@@ -2723,8 +2789,10 @@
|
|
|
2723
2789
|
"healthCheckFailed": "Failed to connect to Azure blob storage container \"{containerName}\" in account \"{accountName}\""
|
|
2724
2790
|
},
|
|
2725
2791
|
"fileBlobStorageConnector": {
|
|
2726
|
-
"healthDescription": "
|
|
2727
|
-
"
|
|
2792
|
+
"healthDescription": "Checks if there is sufficient disk space in directory \"{directory}\" for the file blob storage connector to operate properly",
|
|
2793
|
+
"diskSpaceError": "Disk space critically low in directory \"{directory}\", {freeBytes} bytes free, threshold is {thresholdBytes} bytes",
|
|
2794
|
+
"diskSpaceWarning": "Disk space low in directory \"{directory}\", {freeBytes} bytes free, threshold is {thresholdBytes} bytes",
|
|
2795
|
+
"diskSpaceCheckFailed": "Failed to check disk space in directory \"{directory}\""
|
|
2728
2796
|
},
|
|
2729
2797
|
"gcpBlobStorageConnector": {
|
|
2730
2798
|
"healthDescription": "GCP blob storage connector is healthy, bucket \"{bucketName}\" in project \"{projectId}\"",
|
|
@@ -2737,6 +2805,10 @@
|
|
|
2737
2805
|
"memoryBlobStorageConnector": {
|
|
2738
2806
|
"healthDescription": "Memory blob storage connector is healthy, storing \"{storedItemCount}\" items"
|
|
2739
2807
|
},
|
|
2808
|
+
"documentManagementService": {
|
|
2809
|
+
"healthDescription": "Document management service application health check",
|
|
2810
|
+
"getBlobFailed": "Failed to retrieve the health check blob"
|
|
2811
|
+
},
|
|
2740
2812
|
"cosmosDbEntityStorageConnector": {
|
|
2741
2813
|
"healthDescription": "Checks if the Cosmos DB container \"{containerId}\" in database \"{databaseId}\" is available",
|
|
2742
2814
|
"connectionFailed": "Failed to connect to Cosmos DB container \"{containerId}\" in database \"{databaseId}\""
|
|
@@ -2755,6 +2827,9 @@
|
|
|
2755
2827
|
"healthDescription": "Checks if the Firestore collection \"{collectionName}\" in project \"{projectId}\" is available",
|
|
2756
2828
|
"connectionFailed": "Failed to connect to Firestore collection \"{collectionName}\" in project \"{projectId}\""
|
|
2757
2829
|
},
|
|
2830
|
+
"memoryEntityStorageConnector": {
|
|
2831
|
+
"healthDescription": "Memory entity storage for \"{entityType}\" is always available"
|
|
2832
|
+
},
|
|
2758
2833
|
"mongoDbEntityStorageConnector": {
|
|
2759
2834
|
"healthDescription": "Checks if the MongoDB collection \"{collection}\" in database \"{database}\" is available",
|
|
2760
2835
|
"connectionFailed": "Failed to connect to MongoDB collection \"{collection}\" in database \"{database}\""
|
|
@@ -2773,11 +2848,11 @@
|
|
|
2773
2848
|
},
|
|
2774
2849
|
"iotaIdentityConnector": {
|
|
2775
2850
|
"healthDescription": "Connectivity and availability of the IOTA node \"{endpoint}\"",
|
|
2776
|
-
"nodeHealthCheckFailed": "Failed to check IOTA node health status \"{endpoint}\""
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
"
|
|
2780
|
-
"
|
|
2851
|
+
"nodeHealthCheckFailed": "Failed to check IOTA node health status \"{endpoint}\"",
|
|
2852
|
+
"healthDescriptionGasStationConnectivity": "Connectivity and availability of the IOTA gas station \"{endpoint}\"",
|
|
2853
|
+
"healthCheckFailedGasStationConnectivity": "Failed to check gas station connectivity \"{endpoint}\"",
|
|
2854
|
+
"healthDescriptionGasStationWorking": "Operational status of the IOTA gas station \"{endpoint}\"",
|
|
2855
|
+
"healthCheckFailedGasStationWorking": "Gas station sponsored transaction check failed \"{endpoint}\""
|
|
2781
2856
|
},
|
|
2782
2857
|
"iotaIdentityResolverConnector": {
|
|
2783
2858
|
"healthDescription": "Connectivity and availability of the IOTA resolver node \"{endpoint}\"",
|
|
@@ -2787,14 +2862,47 @@
|
|
|
2787
2862
|
"healthDescription": "Connectivity and availability of the universal resolver \"{endpoint}\"",
|
|
2788
2863
|
"resolverHealthCheckFailed": "Failed to check universal resolver health status \"{endpoint}\""
|
|
2789
2864
|
},
|
|
2865
|
+
"identityService": {
|
|
2866
|
+
"healthDescription": "DID document lifecycle (create, resolve, remove) using the \"{namespace}\" namespace",
|
|
2867
|
+
"createDocumentFailed": "Failed to create the health check identity document",
|
|
2868
|
+
"resolveDocumentFailed": "Failed to resolve the health check identity document"
|
|
2869
|
+
},
|
|
2870
|
+
"immutableProofService": {
|
|
2871
|
+
"healthDescription": "Immutable proof service application health check",
|
|
2872
|
+
"getNotarizationFailed": "Failed to retrieve the health check notarization"
|
|
2873
|
+
},
|
|
2874
|
+
"nftService": {
|
|
2875
|
+
"healthDescription": "NFT service application health check",
|
|
2876
|
+
"resolveNftFailed": "Failed to resolve the health check NFT"
|
|
2877
|
+
},
|
|
2878
|
+
"notarizationService": {
|
|
2879
|
+
"healthDescription": "Notarization service application health check",
|
|
2880
|
+
"getNotarizationFailed": "Failed to retrieve the health check notarization"
|
|
2881
|
+
},
|
|
2790
2882
|
"hashicorpVaultConnector": {
|
|
2791
2883
|
"healthDescription": "Connectivity and availability of the Hashicorp Vault server \"{endpoint}\"",
|
|
2792
2884
|
"vaultHealthCheckFailed": "Failed to check Vault health status \"{endpoint}\""
|
|
2793
2885
|
},
|
|
2886
|
+
"entityStorageWalletConnector": {
|
|
2887
|
+
"healthDescription": "Entity storage wallet connector application health check",
|
|
2888
|
+
"fundFromFaucet": "Fund wallet from faucet on address \"{address}\"",
|
|
2889
|
+
"healthNoFaucet": "No faucet available for the network",
|
|
2890
|
+
"fundWalletFailed": "Failed to fund the wallet"
|
|
2891
|
+
},
|
|
2892
|
+
"iotaWalletConnector": {
|
|
2893
|
+
"healthDescription": "IOTA wallet connector application health check",
|
|
2894
|
+
"fundFromFaucet": "Fund wallet from faucet on address \"{address}\"",
|
|
2895
|
+
"healthNoFaucet": "No faucet available for the network",
|
|
2896
|
+
"fundWalletFailed": "Failed to fund the wallet"
|
|
2897
|
+
},
|
|
2794
2898
|
"fastifyWebServer": {
|
|
2795
|
-
"
|
|
2899
|
+
"healthConnectivityDescription": "Checks if the Web Server is reachable",
|
|
2796
2900
|
"reachable": "The Web Server is reachable",
|
|
2797
|
-
"unreachable": "The Web Server is unreachable"
|
|
2901
|
+
"unreachable": "The Web Server is unreachable",
|
|
2902
|
+
"healthApplicationDescription": "Checks if the root endpoint is reachable",
|
|
2903
|
+
"rootEndpointReachable": "The root endpoint is reachable",
|
|
2904
|
+
"rootEndpointError": "The root endpoint returned an unexpected response",
|
|
2905
|
+
"serverNotBuilt": "The server has not been built"
|
|
2798
2906
|
}
|
|
2799
2907
|
},
|
|
2800
2908
|
"auditableItemGraphService": {},
|
|
@@ -2817,6 +2925,9 @@
|
|
|
2817
2925
|
"activityLogStatusConnected": "Web Socket Connected: Socket Id: \"{socketId}\"",
|
|
2818
2926
|
"activityLogStatusDisconnected": "Web Socket disconnected: Socket Id: \"{socketId}\""
|
|
2819
2927
|
},
|
|
2928
|
+
"immutableProofService": {
|
|
2929
|
+
"sweepSkippedInFlight": "Skipped sweeping proof \"{proofId}\", a task is already in flight"
|
|
2930
|
+
},
|
|
2820
2931
|
"immutableProofTask": {
|
|
2821
2932
|
"taskEngineStarted": "The proof task engine started for proof \"{proofId}\" in {elapsedMs}ms",
|
|
2822
2933
|
"taskVerifiableCredentialCreated": "The verifiable credential for proof \"{proofId}\" was created in {elapsedMs}ms",
|