@twin.org/node 0.0.3-next.29 → 0.0.3-next.31

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.
@@ -65,20 +65,29 @@
65
65
  "updateUserFailed": "Updating the user failed",
66
66
  "removeUserFailed": "Removing the user failed",
67
67
  "updatePasswordFailed": "Updating the user's password failed",
68
- "userNotFound": "The user with the specified e-mail could not be found \"{notFoundId}\"",
68
+ "userNotFound": "The user with the specified e-mail could not be found \"{notFoundId}\""
69
+ },
70
+ "passwordHelper": {
69
71
  "currentPasswordMismatch": "The current password is incorrect"
70
72
  },
73
+ "entityStorageAuthenticationRateService": {
74
+ "actionConfigMissing": "No rate-limit configuration exists for action \"{action}\".",
75
+ "rateLimitExceeded": "The rate limit for action \"{action}\" has been exceeded. Retry after {retryAfterSeconds} seconds."
76
+ },
71
77
  "tokenHelper": {
72
78
  "missing": "The JSON Web token could not be found in the authorization header",
73
79
  "payloadMissingSubject": "The JSON Web token payload does not contain a subject",
74
80
  "payloadMissingOrganization": "The JSON Web token payload does not contain an organization",
75
81
  "expired": "The JSON Web token has expired",
76
- "insufficientScopes": "The JSON Web token does not have the required scopes to access this resource"
82
+ "insufficientScopes": "The JSON Web token does not have the required scopes to access this resource",
83
+ "userNotVerified": "The user associated with the JSON Web token could not be verified",
84
+ "organizationNotVerified": "The organization associated with the JSON Web token could not be verified"
77
85
  },
78
86
  "authHeaderProcessor": {
79
87
  "tenantIdMismatch": "The tenant ID in the token does not match the tenant ID in the context"
80
88
  },
81
89
  "validation": {
90
+ "saltEntropyTooLow": "Salt must have at least 8 unique characters for sufficient entropy.",
82
91
  "beEmpty": "{fieldName} must be empty",
83
92
  "beNotEmpty": "{fieldName} must not be empty",
84
93
  "beText": "{fieldName} must be text",
@@ -561,7 +570,6 @@
561
570
  "activityStillProcessing": "Activity is still being processed",
562
571
  "noFailedTasksToRetry": "Activity has error status but no failed tasks to retry",
563
572
  "invalidActivityGeneratorIdentity": "Invalid activity. No identity specified either on 'generator' or 'actor'",
564
- "unknownActivityLogEntryId": "Unknown Activity Log Entry Id \"{activityLogEntryId}\"",
565
573
  "tooManyAppsRegistered": "There are several DS Apps registered for Dataset \"{datasetId}\"",
566
574
  "noAppRegistered": "There are no DS Apps registered for Dataset \"{datasetId}\"",
567
575
  "notExpandableType": "Entity type \"{type}\" cannot be expanded",
@@ -569,7 +577,10 @@
569
577
  "transferProcessNotFound": "Transfer Process not found for consumerPid \"{notFoundId}\"",
570
578
  "transferNotInStartedState": "Transfer Process is not in STARTED state. Current state: \"{currentState}\"",
571
579
  "transferMissingDatasetId": "Transfer Process is missing datasetId",
572
- "schemaNotFound": "Schema \"{schemaId}\" not found"
580
+ "schemaNotFound": "Schema \"{schemaId}\" not found",
581
+ "cleanupFailed": "Error occurred during cleanup of activity logs",
582
+ "invalidProcessingGroupId": "Invalid processing group id \"{processingGroupId}\" specified in activity query",
583
+ "missingHandleActivity": "Handler App \"{dataspaceAppId}\" does not export a \"handleActivity\" function"
573
584
  },
574
585
  "dataspaceDataPlaneSocketClient": {
575
586
  "socketConnect": "Failure during socket connect",
@@ -950,7 +961,9 @@
950
961
  "offerNotFound": "Offer not found with id: \"{notFoundId}\"",
951
962
  "offerTypeMismatch": "The policy with id: \"{offerId}\" is not of type Offer, it is of type: \"{type}\".",
952
963
  "setNotFound": "Set not found with id: \"{notFoundId}\"",
953
- "setTypeMismatch": "The policy with id: \"{setId}\" is not of type Set, it is of type: \"{type}\"."
964
+ "setTypeMismatch": "The policy with id: \"{setId}\" is not of type Set, it is of type: \"{type}\".",
965
+ "ecosystemPolicyNotFound": "Ecosystem policy not found with id: \"{notFoundId}\"",
966
+ "ecosystemPolicyTypeMismatch": "The policy with id: \"{ecosystemPolicyId}\" is not of type EcosystemPolicy, it is of type: \"{type}\"."
954
967
  },
955
968
  "policyDecisionPointService": {
956
969
  "decidingFailed": "Deciding on policies for policy id \"{policyId}\" failed in arbiter with id: \"{arbiterId}\"",
@@ -969,14 +982,26 @@
969
982
  "identityRetrievalFailed": "Failed to retrieve identity \"{id}\" information for policy id: \"{policyId}\""
970
983
  },
971
984
  "defaultPolicyArbiter": {
972
- "jsonPathOperandMissingTarget": "The operand \"{operand}\" is missing a JSONPath target after the twin:jsonpath: prefix.",
973
- "informationTargetMissing": "The permission target references information key \"{key}\" but it does not exist.",
985
+ "ruleTargetNotSupported": "Rule target \"{target}\" is not supported. Only twin:<object>:<jsonPath> targets are currently supported.",
974
986
  "multipleTargetsNotSupported": "Multiple targets in a single permission are not supported.",
975
987
  "circularInheritanceDetected": "Circular inheritance detected: policy \"{policyId}\" inherits from \"{inheritFromId}\" which creates a cycle.",
976
988
  "logicalConstraintOperandNotUnique": "Logical constraint operand is not unique within the policy, each operand must be unique.",
977
989
  "inheritedPolicyNotFound": "The inherited policy with id \"{inheritFromId}\" could not be found in the Policy Administration Point.",
990
+ "assetCollectionSourceNotSupported": "AssetCollection source \"{source}\" is not supported. It must be a twin:jsonpath target.",
991
+ "partyCollectionSourceNotSupported": "PartyCollection source \"{source}\" is not supported.",
992
+ "assetHasPolicyNotSupported": "Asset hasPolicy is not supported. Policies must be referenced through the agreement directly.",
993
+ "assetPartOfNotSupported": "Asset partOf is not supported. AssetCollection membership is resolved through the agreement directly.",
994
+ "partyAssignerOfNotSupported": "Party assignerOf is not supported. Assigner roles must be specified directly on individual rules or the agreement.",
995
+ "partyAssigneeOfNotSupported": "Party assigneeOf is not supported. Assignee roles must be specified directly on individual rules or the agreement.",
996
+ "partyPartOfNotSupported": "Party partOf is not supported. PartyCollection membership is resolved through the agreement directly.",
978
997
  "noObligationEnforcersRegistered": "No Policy Obligation Enforcers are registered and they are required to enforce duties.",
979
- "maxInheritanceDepthExceeded": "The maximum inheritance depth of {maxInheritanceDepth} has been exceeded when processing policy \"{policyId}\"."
998
+ "maxInheritanceDepthExceeded": "The maximum inheritance depth of {maxInheritanceDepth} has been exceeded when processing policy \"{policyId}\".",
999
+ "rightOperandReferenceNotSupported": "Constraint rightOperandReference is not supported. Use rightOperand with a typed JSONPath value instead.",
1000
+ "constraintDataTypeNotSupported": "Constraint dataType is not supported. Value coercion based on dataType is not implemented.",
1001
+ "constraintUnitNotSupported": "Constraint unit is not supported. Unit-aware comparison is not implemented.",
1002
+ "constraintStatusNotSupported": "Constraint status is not supported. State-based evaluation is not implemented.",
1003
+ "policyProfileNotSupported": "Policy \"{policyId}\" declares unsupported profile \"{unsupportedProfile}\". Only known profiles are supported.",
1004
+ "inheritedPolicyProfileNotSupported": "Inherited policy \"{policyId}\" declares an unsupported profile. All policies in the inheritFrom chain must declare only supported profiles."
980
1005
  },
981
1006
  "defaultPolicyEnforcementProcessor": {
982
1007
  "targetNotJsonPath": "The policy decision target \"{target}\" is not a valid JSON-path string, it should be a minimum of $.",
@@ -996,10 +1021,12 @@
996
1021
  "noAgreementCreated": "No agreement was created for offer with id: \"{offerId}\"",
997
1022
  "assignerNotIdentity": "The assigner in the offer is not a single identity",
998
1023
  "providerInitiatedNotSupported": "Provider initiated negotiations are currently not supported as the consumer identity is required to be set as the trust identity in the negotiation",
999
- "callerNotAuthorizedForNegotiation": "The caller's verified identity does not match any authorized party in this negotiation"
1024
+ "callerNotAuthorizedForNegotiation": "The caller's verified identity does not match any authorized party in this negotiation",
1025
+ "ecosystemPolicyNotNegotiable": "EcosystemPolicy with id: \"{offerId}\" cannot be submitted to DSP contract negotiation — it is applied directly by the rights-management engine"
1000
1026
  },
1001
1027
  "policyNegotiationAdminPointService": {
1002
- "policyNotFound": "Policy with id: \"{notFoundId}\" not found"
1028
+ "policyNotFound": "Policy with id: \"{notFoundId}\" not found",
1029
+ "cleanupFailed": "Failed to cleanup old negotiations"
1003
1030
  },
1004
1031
  "policyExecutionPointService": {
1005
1032
  "actionExecutionFailed": "Action execution failed for id: \"{actionId}\", at stage \"{stage}\", policy id: \"{policyId}\""
package/docs/changelog.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.31](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.30...node-v0.0.3-next.31) (2026-04-14)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **node:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/node-core bumped from 0.0.3-next.30 to 0.0.3-next.31
16
+
17
+ ## [0.0.3-next.30](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.29...node-v0.0.3-next.30) (2026-04-06)
18
+
19
+
20
+ ### Miscellaneous Chores
21
+
22
+ * **node:** Synchronize repo versions
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @twin.org/node-core bumped from 0.0.3-next.29 to 0.0.3-next.30
30
+
3
31
  ## [0.0.3-next.29](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.28...node-v0.0.3-next.29) (2026-03-20)
4
32
 
5
33