@twin.org/node 0.9.2-next.7 → 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.
@@ -821,6 +821,8 @@
821
821
  "removeRevisionFailed": "Failed to remove document revision"
822
822
  },
823
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",
824
826
  "setFailed": "Unable to set entity \"{id}\"",
825
827
  "getFailed": "Unable to get entity \"{id}\"",
826
828
  "removeFailed": "Unable to remove entity \"{id}\"",
@@ -840,6 +842,8 @@
840
842
  "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
841
843
  },
842
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",
843
847
  "tableCreateFailed": "Creating table \"{tableName}\" failed",
844
848
  "tableDoesNotExist": "Table \"{tableName}\" does not exist",
845
849
  "setFailed": "Unable to set entity \"{id}\"",
@@ -859,6 +863,8 @@
859
863
  "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
860
864
  },
861
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",
862
868
  "directoryCreateFailed": "Creating directory \"{directory}\" failed",
863
869
  "emptyFailed": "Unable to empty entity storage",
864
870
  "readStoreCorrupt": "The entity storage store file in directory \"{directory}\" contains corrupt JSON",
@@ -868,6 +874,8 @@
868
874
  "writeStoreFailed": "Unable to write the entity storage store file in directory \"{directory}\""
869
875
  },
870
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",
871
879
  "firestoreCreationFailed": "Failed to connect to Firestore",
872
880
  "getPartitionContextIdsFailed": "Unable to get partition context ids",
873
881
  "setEntityFailed": "Failed to set entity \"{id}\"",
@@ -882,7 +890,13 @@
882
890
  "teardownFailed": "Unable to teardown entity storage",
883
891
  "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
884
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
+ },
885
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",
886
900
  "setFailed": "Unable to set entity \"{id}\"",
887
901
  "getFailed": "Unable to get entity \"{id}\"",
888
902
  "removeFailed": "Unable to remove entity \"{id}\"",
@@ -897,6 +911,8 @@
897
911
  "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
898
912
  },
899
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",
900
916
  "setFailed": "Unable to set entity \"{id}\"",
901
917
  "getFailed": "Unable to get entity \"{id}\"",
902
918
  "removeFailed": "Unable to remove entity \"{id}\"",
@@ -914,6 +930,8 @@
914
930
  "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
915
931
  },
916
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",
917
935
  "databaseCreateFailed": "Unable to create database \"{databaseName}\"",
918
936
  "setFailed": "Unable to set entity \"{id}\"",
919
937
  "getFailed": "Unable to get entity \"{id}\"",
@@ -931,6 +949,8 @@
931
949
  "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
932
950
  },
933
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",
934
954
  "tableCreateFailed": "Creating table \"{table}\" failed",
935
955
  "removeFailed": "Removing item with \"{id}\" failed",
936
956
  "setFailed": "Setting item with \"{id}\" failed",
package/docs/changelog.md CHANGED
@@ -1,5 +1,19 @@
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
+
3
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)
4
18
 
5
19
 
@@ -17257,7 +17257,8 @@
17257
17257
  "version": "2025-1",
17258
17258
  "path": "/dataspace-control-plane/2025-1",
17259
17259
  "binding": "HTTPS",
17260
- "serviceId": "twin-connector"
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.7",
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.7"
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"