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