@twin.org/node 0.0.3-next.30 → 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.
- package/dist/locales/en.json +24 -8
- package/docs/changelog.md +14 -0
- package/docs/open-api/spec.json +1236 -194
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -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}\"",
|
|
@@ -987,7 +1000,8 @@
|
|
|
987
1000
|
"constraintDataTypeNotSupported": "Constraint dataType is not supported. Value coercion based on dataType is not implemented.",
|
|
988
1001
|
"constraintUnitNotSupported": "Constraint unit is not supported. Unit-aware comparison is not implemented.",
|
|
989
1002
|
"constraintStatusNotSupported": "Constraint status is not supported. State-based evaluation is not implemented.",
|
|
990
|
-
"policyProfileNotSupported": "Policy \"{policyId}\" declares
|
|
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."
|
|
991
1005
|
},
|
|
992
1006
|
"defaultPolicyEnforcementProcessor": {
|
|
993
1007
|
"targetNotJsonPath": "The policy decision target \"{target}\" is not a valid JSON-path string, it should be a minimum of $.",
|
|
@@ -1007,10 +1021,12 @@
|
|
|
1007
1021
|
"noAgreementCreated": "No agreement was created for offer with id: \"{offerId}\"",
|
|
1008
1022
|
"assignerNotIdentity": "The assigner in the offer is not a single identity",
|
|
1009
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",
|
|
1010
|
-
"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"
|
|
1011
1026
|
},
|
|
1012
1027
|
"policyNegotiationAdminPointService": {
|
|
1013
|
-
"policyNotFound": "Policy with id: \"{notFoundId}\" not found"
|
|
1028
|
+
"policyNotFound": "Policy with id: \"{notFoundId}\" not found",
|
|
1029
|
+
"cleanupFailed": "Failed to cleanup old negotiations"
|
|
1014
1030
|
},
|
|
1015
1031
|
"policyExecutionPointService": {
|
|
1016
1032
|
"actionExecutionFailed": "Action execution failed for id: \"{actionId}\", at stage \"{stage}\", policy id: \"{policyId}\""
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
3
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)
|
|
4
18
|
|
|
5
19
|
|