@twin.org/node 0.0.3-next.33 → 0.0.3-next.34

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.
@@ -300,8 +300,9 @@
300
300
  "invalidSignature": "The JSON Web token signature could not be verified"
301
301
  },
302
302
  "tenantProcessor": {
303
- "missingApiKey": "API key header or query param \"{keyName}\" is missing or invalid.",
304
- "apiKeyNotFound": "No node tenant found for API key \"{key}\"."
303
+ "missingApiKeyOrTenantToken": "API key \"{keyName}\" or tenant token is missing",
304
+ "apiKeyNotFound": "No node tenant found for API key \"{key}\".",
305
+ "tenantNotFound": "No node tenant found for the decrypted tenant token \"{tenantId}\"."
305
306
  },
306
307
  "tenantAdminService": {
307
308
  "apiKeyAlreadyInUse": "The provided API key is already in use by another tenant.",
@@ -353,6 +354,15 @@
353
354
  "entityStorageMissing": "Entity storage configuration missing for component \"{storageName}\"",
354
355
  "connectorUnknownType": "Unknown connector type \"{type}\" specified for \"{connectorType}\""
355
356
  },
357
+ "urlTransformerService": {
358
+ "encryptionUnavailable": "Encryption is unavailable because no nodeId is configured",
359
+ "decryptionUnavailable": "Decryption is unavailable because no nodeId is configured",
360
+ "encryptionFailed": "An error occurred during encryption",
361
+ "decryptionFailed": "An error occurred during decryption"
362
+ },
363
+ "healthService": {
364
+ "componentHealthCheckFailed": "Health check failed for component \"{className}\""
365
+ },
356
366
  "nftAttestationConnector": {
357
367
  "attestingFailed": "Attesting the data failed",
358
368
  "verificationFailed": "Verifying the attestation failed",
@@ -727,6 +737,7 @@
727
737
  "resolveDocumentFailed": "Resolving the document failed"
728
738
  },
729
739
  "entityStorageIdentityConnector": {
740
+ "addAlsoKnownAsFailed": "Adding to the alsoKnownAs property failed",
730
741
  "addServiceFailed": "Adding the service failed",
731
742
  "addVerificationMethodFailed": "Adding the verification method failed",
732
743
  "algorithmKeyTypeMismatch": "Algorithm \"{algorithm}\" requires key type \"{expectedKeyType}\", but key \"{keyId}\" has type \"{actualKeyType}\"",
@@ -737,11 +748,13 @@
737
748
  "createVerifiableCredentialFailed": "Creating the verifiable credential failed",
738
749
  "createVerifiablePresentationFailed": "Creating the verifiable presentation failed",
739
750
  "documentNotFound": "The document could not be found \"{notFoundId}\"",
751
+ "invalidAlias": "The alias is invalid it must be a Url or Urn, it is \"{alias}\"",
740
752
  "jwkSignatureFailed": "The signature on the JWK failed verification",
741
753
  "methodMissing": "The verification method specified does not exist \"{method}\"",
742
754
  "missingDid": "The full id including DID is required",
743
755
  "privateKeyMissing": "The private key could not be found for key \"{keyId}\"",
744
756
  "publicKeyJwkMissing": "The verification method contains no publicKeyJwk in method \"{method}\"",
757
+ "removeAlsoKnownAsFailed": "Removing from the alsoKnownAs property failed",
745
758
  "removeDocumentFailed": "Removing the document failed",
746
759
  "removeServiceFailed": "Removing the service failed",
747
760
  "removeVerificationMethodFailed": "Removing the verification method failed",
@@ -767,6 +780,7 @@
767
780
  "resolveDocumentFailed": "Resolving the document failed \"{documentId}\""
768
781
  },
769
782
  "iotaIdentityConnector": {
783
+ "addAlsoKnownAsFailed": "Adding to the alsoKnownAs property failed",
770
784
  "addServiceFailed": "Adding the service failed",
771
785
  "addVerificationMethodFailed": "Adding the verification method failed",
772
786
  "algorithmKeyTypeMismatch": "Algorithm \"{algorithm}\" requires key type \"{expectedKeyType}\", but key \"{keyId}\" has type \"{actualKeyType}\"",
@@ -780,6 +794,7 @@
780
794
  "documentNotFound": "The document could not be found",
781
795
  "gasStationTransactionBuildFailed": "Building the gas station transaction failed",
782
796
  "identityNotFound": "The identity could not be found \"{notFoundId}\"",
797
+ "invalidAlias": "The alias is invalid it must be a Url or Urn, it is \"{alias}\"",
783
798
  "invalidSubjectId": "The subject id format is invalid it must be a Url or Urn, it is \"{subjectId}\"",
784
799
  "methodMissing": "The verification method specified does not exist \"{method}\"",
785
800
  "missingControllerToken": "The controller token is missing",
@@ -787,6 +802,7 @@
787
802
  "privateKeyMissing": "The verification method contains no privateKey \"{keyId}\"",
788
803
  "publicKeyJwkMethodMissing": "The verification method contains no publicKeyJwk in method \"{method}\"",
789
804
  "publicKeyJwkMissing": "The verification method contains no publicKeyJwk in JWK \"{jwk}\"",
805
+ "removeAlsoKnownAsFailed": "Removing from the alsoKnownAs property failed",
790
806
  "removeDocumentFailed": "Removing the document failed",
791
807
  "removeServiceFailed": "Removing the service failed",
792
808
  "removeVerificationMethodFailed": "Removing the verification method failed",
@@ -847,6 +863,8 @@
847
863
  "verificationMethodRemoveFailed": "Removing the verification method failed \"{verificationMethodId}\"",
848
864
  "serviceCreateFailed": "Creating the service failed for identity \"{identity}\", service \"{serviceId}\"",
849
865
  "serviceRemoveFailed": "Removing the service failed \"{serviceId}\"",
866
+ "alsoKnownAsAddFailed": "Adding to the alsoKnownAs property failed for identity \"{identity}\"",
867
+ "alsoKnownAsRemoveFailed": "Removing from the alsoKnownAs property failed for identity \"{identity}\"",
850
868
  "verifiableCredentialCreateFailed": "Creating the verifiable credential failed for method \"{verificationMethodId}\"",
851
869
  "verifiableCredentialVerifyFailed": "Verifying the verifiable credential failed",
852
870
  "verifiableCredentialRevokeFailed": "Revoking the verifiable credential failed for document \"{issuerIdentity}\" with index \"{credentialIndex}\"",
@@ -1022,9 +1040,7 @@
1022
1040
  "offerNotFound": "Offer not found with id: \"{notFoundId}\"",
1023
1041
  "offerTypeMismatch": "The policy with id: \"{offerId}\" is not of type Offer, it is of type: \"{type}\".",
1024
1042
  "setNotFound": "Set not found with id: \"{notFoundId}\"",
1025
- "setTypeMismatch": "The policy with id: \"{setId}\" is not of type Set, it is of type: \"{type}\".",
1026
- "ecosystemPolicyNotFound": "Ecosystem policy not found with id: \"{notFoundId}\"",
1027
- "ecosystemPolicyTypeMismatch": "The policy with id: \"{ecosystemPolicyId}\" is not of type EcosystemPolicy, it is of type: \"{type}\"."
1043
+ "setTypeMismatch": "The policy with id: \"{setId}\" is not of type Set, it is of type: \"{type}\"."
1028
1044
  },
1029
1045
  "policyDecisionPointService": {
1030
1046
  "decidingFailed": "Deciding on policies for policy id \"{policyId}\" failed in arbiter with id: \"{arbiterId}\"",
@@ -1048,7 +1064,7 @@
1048
1064
  "circularInheritanceDetected": "Circular inheritance detected: policy \"{policyId}\" inherits from \"{inheritFromId}\" which creates a cycle.",
1049
1065
  "logicalConstraintOperandNotUnique": "Logical constraint operand is not unique within the policy, each operand must be unique.",
1050
1066
  "inheritedPolicyNotFound": "The inherited policy with id \"{inheritFromId}\" could not be found in the Policy Administration Point.",
1051
- "assetCollectionSourceNotSupported": "AssetCollection source \"{source}\" is not supported. It must be a twin:jsonpath target.",
1067
+ "assetCollectionSourceNotSupported": "AssetCollection source \"{source}\" is not supported. It must be a twin:jsonPath target.",
1052
1068
  "partyCollectionSourceNotSupported": "PartyCollection source \"{source}\" is not supported.",
1053
1069
  "assetHasPolicyNotSupported": "Asset hasPolicy is not supported. Policies must be referenced through the agreement directly.",
1054
1070
  "assetPartOfNotSupported": "Asset partOf is not supported. AssetCollection membership is resolved through the agreement directly.",
@@ -1061,6 +1077,7 @@
1061
1077
  "constraintDataTypeNotSupported": "Constraint dataType is not supported. Value coercion based on dataType is not implemented.",
1062
1078
  "constraintUnitNotSupported": "Constraint unit is not supported. Unit-aware comparison is not implemented.",
1063
1079
  "constraintStatusNotSupported": "Constraint status is not supported. State-based evaluation is not implemented.",
1080
+ "jsonPathExpressionMissing": "Canonical JSONPath expression is missing for \"{operand}\". Provide twin:jsonPathExpression.",
1064
1081
  "policyProfileNotSupported": "Policy \"{policyId}\" declares unsupported profile \"{unsupportedProfile}\". Only known profiles are supported.",
1065
1082
  "inheritedPolicyProfileNotSupported": "Inherited policy \"{policyId}\" declares an unsupported profile. All policies in the inheritFrom chain must declare only supported profiles."
1066
1083
  },
@@ -1082,8 +1099,7 @@
1082
1099
  "noAgreementCreated": "No agreement was created for offer with id: \"{offerId}\"",
1083
1100
  "assignerNotIdentity": "The assigner in the offer is not a single identity",
1084
1101
  "providerInitiatedNotSupported": "Provider initiated negotiations are currently not supported as the consumer identity is required to be set as the trust identity in the negotiation",
1085
- "callerNotAuthorizedForNegotiation": "The caller's verified identity does not match any authorized party in this negotiation",
1086
- "ecosystemPolicyNotNegotiable": "EcosystemPolicy with id: \"{offerId}\" cannot be submitted to DSP contract negotiation — it is applied directly by the rights-management engine"
1102
+ "callerNotAuthorizedForNegotiation": "The caller's verified identity does not match any authorized party in this negotiation"
1087
1103
  },
1088
1104
  "policyNegotiationAdminPointService": {
1089
1105
  "policyNotFound": "Policy with id: \"{notFoundId}\" not found",
@@ -1245,9 +1261,6 @@
1245
1261
  },
1246
1262
  "loggingProcessor": {
1247
1263
  "responseMessage": "<=== {statusCode} {method} {requestUrl} duration: {elapsedMicroSeconds}µs"
1248
- },
1249
- "informationRestClient": {
1250
- "notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
1251
1264
  }
1252
1265
  },
1253
1266
  "node": {
@@ -1300,7 +1313,8 @@
1300
1313
  "attestationMethodCreate": "Creating attestation method for organisation identity",
1301
1314
  "immutableProofMethodCreate": "Creating immutable proof method for organisation identity",
1302
1315
  "adminIdentityCreate": "Creating admin user identity",
1303
- "adminUserCreate": "Creating admin user"
1316
+ "adminUserCreate": "Creating admin user",
1317
+ "urlTransformParamKeyAdd": "Adding URL transform parameter encryption key"
1304
1318
  }
1305
1319
  },
1306
1320
  "identity-create": {
@@ -16839,5 +16853,11 @@
16839
16853
  "unece:specifiedParameter": "A parameter specified for this XHE context.",
16840
16854
  "unece:specifiedParameter_label": "Specified Parameter"
16841
16855
  }
16856
+ },
16857
+ "health": {
16858
+ "fastifyWebServer": {
16859
+ "reachable": "The Web Server is reachable",
16860
+ "unreachable": "The Web Server is unreachable"
16861
+ }
16842
16862
  }
16843
16863
  }