@twin.org/node 0.9.2-next.6 → 0.9.2-next.7
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 +7 -3
- package/docs/changelog.md +14 -0
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"cliCommandParamMissing": "Parameter \"{param}\" is required for command \"{command}\"",
|
|
15
15
|
"cliCommandParamExtra": "Parameter(s) \"{params}\" are not recognised for command \"{command}\"",
|
|
16
16
|
"cliEnvVarMissing": "Environment variable \"{envVar}\" does not exist",
|
|
17
|
+
"invalidEnvVarValue": "Environment variable \"{key}\" has an invalid value \"{value}\", expected {type} type",
|
|
17
18
|
"unknownEnvVars": "Unknown environment variable properties [{keys}]. Check for typos in variable names, for custom variables use the {prefix}ENV_ALLOW_LIST."
|
|
18
19
|
},
|
|
19
20
|
"bootstrapDev": {
|
|
@@ -374,7 +375,9 @@
|
|
|
374
375
|
"invalidEntityProperty": "The entity value of \"{value}\" does not match the type \"{type}\" for property \"{property}\"",
|
|
375
376
|
"invalidOptional": "The entity property \"{property}\" of type \"{type}\" is not optional, but no value has been provided",
|
|
376
377
|
"invalidEntityKeys": "The entity had additional properties that are not in the schema, \"{keys}\"",
|
|
377
|
-
"versionMustBeGreaterThanOrEqualZero": "Property \"entitySchema.version\" must be an integer >= 0, but got {version}"
|
|
378
|
+
"versionMustBeGreaterThanOrEqualZero": "Property \"entitySchema.version\" must be an integer >= 0, but got {version}",
|
|
379
|
+
"multipleVersionProperties": "The schema has more than one property with isVersion set, only one is allowed",
|
|
380
|
+
"versionPropertyMustBeInteger": "The version property \"{property}\" has type \"{type}\" but must be of type integer"
|
|
378
381
|
},
|
|
379
382
|
"entityStorageHelper": {
|
|
380
383
|
"sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
|
|
@@ -824,7 +827,7 @@
|
|
|
824
827
|
"queryFailed": "The query failed",
|
|
825
828
|
"comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
|
|
826
829
|
"conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
|
|
827
|
-
"
|
|
830
|
+
"sortUnsupported": "Sorting supports at most one property other than the primary key \"{primaryKey}\"",
|
|
828
831
|
"containerCreateFailed": "The container couldn't be created \"{containerId}\"",
|
|
829
832
|
"databaseCreateFailed": "Unable to create database \"{databaseId}\"",
|
|
830
833
|
"containerDoesNotExist": "Container \"{containerId}\" does not exist",
|
|
@@ -845,7 +848,7 @@
|
|
|
845
848
|
"queryFailed": "The query failed",
|
|
846
849
|
"comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
|
|
847
850
|
"conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
|
|
848
|
-
"
|
|
851
|
+
"sortUnsupported": "Sorting supports at most one property other than the primary key \"{primaryKey}\"",
|
|
849
852
|
"propertyNotFound": "The property \"{property}\" was not found on the entity schema",
|
|
850
853
|
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
851
854
|
"setBatchFailed": "Unable to set batch of entities",
|
|
@@ -2408,6 +2411,7 @@
|
|
|
2408
2411
|
"offerFoundInCatalog": "Offer found in Federated Catalogue and validated",
|
|
2409
2412
|
"negotiationInitiated": "Contract negotiation initiated successfully",
|
|
2410
2413
|
"implicitTrustAgreementCreated": "Implicit trust agreement created (agreementId: {agreementId}, datasetId: {datasetId}, organizationId: {organizationId})",
|
|
2414
|
+
"agreementReused": "Existing agreement reused (agreementId: {agreementId}, offerId: {offerId}, datasetId: {datasetId})",
|
|
2411
2415
|
"implicitTrustAgreementReused": "Existing implicit trust agreement reused (agreementId: {agreementId}, datasetId: {datasetId}, organizationId: {organizationId})",
|
|
2412
2416
|
"getNegotiation": "Retrieving negotiation status",
|
|
2413
2417
|
"negotiationStateRetrieved": "Negotiation state retrieved successfully",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.2-next.7](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.6...node-v0.9.2-next.7) (2026-08-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* additional env vars and validation ([#324](https://github.com/iotaledger/twin-node/issues/324)) ([6b01e8c](https://github.com/iotaledger/twin-node/commit/6b01e8c10f9aa7181f51f13534d8164db3e7322d))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/node-core bumped from 0.9.2-next.6 to 0.9.2-next.7
|
|
16
|
+
|
|
3
17
|
## [0.9.2-next.6](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.5...node-v0.9.2-next.6) (2026-08-07)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.9.2-next.
|
|
3
|
+
"version": "0.9.2-next.7",
|
|
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": ">=24.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/node-core": "0.9.2-next.
|
|
17
|
+
"@twin.org/node-core": "0.9.2-next.7"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|