@twin.org/node 0.0.3-next.36 → 0.0.3-next.39
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 +53 -11
- package/docs/changelog.md +110 -0
- package/docs/open-api/spec.json +371 -65
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -42,7 +42,11 @@
|
|
|
42
42
|
},
|
|
43
43
|
"userCreate": {
|
|
44
44
|
"passwordTooShort": "The password provided is too short, it must be at least {minLength} characters long.",
|
|
45
|
-
"userAlreadyExists": "The user with ID already exists and overwriteMode is set to \"error\"."
|
|
45
|
+
"userAlreadyExists": "The user with ID already exists and overwriteMode is set to \"error\".",
|
|
46
|
+
"tenantIdRequired": "The tenant ID is required when multi-tenancy is enabled."
|
|
47
|
+
},
|
|
48
|
+
"userUpdate": {
|
|
49
|
+
"tenantIdRequired": "The tenant ID is required when multi-tenancy is enabled."
|
|
46
50
|
},
|
|
47
51
|
"vaultKeyCreate": {
|
|
48
52
|
"vaultKeyAlreadyExists": "The vault key with ID already exists and overwriteMode is set to \"error\"."
|
|
@@ -291,6 +295,10 @@
|
|
|
291
295
|
"contextIdStore": {
|
|
292
296
|
"asyncHooksNotAvailable": "Async Hooks are not available in this environment, please ensure you are running in Node.js"
|
|
293
297
|
},
|
|
298
|
+
"entitySchemaDiffHelper": {
|
|
299
|
+
"duplicateOldProperty": "The oldProperties array contains a duplicate property key \"{property}\"",
|
|
300
|
+
"duplicateNewProperty": "The newProperties array contains a duplicate property key \"{property}\""
|
|
301
|
+
},
|
|
294
302
|
"entitySchemaHelper": {
|
|
295
303
|
"noIsPrimary": "Property \"entitySchema.properties\" must contain a value with isPrimary set",
|
|
296
304
|
"multipleIsPrimary": "Property \"entitySchema.properties\" contains more than one property with isPrimary set",
|
|
@@ -299,6 +307,11 @@
|
|
|
299
307
|
"invalidOptional": "The entity property \"{property}\" of type \"{type}\" is not optional, but no value has been provided",
|
|
300
308
|
"invalidEntityKeys": "The entity had additional properties that are not in the schema, \"{keys}\""
|
|
301
309
|
},
|
|
310
|
+
"migrationHelper": {
|
|
311
|
+
"migrationFailed": "Migration failed.",
|
|
312
|
+
"transformRequiredForProperty": "A transformation function is required to migrate property \"{from}\" to \"{to}\" of type \"{type}\"",
|
|
313
|
+
"coercionProducedUndefined": "Coercion of property \"{property}\" to type \"{type}\" produced undefined but the property is not optional"
|
|
314
|
+
},
|
|
302
315
|
"vaultConnectorHelper": {
|
|
303
316
|
"invalidSignature": "The JSON Web token signature could not be verified"
|
|
304
317
|
},
|
|
@@ -400,6 +413,9 @@
|
|
|
400
413
|
"verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
|
|
401
414
|
"verificationMethodJwkNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" is missing the JWK"
|
|
402
415
|
},
|
|
416
|
+
"silentTelemetryConnector": {
|
|
417
|
+
"notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
|
|
418
|
+
},
|
|
403
419
|
"attestationService": {
|
|
404
420
|
"noConnectors": "There are no connectors registered with the attestation factory",
|
|
405
421
|
"attestFailed": "The attestation of the data failed",
|
|
@@ -415,6 +431,9 @@
|
|
|
415
431
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Graph service \"{namespace}\"",
|
|
416
432
|
"createFailed": "Creating the Auditable Item Graph vertex failed",
|
|
417
433
|
"getFailed": "Getting the Auditable Item Graph vertex failed",
|
|
434
|
+
"getVersionFailed": "Getting the Auditable Item Graph vertex version failed",
|
|
435
|
+
"getVersionsFailed": "Getting the Auditable Item Graph vertex versions failed",
|
|
436
|
+
"versionNotFound": "The version with the Id \"{notFoundId}\" was not found",
|
|
418
437
|
"updatingFailed": "Updating the Auditable Item Graph vertex failed",
|
|
419
438
|
"queryingFailed": "Querying the Auditable Item Graph failed",
|
|
420
439
|
"removeVerifiableFailed": "Removing the verifiable data the Auditable Item Graph vertex failed",
|
|
@@ -653,11 +672,13 @@
|
|
|
653
672
|
"containerCreateFailed": "The container couldn't be created \"{containerId}\"",
|
|
654
673
|
"databaseCreateFailed": "Unable to create database \"{databaseId}\"",
|
|
655
674
|
"containerDoesNotExist": "Container \"{containerId}\" does not exist",
|
|
675
|
+
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
656
676
|
"setBatchFailed": "Unable to set batch of entities",
|
|
657
677
|
"countFailed": "Unable to count entities",
|
|
658
678
|
"emptyFailed": "Unable to empty entity storage",
|
|
659
679
|
"removeBatchFailed": "Unable to remove batch of entities",
|
|
660
|
-
"teardownFailed": "Unable to teardown entity storage"
|
|
680
|
+
"teardownFailed": "Unable to teardown entity storage",
|
|
681
|
+
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
661
682
|
},
|
|
662
683
|
"dynamoDbEntityStorageConnector": {
|
|
663
684
|
"tableCreateFailed": "Creating table \"{tableName}\" failed",
|
|
@@ -671,11 +692,13 @@
|
|
|
671
692
|
"sortSingle": "You can only sort by a single property",
|
|
672
693
|
"sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
|
|
673
694
|
"propertyNotFound": "The property \"{property}\" was not found on the entity schema",
|
|
695
|
+
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
674
696
|
"setBatchFailed": "Unable to set batch of entities",
|
|
675
697
|
"removeBatchFailed": "Unable to remove batch of entities",
|
|
676
698
|
"emptyFailed": "Unable to empty entity storage",
|
|
677
699
|
"countFailed": "Unable to count entities",
|
|
678
|
-
"teardownFailed": "Unable to teardown entity storage"
|
|
700
|
+
"teardownFailed": "Unable to teardown entity storage",
|
|
701
|
+
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
679
702
|
},
|
|
680
703
|
"fileEntityStorageConnector": {
|
|
681
704
|
"directoryCreateFailed": "Creating directory \"{directory}\" failed",
|
|
@@ -685,6 +708,7 @@
|
|
|
685
708
|
},
|
|
686
709
|
"firestoreEntityStorageConnector": {
|
|
687
710
|
"firestoreCreationFailed": "Failed to connect to Firestore",
|
|
711
|
+
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
688
712
|
"setEntityFailed": "Failed to set entity \"{id}\"",
|
|
689
713
|
"getEntityFailed": "Failed to get entity \"{id}\"",
|
|
690
714
|
"removeEntityFailed": "Failed to remove entity \"{id}\"",
|
|
@@ -694,7 +718,8 @@
|
|
|
694
718
|
"countFailed": "Unable to count entities",
|
|
695
719
|
"emptyFailed": "Failed to empty entity storage",
|
|
696
720
|
"removeBatchFailed": "Unable to remove batch of entities",
|
|
697
|
-
"teardownFailed": "Unable to teardown entity storage"
|
|
721
|
+
"teardownFailed": "Unable to teardown entity storage",
|
|
722
|
+
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
698
723
|
},
|
|
699
724
|
"mongoDbEntityStorageConnector": {
|
|
700
725
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
@@ -706,7 +731,9 @@
|
|
|
706
731
|
"removeBatchFailed": "Unable to remove batch of entities",
|
|
707
732
|
"emptyFailed": "Unable to empty entity storage",
|
|
708
733
|
"countFailed": "Unable to count entities",
|
|
709
|
-
"teardownFailed": "Unable to teardown entity storage"
|
|
734
|
+
"teardownFailed": "Unable to teardown entity storage",
|
|
735
|
+
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
736
|
+
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
710
737
|
},
|
|
711
738
|
"mySqlEntityStorageConnector": {
|
|
712
739
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
@@ -721,7 +748,9 @@
|
|
|
721
748
|
"countFailed": "Unable to count entities",
|
|
722
749
|
"emptyFailed": "Unable to empty entity storage",
|
|
723
750
|
"removeBatchFailed": "Unable to remove batch of entities",
|
|
724
|
-
"teardownFailed": "Unable to teardown entity storage"
|
|
751
|
+
"teardownFailed": "Unable to teardown entity storage",
|
|
752
|
+
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
753
|
+
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
725
754
|
},
|
|
726
755
|
"postgreSqlEntityStorageConnector": {
|
|
727
756
|
"databaseCreateFailed": "Unable to create database \"{databaseName}\"",
|
|
@@ -736,7 +765,9 @@
|
|
|
736
765
|
"countFailed": "Unable to count entities",
|
|
737
766
|
"emptyFailed": "Unable to empty entity storage",
|
|
738
767
|
"removeBatchFailed": "Unable to remove batch of entities",
|
|
739
|
-
"teardownFailed": "Unable to teardown entity storage"
|
|
768
|
+
"teardownFailed": "Unable to teardown entity storage",
|
|
769
|
+
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
770
|
+
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
740
771
|
},
|
|
741
772
|
"scyllaDBTableConnector": {
|
|
742
773
|
"tableCreateFailed": "Creating table \"{table}\" failed",
|
|
@@ -745,7 +776,9 @@
|
|
|
745
776
|
"setBatchFailed": "Setting batch of items failed",
|
|
746
777
|
"emptyFailed": "Emptying entity storage failed",
|
|
747
778
|
"removeBatchFailed": "Remove batch of entities failed",
|
|
748
|
-
"teardownFailed": "Teardown entity storage failed"
|
|
779
|
+
"teardownFailed": "Teardown entity storage failed",
|
|
780
|
+
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
781
|
+
"finalizeMigrationFailedBootstrap": "Finalizing migration failed during bootstrap phase"
|
|
749
782
|
},
|
|
750
783
|
"scyllaDBViewConnector": {
|
|
751
784
|
"viewCreateFailed": "Creating view \"{view}\" failed",
|
|
@@ -756,6 +789,9 @@
|
|
|
756
789
|
"findFailed": "Error while querying data on \"{table}\"",
|
|
757
790
|
"parseJSONFailed": "Parsing JSON failed for field \"{name}\" with value \"{value}\"",
|
|
758
791
|
"comparisonNotSupported": "Dot-notation nested property path \"{property}\" is not supported in CQL queries",
|
|
792
|
+
"notEqualsNotSupported": "The NotEquals operator is not supported in CQL queries for property \"{property}\"",
|
|
793
|
+
"notIncludesNotSupported": "The NotIncludes operator is not supported in CQL queries for property \"{property}\"",
|
|
794
|
+
"orConditionNotSupported": "OR logical operators are not supported in CQL queries",
|
|
759
795
|
"countFailed": "Unable to count entities"
|
|
760
796
|
},
|
|
761
797
|
"synchronisedEntityStorageConnector": {
|
|
@@ -1186,12 +1222,12 @@
|
|
|
1186
1222
|
"gaugeNoIncDec": "A gauge can not be incremented or decremented",
|
|
1187
1223
|
"maxHistoryMustBePositiveInteger": "The maxHistory option must be a positive integer"
|
|
1188
1224
|
},
|
|
1189
|
-
"silentTelemetryConnector": {
|
|
1190
|
-
"notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
|
|
1191
|
-
},
|
|
1192
1225
|
"openTelemetryTelemetryConnector": {
|
|
1193
1226
|
"unknownReaderType": "The reader type \"{type}\" is not supported, valid values are: prometheus"
|
|
1194
1227
|
},
|
|
1228
|
+
"metricsCollectorService": {
|
|
1229
|
+
"producerCollectionFailed": "Failed to collect metrics from producer \"{producer}\""
|
|
1230
|
+
},
|
|
1195
1231
|
"trustService": {
|
|
1196
1232
|
"notVerified": "Payload verification failed",
|
|
1197
1233
|
"noGeneratorsRegistered": "No trust generators are registered in the factory",
|
|
@@ -1717,6 +1753,9 @@
|
|
|
1717
1753
|
"organization-identity": {
|
|
1718
1754
|
"description": "The organization DID to associate the user with."
|
|
1719
1755
|
},
|
|
1756
|
+
"tenant-id": {
|
|
1757
|
+
"description": "The tenant ID to associate the user with."
|
|
1758
|
+
},
|
|
1720
1759
|
"email": {
|
|
1721
1760
|
"description": "The email address of the user."
|
|
1722
1761
|
},
|
|
@@ -1772,6 +1811,9 @@
|
|
|
1772
1811
|
"organization-identity": {
|
|
1773
1812
|
"description": "The organization DID to associate the user with."
|
|
1774
1813
|
},
|
|
1814
|
+
"tenant-id": {
|
|
1815
|
+
"description": "The tenant ID to associate the user with."
|
|
1816
|
+
},
|
|
1775
1817
|
"email": {
|
|
1776
1818
|
"description": "The email address of the user."
|
|
1777
1819
|
},
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,115 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.39](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.38...node-v0.0.3-next.39) (2026-05-21)
|
|
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.38 to 0.0.3-next.39
|
|
16
|
+
|
|
17
|
+
## [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)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add auth admin component ([1661e57](https://github.com/iotaledger/twin-node/commit/1661e57a699d5cf9ebde333e3cbc3aaea89d7c9c))
|
|
23
|
+
* add automation ([cfc63b4](https://github.com/iotaledger/twin-node/commit/cfc63b465c139280f696877df21d54dc6a065a7e))
|
|
24
|
+
* 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))
|
|
25
|
+
* add context id features ([#53](https://github.com/iotaledger/twin-node/issues/53)) ([827adf5](https://github.com/iotaledger/twin-node/commit/827adf52cb87fca53cec52b27e67f7a9dba2c088))
|
|
26
|
+
* add data space connector ([157e8b0](https://github.com/iotaledger/twin-node/commit/157e8b0a76e3a8a63c1991924f7f963eb83e27ae))
|
|
27
|
+
* add extend engine and server methods ([ec09c7e](https://github.com/iotaledger/twin-node/commit/ec09c7eb882d9f5797f2fd372e96cad1a3716f59))
|
|
28
|
+
* add extend engine and server methods ([0136a6f](https://github.com/iotaledger/twin-node/commit/0136a6f3f4e1a82b1427ee9618b8a17c79bc7fda))
|
|
29
|
+
* add extensions support ([476d5a8](https://github.com/iotaledger/twin-node/commit/476d5a864026a2f78e5b02bc9eb81359777a4a45))
|
|
30
|
+
* add fedcat to openapi ([eac69bd](https://github.com/iotaledger/twin-node/commit/eac69bdf94a22c35fe58e7523d9cf78bdc72eb7b))
|
|
31
|
+
* add missing export ([e8eb621](https://github.com/iotaledger/twin-node/commit/e8eb6213937a202520b164a9970a891004122b61))
|
|
32
|
+
* add notarization ([#121](https://github.com/iotaledger/twin-node/issues/121)) ([b2a11df](https://github.com/iotaledger/twin-node/commit/b2a11df92c7b5026f73f08a018c0586ebe008e92))
|
|
33
|
+
* 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))
|
|
34
|
+
* add rights management components ([0fc6293](https://github.com/iotaledger/twin-node/commit/0fc629332db24494bd73003625c7bf3f939a2597))
|
|
35
|
+
* add support for dynamodb connection timeout ([63051b0](https://github.com/iotaledger/twin-node/commit/63051b0d22138079115dfac921e7f0c45eaad34e))
|
|
36
|
+
* add synchronised storage config ([e315869](https://github.com/iotaledger/twin-node/commit/e315869adbffcd7fe5d3ce151dd35f662f6134a9))
|
|
37
|
+
* add trust and rights management plugin support ([cdeb504](https://github.com/iotaledger/twin-node/commit/cdeb504ee5986a347466162b9afa781645b4a54c))
|
|
38
|
+
* add trust ttl ([#73](https://github.com/iotaledger/twin-node/issues/73)) ([911cee7](https://github.com/iotaledger/twin-node/commit/911cee771bba490143bb1574ca8360f7cf8baa1a))
|
|
39
|
+
* add updated config vars ([ebe8178](https://github.com/iotaledger/twin-node/commit/ebe81788ce53ddf3d6925a5f2f6dac381f84f06c))
|
|
40
|
+
* add validate-locales ([1a19dcb](https://github.com/iotaledger/twin-node/commit/1a19dcb005c2f0e3103e290db28c48a3464094cb))
|
|
41
|
+
* add vault prefix configuration ([#75](https://github.com/iotaledger/twin-node/issues/75)) ([1d4afb1](https://github.com/iotaledger/twin-node/commit/1d4afb1b1a8aa60795898eeb9e7f5153c279527d))
|
|
42
|
+
* 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))
|
|
43
|
+
* additional options for enabling components ([e13d772](https://github.com/iotaledger/twin-node/commit/e13d7721a0dd7143d456fff246622cbe63dbd0f1))
|
|
44
|
+
* additional route logging env vars ([7152c88](https://github.com/iotaledger/twin-node/commit/7152c887c3ba76778e2d9e68ba57198b8d81d802))
|
|
45
|
+
* 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))
|
|
46
|
+
* custom REST paths ([#99](https://github.com/iotaledger/twin-node/issues/99)) ([dcab1b2](https://github.com/iotaledger/twin-node/commit/dcab1b2b23c13b4c9f39c3c1c67284f56e732bd1))
|
|
47
|
+
* 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))
|
|
48
|
+
* env var simplification ([460b0f2](https://github.com/iotaledger/twin-node/commit/460b0f20a73cb482f7443af502f261d5f9d01759))
|
|
49
|
+
* 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))
|
|
50
|
+
* eslint migration to flat config ([080db74](https://github.com/iotaledger/twin-node/commit/080db746390230f78725d214bc957da2efee9eb1))
|
|
51
|
+
* exclude unece codes from open api spec ([16b72f3](https://github.com/iotaledger/twin-node/commit/16b72f37af0d5aa107e5007741690a3fc043153a))
|
|
52
|
+
* 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))
|
|
53
|
+
* health and url transformer ([#131](https://github.com/iotaledger/twin-node/issues/131)) ([3658903](https://github.com/iotaledger/twin-node/commit/36589036b9bea120880fc395b0d123a89032cf40))
|
|
54
|
+
* improve bootstrapping and shutdown behaviour ([#66](https://github.com/iotaledger/twin-node/issues/66)) ([65b3452](https://github.com/iotaledger/twin-node/commit/65b345240334bfff48b52e136cc486cd7ac7f290))
|
|
55
|
+
* improve default options and spec ([b538721](https://github.com/iotaledger/twin-node/commit/b538721902e7f65021d2715148ba59409ccce035))
|
|
56
|
+
* improve node logging ([c25b9c6](https://github.com/iotaledger/twin-node/commit/c25b9c6779bdb76f341df072c39b4c2fae4565a3))
|
|
57
|
+
* initial commit ([522f1e5](https://github.com/iotaledger/twin-node/commit/522f1e515348f9b1dd1eeb3170b1249e2b0b5371))
|
|
58
|
+
* migrate env config from engine to node ([5da29b8](https://github.com/iotaledger/twin-node/commit/5da29b8d714495308320d237a68e84355bba2b47))
|
|
59
|
+
* 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))
|
|
60
|
+
* node app use JavaScript ([14fe08c](https://github.com/iotaledger/twin-node/commit/14fe08cb760dd885a5dac9056a4d5dbc3d61df64))
|
|
61
|
+
* remove dap and darp ([36c3ffb](https://github.com/iotaledger/twin-node/commit/36c3ffb31af65a0e3025859dab675efeee043155))
|
|
62
|
+
* separate script directory from exec directory ([f6bb4db](https://github.com/iotaledger/twin-node/commit/f6bb4dbea1f1e200e0640fa154c6997ef99c99b4))
|
|
63
|
+
* support multiple entity and blob storage connectors ([a489f79](https://github.com/iotaledger/twin-node/commit/a489f7907544aef5708d5111e9f72985e1377bae))
|
|
64
|
+
* support public origin and hosting service ([#77](https://github.com/iotaledger/twin-node/issues/77)) ([3b9039f](https://github.com/iotaledger/twin-node/commit/3b9039fcba7f7038c06f8fd6a5ccc9fdbbf535b3))
|
|
65
|
+
* typescript 6 update ([ce2e3ca](https://github.com/iotaledger/twin-node/commit/ce2e3ca5219587709f7b9cf6c65909b48fba11b5))
|
|
66
|
+
* update background tasks and add fedcat filters ([1fd297e](https://github.com/iotaledger/twin-node/commit/1fd297e29f60b5bb3909638b68e326c5b0e2d77d))
|
|
67
|
+
* update dependencies ([aab05b5](https://github.com/iotaledger/twin-node/commit/aab05b552152a208a504fb9a080603f1990d4f79))
|
|
68
|
+
* update dependencies ([6cb3d3a](https://github.com/iotaledger/twin-node/commit/6cb3d3a63f7b976f80074ddecfba034b7e92f919))
|
|
69
|
+
* update dependencies ([351f777](https://github.com/iotaledger/twin-node/commit/351f777e001bf4183762657fc565b133a317600a))
|
|
70
|
+
* update dependencies ([9d25f16](https://github.com/iotaledger/twin-node/commit/9d25f16f1d554cd38f3bec28fdf7f8fff892ceaf))
|
|
71
|
+
* update docs ([409126a](https://github.com/iotaledger/twin-node/commit/409126a1325998face4634426b71682944c6a504))
|
|
72
|
+
* update engine ([a40b377](https://github.com/iotaledger/twin-node/commit/a40b37726c3b61c6bb40265ec0006d1071ffac7e))
|
|
73
|
+
* update engine ([4b438e2](https://github.com/iotaledger/twin-node/commit/4b438e22c27d784ee6cc964b7cb4401e9699ab16))
|
|
74
|
+
* update for livez endpoint ([9fc2e6a](https://github.com/iotaledger/twin-node/commit/9fc2e6ade38b3ec9591399a633d02b1e5fe07910))
|
|
75
|
+
* update framework components ([4bee2b9](https://github.com/iotaledger/twin-node/commit/4bee2b9d3651df09b8550a9ed226be1b46031854))
|
|
76
|
+
* update framework core ([8bd769a](https://github.com/iotaledger/twin-node/commit/8bd769a4451f5f1f6be3f115a5e94eeb05bce7f1))
|
|
77
|
+
* update rights management ([5c992c6](https://github.com/iotaledger/twin-node/commit/5c992c6b0d72f3eeaa39ee267e096d9a3f477f4e))
|
|
78
|
+
* update rights management components ([176a0d6](https://github.com/iotaledger/twin-node/commit/176a0d611f88360fc845ae233b26ee0b43d7cb23))
|
|
79
|
+
* update spec generation config ([cff633a](https://github.com/iotaledger/twin-node/commit/cff633a0ffb73ad652d5f1bae653fa91e82dc8ab))
|
|
80
|
+
* update to latest engine ([00d4974](https://github.com/iotaledger/twin-node/commit/00d4974f9cfb02bf48505cfb4af4a7aba1df4b3d))
|
|
81
|
+
* update twindev schemas ([b7bb6ba](https://github.com/iotaledger/twin-node/commit/b7bb6ba308eaf10b66d349ada8f3880f15b31e0f))
|
|
82
|
+
* updated context id features ([ef7be07](https://github.com/iotaledger/twin-node/commit/ef7be07d44dccdeacf10f90cb4ffde0303faa6fa))
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
### Bug Fixes
|
|
86
|
+
|
|
87
|
+
* adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/iotaledger/twin-node/commit/6030a42bdaf581678d96932fd0b809396bf7b8b0))
|
|
88
|
+
* adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/iotaledger/twin-node/commit/c66f396717394161a7647d1f08b3d87729d96e96))
|
|
89
|
+
* broken docs ([61479fd](https://github.com/iotaledger/twin-node/commit/61479fd618f766d22c5aafec5277e1a89e22b453))
|
|
90
|
+
* improve calculation of execution directory ([106d65d](https://github.com/iotaledger/twin-node/commit/106d65d7ad5524e2e147b681d68f9476c024cfaa))
|
|
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.37 to 0.0.3-next.38
|
|
98
|
+
|
|
99
|
+
## [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)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
### Miscellaneous Chores
|
|
103
|
+
|
|
104
|
+
* **node:** Synchronize repo versions
|
|
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.36 to 0.0.3-next.37
|
|
112
|
+
|
|
3
113
|
## [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)
|
|
4
114
|
|
|
5
115
|
|
package/docs/open-api/spec.json
CHANGED
|
@@ -1224,7 +1224,7 @@
|
|
|
1224
1224
|
"content": {
|
|
1225
1225
|
"application/json": {
|
|
1226
1226
|
"schema": {
|
|
1227
|
-
"$ref": "#/components/schemas/
|
|
1227
|
+
"$ref": "#/components/schemas/AuthenticationUser"
|
|
1228
1228
|
},
|
|
1229
1229
|
"examples": {
|
|
1230
1230
|
"getUserResponseExample": {
|
|
@@ -1529,7 +1529,7 @@
|
|
|
1529
1529
|
"content": {
|
|
1530
1530
|
"application/json": {
|
|
1531
1531
|
"schema": {
|
|
1532
|
-
"$ref": "#/components/schemas/
|
|
1532
|
+
"$ref": "#/components/schemas/AuthenticationUser"
|
|
1533
1533
|
},
|
|
1534
1534
|
"examples": {
|
|
1535
1535
|
"getUserResponseExample": {
|
|
@@ -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",
|
|
@@ -20082,71 +20358,21 @@
|
|
|
20082
20358
|
]
|
|
20083
20359
|
},
|
|
20084
20360
|
"AdminUserCreateRequest": {
|
|
20085
|
-
"description": "The body of the request.",
|
|
20086
20361
|
"type": "object",
|
|
20087
20362
|
"properties": {
|
|
20088
|
-
"email": {
|
|
20089
|
-
"type": "string",
|
|
20090
|
-
"description": "The user e-mail address."
|
|
20091
|
-
},
|
|
20092
20363
|
"password": {
|
|
20093
|
-
"type": "string"
|
|
20094
|
-
"description": "The encrypted password for the user."
|
|
20095
|
-
},
|
|
20096
|
-
"userIdentity": {
|
|
20097
|
-
"type": "string",
|
|
20098
|
-
"description": "The user identity."
|
|
20099
|
-
},
|
|
20100
|
-
"organizationIdentity": {
|
|
20101
|
-
"type": "string",
|
|
20102
|
-
"description": "The users organization."
|
|
20103
|
-
},
|
|
20104
|
-
"scope": {
|
|
20105
|
-
"type": "array",
|
|
20106
|
-
"items": {
|
|
20107
|
-
"type": "string"
|
|
20108
|
-
},
|
|
20109
|
-
"description": "The scope assigned to the user, comma separated."
|
|
20364
|
+
"type": "string"
|
|
20110
20365
|
}
|
|
20111
20366
|
},
|
|
20112
20367
|
"required": [
|
|
20113
|
-
"
|
|
20114
|
-
|
|
20115
|
-
|
|
20116
|
-
|
|
20117
|
-
|
|
20118
|
-
]
|
|
20119
|
-
},
|
|
20120
|
-
"AdminUserGetResponse": {
|
|
20121
|
-
"description": "The body of the request.",
|
|
20122
|
-
"type": "object",
|
|
20123
|
-
"properties": {
|
|
20124
|
-
"email": {
|
|
20125
|
-
"type": "string",
|
|
20126
|
-
"description": "The user e-mail address."
|
|
20127
|
-
},
|
|
20128
|
-
"userIdentity": {
|
|
20129
|
-
"type": "string",
|
|
20130
|
-
"description": "The user identity."
|
|
20131
|
-
},
|
|
20132
|
-
"organizationIdentity": {
|
|
20133
|
-
"type": "string",
|
|
20134
|
-
"description": "The users organization."
|
|
20135
|
-
},
|
|
20136
|
-
"scope": {
|
|
20137
|
-
"type": "array",
|
|
20138
|
-
"items": {
|
|
20139
|
-
"type": "string"
|
|
20140
|
-
},
|
|
20141
|
-
"description": "The scope assigned to the user, comma separated."
|
|
20368
|
+
"password"
|
|
20369
|
+
],
|
|
20370
|
+
"allOf": [
|
|
20371
|
+
{
|
|
20372
|
+
"$ref": "#/components/schemas/AuthenticationUser"
|
|
20142
20373
|
}
|
|
20143
|
-
|
|
20144
|
-
"
|
|
20145
|
-
"email",
|
|
20146
|
-
"userIdentity",
|
|
20147
|
-
"organizationIdentity",
|
|
20148
|
-
"scope"
|
|
20149
|
-
]
|
|
20374
|
+
],
|
|
20375
|
+
"description": "The body of the request."
|
|
20150
20376
|
},
|
|
20151
20377
|
"AdminUserUpdatePasswordRequest": {
|
|
20152
20378
|
"type": "object",
|
|
@@ -20420,6 +20646,10 @@
|
|
|
20420
20646
|
"verified": {
|
|
20421
20647
|
"type": "boolean",
|
|
20422
20648
|
"description": "Is the vertex verified, will only be populated when verification is requested."
|
|
20649
|
+
},
|
|
20650
|
+
"version": {
|
|
20651
|
+
"type": "number",
|
|
20652
|
+
"description": "The version of the vertex, populated only when getting a specific version.\nMaps to https://schema.org/version."
|
|
20423
20653
|
}
|
|
20424
20654
|
},
|
|
20425
20655
|
"required": [
|
|
@@ -20494,6 +20724,10 @@
|
|
|
20494
20724
|
"verified": {
|
|
20495
20725
|
"type": "boolean",
|
|
20496
20726
|
"description": "Is the vertex verified, will only be populated when verification is requested."
|
|
20727
|
+
},
|
|
20728
|
+
"version": {
|
|
20729
|
+
"type": "number",
|
|
20730
|
+
"description": "The version of the vertex, populated only when getting a specific version.\nMaps to https://schema.org/version."
|
|
20497
20731
|
}
|
|
20498
20732
|
},
|
|
20499
20733
|
"required": [
|
|
@@ -20670,6 +20904,37 @@
|
|
|
20670
20904
|
"dateCreated"
|
|
20671
20905
|
]
|
|
20672
20906
|
},
|
|
20907
|
+
"AuthenticationUser": {
|
|
20908
|
+
"description": "Contract definition for authentication user.",
|
|
20909
|
+
"type": "object",
|
|
20910
|
+
"properties": {
|
|
20911
|
+
"email": {
|
|
20912
|
+
"type": "string",
|
|
20913
|
+
"description": "The user e-mail address."
|
|
20914
|
+
},
|
|
20915
|
+
"userIdentity": {
|
|
20916
|
+
"type": "string",
|
|
20917
|
+
"description": "The user identity."
|
|
20918
|
+
},
|
|
20919
|
+
"organizationIdentity": {
|
|
20920
|
+
"type": "string",
|
|
20921
|
+
"description": "The users organization."
|
|
20922
|
+
},
|
|
20923
|
+
"scope": {
|
|
20924
|
+
"type": "array",
|
|
20925
|
+
"items": {
|
|
20926
|
+
"type": "string"
|
|
20927
|
+
},
|
|
20928
|
+
"description": "The scope assigned to the user, comma separated."
|
|
20929
|
+
}
|
|
20930
|
+
},
|
|
20931
|
+
"required": [
|
|
20932
|
+
"email",
|
|
20933
|
+
"userIdentity",
|
|
20934
|
+
"organizationIdentity",
|
|
20935
|
+
"scope"
|
|
20936
|
+
]
|
|
20937
|
+
},
|
|
20673
20938
|
"AutomationActionCreateRequest": {
|
|
20674
20939
|
"description": "The body parameters for the request.",
|
|
20675
20940
|
"type": "object",
|
|
@@ -21460,6 +21725,20 @@
|
|
|
21460
21725
|
"expirationDate": {
|
|
21461
21726
|
"type": "string",
|
|
21462
21727
|
"description": "The date the verifiable credential is valid until."
|
|
21728
|
+
},
|
|
21729
|
+
"jwtHeaderFields": {
|
|
21730
|
+
"type": "object",
|
|
21731
|
+
"additionalProperties": {
|
|
21732
|
+
"type": "string"
|
|
21733
|
+
},
|
|
21734
|
+
"description": "Additional fields to include in the JWT when creating the verifiable credential in jwt format."
|
|
21735
|
+
},
|
|
21736
|
+
"jwtPayloadFields": {
|
|
21737
|
+
"type": "object",
|
|
21738
|
+
"additionalProperties": {
|
|
21739
|
+
"type": "string"
|
|
21740
|
+
},
|
|
21741
|
+
"description": "Additional fields to include in the JWT payload when creating the verifiable credential in jwt format."
|
|
21463
21742
|
}
|
|
21464
21743
|
},
|
|
21465
21744
|
"required": [
|
|
@@ -21541,6 +21820,20 @@
|
|
|
21541
21820
|
"expirationDate": {
|
|
21542
21821
|
"type": "string",
|
|
21543
21822
|
"description": "The expiration date/time for the presentation."
|
|
21823
|
+
},
|
|
21824
|
+
"jwtHeaderFields": {
|
|
21825
|
+
"type": "object",
|
|
21826
|
+
"additionalProperties": {
|
|
21827
|
+
"type": "string"
|
|
21828
|
+
},
|
|
21829
|
+
"description": "Additional fields to include in the JWT header when creating the verifiable presentation in jwt format."
|
|
21830
|
+
},
|
|
21831
|
+
"jwtPayloadFields": {
|
|
21832
|
+
"type": "object",
|
|
21833
|
+
"additionalProperties": {
|
|
21834
|
+
"type": "string"
|
|
21835
|
+
},
|
|
21836
|
+
"description": "Additional fields to include in the JWT payload when creating the verifiable presentation in jwt format."
|
|
21544
21837
|
}
|
|
21545
21838
|
},
|
|
21546
21839
|
"required": [
|
|
@@ -21736,6 +22029,19 @@
|
|
|
21736
22029
|
},
|
|
21737
22030
|
"description": "The logout token details."
|
|
21738
22031
|
},
|
|
22032
|
+
"MetricCounterOperation": {
|
|
22033
|
+
"description": "The types of metric counter operations.",
|
|
22034
|
+
"anyOf": [
|
|
22035
|
+
{
|
|
22036
|
+
"const": "inc",
|
|
22037
|
+
"description": "Increment Counter."
|
|
22038
|
+
},
|
|
22039
|
+
{
|
|
22040
|
+
"const": "dec",
|
|
22041
|
+
"description": "Decrement Counter."
|
|
22042
|
+
}
|
|
22043
|
+
]
|
|
22044
|
+
},
|
|
21739
22045
|
"MetricType": {
|
|
21740
22046
|
"description": "The types of metrics.",
|
|
21741
22047
|
"anyOf": [
|
|
@@ -22581,7 +22887,10 @@
|
|
|
22581
22887
|
},
|
|
22582
22888
|
"target": {
|
|
22583
22889
|
"type": "string",
|
|
22584
|
-
"description": "The target path of where to store the extracted data.\nSupports simple dotted path notation, and numeric index notation."
|
|
22890
|
+
"description": "The target path of where to store the extracted data.\nSupports simple dotted path notation, and numeric index notation.",
|
|
22891
|
+
"examples": [
|
|
22892
|
+
"\"path.to.data\" or \"path.to.data.0\""
|
|
22893
|
+
]
|
|
22585
22894
|
},
|
|
22586
22895
|
"retainPathDepth": {
|
|
22587
22896
|
"type": "number",
|
|
@@ -22842,10 +23151,7 @@
|
|
|
22842
23151
|
"value": {
|
|
22843
23152
|
"anyOf": [
|
|
22844
23153
|
{
|
|
22845
|
-
"
|
|
22846
|
-
},
|
|
22847
|
-
{
|
|
22848
|
-
"const": "dec"
|
|
23154
|
+
"$ref": "#/components/schemas/MetricCounterOperation"
|
|
22849
23155
|
},
|
|
22850
23156
|
{
|
|
22851
23157
|
"type": "number"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.39",
|
|
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.
|
|
17
|
+
"@twin.org/node-core": "0.0.3-next.39"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/node/issues"
|