@twin.org/node 0.0.3-next.25 → 0.0.3-next.27

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.
@@ -534,7 +534,14 @@
534
534
  "datasetHasNoValidOffers": "Dataset \"{datasetId}\" has no valid ODRL offer objects. Cannot negotiate without a valid offer.",
535
535
  "offerNotFoundInDataset": "Offer \"{offerId}\" not found in dataset \"{datasetId}\". Available offers: {availableOffers}",
536
536
  "pnapNotConfigured": "Policy Negotiation Admin Point not configured. Cannot retrieve negotiation history without PNAP.",
537
- "negotiationCallbackError": "Negotiation callback \"{key}\" threw an error during {method} for negotiation {negotiationId}"
537
+ "negotiationCallbackError": "Negotiation callback \"{key}\" threw an error during {method} for negotiation {negotiationId}",
538
+ "catalogDatasetMissingId": "Catalog dataset is missing a required @id identifier",
539
+ "providerIdentityMissing": "Provider identity (DID) is required to sign data access tokens but was not set on the Transfer Process",
540
+ "callerNotAuthorizedForAgreement": "The caller's verified identity does not match the agreement assignee (consumer)",
541
+ "callerNotAuthorizedAsConsumer": "The caller's verified identity does not match the consumer for this transfer process",
542
+ "callerNotAuthorizedAsProvider": "The caller's verified identity does not match the provider for this transfer process",
543
+ "callerNotAuthorizedForTransfer": "The caller's verified identity does not match the consumer or provider for this transfer process",
544
+ "multipleAssignersNotSupported": "Multiple assigners found in agreement, which is not supported. Only single assigner agreements are supported."
538
545
  },
539
546
  "dataspaceControlPlanePolicyRequester": {},
540
547
  "odrlPolicyHelper": {
@@ -561,7 +568,8 @@
561
568
  "queryTypeNotSupported": "Query type \"{queryType}\" is not supported by the DS App",
562
569
  "transferProcessNotFound": "Transfer Process not found for consumerPid \"{notFoundId}\"",
563
570
  "transferNotInStartedState": "Transfer Process is not in STARTED state. Current state: \"{currentState}\"",
564
- "transferMissingDatasetId": "Transfer Process is missing datasetId"
571
+ "transferMissingDatasetId": "Transfer Process is missing datasetId",
572
+ "schemaNotFound": "Schema \"{schemaId}\" not found"
565
573
  },
566
574
  "dataspaceDataPlaneSocketClient": {
567
575
  "socketConnect": "Failure during socket connect",
@@ -981,7 +989,8 @@
981
989
  "agreementNotAccepted": "Agreement with id: \"{agreementId}\" was not accepted by the requester",
982
990
  "noAgreementCreated": "No agreement was created for offer with id: \"{offerId}\"",
983
991
  "assignerNotIdentity": "The assigner in the offer is not a single identity",
984
- "providerInitiatedNotSupported": "Provider initiated negotiations are currently not supported as the consumer identity is required to be set as the trust identity in the negotiation"
992
+ "providerInitiatedNotSupported": "Provider initiated negotiations are currently not supported as the consumer identity is required to be set as the trust identity in the negotiation",
993
+ "callerNotAuthorizedForNegotiation": "The caller's verified identity does not match any authorized party in this negotiation"
985
994
  },
986
995
  "policyNegotiationAdminPointService": {
987
996
  "policyNotFound": "Policy with id: \"{notFoundId}\" not found"
package/docs/changelog.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @twin.org/node - Changelog
2
2
 
3
+ ## [0.0.3-next.27](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.26...node-v0.0.3-next.27) (2026-03-09)
4
+
5
+
6
+ ### Features
7
+
8
+ * enable N2N dataspace protocol with synchronized storage ([#98](https://github.com/twinfoundation/node/issues/98)) ([f67e366](https://github.com/twinfoundation/node/commit/f67e366c5ed3c829955a62b19c420361f035a578))
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.26 to 0.0.3-next.27
16
+
17
+ ## [0.0.3-next.26](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.25...node-v0.0.3-next.26) (2026-03-05)
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.25 to 0.0.3-next.26
30
+
3
31
  ## [0.0.3-next.25](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.24...node-v0.0.3-next.25) (2026-03-04)
4
32
 
5
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/node",
3
- "version": "0.0.3-next.25",
3
+ "version": "0.0.3-next.27",
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.25"
17
+ "@twin.org/node-core": "0.0.3-next.27"
18
18
  },
19
19
  "bugs": {
20
20
  "url": "git+https://github.com/twinfoundation/node/issues"