@twin.org/node 0.0.3-next.35 → 0.0.3-next.38

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.
@@ -276,6 +276,9 @@
276
276
  "slip0010": {
277
277
  "invalidSeed": "The seed is invalid \"{seed}\""
278
278
  },
279
+ "pbkdf2": {
280
+ "keyLengthTooSmall": "The key length must be at least 1, it is \"{keyLength}\""
281
+ },
279
282
  "baseRestClient": {
280
283
  "missingRouteProp": "Missing route parameter in data \"{routeProp}\" for route \"{route}\"",
281
284
  "decodingFailed": "Decoding JSON failed for route \"{route}\"",
@@ -288,6 +291,10 @@
288
291
  "contextIdStore": {
289
292
  "asyncHooksNotAvailable": "Async Hooks are not available in this environment, please ensure you are running in Node.js"
290
293
  },
294
+ "entitySchemaDiffHelper": {
295
+ "duplicateOldProperty": "The oldProperties array contains a duplicate property key \"{property}\"",
296
+ "duplicateNewProperty": "The newProperties array contains a duplicate property key \"{property}\""
297
+ },
291
298
  "entitySchemaHelper": {
292
299
  "noIsPrimary": "Property \"entitySchema.properties\" must contain a value with isPrimary set",
293
300
  "multipleIsPrimary": "Property \"entitySchema.properties\" contains more than one property with isPrimary set",
@@ -296,6 +303,11 @@
296
303
  "invalidOptional": "The entity property \"{property}\" of type \"{type}\" is not optional, but no value has been provided",
297
304
  "invalidEntityKeys": "The entity had additional properties that are not in the schema, \"{keys}\""
298
305
  },
306
+ "migrationHelper": {
307
+ "migrationFailed": "Migration failed.",
308
+ "transformRequiredForProperty": "A transformation function is required to migrate property \"{from}\" to \"{to}\" of type \"{type}\"",
309
+ "coercionProducedUndefined": "Coercion of property \"{property}\" to type \"{type}\" produced undefined but the property is not optional"
310
+ },
299
311
  "vaultConnectorHelper": {
300
312
  "invalidSignature": "The JSON Web token signature could not be verified"
301
313
  },
@@ -405,6 +417,9 @@
405
417
  "destroyFailed": "The destruction of the attestation failed",
406
418
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the attestation service \"{namespace}\""
407
419
  },
420
+ "silentTelemetryConnector": {
421
+ "notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
422
+ },
408
423
  "auditableItemGraphRestClient": {
409
424
  "notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
410
425
  },
@@ -412,6 +427,9 @@
412
427
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Graph service \"{namespace}\"",
413
428
  "createFailed": "Creating the Auditable Item Graph vertex failed",
414
429
  "getFailed": "Getting the Auditable Item Graph vertex failed",
430
+ "getVersionFailed": "Getting the Auditable Item Graph vertex version failed",
431
+ "getVersionsFailed": "Getting the Auditable Item Graph vertex versions failed",
432
+ "versionNotFound": "The version with the Id \"{notFoundId}\" was not found",
415
433
  "updatingFailed": "Updating the Auditable Item Graph vertex failed",
416
434
  "queryingFailed": "Querying the Auditable Item Graph failed",
417
435
  "removeVerifiableFailed": "Removing the verifiable data the Auditable Item Graph vertex failed",
@@ -650,11 +668,13 @@
650
668
  "containerCreateFailed": "The container couldn't be created \"{containerId}\"",
651
669
  "databaseCreateFailed": "Unable to create database \"{databaseId}\"",
652
670
  "containerDoesNotExist": "Container \"{containerId}\" does not exist",
671
+ "getPartitionContextIdsFailed": "Unable to get partition context ids",
653
672
  "setBatchFailed": "Unable to set batch of entities",
654
673
  "countFailed": "Unable to count entities",
655
674
  "emptyFailed": "Unable to empty entity storage",
656
675
  "removeBatchFailed": "Unable to remove batch of entities",
657
- "teardownFailed": "Unable to teardown entity storage"
676
+ "teardownFailed": "Unable to teardown entity storage",
677
+ "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
658
678
  },
659
679
  "dynamoDbEntityStorageConnector": {
660
680
  "tableCreateFailed": "Creating table \"{tableName}\" failed",
@@ -668,11 +688,13 @@
668
688
  "sortSingle": "You can only sort by a single property",
669
689
  "sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
670
690
  "propertyNotFound": "The property \"{property}\" was not found on the entity schema",
691
+ "getPartitionContextIdsFailed": "Unable to get partition context ids",
671
692
  "setBatchFailed": "Unable to set batch of entities",
672
693
  "removeBatchFailed": "Unable to remove batch of entities",
673
694
  "emptyFailed": "Unable to empty entity storage",
674
695
  "countFailed": "Unable to count entities",
675
- "teardownFailed": "Unable to teardown entity storage"
696
+ "teardownFailed": "Unable to teardown entity storage",
697
+ "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
676
698
  },
677
699
  "fileEntityStorageConnector": {
678
700
  "directoryCreateFailed": "Creating directory \"{directory}\" failed",
@@ -682,6 +704,7 @@
682
704
  },
683
705
  "firestoreEntityStorageConnector": {
684
706
  "firestoreCreationFailed": "Failed to connect to Firestore",
707
+ "getPartitionContextIdsFailed": "Unable to get partition context ids",
685
708
  "setEntityFailed": "Failed to set entity \"{id}\"",
686
709
  "getEntityFailed": "Failed to get entity \"{id}\"",
687
710
  "removeEntityFailed": "Failed to remove entity \"{id}\"",
@@ -691,7 +714,8 @@
691
714
  "countFailed": "Unable to count entities",
692
715
  "emptyFailed": "Failed to empty entity storage",
693
716
  "removeBatchFailed": "Unable to remove batch of entities",
694
- "teardownFailed": "Unable to teardown entity storage"
717
+ "teardownFailed": "Unable to teardown entity storage",
718
+ "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
695
719
  },
696
720
  "mongoDbEntityStorageConnector": {
697
721
  "setFailed": "Unable to set entity \"{id}\"",
@@ -703,7 +727,9 @@
703
727
  "removeBatchFailed": "Unable to remove batch of entities",
704
728
  "emptyFailed": "Unable to empty entity storage",
705
729
  "countFailed": "Unable to count entities",
706
- "teardownFailed": "Unable to teardown entity storage"
730
+ "teardownFailed": "Unable to teardown entity storage",
731
+ "getPartitionContextIdsFailed": "Unable to get partition context ids",
732
+ "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
707
733
  },
708
734
  "mySqlEntityStorageConnector": {
709
735
  "setFailed": "Unable to set entity \"{id}\"",
@@ -718,7 +744,9 @@
718
744
  "countFailed": "Unable to count entities",
719
745
  "emptyFailed": "Unable to empty entity storage",
720
746
  "removeBatchFailed": "Unable to remove batch of entities",
721
- "teardownFailed": "Unable to teardown entity storage"
747
+ "teardownFailed": "Unable to teardown entity storage",
748
+ "getPartitionContextIdsFailed": "Unable to get partition context ids",
749
+ "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
722
750
  },
723
751
  "postgreSqlEntityStorageConnector": {
724
752
  "databaseCreateFailed": "Unable to create database \"{databaseName}\"",
@@ -733,7 +761,9 @@
733
761
  "countFailed": "Unable to count entities",
734
762
  "emptyFailed": "Unable to empty entity storage",
735
763
  "removeBatchFailed": "Unable to remove batch of entities",
736
- "teardownFailed": "Unable to teardown entity storage"
764
+ "teardownFailed": "Unable to teardown entity storage",
765
+ "getPartitionContextIdsFailed": "Unable to get partition context ids",
766
+ "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
737
767
  },
738
768
  "scyllaDBTableConnector": {
739
769
  "tableCreateFailed": "Creating table \"{table}\" failed",
@@ -742,7 +772,9 @@
742
772
  "setBatchFailed": "Setting batch of items failed",
743
773
  "emptyFailed": "Emptying entity storage failed",
744
774
  "removeBatchFailed": "Remove batch of entities failed",
745
- "teardownFailed": "Teardown entity storage failed"
775
+ "teardownFailed": "Teardown entity storage failed",
776
+ "getPartitionContextIdsFailed": "Unable to get partition context ids",
777
+ "finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
746
778
  },
747
779
  "scyllaDBViewConnector": {
748
780
  "viewCreateFailed": "Creating view \"{view}\" failed",
@@ -753,6 +785,9 @@
753
785
  "findFailed": "Error while querying data on \"{table}\"",
754
786
  "parseJSONFailed": "Parsing JSON failed for field \"{name}\" with value \"{value}\"",
755
787
  "comparisonNotSupported": "Dot-notation nested property path \"{property}\" is not supported in CQL queries",
788
+ "notEqualsNotSupported": "The NotEquals operator is not supported in CQL queries for property \"{property}\"",
789
+ "notIncludesNotSupported": "The NotIncludes operator is not supported in CQL queries for property \"{property}\"",
790
+ "orConditionNotSupported": "OR logical operators are not supported in CQL queries",
756
791
  "countFailed": "Unable to count entities"
757
792
  },
758
793
  "synchronisedEntityStorageConnector": {
@@ -871,7 +906,9 @@
871
906
  "transactionFailed": "The transaction failed",
872
907
  "addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
873
908
  "gasStationTransactionFailed": "The gas station transaction failed",
874
- "dryRunFailed": "The dry run execution failed"
909
+ "dryRunFailed": "The dry run execution failed",
910
+ "fundingFailed": "Fund the address from faucet failed",
911
+ "faucetRateLimit": "Faucet rate limit exceeded"
875
912
  },
876
913
  "iotaIdentityUtils": {
877
914
  "getControllerCapInfoFailed": "Getting the controller capability info for the identity failed",
@@ -1011,8 +1048,7 @@
1011
1048
  "packageNotFoundOnNetwork": "Package \"{deployedPackageId}\" not found on \"{network}\" network",
1012
1049
  "deployedPackageIdRequired": "deployedPackageId is required for network operations on \"{network}\".",
1013
1050
  "packageIdNotFound": "Package ID not found for network \"{network}\"",
1014
- "invalidGasBudget": "Invalid gas budget: {gasBudget}",
1015
- "noWalletConfigured": "For write operations a wallet must be configured in the connector options"
1051
+ "invalidGasBudget": "Invalid gas budget: {gasBudget}"
1016
1052
  },
1017
1053
  "iotaNftUtils": {
1018
1054
  "invalidNftIdFormat": "The NFT ID \"{id}\" has an invalid format"
@@ -1182,8 +1218,11 @@
1182
1218
  "gaugeNoIncDec": "A gauge can not be incremented or decremented",
1183
1219
  "maxHistoryMustBePositiveInteger": "The maxHistory option must be a positive integer"
1184
1220
  },
1185
- "silentTelemetryConnector": {
1186
- "notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
1221
+ "openTelemetryTelemetryConnector": {
1222
+ "unknownReaderType": "The reader type \"{type}\" is not supported, valid values are: prometheus"
1223
+ },
1224
+ "metricsCollectorService": {
1225
+ "producerCollectionFailed": "Failed to collect metrics from producer \"{producer}\""
1187
1226
  },
1188
1227
  "trustService": {
1189
1228
  "notVerified": "Payload verification failed",
@@ -1287,10 +1326,6 @@
1287
1326
  "iotaWalletConnector": {
1288
1327
  "transferFailed": "The wallet transfer failed."
1289
1328
  },
1290
- "iotaFaucetConnector": {
1291
- "fundingFailed": "Fund the address from faucet failed",
1292
- "faucetRateLimit": "Faucet rate limit exceeded"
1293
- },
1294
1329
  "fastifyWebServer": {
1295
1330
  "startFailed": "The Web Server failed to start",
1296
1331
  "badRequest": "The web server could not handle the request",
@@ -2315,6 +2350,10 @@
2315
2350
  "metricRemoved": "The metric was removed \"{id}\"",
2316
2351
  "metricValueCreated": "The metric value was created for \"{id}\" with value \"{value}\""
2317
2352
  },
2353
+ "openTelemetryTelemetryConnector": {
2354
+ "connectorStarted": "The connector was started with \"{readerCount}\" metric reader(s)",
2355
+ "connectorStopped": "The connector was stopped"
2356
+ },
2318
2357
  "trustService": {
2319
2358
  "verifying": "Verifying payload: \"{payload}\"",
2320
2359
  "verified": "Payload verified successfully"
package/docs/changelog.md CHANGED
@@ -1,5 +1,115 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.38](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.37...node-v0.0.3-next.38) (2026-05-20)
4
+
5
+
6
+ ### Features
7
+
8
+ * add auth admin component ([1661e57](https://github.com/iotaledger/twin-node/commit/1661e57a699d5cf9ebde333e3cbc3aaea89d7c9c))
9
+ * add automation ([cfc63b4](https://github.com/iotaledger/twin-node/commit/cfc63b465c139280f696877df21d54dc6a065a7e))
10
+ * add CLI commands and remove automated bootstrap code ([#69](https://github.com/iotaledger/twin-node/issues/69)) ([6e40933](https://github.com/iotaledger/twin-node/commit/6e40933d8bb820b380e1074fc88feeedca0ef7d9))
11
+ * add context id features ([#53](https://github.com/iotaledger/twin-node/issues/53)) ([827adf5](https://github.com/iotaledger/twin-node/commit/827adf52cb87fca53cec52b27e67f7a9dba2c088))
12
+ * add data space connector ([157e8b0](https://github.com/iotaledger/twin-node/commit/157e8b0a76e3a8a63c1991924f7f963eb83e27ae))
13
+ * add extend engine and server methods ([ec09c7e](https://github.com/iotaledger/twin-node/commit/ec09c7eb882d9f5797f2fd372e96cad1a3716f59))
14
+ * add extend engine and server methods ([0136a6f](https://github.com/iotaledger/twin-node/commit/0136a6f3f4e1a82b1427ee9618b8a17c79bc7fda))
15
+ * add extensions support ([476d5a8](https://github.com/iotaledger/twin-node/commit/476d5a864026a2f78e5b02bc9eb81359777a4a45))
16
+ * add fedcat to openapi ([eac69bd](https://github.com/iotaledger/twin-node/commit/eac69bdf94a22c35fe58e7523d9cf78bdc72eb7b))
17
+ * add missing export ([e8eb621](https://github.com/iotaledger/twin-node/commit/e8eb6213937a202520b164a9970a891004122b61))
18
+ * add notarization ([#121](https://github.com/iotaledger/twin-node/issues/121)) ([b2a11df](https://github.com/iotaledger/twin-node/commit/b2a11df92c7b5026f73f08a018c0586ebe008e92))
19
+ * add obligation enforcers and multi instance support ([#89](https://github.com/iotaledger/twin-node/issues/89)) ([d81af99](https://github.com/iotaledger/twin-node/commit/d81af99b8c4db6e9a1370b7065bf6d9d222c71ed))
20
+ * add rights management components ([0fc6293](https://github.com/iotaledger/twin-node/commit/0fc629332db24494bd73003625c7bf3f939a2597))
21
+ * add support for dynamodb connection timeout ([63051b0](https://github.com/iotaledger/twin-node/commit/63051b0d22138079115dfac921e7f0c45eaad34e))
22
+ * add synchronised storage config ([e315869](https://github.com/iotaledger/twin-node/commit/e315869adbffcd7fe5d3ce151dd35f662f6134a9))
23
+ * add trust and rights management plugin support ([cdeb504](https://github.com/iotaledger/twin-node/commit/cdeb504ee5986a347466162b9afa781645b4a54c))
24
+ * add trust ttl ([#73](https://github.com/iotaledger/twin-node/issues/73)) ([911cee7](https://github.com/iotaledger/twin-node/commit/911cee771bba490143bb1574ca8360f7cf8baa1a))
25
+ * add updated config vars ([ebe8178](https://github.com/iotaledger/twin-node/commit/ebe81788ce53ddf3d6925a5f2f6dac381f84f06c))
26
+ * add validate-locales ([1a19dcb](https://github.com/iotaledger/twin-node/commit/1a19dcb005c2f0e3103e290db28c48a3464094cb))
27
+ * add vault prefix configuration ([#75](https://github.com/iotaledger/twin-node/issues/75)) ([1d4afb1](https://github.com/iotaledger/twin-node/commit/1d4afb1b1a8aa60795898eeb9e7f5153c279527d))
28
+ * adding npm and https protocols to load extensions ([#45](https://github.com/iotaledger/twin-node/issues/45)) ([33940b7](https://github.com/iotaledger/twin-node/commit/33940b7e771a0c5af32c18d442deb26a8631fd02))
29
+ * additional options for enabling components ([e13d772](https://github.com/iotaledger/twin-node/commit/e13d7721a0dd7143d456fff246622cbe63dbd0f1))
30
+ * additional route logging env vars ([7152c88](https://github.com/iotaledger/twin-node/commit/7152c887c3ba76778e2d9e68ba57198b8d81d802))
31
+ * align node module with dataspace rename and control plane integ… ([#95](https://github.com/iotaledger/twin-node/issues/95)) ([8129868](https://github.com/iotaledger/twin-node/commit/812986886fb5d779dd380956c4e6cc47c2d73530))
32
+ * custom REST paths ([#99](https://github.com/iotaledger/twin-node/issues/99)) ([dcab1b2](https://github.com/iotaledger/twin-node/commit/dcab1b2b23c13b4c9f39c3c1c67284f56e732bd1))
33
+ * enable N2N dataspace protocol with synchronized storage ([#98](https://github.com/iotaledger/twin-node/issues/98)) ([f67e366](https://github.com/iotaledger/twin-node/commit/f67e366c5ed3c829955a62b19c420361f035a578))
34
+ * env var simplification ([460b0f2](https://github.com/iotaledger/twin-node/commit/460b0f20a73cb482f7443af502f261d5f9d01759))
35
+ * env-prefix option and user-update cli command ([#83](https://github.com/iotaledger/twin-node/issues/83)) ([fc48efa](https://github.com/iotaledger/twin-node/commit/fc48efa7ad72173def048170c3afb5eeb9f1b292))
36
+ * eslint migration to flat config ([080db74](https://github.com/iotaledger/twin-node/commit/080db746390230f78725d214bc957da2efee9eb1))
37
+ * exclude unece codes from open api spec ([16b72f3](https://github.com/iotaledger/twin-node/commit/16b72f37af0d5aa107e5007741690a3fc043153a))
38
+ * first metrics in the core and app for testing ([#139](https://github.com/iotaledger/twin-node/issues/139)) ([abe17bb](https://github.com/iotaledger/twin-node/commit/abe17bb9a6261dcb7fd46253221182fbb1dc2259))
39
+ * health and url transformer ([#131](https://github.com/iotaledger/twin-node/issues/131)) ([3658903](https://github.com/iotaledger/twin-node/commit/36589036b9bea120880fc395b0d123a89032cf40))
40
+ * improve bootstrapping and shutdown behaviour ([#66](https://github.com/iotaledger/twin-node/issues/66)) ([65b3452](https://github.com/iotaledger/twin-node/commit/65b345240334bfff48b52e136cc486cd7ac7f290))
41
+ * improve default options and spec ([b538721](https://github.com/iotaledger/twin-node/commit/b538721902e7f65021d2715148ba59409ccce035))
42
+ * improve node logging ([c25b9c6](https://github.com/iotaledger/twin-node/commit/c25b9c6779bdb76f341df072c39b4c2fae4565a3))
43
+ * initial commit ([522f1e5](https://github.com/iotaledger/twin-node/commit/522f1e515348f9b1dd1eeb3170b1249e2b0b5371))
44
+ * migrate env config from engine to node ([5da29b8](https://github.com/iotaledger/twin-node/commit/5da29b8d714495308320d237a68e84355bba2b47))
45
+ * multi-tenant env wiring, trust auto-enable, tenant-token vault key, engine-driven callbackPath ([#128](https://github.com/iotaledger/twin-node/issues/128)) ([0de4d35](https://github.com/iotaledger/twin-node/commit/0de4d356fb2f825afae5469005d475700f510ee4))
46
+ * node app use JavaScript ([14fe08c](https://github.com/iotaledger/twin-node/commit/14fe08cb760dd885a5dac9056a4d5dbc3d61df64))
47
+ * remove dap and darp ([36c3ffb](https://github.com/iotaledger/twin-node/commit/36c3ffb31af65a0e3025859dab675efeee043155))
48
+ * separate script directory from exec directory ([f6bb4db](https://github.com/iotaledger/twin-node/commit/f6bb4dbea1f1e200e0640fa154c6997ef99c99b4))
49
+ * support multiple entity and blob storage connectors ([a489f79](https://github.com/iotaledger/twin-node/commit/a489f7907544aef5708d5111e9f72985e1377bae))
50
+ * support public origin and hosting service ([#77](https://github.com/iotaledger/twin-node/issues/77)) ([3b9039f](https://github.com/iotaledger/twin-node/commit/3b9039fcba7f7038c06f8fd6a5ccc9fdbbf535b3))
51
+ * typescript 6 update ([ce2e3ca](https://github.com/iotaledger/twin-node/commit/ce2e3ca5219587709f7b9cf6c65909b48fba11b5))
52
+ * update background tasks and add fedcat filters ([1fd297e](https://github.com/iotaledger/twin-node/commit/1fd297e29f60b5bb3909638b68e326c5b0e2d77d))
53
+ * update dependencies ([aab05b5](https://github.com/iotaledger/twin-node/commit/aab05b552152a208a504fb9a080603f1990d4f79))
54
+ * update dependencies ([6cb3d3a](https://github.com/iotaledger/twin-node/commit/6cb3d3a63f7b976f80074ddecfba034b7e92f919))
55
+ * update dependencies ([351f777](https://github.com/iotaledger/twin-node/commit/351f777e001bf4183762657fc565b133a317600a))
56
+ * update dependencies ([9d25f16](https://github.com/iotaledger/twin-node/commit/9d25f16f1d554cd38f3bec28fdf7f8fff892ceaf))
57
+ * update docs ([409126a](https://github.com/iotaledger/twin-node/commit/409126a1325998face4634426b71682944c6a504))
58
+ * update engine ([a40b377](https://github.com/iotaledger/twin-node/commit/a40b37726c3b61c6bb40265ec0006d1071ffac7e))
59
+ * update engine ([4b438e2](https://github.com/iotaledger/twin-node/commit/4b438e22c27d784ee6cc964b7cb4401e9699ab16))
60
+ * update for livez endpoint ([9fc2e6a](https://github.com/iotaledger/twin-node/commit/9fc2e6ade38b3ec9591399a633d02b1e5fe07910))
61
+ * update framework components ([4bee2b9](https://github.com/iotaledger/twin-node/commit/4bee2b9d3651df09b8550a9ed226be1b46031854))
62
+ * update framework core ([8bd769a](https://github.com/iotaledger/twin-node/commit/8bd769a4451f5f1f6be3f115a5e94eeb05bce7f1))
63
+ * update rights management ([5c992c6](https://github.com/iotaledger/twin-node/commit/5c992c6b0d72f3eeaa39ee267e096d9a3f477f4e))
64
+ * update rights management components ([176a0d6](https://github.com/iotaledger/twin-node/commit/176a0d611f88360fc845ae233b26ee0b43d7cb23))
65
+ * update spec generation config ([cff633a](https://github.com/iotaledger/twin-node/commit/cff633a0ffb73ad652d5f1bae653fa91e82dc8ab))
66
+ * update to latest engine ([00d4974](https://github.com/iotaledger/twin-node/commit/00d4974f9cfb02bf48505cfb4af4a7aba1df4b3d))
67
+ * update twindev schemas ([b7bb6ba](https://github.com/iotaledger/twin-node/commit/b7bb6ba308eaf10b66d349ada8f3880f15b31e0f))
68
+ * updated context id features ([ef7be07](https://github.com/iotaledger/twin-node/commit/ef7be07d44dccdeacf10f90cb4ffde0303faa6fa))
69
+
70
+
71
+ ### Bug Fixes
72
+
73
+ * adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/iotaledger/twin-node/commit/6030a42bdaf581678d96932fd0b809396bf7b8b0))
74
+ * adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/iotaledger/twin-node/commit/c66f396717394161a7647d1f08b3d87729d96e96))
75
+ * broken docs ([61479fd](https://github.com/iotaledger/twin-node/commit/61479fd618f766d22c5aafec5277e1a89e22b453))
76
+ * improve calculation of execution directory ([106d65d](https://github.com/iotaledger/twin-node/commit/106d65d7ad5524e2e147b681d68f9476c024cfaa))
77
+
78
+
79
+ ### Dependencies
80
+
81
+ * The following workspace dependencies were updated
82
+ * dependencies
83
+ * @twin.org/node-core bumped from 0.0.3-next.37 to 0.0.3-next.38
84
+
85
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.36...node-v0.0.3-next.37) (2026-05-19)
86
+
87
+
88
+ ### Miscellaneous Chores
89
+
90
+ * **node:** Synchronize repo versions
91
+
92
+
93
+ ### Dependencies
94
+
95
+ * The following workspace dependencies were updated
96
+ * dependencies
97
+ * @twin.org/node-core bumped from 0.0.3-next.36 to 0.0.3-next.37
98
+
99
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.35...node-v0.0.3-next.36) (2026-05-12)
100
+
101
+
102
+ ### Features
103
+
104
+ * typescript 6 update ([ce2e3ca](https://github.com/iotaledger/twin-node/commit/ce2e3ca5219587709f7b9cf6c65909b48fba11b5))
105
+
106
+
107
+ ### Dependencies
108
+
109
+ * The following workspace dependencies were updated
110
+ * dependencies
111
+ * @twin.org/node-core bumped from 0.0.3-next.35 to 0.0.3-next.36
112
+
3
113
  ## [0.0.3-next.35](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.34...node-v0.0.3-next.35) (2026-05-08)
4
114
 
5
115
 
@@ -12253,6 +12253,282 @@
12253
12253
  }
12254
12254
  }
12255
12255
  },
12256
+ "/aig/{id}/versions/{versionId}": {
12257
+ "get": {
12258
+ "operationId": "auditableItemGraphVersionGet",
12259
+ "summary": "Get a graph vertex at a specific version",
12260
+ "tags": [
12261
+ "Auditable Item Graph"
12262
+ ],
12263
+ "parameters": [
12264
+ {
12265
+ "name": "id",
12266
+ "description": "The id of the vertex.",
12267
+ "in": "path",
12268
+ "required": true,
12269
+ "schema": {
12270
+ "type": "string"
12271
+ },
12272
+ "style": "simple",
12273
+ "example": "aig:1234567890"
12274
+ },
12275
+ {
12276
+ "name": "versionId",
12277
+ "description": "The id of the version (changeset id) to get.",
12278
+ "in": "path",
12279
+ "required": true,
12280
+ "schema": {
12281
+ "type": "string"
12282
+ },
12283
+ "style": "simple",
12284
+ "example": "changeset:1234567890"
12285
+ },
12286
+ {
12287
+ "name": "accept",
12288
+ "in": "header",
12289
+ "required": true,
12290
+ "schema": {
12291
+ "type": "string"
12292
+ },
12293
+ "style": "simple",
12294
+ "example": "application/json"
12295
+ }
12296
+ ],
12297
+ "security": [
12298
+ {
12299
+ "jwtBearerAuthScheme": []
12300
+ }
12301
+ ],
12302
+ "responses": {
12303
+ "200": {
12304
+ "description": "Response to getting an auditable item graph vertex at a specific version.",
12305
+ "content": {
12306
+ "application/json": {
12307
+ "schema": {
12308
+ "$ref": "https://schema.twindev.org/aig/AuditableItemGraphVertex"
12309
+ },
12310
+ "examples": {
12311
+ "auditableItemGraphVersionGetResponseExample": {
12312
+ "value": {
12313
+ "@context": [
12314
+ "https://schema.twindev.org/aig/",
12315
+ "https://schema.twindev.org/common/",
12316
+ "https://schema.org"
12317
+ ],
12318
+ "type": "AuditableItemGraphVertex",
12319
+ "id": "aig:1234567890",
12320
+ "dateCreated": "2024-08-22T11:55:16.271Z",
12321
+ "version": 1
12322
+ }
12323
+ }
12324
+ }
12325
+ }
12326
+ }
12327
+ },
12328
+ "400": {
12329
+ "description": "The server cannot process the request, see the content for more details.",
12330
+ "content": {
12331
+ "application/json": {
12332
+ "schema": {
12333
+ "$ref": "#/components/schemas/Error"
12334
+ },
12335
+ "examples": {
12336
+ "exampleResponse": {
12337
+ "value": {
12338
+ "name": "GeneralError",
12339
+ "message": "errorMessage",
12340
+ "properties": {
12341
+ "foo": "bar"
12342
+ }
12343
+ }
12344
+ }
12345
+ }
12346
+ }
12347
+ }
12348
+ },
12349
+ "401": {
12350
+ "description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
12351
+ "content": {
12352
+ "application/json": {
12353
+ "schema": {
12354
+ "$ref": "#/components/schemas/Error"
12355
+ },
12356
+ "examples": {
12357
+ "exampleResponse": {
12358
+ "value": {
12359
+ "name": "UnauthorizedError",
12360
+ "message": "errorMessage"
12361
+ }
12362
+ }
12363
+ }
12364
+ }
12365
+ }
12366
+ },
12367
+ "500": {
12368
+ "description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
12369
+ "content": {
12370
+ "application/json": {
12371
+ "schema": {
12372
+ "$ref": "#/components/schemas/Error"
12373
+ },
12374
+ "examples": {
12375
+ "exampleResponse": {
12376
+ "value": {
12377
+ "name": "InternalServerError",
12378
+ "message": "errorMessage"
12379
+ }
12380
+ }
12381
+ }
12382
+ }
12383
+ }
12384
+ }
12385
+ }
12386
+ }
12387
+ },
12388
+ "/aig/{id}/versions": {
12389
+ "get": {
12390
+ "operationId": "auditableItemGraphVersionList",
12391
+ "summary": "Get all versions of a graph vertex",
12392
+ "tags": [
12393
+ "Auditable Item Graph"
12394
+ ],
12395
+ "parameters": [
12396
+ {
12397
+ "name": "id",
12398
+ "description": "The id of the vertex.",
12399
+ "in": "path",
12400
+ "required": true,
12401
+ "schema": {
12402
+ "type": "string"
12403
+ },
12404
+ "style": "simple",
12405
+ "example": "aig:1234567890"
12406
+ },
12407
+ {
12408
+ "name": "after",
12409
+ "description": "Only return versions created after this ISO 8601 timestamp (exclusive).",
12410
+ "in": "query",
12411
+ "required": false,
12412
+ "schema": {
12413
+ "type": "string"
12414
+ }
12415
+ },
12416
+ {
12417
+ "name": "before",
12418
+ "description": "Only return versions created before this ISO 8601 timestamp (exclusive).",
12419
+ "in": "query",
12420
+ "required": false,
12421
+ "schema": {
12422
+ "type": "string"
12423
+ }
12424
+ },
12425
+ {
12426
+ "name": "accept",
12427
+ "in": "header",
12428
+ "required": true,
12429
+ "schema": {
12430
+ "type": "string"
12431
+ },
12432
+ "style": "simple",
12433
+ "example": "application/json"
12434
+ }
12435
+ ],
12436
+ "security": [
12437
+ {
12438
+ "jwtBearerAuthScheme": []
12439
+ }
12440
+ ],
12441
+ "responses": {
12442
+ "200": {
12443
+ "description": "Response to getting all versions of an auditable item graph vertex.",
12444
+ "content": {
12445
+ "application/json": {
12446
+ "schema": {
12447
+ "$ref": "https://schema.twindev.org/aig/AuditableItemGraphVertexVersionList"
12448
+ },
12449
+ "examples": {
12450
+ "auditableItemGraphVersionListResponseExample": {
12451
+ "value": {
12452
+ "@context": [
12453
+ "https://schema.org",
12454
+ "https://schema.twindev.org/aig/",
12455
+ "https://schema.twindev.org/common/"
12456
+ ],
12457
+ "type": [
12458
+ "ItemList",
12459
+ "AuditableItemGraphVertexVersionList"
12460
+ ],
12461
+ "itemListElement": [
12462
+ 0,
12463
+ 1,
12464
+ 2
12465
+ ]
12466
+ }
12467
+ }
12468
+ }
12469
+ }
12470
+ }
12471
+ },
12472
+ "400": {
12473
+ "description": "The server cannot process the request, see the content for more details.",
12474
+ "content": {
12475
+ "application/json": {
12476
+ "schema": {
12477
+ "$ref": "#/components/schemas/Error"
12478
+ },
12479
+ "examples": {
12480
+ "exampleResponse": {
12481
+ "value": {
12482
+ "name": "GeneralError",
12483
+ "message": "errorMessage",
12484
+ "properties": {
12485
+ "foo": "bar"
12486
+ }
12487
+ }
12488
+ }
12489
+ }
12490
+ }
12491
+ }
12492
+ },
12493
+ "401": {
12494
+ "description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
12495
+ "content": {
12496
+ "application/json": {
12497
+ "schema": {
12498
+ "$ref": "#/components/schemas/Error"
12499
+ },
12500
+ "examples": {
12501
+ "exampleResponse": {
12502
+ "value": {
12503
+ "name": "UnauthorizedError",
12504
+ "message": "errorMessage"
12505
+ }
12506
+ }
12507
+ }
12508
+ }
12509
+ }
12510
+ },
12511
+ "500": {
12512
+ "description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
12513
+ "content": {
12514
+ "application/json": {
12515
+ "schema": {
12516
+ "$ref": "#/components/schemas/Error"
12517
+ },
12518
+ "examples": {
12519
+ "exampleResponse": {
12520
+ "value": {
12521
+ "name": "InternalServerError",
12522
+ "message": "errorMessage"
12523
+ }
12524
+ }
12525
+ }
12526
+ }
12527
+ }
12528
+ }
12529
+ }
12530
+ }
12531
+ },
12256
12532
  "/aig/{id}/changesets/{changesetId}": {
12257
12533
  "get": {
12258
12534
  "operationId": "auditableItemGraphChangesetGet",
@@ -20420,6 +20696,10 @@
20420
20696
  "verified": {
20421
20697
  "type": "boolean",
20422
20698
  "description": "Is the vertex verified, will only be populated when verification is requested."
20699
+ },
20700
+ "version": {
20701
+ "type": "number",
20702
+ "description": "The version of the vertex, populated only when getting a specific version.\nMaps to https://schema.org/version."
20423
20703
  }
20424
20704
  },
20425
20705
  "required": [
@@ -20494,6 +20774,10 @@
20494
20774
  "verified": {
20495
20775
  "type": "boolean",
20496
20776
  "description": "Is the vertex verified, will only be populated when verification is requested."
20777
+ },
20778
+ "version": {
20779
+ "type": "number",
20780
+ "description": "The version of the vertex, populated only when getting a specific version.\nMaps to https://schema.org/version."
20497
20781
  }
20498
20782
  },
20499
20783
  "required": [
@@ -21736,6 +22020,19 @@
21736
22020
  },
21737
22021
  "description": "The logout token details."
21738
22022
  },
22023
+ "MetricCounterOperation": {
22024
+ "description": "The types of metric counter operations.",
22025
+ "anyOf": [
22026
+ {
22027
+ "const": "inc",
22028
+ "description": "Increment Counter."
22029
+ },
22030
+ {
22031
+ "const": "dec",
22032
+ "description": "Decrement Counter."
22033
+ }
22034
+ ]
22035
+ },
21739
22036
  "MetricType": {
21740
22037
  "description": "The types of metrics.",
21741
22038
  "anyOf": [
@@ -22581,7 +22878,10 @@
22581
22878
  },
22582
22879
  "target": {
22583
22880
  "type": "string",
22584
- "description": "The target path of where to store the extracted data.\nSupports simple dotted path notation, and numeric index notation."
22881
+ "description": "The target path of where to store the extracted data.\nSupports simple dotted path notation, and numeric index notation.",
22882
+ "examples": [
22883
+ "\"path.to.data\" or \"path.to.data.0\""
22884
+ ]
22585
22885
  },
22586
22886
  "retainPathDepth": {
22587
22887
  "type": "number",
@@ -22842,10 +23142,7 @@
22842
23142
  "value": {
22843
23143
  "anyOf": [
22844
23144
  {
22845
- "const": "inc"
22846
- },
22847
- {
22848
- "const": "dec"
23145
+ "$ref": "#/components/schemas/MetricCounterOperation"
22849
23146
  },
22850
23147
  {
22851
23148
  "type": "number"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/node",
3
- "version": "0.0.3-next.35",
3
+ "version": "0.0.3-next.38",
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.35"
17
+ "@twin.org/node-core": "0.0.3-next.38"
18
18
  },
19
19
  "bugs": {
20
20
  "url": "git+https://github.com/iotaledger/node/issues"