@twin.org/node 0.0.3-next.48 → 0.0.3-next.49

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.
@@ -313,7 +313,8 @@
313
313
  "invalidEntityProperties": "The schema has no properties defined, but the entity has properties",
314
314
  "invalidEntityProperty": "The entity value of \"{value}\" does not match the type \"{type}\" for property \"{property}\"",
315
315
  "invalidOptional": "The entity property \"{property}\" of type \"{type}\" is not optional, but no value has been provided",
316
- "invalidEntityKeys": "The entity had additional properties that are not in the schema, \"{keys}\""
316
+ "invalidEntityKeys": "The entity had additional properties that are not in the schema, \"{keys}\"",
317
+ "versionMustBeGreaterThanOrEqualZero": "Property \"entitySchema.version\" must be an integer >= 0, but got {version}"
317
318
  },
318
319
  "migrationHelper": {
319
320
  "migrationFailed": "Migration failed.",
@@ -1200,6 +1201,7 @@
1200
1201
  "noRequesterFound": "No requester found with type: \"{notFoundId}\"",
1201
1202
  "negotiationFailed": "Negotiation failed for offer id: \"{offerId}\"",
1202
1203
  "agreementMissing": "The agreement is missing",
1204
+ "agreementOfferIdCollision": "The agreement id collides with the offer id, the negotiator must allocate a distinct id: \"{id}\"",
1203
1205
  "negotiationNotFound": "No negotiation found with id: \"{notFoundId}\"",
1204
1206
  "requesterNotFound": "No requester found with id: \"{notFoundId}\"",
1205
1207
  "invalidState": "The negotiation is in an incorrect state \"{state}\" for negotiation with id: \"{negotiationId}\"",
@@ -1254,6 +1256,11 @@
1254
1256
  "noGeneratorsRegistered": "No trust generators are registered in the factory",
1255
1257
  "noVerifiersRegistered": "No trust verifiers are registered in the factory"
1256
1258
  },
1259
+ "identityAllowDenyVerifier": {
1260
+ "identityMissing": "The identity is missing from the verification info.",
1261
+ "identityNotAllowed": "The identity is not in the allowed identities list \"{identity}\".",
1262
+ "identityDenied": "The identity is in the denied identities list \"{identity}\"."
1263
+ },
1257
1264
  "jwtVerifiableCredentialVerifier": {
1258
1265
  "tokenMissingCredential": "The JWT token does not contain a verifiable credential.",
1259
1266
  "tokenMissingIssuer": "The verifiable credential in the JWT does not contain an issuer.",
package/docs/changelog.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.49](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.48...node-v0.0.3-next.49) (2026-06-05)
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.48 to 0.0.3-next.49
16
+
3
17
  ## [0.0.3-next.48](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.47...node-v0.0.3-next.48) (2026-06-04)
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.48",
3
+ "version": "0.0.3-next.49",
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.48"
17
+ "@twin.org/node-core": "0.0.3-next.49"
18
18
  },
19
19
  "bugs": {
20
20
  "url": "git+https://github.com/iotaledger/twin-node/issues"