@twin.org/node 0.0.3-next.58 → 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.
@@ -13,8 +13,7 @@
13
13
  "cliCommandMissing": "CLI command \"{command}\" is not recognised",
14
14
  "cliCommandParamMissing": "Parameter \"{param}\" is required for command \"{command}\"",
15
15
  "cliCommandParamExtra": "Parameter(s) \"{params}\" are not recognised for command \"{command}\"",
16
- "cliEnvVarMissing": "Environment variable \"{envVar}\" does not exist",
17
- "invalidPublicOrigin": "The public origin \"{publicOrigin}\" is not a valid origin URL, it should be in the format \"protocol://host[:port]\"."
16
+ "cliEnvVarMissing": "Environment variable \"{envVar}\" does not exist"
18
17
  },
19
18
  "bootstrapLegacy": {
20
19
  "noFeaturesEnabled": "No features are enabled in legacy bootstrap mode, at least one feature must be enabled.",
@@ -235,7 +234,8 @@
235
234
  "lockNotFound": "The key \"{key}\" has no active lock",
236
235
  "lockAlreadyReleased": "The key \"{key}\" is not currently locked",
237
236
  "lockTimeout": "Failed to acquire lock for key \"{key}\" within the timeout of {timeout} milliseconds",
238
- "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"
239
239
  },
240
240
  "sharedObjectBuffer": {
241
241
  "notCreated": "The shared buffer for object \"{objectId}\" has not been created",
@@ -379,6 +379,9 @@
379
379
  "dataspaceProtocolHelper": {
380
380
  "schemaNotRegistered": "JSON Schema \"{schemaId}\" is not registered in DataTypeHandlerFactory"
381
381
  },
382
+ "silentTelemetryConnector": {
383
+ "notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
384
+ },
382
385
  "engineCore": {
383
386
  "componentUnknownType": "Unknown component type \"{type}\" specified for \"{componentType}\"",
384
387
  "bootstrapFailed": "Failed to bootstrap component type \"{className}\" with instance type \"{instanceType}\"",
@@ -439,9 +442,6 @@
439
442
  "verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
440
443
  "verificationMethodJwkNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" is missing the JWK"
441
444
  },
442
- "silentTelemetryConnector": {
443
- "notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
444
- },
445
445
  "attestationService": {
446
446
  "noConnectors": "There are no connectors registered with the attestation factory",
447
447
  "attestFailed": "The attestation of the data failed",
@@ -612,7 +612,7 @@
612
612
  "invalidTransferSuspensionMessage": "Transfer Suspension Message does not conform to Dataspace Protocol specification",
613
613
  "invalidTransferTerminationMessage": "Transfer Termination Message does not conform to Dataspace Protocol specification",
614
614
  "agreementLookupFailed": "Failed to lookup Agreement: {agreementId}",
615
- "agreementNotFound": "Agreement not found",
615
+ "agreementNotFound": "Agreement not found \"{notFoundId}\"",
616
616
  "agreementMissingTarget": "Agreement is missing target (dataset): {agreementId}",
617
617
  "agreementMultipleTargetsNotSupported": "Agreement has multiple targets which is not supported. Only single target Agreements are allowed: {agreementId}, target count: {targetCount}",
618
618
  "agreementTargetMissingUid": "Agreement target object is missing required \"uid\" property: {agreementId}",
@@ -1343,7 +1343,8 @@
1343
1343
  "badRequest": "The web server could not handle the request",
1344
1344
  "noRestProcessors": "You must configure at least one REST processor",
1345
1345
  "noSocketProcessors": "You must configure at least one socket processor",
1346
- "postProcessorError": "There was a failure after in a post processor for route \"{route}\""
1346
+ "postProcessorError": "There was a failure after in a post processor for route \"{route}\"",
1347
+ "invalidPublicOrigin": "The public origin \"{publicOrigin}\" is not a valid origin URL, it should be in the format \"protocol://host[:port]\"."
1347
1348
  },
1348
1349
  "restRouteProcessor": {
1349
1350
  "routeNotFound": "The web server could not find the REST route \"{notFoundId}\""
@@ -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,33 @@
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
+
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)
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.58 to 0.0.3-next.59
30
+
3
31
  ## [0.0.3-next.58](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.57...node-v0.0.3-next.58) (2026-06-18)
4
32
 
5
33
 
@@ -14659,7 +14659,7 @@
14659
14659
  "parameters": [
14660
14660
  {
14661
14661
  "name": "id",
14662
- "description": "The id of the stream to update the get in.",
14662
+ "description": "The id of the stream to get the entry from.",
14663
14663
  "in": "path",
14664
14664
  "required": true,
14665
14665
  "schema": {
@@ -14670,7 +14670,7 @@
14670
14670
  },
14671
14671
  {
14672
14672
  "name": "entryId",
14673
- "description": "The id of the entry to update.",
14673
+ "description": "The id of the entry to get.",
14674
14674
  "in": "path",
14675
14675
  "required": true,
14676
14676
  "schema": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/node",
3
- "version": "0.0.3-next.58",
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.58"
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"