@twin.org/node 0.0.3-next.32 → 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",
@@ -437,6 +447,14 @@
437
447
  "streamNotFound": "The stream with the Id \"{notFoundId}\" was not found",
438
448
  "streamEntryNotFound": "The stream entry with the Id \"{notFoundId}\" was not found"
439
449
  },
450
+ "automationService": {
451
+ "actionCreateFailed": "Creating action of type \"{actionType}\" with trigger \"{trigger}\" failed",
452
+ "actionRemoveFailed": "Removing action with id \"{actionId}\" failed",
453
+ "actionFailed": "Triggering action \"{name}\" with trigger \"{trigger}\" failed",
454
+ "actionNotFound": "Action with id \"{notFoundId}\" not found",
455
+ "actionGetFailed": "Getting action with id \"{actionId}\" failed",
456
+ "actionTypeNotFound": "Action type \"{actionType}\" not found for trigger \"{trigger}\""
457
+ },
440
458
  "taskSchedulerService": {
441
459
  "taskFailed": "Task with id \"{id}\" failed to run"
442
460
  },
@@ -719,6 +737,7 @@
719
737
  "resolveDocumentFailed": "Resolving the document failed"
720
738
  },
721
739
  "entityStorageIdentityConnector": {
740
+ "addAlsoKnownAsFailed": "Adding to the alsoKnownAs property failed",
722
741
  "addServiceFailed": "Adding the service failed",
723
742
  "addVerificationMethodFailed": "Adding the verification method failed",
724
743
  "algorithmKeyTypeMismatch": "Algorithm \"{algorithm}\" requires key type \"{expectedKeyType}\", but key \"{keyId}\" has type \"{actualKeyType}\"",
@@ -729,11 +748,13 @@
729
748
  "createVerifiableCredentialFailed": "Creating the verifiable credential failed",
730
749
  "createVerifiablePresentationFailed": "Creating the verifiable presentation failed",
731
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}\"",
732
752
  "jwkSignatureFailed": "The signature on the JWK failed verification",
733
753
  "methodMissing": "The verification method specified does not exist \"{method}\"",
734
754
  "missingDid": "The full id including DID is required",
735
755
  "privateKeyMissing": "The private key could not be found for key \"{keyId}\"",
736
756
  "publicKeyJwkMissing": "The verification method contains no publicKeyJwk in method \"{method}\"",
757
+ "removeAlsoKnownAsFailed": "Removing from the alsoKnownAs property failed",
737
758
  "removeDocumentFailed": "Removing the document failed",
738
759
  "removeServiceFailed": "Removing the service failed",
739
760
  "removeVerificationMethodFailed": "Removing the verification method failed",
@@ -759,6 +780,7 @@
759
780
  "resolveDocumentFailed": "Resolving the document failed \"{documentId}\""
760
781
  },
761
782
  "iotaIdentityConnector": {
783
+ "addAlsoKnownAsFailed": "Adding to the alsoKnownAs property failed",
762
784
  "addServiceFailed": "Adding the service failed",
763
785
  "addVerificationMethodFailed": "Adding the verification method failed",
764
786
  "algorithmKeyTypeMismatch": "Algorithm \"{algorithm}\" requires key type \"{expectedKeyType}\", but key \"{keyId}\" has type \"{actualKeyType}\"",
@@ -772,6 +794,7 @@
772
794
  "documentNotFound": "The document could not be found",
773
795
  "gasStationTransactionBuildFailed": "Building the gas station transaction failed",
774
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}\"",
775
798
  "invalidSubjectId": "The subject id format is invalid it must be a Url or Urn, it is \"{subjectId}\"",
776
799
  "methodMissing": "The verification method specified does not exist \"{method}\"",
777
800
  "missingControllerToken": "The controller token is missing",
@@ -779,6 +802,7 @@
779
802
  "privateKeyMissing": "The verification method contains no privateKey \"{keyId}\"",
780
803
  "publicKeyJwkMethodMissing": "The verification method contains no publicKeyJwk in method \"{method}\"",
781
804
  "publicKeyJwkMissing": "The verification method contains no publicKeyJwk in JWK \"{jwk}\"",
805
+ "removeAlsoKnownAsFailed": "Removing from the alsoKnownAs property failed",
782
806
  "removeDocumentFailed": "Removing the document failed",
783
807
  "removeServiceFailed": "Removing the service failed",
784
808
  "removeVerificationMethodFailed": "Removing the verification method failed",
@@ -839,6 +863,8 @@
839
863
  "verificationMethodRemoveFailed": "Removing the verification method failed \"{verificationMethodId}\"",
840
864
  "serviceCreateFailed": "Creating the service failed for identity \"{identity}\", service \"{serviceId}\"",
841
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}\"",
842
868
  "verifiableCredentialCreateFailed": "Creating the verifiable credential failed for method \"{verificationMethodId}\"",
843
869
  "verifiableCredentialVerifyFailed": "Verifying the verifiable credential failed",
844
870
  "verifiableCredentialRevokeFailed": "Revoking the verifiable credential failed for document \"{issuerIdentity}\" with index \"{credentialIndex}\"",
@@ -977,13 +1003,20 @@
977
1003
  "creationFailedOutput": "Failed to parse the created notarization from transaction output.",
978
1004
  "deleteLockActive": "Deletion is currently locked for this notarization.",
979
1005
  "getFailed": "Failed to get the notarization.",
980
- "invalidDate": "The value \"{{value}}\" is not a valid ISO date-time.",
981
- "namespaceMismatch": "The notarization id \"{{id}}\" is not in the expected namespace \"{{namespace}}\".",
1006
+ "invalidDate": "The value \"{value}\" is not a valid ISO date-time.",
1007
+ "namespaceMismatch": "The notarization id \"{id}\" is not in the expected namespace \"{namespace}\".",
982
1008
  "removeFailed": "Failed to remove the notarization.",
983
1009
  "transferFailed": "Failed to transfer the notarization.",
984
1010
  "transferLockActive": "Transfer is currently locked for this notarization.",
985
1011
  "updateFailed": "Failed to update the notarization.",
986
- "updateLockActive": "Updates are currently locked for this notarization."
1012
+ "updateLockActive": "Updates are currently locked for this notarization.",
1013
+ "updateWhileLocked": "Cannot update state while notarization is locked for updates",
1014
+ "destroyWhileLocked": "Cannot destroy notarization while locked for deletion",
1015
+ "lockTimeNotSatisfied": "The lock time is not satisfied",
1016
+ "untilDestroyedLockNotAllowed": "Delete lock cannot be UntilDestroyed",
1017
+ "dynamicNotarizationInvariants": "Invariants for dynamic notarization are broken by the specified",
1018
+ "lockedNotarizationInvariants": "Invariants for locked notarization are broken by the specified",
1019
+ "unknownAbortCode": "An unknown abort code was returned: \"{abortCode}\""
987
1020
  },
988
1021
  "notarizationService": {
989
1022
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the notarization service \"{namespace}\"",
@@ -1007,9 +1040,7 @@
1007
1040
  "offerNotFound": "Offer not found with id: \"{notFoundId}\"",
1008
1041
  "offerTypeMismatch": "The policy with id: \"{offerId}\" is not of type Offer, it is of type: \"{type}\".",
1009
1042
  "setNotFound": "Set not found with id: \"{notFoundId}\"",
1010
- "setTypeMismatch": "The policy with id: \"{setId}\" is not of type Set, it is of type: \"{type}\".",
1011
- "ecosystemPolicyNotFound": "Ecosystem policy not found with id: \"{notFoundId}\"",
1012
- "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}\"."
1013
1044
  },
1014
1045
  "policyDecisionPointService": {
1015
1046
  "decidingFailed": "Deciding on policies for policy id \"{policyId}\" failed in arbiter with id: \"{arbiterId}\"",
@@ -1033,7 +1064,7 @@
1033
1064
  "circularInheritanceDetected": "Circular inheritance detected: policy \"{policyId}\" inherits from \"{inheritFromId}\" which creates a cycle.",
1034
1065
  "logicalConstraintOperandNotUnique": "Logical constraint operand is not unique within the policy, each operand must be unique.",
1035
1066
  "inheritedPolicyNotFound": "The inherited policy with id \"{inheritFromId}\" could not be found in the Policy Administration Point.",
1036
- "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.",
1037
1068
  "partyCollectionSourceNotSupported": "PartyCollection source \"{source}\" is not supported.",
1038
1069
  "assetHasPolicyNotSupported": "Asset hasPolicy is not supported. Policies must be referenced through the agreement directly.",
1039
1070
  "assetPartOfNotSupported": "Asset partOf is not supported. AssetCollection membership is resolved through the agreement directly.",
@@ -1046,6 +1077,7 @@
1046
1077
  "constraintDataTypeNotSupported": "Constraint dataType is not supported. Value coercion based on dataType is not implemented.",
1047
1078
  "constraintUnitNotSupported": "Constraint unit is not supported. Unit-aware comparison is not implemented.",
1048
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.",
1049
1081
  "policyProfileNotSupported": "Policy \"{policyId}\" declares unsupported profile \"{unsupportedProfile}\". Only known profiles are supported.",
1050
1082
  "inheritedPolicyProfileNotSupported": "Inherited policy \"{policyId}\" declares an unsupported profile. All policies in the inheritFrom chain must declare only supported profiles."
1051
1083
  },
@@ -1067,8 +1099,7 @@
1067
1099
  "noAgreementCreated": "No agreement was created for offer with id: \"{offerId}\"",
1068
1100
  "assignerNotIdentity": "The assigner in the offer is not a single identity",
1069
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",
1070
- "callerNotAuthorizedForNegotiation": "The caller's verified identity does not match any authorized party in this negotiation",
1071
- "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"
1072
1103
  },
1073
1104
  "policyNegotiationAdminPointService": {
1074
1105
  "policyNotFound": "Policy with id: \"{notFoundId}\" not found",
@@ -1230,9 +1261,6 @@
1230
1261
  },
1231
1262
  "loggingProcessor": {
1232
1263
  "responseMessage": "<=== {statusCode} {method} {requestUrl} duration: {elapsedMicroSeconds}µs"
1233
- },
1234
- "informationRestClient": {
1235
- "notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
1236
1264
  }
1237
1265
  },
1238
1266
  "node": {
@@ -1285,7 +1313,8 @@
1285
1313
  "attestationMethodCreate": "Creating attestation method for organisation identity",
1286
1314
  "immutableProofMethodCreate": "Creating immutable proof method for organisation identity",
1287
1315
  "adminIdentityCreate": "Creating admin user identity",
1288
- "adminUserCreate": "Creating admin user"
1316
+ "adminUserCreate": "Creating admin user",
1317
+ "urlTransformParamKeyAdd": "Adding URL transform parameter encryption key"
1289
1318
  }
1290
1319
  },
1291
1320
  "identity-create": {
@@ -1911,6 +1940,13 @@
1911
1940
  "engineTypes": {
1912
1941
  "configuringEntityStorage": "Configuring {element} with name \"{storageName}\" using \"{storageType}\" connector"
1913
1942
  },
1943
+ "fetchAction": {
1944
+ "fetch": "Fetch \"{url}\" with method \"{method}\""
1945
+ },
1946
+ "automationService": {
1947
+ "trigger": "Triggering automation action with trigger \"{trigger}\"",
1948
+ "actionTriggered": "Triggered action \"{name}\" with trigger \"{trigger}\""
1949
+ },
1914
1950
  "taskSchedulerService": {
1915
1951
  "taskAdded": "Task with id \"{id}\" added",
1916
1952
  "taskRemoved": "Task with id \"{id}\" removed",
@@ -16817,5 +16853,11 @@
16817
16853
  "unece:specifiedParameter": "A parameter specified for this XHE context.",
16818
16854
  "unece:specifiedParameter_label": "Specified Parameter"
16819
16855
  }
16856
+ },
16857
+ "health": {
16858
+ "fastifyWebServer": {
16859
+ "reachable": "The Web Server is reachable",
16860
+ "unreachable": "The Web Server is unreachable"
16861
+ }
16820
16862
  }
16821
16863
  }