@twin.org/node 0.9.0 → 0.9.1-next.2
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 +17 -9
- package/docs/changelog.md +111 -0
- package/docs/open-api/spec.json +102 -9
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -198,6 +198,8 @@
|
|
|
198
198
|
"uint8Array": "Property \"{property}\" must be a Uint8Array, it is \"{value}\"",
|
|
199
199
|
"function": "Property \"{property}\" must be a function, it is \"{value}\"",
|
|
200
200
|
"urn": "Property \"{property}\" must be a URN formatted string, it is \"{value}\"",
|
|
201
|
+
"urnNamespaceIdentifier": "Property \"{property}\" must be a URN with namespace identifier \"{options}\", it is \"{value}\"",
|
|
202
|
+
"urnNamespaceSpecific": "Property \"{property}\" must be a URN with namespace specific \"{options}\", it is \"{value}\"",
|
|
201
203
|
"url": "Property \"{property}\" must be a URL formatted string, it is \"{value}\"",
|
|
202
204
|
"email": "Property \"{property}\" must be string in e-mail format, it is \"{value}\"",
|
|
203
205
|
"uuidV7": "Property \"{property}\" must be a UUIDv7 formatted string, it is \"{value}\"",
|
|
@@ -319,6 +321,11 @@
|
|
|
319
321
|
"decodingFailed": "Decoding JSON failed for route \"{route}\"",
|
|
320
322
|
"failureStatusText": "The request to the API failed: \"{statusText}\""
|
|
321
323
|
},
|
|
324
|
+
"httpHeaderHelper": {
|
|
325
|
+
"locationMissing": "The Location response header is missing or empty",
|
|
326
|
+
"idNotFound": "The resource ID could not be extracted from the Location header",
|
|
327
|
+
"templateNoPlaceholder": "The URL template contains no colon-prefixed placeholder segment"
|
|
328
|
+
},
|
|
322
329
|
"contextIdHelper": {
|
|
323
330
|
"contextIdMissing": "The context ID \"{key}\" is missing from the provided context IDs",
|
|
324
331
|
"contextIdSplitMismatch": "The context ID split parts length \"{actual}\" does not match the provided keys length \"{expected}\""
|
|
@@ -1051,6 +1058,9 @@
|
|
|
1051
1058
|
"proofNotFound": "The proof with the Id \"{notFoundId}\" was not found",
|
|
1052
1059
|
"createProofFailed": "Creating the immutable proof failed"
|
|
1053
1060
|
},
|
|
1061
|
+
"openTelemetryLoggingConnector": {
|
|
1062
|
+
"unknownExporterType": "The exporter type \"{type}\" is not supported, valid values are: otlp"
|
|
1063
|
+
},
|
|
1054
1064
|
"awsMessagingSmsConnector": {
|
|
1055
1065
|
"sendSMSFailed": "Failed to send SMS"
|
|
1056
1066
|
},
|
|
@@ -1177,9 +1187,10 @@
|
|
|
1177
1187
|
"transferFailed": "The transfer of the notarization failed"
|
|
1178
1188
|
},
|
|
1179
1189
|
"dataAccessPointService": {
|
|
1180
|
-
"noHandlerForAssetType": "No handler registered for asset type \"{assetType}\""
|
|
1190
|
+
"noHandlerForAssetType": "No handler registered for asset type \"{assetType}\"",
|
|
1191
|
+
"notAuthorizedToQuery": "Not authorized to query asset type \"{assetType}\"",
|
|
1192
|
+
"notAuthorizedToGet": "Not authorized to get asset type \"{assetType}\" with id \"{id}\""
|
|
1181
1193
|
},
|
|
1182
|
-
"dataAccessRequestPointService": {},
|
|
1183
1194
|
"policyAdministrationPointService": {
|
|
1184
1195
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the rights management components \"{namespace}\"",
|
|
1185
1196
|
"policyAlreadyExists": "A policy with id: \"{existingId}\" already exists",
|
|
@@ -2257,6 +2268,10 @@
|
|
|
2257
2268
|
"immutableProofService": {
|
|
2258
2269
|
"createdProof": "The immutable proof with Id \"{proofId}\" has been created successfully"
|
|
2259
2270
|
},
|
|
2271
|
+
"openTelemetryLoggingConnector": {
|
|
2272
|
+
"connectorStarted": "The connector was started with \"{exporterCount}\" exporter(s)",
|
|
2273
|
+
"connectorStopped": "The connector was stopped"
|
|
2274
|
+
},
|
|
2260
2275
|
"awsMessagingSmsConnector": {
|
|
2261
2276
|
"smsSending": "Sending SMS of type"
|
|
2262
2277
|
},
|
|
@@ -2286,13 +2301,6 @@
|
|
|
2286
2301
|
"contractReady": "Contract ready for use"
|
|
2287
2302
|
},
|
|
2288
2303
|
"iotaNotarizationConnector": {},
|
|
2289
|
-
"dataAccessPointService": {
|
|
2290
|
-
"registeredHandler": "Handler registered with id: \"{handlerId}\"",
|
|
2291
|
-
"unregisteredHandler": "Handler unregistered with id: \"{handlerId}\""
|
|
2292
|
-
},
|
|
2293
|
-
"dataAccessRequestPointService": {
|
|
2294
|
-
"missingNodeIdentity": "The node identity is missing"
|
|
2295
|
-
},
|
|
2296
2304
|
"policyEnforcementPointService": {
|
|
2297
2305
|
"processing": "Processing information using processor with id: \"{processorId}\", policy id: \"{policyId}\"",
|
|
2298
2306
|
"intercepting": "Intercepting information for policy id: \"{policyId}\""
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,116 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.1-next.2](https://github.com/iotaledger/twin-node/compare/node-v0.9.1-next.1...node-v0.9.1-next.2) (2026-06-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* extend to 7-group weighted mix, fix REST paths + JSON-LD contexts ([#257](https://github.com/iotaledger/twin-node/issues/257)) ([d9f8d55](https://github.com/iotaledger/twin-node/commit/d9f8d55d389a82947b7a0297f44f76f7f6b3ba21))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/node-core bumped from 0.9.1-next.1 to 0.9.1-next.2
|
|
16
|
+
|
|
17
|
+
## [0.9.1-next.1](https://github.com/iotaledger/twin-node/compare/node-v0.9.1-next.0...node-v0.9.1-next.1) (2026-06-26)
|
|
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 mutex settings ([#222](https://github.com/iotaledger/twin-node/issues/222)) ([492c55f](https://github.com/iotaledger/twin-node/commit/492c55f67d5f70c2a4a27dfdb2700a644ee87955))
|
|
33
|
+
* add notarization ([#121](https://github.com/iotaledger/twin-node/issues/121)) ([b2a11df](https://github.com/iotaledger/twin-node/commit/b2a11df92c7b5026f73f08a018c0586ebe008e92))
|
|
34
|
+
* 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))
|
|
35
|
+
* add rights management components ([0fc6293](https://github.com/iotaledger/twin-node/commit/0fc629332db24494bd73003625c7bf3f939a2597))
|
|
36
|
+
* add soak and load test harness for the node server with k6 and memory-growth detection ([#248](https://github.com/iotaledger/twin-node/issues/248)) ([5dc9193](https://github.com/iotaledger/twin-node/commit/5dc91931d448796f4dedbab912c73817a8041b11))
|
|
37
|
+
* add standalone federated catalogue example config and endpoint tests ([#235](https://github.com/iotaledger/twin-node/issues/235)) ([ffb51dd](https://github.com/iotaledger/twin-node/commit/ffb51ddda5188c2f21b8ce65343b39a28f4eee4b))
|
|
38
|
+
* add support for dynamodb connection timeout ([63051b0](https://github.com/iotaledger/twin-node/commit/63051b0d22138079115dfac921e7f0c45eaad34e))
|
|
39
|
+
* add synchronised storage config ([e315869](https://github.com/iotaledger/twin-node/commit/e315869adbffcd7fe5d3ce151dd35f662f6134a9))
|
|
40
|
+
* add trust and rights management plugin support ([cdeb504](https://github.com/iotaledger/twin-node/commit/cdeb504ee5986a347466162b9afa781645b4a54c))
|
|
41
|
+
* add trust ttl ([#73](https://github.com/iotaledger/twin-node/issues/73)) ([911cee7](https://github.com/iotaledger/twin-node/commit/911cee771bba490143bb1574ca8360f7cf8baa1a))
|
|
42
|
+
* add updated config vars ([ebe8178](https://github.com/iotaledger/twin-node/commit/ebe81788ce53ddf3d6925a5f2f6dac381f84f06c))
|
|
43
|
+
* add validate-locales ([1a19dcb](https://github.com/iotaledger/twin-node/commit/1a19dcb005c2f0e3103e290db28c48a3464094cb))
|
|
44
|
+
* add vault prefix configuration ([#75](https://github.com/iotaledger/twin-node/issues/75)) ([1d4afb1](https://github.com/iotaledger/twin-node/commit/1d4afb1b1a8aa60795898eeb9e7f5153c279527d))
|
|
45
|
+
* 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))
|
|
46
|
+
* additional options for enabling components ([e13d772](https://github.com/iotaledger/twin-node/commit/e13d7721a0dd7143d456fff246622cbe63dbd0f1))
|
|
47
|
+
* additional route logging env vars ([7152c88](https://github.com/iotaledger/twin-node/commit/7152c887c3ba76778e2d9e68ba57198b8d81d802))
|
|
48
|
+
* 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))
|
|
49
|
+
* custom REST paths ([#99](https://github.com/iotaledger/twin-node/issues/99)) ([dcab1b2](https://github.com/iotaledger/twin-node/commit/dcab1b2b23c13b4c9f39c3c1c67284f56e732bd1))
|
|
50
|
+
* 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))
|
|
51
|
+
* env var simplification ([460b0f2](https://github.com/iotaledger/twin-node/commit/460b0f20a73cb482f7443af502f261d5f9d01759))
|
|
52
|
+
* env var validation ([#243](https://github.com/iotaledger/twin-node/issues/243)) ([569945a](https://github.com/iotaledger/twin-node/commit/569945a751eb52d008a681777a3cba881af1b9a4))
|
|
53
|
+
* env vars consistency ([1823b7a](https://github.com/iotaledger/twin-node/commit/1823b7aeae5dc7484861534b851080afda64d869))
|
|
54
|
+
* 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))
|
|
55
|
+
* eslint migration to flat config ([080db74](https://github.com/iotaledger/twin-node/commit/080db746390230f78725d214bc957da2efee9eb1))
|
|
56
|
+
* exclude unece codes from open api spec ([16b72f3](https://github.com/iotaledger/twin-node/commit/16b72f37af0d5aa107e5007741690a3fc043153a))
|
|
57
|
+
* federated catalogue trust mode ([#194](https://github.com/iotaledger/twin-node/issues/194)) ([c18e6fb](https://github.com/iotaledger/twin-node/commit/c18e6fbe0014eb5faf8084d16169d86f3d3b23a6))
|
|
58
|
+
* 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))
|
|
59
|
+
* health and url transformer ([#131](https://github.com/iotaledger/twin-node/issues/131)) ([3658903](https://github.com/iotaledger/twin-node/commit/36589036b9bea120880fc395b0d123a89032cf40))
|
|
60
|
+
* identity profile information source ([dbb53d1](https://github.com/iotaledger/twin-node/commit/dbb53d145f517070d864f37650a6dbc1f3e9c3a8))
|
|
61
|
+
* immutable proof gate and additional config ([#157](https://github.com/iotaledger/twin-node/issues/157)) ([1d1fbb7](https://github.com/iotaledger/twin-node/commit/1d1fbb7c53525af848761dc25b42e9e676929972))
|
|
62
|
+
* improve bootstrapping and shutdown behaviour ([#66](https://github.com/iotaledger/twin-node/issues/66)) ([65b3452](https://github.com/iotaledger/twin-node/commit/65b345240334bfff48b52e136cc486cd7ac7f290))
|
|
63
|
+
* improve default options and spec ([b538721](https://github.com/iotaledger/twin-node/commit/b538721902e7f65021d2715148ba59409ccce035))
|
|
64
|
+
* improve node logging ([c25b9c6](https://github.com/iotaledger/twin-node/commit/c25b9c6779bdb76f341df072c39b4c2fae4565a3))
|
|
65
|
+
* improved cli commands ([#206](https://github.com/iotaledger/twin-node/issues/206)) ([cf00850](https://github.com/iotaledger/twin-node/commit/cf0085023a66e187aaaaf3889128c845c73a1faf))
|
|
66
|
+
* initial commit ([522f1e5](https://github.com/iotaledger/twin-node/commit/522f1e515348f9b1dd1eeb3170b1249e2b0b5371))
|
|
67
|
+
* migrate env config from engine to node ([5da29b8](https://github.com/iotaledger/twin-node/commit/5da29b8d714495308320d237a68e84355bba2b47))
|
|
68
|
+
* migration testing ([#199](https://github.com/iotaledger/twin-node/issues/199)) ([97a731c](https://github.com/iotaledger/twin-node/commit/97a731c520d66ab0588d80987a0f88d388ce51ae))
|
|
69
|
+
* 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))
|
|
70
|
+
* new tenant auth mechanisms ([#168](https://github.com/iotaledger/twin-node/issues/168)) ([686f111](https://github.com/iotaledger/twin-node/commit/686f1118e79e6f26a8dc72a5e9172584057f4518))
|
|
71
|
+
* node app use JavaScript ([14fe08c](https://github.com/iotaledger/twin-node/commit/14fe08cb760dd885a5dac9056a4d5dbc3d61df64))
|
|
72
|
+
* organization identifiers ([#203](https://github.com/iotaledger/twin-node/issues/203)) ([1a6b176](https://github.com/iotaledger/twin-node/commit/1a6b1760d9f8e43a769407668426c70e1c8e1aa8))
|
|
73
|
+
* remove dap and darp ([36c3ffb](https://github.com/iotaledger/twin-node/commit/36c3ffb31af65a0e3025859dab675efeee043155))
|
|
74
|
+
* remove set-tenant ([#186](https://github.com/iotaledger/twin-node/issues/186)) ([1fc1909](https://github.com/iotaledger/twin-node/commit/1fc1909e6335dea51dfec3bb91fba4badaa9790a))
|
|
75
|
+
* separate script directory from exec directory ([f6bb4db](https://github.com/iotaledger/twin-node/commit/f6bb4dbea1f1e200e0640fa154c6997ef99c99b4))
|
|
76
|
+
* support multiple entity and blob storage connectors ([a489f79](https://github.com/iotaledger/twin-node/commit/a489f7907544aef5708d5111e9f72985e1377bae))
|
|
77
|
+
* support public origin and hosting service ([#77](https://github.com/iotaledger/twin-node/issues/77)) ([3b9039f](https://github.com/iotaledger/twin-node/commit/3b9039fcba7f7038c06f8fd6a5ccc9fdbbf535b3))
|
|
78
|
+
* typescript 6 update ([ce2e3ca](https://github.com/iotaledger/twin-node/commit/ce2e3ca5219587709f7b9cf6c65909b48fba11b5))
|
|
79
|
+
* update background tasks and add fedcat filters ([1fd297e](https://github.com/iotaledger/twin-node/commit/1fd297e29f60b5bb3909638b68e326c5b0e2d77d))
|
|
80
|
+
* update dependencies ([aab05b5](https://github.com/iotaledger/twin-node/commit/aab05b552152a208a504fb9a080603f1990d4f79))
|
|
81
|
+
* update dependencies ([6cb3d3a](https://github.com/iotaledger/twin-node/commit/6cb3d3a63f7b976f80074ddecfba034b7e92f919))
|
|
82
|
+
* update dependencies ([351f777](https://github.com/iotaledger/twin-node/commit/351f777e001bf4183762657fc565b133a317600a))
|
|
83
|
+
* update dependencies ([9d25f16](https://github.com/iotaledger/twin-node/commit/9d25f16f1d554cd38f3bec28fdf7f8fff892ceaf))
|
|
84
|
+
* update docs ([409126a](https://github.com/iotaledger/twin-node/commit/409126a1325998face4634426b71682944c6a504))
|
|
85
|
+
* update document management components ([ed2c065](https://github.com/iotaledger/twin-node/commit/ed2c065a5030a7233f3623818d7325d85654ef0d))
|
|
86
|
+
* update engine ([a40b377](https://github.com/iotaledger/twin-node/commit/a40b37726c3b61c6bb40265ec0006d1071ffac7e))
|
|
87
|
+
* update engine ([4b438e2](https://github.com/iotaledger/twin-node/commit/4b438e22c27d784ee6cc964b7cb4401e9699ab16))
|
|
88
|
+
* update for livez endpoint ([9fc2e6a](https://github.com/iotaledger/twin-node/commit/9fc2e6ade38b3ec9591399a633d02b1e5fe07910))
|
|
89
|
+
* update framework components ([4bee2b9](https://github.com/iotaledger/twin-node/commit/4bee2b9d3651df09b8550a9ed226be1b46031854))
|
|
90
|
+
* update framework core ([8bd769a](https://github.com/iotaledger/twin-node/commit/8bd769a4451f5f1f6be3f115a5e94eeb05bce7f1))
|
|
91
|
+
* update rights management ([5c992c6](https://github.com/iotaledger/twin-node/commit/5c992c6b0d72f3eeaa39ee267e096d9a3f477f4e))
|
|
92
|
+
* update rights management components ([176a0d6](https://github.com/iotaledger/twin-node/commit/176a0d611f88360fc845ae233b26ee0b43d7cb23))
|
|
93
|
+
* update spec generation config ([cff633a](https://github.com/iotaledger/twin-node/commit/cff633a0ffb73ad652d5f1bae653fa91e82dc8ab))
|
|
94
|
+
* update to latest engine ([00d4974](https://github.com/iotaledger/twin-node/commit/00d4974f9cfb02bf48505cfb4af4a7aba1df4b3d))
|
|
95
|
+
* update twindev schemas ([b7bb6ba](https://github.com/iotaledger/twin-node/commit/b7bb6ba308eaf10b66d349ada8f3880f15b31e0f))
|
|
96
|
+
* updated context id features ([ef7be07](https://github.com/iotaledger/twin-node/commit/ef7be07d44dccdeacf10f90cb4ffde0303faa6fa))
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Bug Fixes
|
|
100
|
+
|
|
101
|
+
* adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/iotaledger/twin-node/commit/6030a42bdaf581678d96932fd0b809396bf7b8b0))
|
|
102
|
+
* adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/iotaledger/twin-node/commit/c66f396717394161a7647d1f08b3d87729d96e96))
|
|
103
|
+
* broken docs ([61479fd](https://github.com/iotaledger/twin-node/commit/61479fd618f766d22c5aafec5277e1a89e22b453))
|
|
104
|
+
* improve calculation of execution directory ([106d65d](https://github.com/iotaledger/twin-node/commit/106d65d7ad5524e2e147b681d68f9476c024cfaa))
|
|
105
|
+
* stalled timeout now is provided in seconds ([#241](https://github.com/iotaledger/twin-node/issues/241)) ([ebd827d](https://github.com/iotaledger/twin-node/commit/ebd827d02a9a4f8ad4f4c84d064d02831ef015cb))
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
### Dependencies
|
|
109
|
+
|
|
110
|
+
* The following workspace dependencies were updated
|
|
111
|
+
* dependencies
|
|
112
|
+
* @twin.org/node-core bumped from 0.9.1-next.0 to 0.9.1-next.1
|
|
113
|
+
|
|
3
114
|
## [0.9.0](https://github.com/iotaledger/twin-node/compare/node-v0.9.0...node-v0.9.0) (2026-06-25)
|
|
4
115
|
|
|
5
116
|
|
package/docs/open-api/spec.json
CHANGED
|
@@ -107,6 +107,10 @@
|
|
|
107
107
|
"name": "Datasets",
|
|
108
108
|
"description": "Tenant-scoped CRUD over the datasets the Control Plane reads at start time to populate the federated catalogue."
|
|
109
109
|
},
|
|
110
|
+
{
|
|
111
|
+
"name": "Version Discovery",
|
|
112
|
+
"description": "RFC 8615 well-known endpoint for advertising the Dataspace Protocol versions supported by this connector."
|
|
113
|
+
},
|
|
110
114
|
{
|
|
111
115
|
"name": "Policy Administration Point",
|
|
112
116
|
"description": "Endpoints for managing ODRL policies in the Policy Administration Point"
|
|
@@ -11624,7 +11628,7 @@
|
|
|
11624
11628
|
},
|
|
11625
11629
|
{
|
|
11626
11630
|
"name": "conditions",
|
|
11627
|
-
"description": "The conditions to filter the streams, JSON stringified EntityCondition<IAuditableItemGraphVertex
|
|
11631
|
+
"description": "The conditions to filter the streams, JSON stringified `EntityCondition<IAuditableItemGraphVertex>`.",
|
|
11628
11632
|
"in": "query",
|
|
11629
11633
|
"required": false,
|
|
11630
11634
|
"schema": {
|
|
@@ -13387,7 +13391,7 @@
|
|
|
13387
13391
|
"parameters": [
|
|
13388
13392
|
{
|
|
13389
13393
|
"name": "conditions",
|
|
13390
|
-
"description": "The conditions to filter the streams, JSON stringified
|
|
13394
|
+
"description": "The conditions to filter the streams, JSON stringified `EntityCondition<IAuditableItemStream>`.",
|
|
13391
13395
|
"in": "query",
|
|
13392
13396
|
"required": false,
|
|
13393
13397
|
"schema": {
|
|
@@ -14415,7 +14419,7 @@
|
|
|
14415
14419
|
},
|
|
14416
14420
|
{
|
|
14417
14421
|
"name": "conditions",
|
|
14418
|
-
"description": "The conditions to filter the stream, JSON stringified
|
|
14422
|
+
"description": "The conditions to filter the stream, JSON stringified `EntityCondition<IAuditableItemStreamEntry>`.",
|
|
14419
14423
|
"in": "query",
|
|
14420
14424
|
"required": false,
|
|
14421
14425
|
"schema": {
|
|
@@ -15264,7 +15268,7 @@
|
|
|
15264
15268
|
"parameters": [
|
|
15265
15269
|
{
|
|
15266
15270
|
"name": "conditions",
|
|
15267
|
-
"description": "The conditions to filter the stream, JSON stringified
|
|
15271
|
+
"description": "The conditions to filter the stream, JSON stringified `EntityCondition<IAuditableItemStream>.",
|
|
15268
15272
|
"in": "query",
|
|
15269
15273
|
"required": false,
|
|
15270
15274
|
"schema": {
|
|
@@ -15525,7 +15529,7 @@
|
|
|
15525
15529
|
},
|
|
15526
15530
|
{
|
|
15527
15531
|
"name": "conditions",
|
|
15528
|
-
"description": "The conditions to filter the stream, JSON stringified
|
|
15532
|
+
"description": "The conditions to filter the stream, JSON stringified `EntityCondition<IAuditableItemStreamEntry>`.",
|
|
15529
15533
|
"in": "query",
|
|
15530
15534
|
"required": false,
|
|
15531
15535
|
"schema": {
|
|
@@ -15708,7 +15712,7 @@
|
|
|
15708
15712
|
"parameters": [
|
|
15709
15713
|
{
|
|
15710
15714
|
"name": "conditions",
|
|
15711
|
-
"description": "The conditions to filter the stream, JSON stringified
|
|
15715
|
+
"description": "The conditions to filter the stream, JSON stringified `EntityCondition<IAuditableItemStreamEntry>`.",
|
|
15712
15716
|
"in": "query",
|
|
15713
15717
|
"required": false,
|
|
15714
15718
|
"schema": {
|
|
@@ -16774,6 +16778,91 @@
|
|
|
16774
16778
|
}
|
|
16775
16779
|
}
|
|
16776
16780
|
},
|
|
16781
|
+
"/.well-known/dspace-version": {
|
|
16782
|
+
"get": {
|
|
16783
|
+
"operationId": "getProtocolVersions",
|
|
16784
|
+
"summary": "Get supported Dataspace Protocol versions (DSP 2025-1)",
|
|
16785
|
+
"tags": [
|
|
16786
|
+
"Version Discovery"
|
|
16787
|
+
],
|
|
16788
|
+
"requestBody": {
|
|
16789
|
+
"description": "A REST request with no input parameters.",
|
|
16790
|
+
"required": true,
|
|
16791
|
+
"content": {
|
|
16792
|
+
"application/json": {
|
|
16793
|
+
"schema": {
|
|
16794
|
+
"$ref": "#/components/schemas/NoContentRequest"
|
|
16795
|
+
}
|
|
16796
|
+
}
|
|
16797
|
+
}
|
|
16798
|
+
},
|
|
16799
|
+
"responses": {
|
|
16800
|
+
"200": {
|
|
16801
|
+
"description": "API response for the DSP version discovery endpoint.",
|
|
16802
|
+
"content": {
|
|
16803
|
+
"application/json": {
|
|
16804
|
+
"schema": {
|
|
16805
|
+
"$ref": "#/components/schemas/DataspaceProtocolVersionResponse"
|
|
16806
|
+
},
|
|
16807
|
+
"examples": {
|
|
16808
|
+
"getProtocolVersionsResponseExample": {
|
|
16809
|
+
"value": {
|
|
16810
|
+
"protocolVersions": [
|
|
16811
|
+
{
|
|
16812
|
+
"version": "2025-1",
|
|
16813
|
+
"path": "/dataspace-control-plane/2025-1",
|
|
16814
|
+
"binding": "HTTPS",
|
|
16815
|
+
"serviceId": "twin-connector"
|
|
16816
|
+
}
|
|
16817
|
+
]
|
|
16818
|
+
}
|
|
16819
|
+
}
|
|
16820
|
+
}
|
|
16821
|
+
}
|
|
16822
|
+
}
|
|
16823
|
+
},
|
|
16824
|
+
"400": {
|
|
16825
|
+
"description": "The server cannot process the request, see the content for more details.",
|
|
16826
|
+
"content": {
|
|
16827
|
+
"application/json": {
|
|
16828
|
+
"schema": {
|
|
16829
|
+
"$ref": "#/components/schemas/Error"
|
|
16830
|
+
},
|
|
16831
|
+
"examples": {
|
|
16832
|
+
"exampleResponse": {
|
|
16833
|
+
"value": {
|
|
16834
|
+
"name": "GeneralError",
|
|
16835
|
+
"message": "errorMessage",
|
|
16836
|
+
"properties": {
|
|
16837
|
+
"foo": "bar"
|
|
16838
|
+
}
|
|
16839
|
+
}
|
|
16840
|
+
}
|
|
16841
|
+
}
|
|
16842
|
+
}
|
|
16843
|
+
}
|
|
16844
|
+
},
|
|
16845
|
+
"500": {
|
|
16846
|
+
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
16847
|
+
"content": {
|
|
16848
|
+
"application/json": {
|
|
16849
|
+
"schema": {
|
|
16850
|
+
"$ref": "#/components/schemas/Error"
|
|
16851
|
+
},
|
|
16852
|
+
"examples": {
|
|
16853
|
+
"exampleResponse": {
|
|
16854
|
+
"value": {
|
|
16855
|
+
"name": "InternalServerError",
|
|
16856
|
+
"message": "errorMessage"
|
|
16857
|
+
}
|
|
16858
|
+
}
|
|
16859
|
+
}
|
|
16860
|
+
}
|
|
16861
|
+
}
|
|
16862
|
+
}
|
|
16863
|
+
}
|
|
16864
|
+
}
|
|
16865
|
+
},
|
|
16777
16866
|
"/dataspace-control-plane/transfers/request": {
|
|
16778
16867
|
"post": {
|
|
16779
16868
|
"operationId": "requestTransfer",
|
|
@@ -21711,6 +21800,7 @@
|
|
|
21711
21800
|
"dateModified"
|
|
21712
21801
|
]
|
|
21713
21802
|
},
|
|
21803
|
+
"DataspaceProtocolVersionResponse": {},
|
|
21714
21804
|
"DocumentManagementCreateRequest": {
|
|
21715
21805
|
"type": "object",
|
|
21716
21806
|
"properties": {
|
|
@@ -21858,7 +21948,7 @@
|
|
|
21858
21948
|
"description": "The query type."
|
|
21859
21949
|
},
|
|
21860
21950
|
"q": {
|
|
21861
|
-
"description": "The representation of the query."
|
|
21951
|
+
"description": "The representation of the query, optional depending on the query type."
|
|
21862
21952
|
},
|
|
21863
21953
|
"jsonLdContext": {
|
|
21864
21954
|
"type": "array",
|
|
@@ -21869,8 +21959,7 @@
|
|
|
21869
21959
|
}
|
|
21870
21960
|
},
|
|
21871
21961
|
"required": [
|
|
21872
|
-
"type"
|
|
21873
|
-
"q"
|
|
21962
|
+
"type"
|
|
21874
21963
|
]
|
|
21875
21964
|
},
|
|
21876
21965
|
"GetTransferProcessResponse": {
|
|
@@ -22553,6 +22642,10 @@
|
|
|
22553
22642
|
},
|
|
22554
22643
|
"description": "The request body containing update parameters."
|
|
22555
22644
|
},
|
|
22645
|
+
"NoContentRequest": {
|
|
22646
|
+
"not": {},
|
|
22647
|
+
"description": "Data to return send as the body."
|
|
22648
|
+
},
|
|
22556
22649
|
"NotFoundResponse": {
|
|
22557
22650
|
"type": "object",
|
|
22558
22651
|
"properties": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1-next.2",
|
|
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": "
|
|
17
|
+
"@twin.org/node-core": "0.9.1-next.2"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|