@twin.org/node 0.0.3-next.59 → 0.0.3-next.60
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 +8 -5
- package/docs/changelog.md +14 -0
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -234,7 +234,8 @@
|
|
|
234
234
|
"lockNotFound": "The key \"{key}\" has no active lock",
|
|
235
235
|
"lockAlreadyReleased": "The key \"{key}\" is not currently locked",
|
|
236
236
|
"lockTimeout": "Failed to acquire lock for key \"{key}\" within the timeout of {timeout} milliseconds",
|
|
237
|
-
"bufferFetchFailed": "Failed to retrieve shared buffer for key \"{key}\" from the main thread"
|
|
237
|
+
"bufferFetchFailed": "Failed to retrieve shared buffer for key \"{key}\" from the main thread",
|
|
238
|
+
"invalidTimeout": "The timeout value \"{timeoutMs}\" is invalid, it must be a non-negative integer"
|
|
238
239
|
},
|
|
239
240
|
"sharedObjectBuffer": {
|
|
240
241
|
"notCreated": "The shared buffer for object \"{objectId}\" has not been created",
|
|
@@ -378,6 +379,9 @@
|
|
|
378
379
|
"dataspaceProtocolHelper": {
|
|
379
380
|
"schemaNotRegistered": "JSON Schema \"{schemaId}\" is not registered in DataTypeHandlerFactory"
|
|
380
381
|
},
|
|
382
|
+
"silentTelemetryConnector": {
|
|
383
|
+
"notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
|
|
384
|
+
},
|
|
381
385
|
"engineCore": {
|
|
382
386
|
"componentUnknownType": "Unknown component type \"{type}\" specified for \"{componentType}\"",
|
|
383
387
|
"bootstrapFailed": "Failed to bootstrap component type \"{className}\" with instance type \"{instanceType}\"",
|
|
@@ -438,9 +442,6 @@
|
|
|
438
442
|
"verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
|
|
439
443
|
"verificationMethodJwkNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" is missing the JWK"
|
|
440
444
|
},
|
|
441
|
-
"silentTelemetryConnector": {
|
|
442
|
-
"notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
|
|
443
|
-
},
|
|
444
445
|
"attestationService": {
|
|
445
446
|
"noConnectors": "There are no connectors registered with the attestation factory",
|
|
446
447
|
"attestFailed": "The attestation of the data failed",
|
|
@@ -611,7 +612,7 @@
|
|
|
611
612
|
"invalidTransferSuspensionMessage": "Transfer Suspension Message does not conform to Dataspace Protocol specification",
|
|
612
613
|
"invalidTransferTerminationMessage": "Transfer Termination Message does not conform to Dataspace Protocol specification",
|
|
613
614
|
"agreementLookupFailed": "Failed to lookup Agreement: {agreementId}",
|
|
614
|
-
"agreementNotFound": "Agreement not found",
|
|
615
|
+
"agreementNotFound": "Agreement not found \"{notFoundId}\"",
|
|
615
616
|
"agreementMissingTarget": "Agreement is missing target (dataset): {agreementId}",
|
|
616
617
|
"agreementMultipleTargetsNotSupported": "Agreement has multiple targets which is not supported. Only single target Agreements are allowed: {agreementId}, target count: {targetCount}",
|
|
617
618
|
"agreementTargetMissingUid": "Agreement target object is missing required \"uid\" property: {agreementId}",
|
|
@@ -2081,6 +2082,8 @@
|
|
|
2081
2082
|
"startingContractNegotiation": "Starting contract negotiation with provider",
|
|
2082
2083
|
"offerFoundInCatalog": "Offer found in Federated Catalogue and validated",
|
|
2083
2084
|
"negotiationInitiated": "Contract negotiation initiated successfully",
|
|
2085
|
+
"implicitTrustAgreementCreated": "Implicit trust agreement created (agreementId: {agreementId}, datasetId: {datasetId}, organizationId: {organizationId})",
|
|
2086
|
+
"implicitTrustAgreementReused": "Existing implicit trust agreement reused (agreementId: {agreementId}, datasetId: {datasetId}, organizationId: {organizationId})",
|
|
2084
2087
|
"getNegotiation": "Retrieving negotiation status",
|
|
2085
2088
|
"negotiationStateRetrieved": "Negotiation state retrieved successfully",
|
|
2086
2089
|
"getNegotiationHistory": "Retrieving negotiation history",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.60](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.59...node-v0.0.3-next.60) (2026-06-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add mutex settings ([#222](https://github.com/iotaledger/twin-node/issues/222)) ([492c55f](https://github.com/iotaledger/twin-node/commit/492c55f67d5f70c2a4a27dfdb2700a644ee87955))
|
|
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.59 to 0.0.3-next.60
|
|
16
|
+
|
|
3
17
|
## [0.0.3-next.59](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.58...node-v0.0.3-next.59) (2026-06-18)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.60",
|
|
4
4
|
"description": "TWIN Node serving APIs using the specified configuration",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/node-core": "0.0.3-next.
|
|
17
|
+
"@twin.org/node-core": "0.0.3-next.60"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|