@twin.org/node 0.9.2-next.6 → 0.9.2-next.8
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 +27 -3
- package/docs/changelog.md +28 -0
- package/docs/open-api/spec.json +2 -1
- 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",
|
|
@@ -818,13 +821,15 @@
|
|
|
818
821
|
"removeRevisionFailed": "Failed to remove document revision"
|
|
819
822
|
},
|
|
820
823
|
"cosmosDbEntityStorageConnector": {
|
|
824
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
825
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
821
826
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
822
827
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
823
828
|
"removeFailed": "Unable to remove entity \"{id}\"",
|
|
824
829
|
"queryFailed": "The query failed",
|
|
825
830
|
"comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
|
|
826
831
|
"conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
|
|
827
|
-
"
|
|
832
|
+
"sortUnsupported": "Sorting supports at most one property other than the primary key \"{primaryKey}\"",
|
|
828
833
|
"containerCreateFailed": "The container couldn't be created \"{containerId}\"",
|
|
829
834
|
"databaseCreateFailed": "Unable to create database \"{databaseId}\"",
|
|
830
835
|
"containerDoesNotExist": "Container \"{containerId}\" does not exist",
|
|
@@ -837,6 +842,8 @@
|
|
|
837
842
|
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
838
843
|
},
|
|
839
844
|
"dynamoDbEntityStorageConnector": {
|
|
845
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
846
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
840
847
|
"tableCreateFailed": "Creating table \"{tableName}\" failed",
|
|
841
848
|
"tableDoesNotExist": "Table \"{tableName}\" does not exist",
|
|
842
849
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
@@ -845,7 +852,7 @@
|
|
|
845
852
|
"queryFailed": "The query failed",
|
|
846
853
|
"comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
|
|
847
854
|
"conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
|
|
848
|
-
"
|
|
855
|
+
"sortUnsupported": "Sorting supports at most one property other than the primary key \"{primaryKey}\"",
|
|
849
856
|
"propertyNotFound": "The property \"{property}\" was not found on the entity schema",
|
|
850
857
|
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
851
858
|
"setBatchFailed": "Unable to set batch of entities",
|
|
@@ -856,6 +863,8 @@
|
|
|
856
863
|
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
857
864
|
},
|
|
858
865
|
"fileEntityStorageConnector": {
|
|
866
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
867
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
859
868
|
"directoryCreateFailed": "Creating directory \"{directory}\" failed",
|
|
860
869
|
"emptyFailed": "Unable to empty entity storage",
|
|
861
870
|
"readStoreCorrupt": "The entity storage store file in directory \"{directory}\" contains corrupt JSON",
|
|
@@ -865,6 +874,8 @@
|
|
|
865
874
|
"writeStoreFailed": "Unable to write the entity storage store file in directory \"{directory}\""
|
|
866
875
|
},
|
|
867
876
|
"firestoreEntityStorageConnector": {
|
|
877
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
878
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
868
879
|
"firestoreCreationFailed": "Failed to connect to Firestore",
|
|
869
880
|
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
870
881
|
"setEntityFailed": "Failed to set entity \"{id}\"",
|
|
@@ -879,7 +890,13 @@
|
|
|
879
890
|
"teardownFailed": "Unable to teardown entity storage",
|
|
880
891
|
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
881
892
|
},
|
|
893
|
+
"memoryEntityStorageConnector": {
|
|
894
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
895
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state"
|
|
896
|
+
},
|
|
882
897
|
"mongoDbEntityStorageConnector": {
|
|
898
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
899
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
883
900
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
884
901
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
885
902
|
"removeFailed": "Unable to remove entity \"{id}\"",
|
|
@@ -894,6 +911,8 @@
|
|
|
894
911
|
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
895
912
|
},
|
|
896
913
|
"mySqlEntityStorageConnector": {
|
|
914
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
915
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
897
916
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
898
917
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
899
918
|
"removeFailed": "Unable to remove entity \"{id}\"",
|
|
@@ -911,6 +930,8 @@
|
|
|
911
930
|
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
912
931
|
},
|
|
913
932
|
"postgreSqlEntityStorageConnector": {
|
|
933
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
934
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
914
935
|
"databaseCreateFailed": "Unable to create database \"{databaseName}\"",
|
|
915
936
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
916
937
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
@@ -928,6 +949,8 @@
|
|
|
928
949
|
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
929
950
|
},
|
|
930
951
|
"scyllaDBTableConnector": {
|
|
952
|
+
"optimisticLockFailed": "The entity \"{conflictId}\" could not be written because the optimistic lock check failed",
|
|
953
|
+
"conditionFailed": "The entity \"{conflictId}\" could not be updated because the supplied conditions did not match the stored state",
|
|
931
954
|
"tableCreateFailed": "Creating table \"{table}\" failed",
|
|
932
955
|
"removeFailed": "Removing item with \"{id}\" failed",
|
|
933
956
|
"setFailed": "Setting item with \"{id}\" failed",
|
|
@@ -2408,6 +2431,7 @@
|
|
|
2408
2431
|
"offerFoundInCatalog": "Offer found in Federated Catalogue and validated",
|
|
2409
2432
|
"negotiationInitiated": "Contract negotiation initiated successfully",
|
|
2410
2433
|
"implicitTrustAgreementCreated": "Implicit trust agreement created (agreementId: {agreementId}, datasetId: {datasetId}, organizationId: {organizationId})",
|
|
2434
|
+
"agreementReused": "Existing agreement reused (agreementId: {agreementId}, offerId: {offerId}, datasetId: {datasetId})",
|
|
2411
2435
|
"implicitTrustAgreementReused": "Existing implicit trust agreement reused (agreementId: {agreementId}, datasetId: {datasetId}, organizationId: {organizationId})",
|
|
2412
2436
|
"getNegotiation": "Retrieving negotiation status",
|
|
2413
2437
|
"negotiationStateRetrieved": "Negotiation state retrieved successfully",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.2-next.8](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.7...node-v0.9.2-next.8) (2026-08-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add additional env vars ([#328](https://github.com/iotaledger/twin-node/issues/328)) ([6ca8718](https://github.com/iotaledger/twin-node/commit/6ca87184bc4d78829c957ea055d3c281aca6cf9f))
|
|
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.7 to 0.9.2-next.8
|
|
16
|
+
|
|
17
|
+
## [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)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* additional env vars and validation ([#324](https://github.com/iotaledger/twin-node/issues/324)) ([6b01e8c](https://github.com/iotaledger/twin-node/commit/6b01e8c10f9aa7181f51f13534d8164db3e7322d))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* The following workspace dependencies were updated
|
|
28
|
+
* dependencies
|
|
29
|
+
* @twin.org/node-core bumped from 0.9.2-next.6 to 0.9.2-next.7
|
|
30
|
+
|
|
3
31
|
## [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
32
|
|
|
5
33
|
|
package/docs/open-api/spec.json
CHANGED
|
@@ -17257,7 +17257,8 @@
|
|
|
17257
17257
|
"version": "2025-1",
|
|
17258
17258
|
"path": "/dataspace-control-plane/2025-1",
|
|
17259
17259
|
"binding": "HTTPS",
|
|
17260
|
-
"
|
|
17260
|
+
"identifierType": "did:iota",
|
|
17261
|
+
"serviceId": "iota/twin.org/dspace-connector"
|
|
17261
17262
|
}
|
|
17262
17263
|
]
|
|
17263
17264
|
}
|
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.8",
|
|
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.8"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|