@twin.org/node 0.0.3-next.28 → 0.0.3-next.30
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 +19 -7
- package/docs/changelog.md +28 -0
- package/docs/open-api/spec.json +1109 -1347
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -668,7 +668,8 @@
|
|
|
668
668
|
"abstractScyllaDBConnector": {
|
|
669
669
|
"getFailed": "Getting item with \"{id}\" failed",
|
|
670
670
|
"findFailed": "Error while querying data on \"{table}\"",
|
|
671
|
-
"parseJSONFailed": "Parsing JSON failed for field \"{name}\" with value \"{value}\""
|
|
671
|
+
"parseJSONFailed": "Parsing JSON failed for field \"{name}\" with value \"{value}\"",
|
|
672
|
+
"comparisonNotSupported": "Dot-notation nested property path \"{property}\" is not supported in CQL queries"
|
|
672
673
|
},
|
|
673
674
|
"synchronisedEntityStorageConnector": {
|
|
674
675
|
"missingRequiredProperty": "The property \"{requiredProperty}\" is required when using the Synchronised Entity Storage Connector.",
|
|
@@ -789,8 +790,7 @@
|
|
|
789
790
|
"getControllerCapInfoFailed": "Getting the controller capability info for the identity failed",
|
|
790
791
|
"identityNotFound": "The identity could not be found \"{notFoundId}\"",
|
|
791
792
|
"identityDeleted": "The identity \"{identityId}\" has been deleted and cannot be used for minting",
|
|
792
|
-
"controllerTokenNotFound": "No controller token found for the identity \"{notFoundId}\" with the provided controller address"
|
|
793
|
-
"unexpectedSignerCall": "The no-op signer was unexpectedly called during a read-only identity lookup"
|
|
793
|
+
"controllerTokenNotFound": "No controller token found for the identity \"{notFoundId}\" with the provided controller address"
|
|
794
794
|
},
|
|
795
795
|
"iotaSmartContractUtils": {
|
|
796
796
|
"migrationFailed": "Smart contract migration failed",
|
|
@@ -969,14 +969,25 @@
|
|
|
969
969
|
"identityRetrievalFailed": "Failed to retrieve identity \"{id}\" information for policy id: \"{policyId}\""
|
|
970
970
|
},
|
|
971
971
|
"defaultPolicyArbiter": {
|
|
972
|
-
"
|
|
973
|
-
"informationTargetMissing": "The permission target references information key \"{key}\" but it does not exist.",
|
|
972
|
+
"ruleTargetNotSupported": "Rule target \"{target}\" is not supported. Only twin:<object>:<jsonPath> targets are currently supported.",
|
|
974
973
|
"multipleTargetsNotSupported": "Multiple targets in a single permission are not supported.",
|
|
975
974
|
"circularInheritanceDetected": "Circular inheritance detected: policy \"{policyId}\" inherits from \"{inheritFromId}\" which creates a cycle.",
|
|
976
975
|
"logicalConstraintOperandNotUnique": "Logical constraint operand is not unique within the policy, each operand must be unique.",
|
|
977
976
|
"inheritedPolicyNotFound": "The inherited policy with id \"{inheritFromId}\" could not be found in the Policy Administration Point.",
|
|
977
|
+
"assetCollectionSourceNotSupported": "AssetCollection source \"{source}\" is not supported. It must be a twin:jsonpath target.",
|
|
978
|
+
"partyCollectionSourceNotSupported": "PartyCollection source \"{source}\" is not supported.",
|
|
979
|
+
"assetHasPolicyNotSupported": "Asset hasPolicy is not supported. Policies must be referenced through the agreement directly.",
|
|
980
|
+
"assetPartOfNotSupported": "Asset partOf is not supported. AssetCollection membership is resolved through the agreement directly.",
|
|
981
|
+
"partyAssignerOfNotSupported": "Party assignerOf is not supported. Assigner roles must be specified directly on individual rules or the agreement.",
|
|
982
|
+
"partyAssigneeOfNotSupported": "Party assigneeOf is not supported. Assignee roles must be specified directly on individual rules or the agreement.",
|
|
983
|
+
"partyPartOfNotSupported": "Party partOf is not supported. PartyCollection membership is resolved through the agreement directly.",
|
|
978
984
|
"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}\"."
|
|
985
|
+
"maxInheritanceDepthExceeded": "The maximum inheritance depth of {maxInheritanceDepth} has been exceeded when processing policy \"{policyId}\".",
|
|
986
|
+
"rightOperandReferenceNotSupported": "Constraint rightOperandReference is not supported. Use rightOperand with a typed JSONPath value instead.",
|
|
987
|
+
"constraintDataTypeNotSupported": "Constraint dataType is not supported. Value coercion based on dataType is not implemented.",
|
|
988
|
+
"constraintUnitNotSupported": "Constraint unit is not supported. Unit-aware comparison is not implemented.",
|
|
989
|
+
"constraintStatusNotSupported": "Constraint status is not supported. State-based evaluation is not implemented.",
|
|
990
|
+
"policyProfileNotSupported": "Policy \"{policyId}\" declares a profile. Profile-specific semantics are not supported."
|
|
980
991
|
},
|
|
981
992
|
"defaultPolicyEnforcementProcessor": {
|
|
982
993
|
"targetNotJsonPath": "The policy decision target \"{target}\" is not a valid JSON-path string, it should be a minimum of $.",
|
|
@@ -1005,7 +1016,8 @@
|
|
|
1005
1016
|
"actionExecutionFailed": "Action execution failed for id: \"{actionId}\", at stage \"{stage}\", policy id: \"{policyId}\""
|
|
1006
1017
|
},
|
|
1007
1018
|
"policyNegotiationPointRestClient": {
|
|
1008
|
-
"notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
|
|
1019
|
+
"notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component",
|
|
1020
|
+
"publicOriginNotRequired": "The publicOrigin parameter is not required on the REST client"
|
|
1009
1021
|
},
|
|
1010
1022
|
"synchronisedStorageService": {
|
|
1011
1023
|
"notTrustedNode": "This method can only be called on a trusted node",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [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
|
+
|
|
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.29 to 0.0.3-next.30
|
|
16
|
+
|
|
17
|
+
## [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)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* update dependencies ([aab05b5](https://github.com/twinfoundation/node/commit/aab05b552152a208a504fb9a080603f1990d4f79))
|
|
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.28 to 0.0.3-next.29
|
|
30
|
+
|
|
3
31
|
## [0.0.3-next.28](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.27...node-v0.0.3-next.28) (2026-03-12)
|
|
4
32
|
|
|
5
33
|
|