@twin.org/node 0.0.3-next.63 → 0.0.3-next.65
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 +10 -2
- package/docs/changelog.md +28 -0
- package/docs/open-api/spec.json +10 -22
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -70,7 +70,8 @@
|
|
|
70
70
|
"entityStorageAuthenticationService": {
|
|
71
71
|
"loginFailed": "Login failed",
|
|
72
72
|
"userNotFound": "The user with the specified e-mail could not be found",
|
|
73
|
-
"passwordMismatch": "The password does not match the user's password"
|
|
73
|
+
"passwordMismatch": "The password does not match the user's password",
|
|
74
|
+
"nodeIdNotSet": "The node ID has not been set"
|
|
74
75
|
},
|
|
75
76
|
"entityStorageAuthenticationAdminService": {
|
|
76
77
|
"userExists": "The user with the specified e-mail already exists",
|
|
@@ -81,6 +82,9 @@
|
|
|
81
82
|
"updatePasswordFailed": "Updating the user's password failed",
|
|
82
83
|
"userNotFound": "The user with the specified e-mail could not be found \"{notFoundId}\""
|
|
83
84
|
},
|
|
85
|
+
"authHeaderProcessor": {
|
|
86
|
+
"nodeIdNotSet": "The node ID has not been set"
|
|
87
|
+
},
|
|
84
88
|
"passwordHelper": {
|
|
85
89
|
"currentPasswordMismatch": "The current password is incorrect"
|
|
86
90
|
},
|
|
@@ -90,6 +94,8 @@
|
|
|
90
94
|
},
|
|
91
95
|
"tokenHelper": {
|
|
92
96
|
"missing": "The JSON Web token could not be found in the authorization header",
|
|
97
|
+
"headerKeyIdMismatch": "The JSON Web token key identifier does not match the expected signing key",
|
|
98
|
+
"payloadIssuerMismatch": "The JSON Web token issuer does not match the expected signing key",
|
|
93
99
|
"payloadMissingSubject": "The JSON Web token payload does not contain a subject",
|
|
94
100
|
"payloadMissingOrganization": "The JSON Web token payload does not contain an organization",
|
|
95
101
|
"expired": "The JSON Web token has expired",
|
|
@@ -2090,6 +2096,7 @@
|
|
|
2090
2096
|
"getNegotiationHistory": "Retrieving negotiation history",
|
|
2091
2097
|
"negotiationHistoryRetrieved": "Negotiation history retrieved successfully",
|
|
2092
2098
|
"stalledNegotiationsCleanupComplete": "Stalled negotiations cleanup completed (cleanedUp: {cleanedUp})",
|
|
2099
|
+
"stalledTransfersCleanupComplete": "Stalled transfers cleanup completed (cleanedUp: {cleanedUp})",
|
|
2093
2100
|
"pushTransferStarted": "PUSH transfer started (consumerPid: {consumerPid}, providerPid: {providerPid}, endpoint: {endpoint})",
|
|
2094
2101
|
"preparingTransfer": "Preparing consumer-initiated data transfer (agreementId: {agreementId}, providerEndpoint: {providerEndpoint}, format: {format})",
|
|
2095
2102
|
"transferPrepared": "Consumer data transfer prepared successfully (consumerPid: {consumerPid}, providerPid: {providerPid}, agreementId: {agreementId}, format: {format})"
|
|
@@ -2341,7 +2348,8 @@
|
|
|
2341
2348
|
},
|
|
2342
2349
|
"dataspaceControlPlaneService": {
|
|
2343
2350
|
"catalogDatasetHasNoOffers": "Dataset has no Offers (odrl:hasPolicy) in Federated Catalogue",
|
|
2344
|
-
"stalledNegotiationCleanedUp": "Stalled negotiation cleaned up (negotiationId: {negotiationId})"
|
|
2351
|
+
"stalledNegotiationCleanedUp": "Stalled negotiation cleaned up (negotiationId: {negotiationId})",
|
|
2352
|
+
"stalledTransferCleanedUp": "Stalled transfer cleaned up (consumerPid: {consumerPid})"
|
|
2345
2353
|
},
|
|
2346
2354
|
"dataspaceControlPlanePolicyRequester": {
|
|
2347
2355
|
"unknownNegotiationFinalized": "Unknown negotiation finalized (negotiationId: {negotiationId})",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.65](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.64...node-v0.0.3-next.65) (2026-06-23)
|
|
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.64 to 0.0.3-next.65
|
|
16
|
+
|
|
17
|
+
## [0.0.3-next.64](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.63...node-v0.0.3-next.64) (2026-06-23)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* env vars consistency ([1823b7a](https://github.com/iotaledger/twin-node/commit/1823b7aeae5dc7484861534b851080afda64d869))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* The following workspace dependencies were updated
|
|
28
|
+
* dependencies
|
|
29
|
+
* @twin.org/node-core bumped from 0.0.3-next.63 to 0.0.3-next.64
|
|
30
|
+
|
|
3
31
|
## [0.0.3-next.63](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.62...node-v0.0.3-next.63) (2026-06-22)
|
|
4
32
|
|
|
5
33
|
|
package/docs/open-api/spec.json
CHANGED
|
@@ -9899,7 +9899,7 @@
|
|
|
9899
9899
|
"parameters": [
|
|
9900
9900
|
{
|
|
9901
9901
|
"name": "id",
|
|
9902
|
-
"description": "The rule
|
|
9902
|
+
"description": "The id of the rule group to set.",
|
|
9903
9903
|
"in": "path",
|
|
9904
9904
|
"required": true,
|
|
9905
9905
|
"schema": {
|
|
@@ -10011,7 +10011,7 @@
|
|
|
10011
10011
|
"parameters": [
|
|
10012
10012
|
{
|
|
10013
10013
|
"name": "id",
|
|
10014
|
-
"description": "The rule
|
|
10014
|
+
"description": "The id of the rule group to retrieve.",
|
|
10015
10015
|
"in": "path",
|
|
10016
10016
|
"required": true,
|
|
10017
10017
|
"schema": {
|
|
@@ -10120,7 +10120,7 @@
|
|
|
10120
10120
|
"parameters": [
|
|
10121
10121
|
{
|
|
10122
10122
|
"name": "id",
|
|
10123
|
-
"description": "The rule
|
|
10123
|
+
"description": "The id of the rule group to remove.",
|
|
10124
10124
|
"in": "path",
|
|
10125
10125
|
"required": true,
|
|
10126
10126
|
"schema": {
|
|
@@ -16782,15 +16782,6 @@
|
|
|
16782
16782
|
"Transfer Process"
|
|
16783
16783
|
],
|
|
16784
16784
|
"parameters": [
|
|
16785
|
-
{
|
|
16786
|
-
"name": "autoStart",
|
|
16787
|
-
"description": "When \"true\", the provider immediately starts the requested transfer once it has been created.",
|
|
16788
|
-
"in": "query",
|
|
16789
|
-
"required": false,
|
|
16790
|
-
"schema": {
|
|
16791
|
-
"type": "string"
|
|
16792
|
-
}
|
|
16793
|
-
},
|
|
16794
16785
|
{
|
|
16795
16786
|
"name": "authorization",
|
|
16796
16787
|
"in": "header",
|
|
@@ -21602,7 +21593,7 @@
|
|
|
21602
21593
|
"required": [
|
|
21603
21594
|
"data"
|
|
21604
21595
|
],
|
|
21605
|
-
"description": "The
|
|
21596
|
+
"description": "The request body containing the data to convert."
|
|
21606
21597
|
},
|
|
21607
21598
|
"DataProcessingConvertResponse": {
|
|
21608
21599
|
"description": "The converted data as an object."
|
|
@@ -21631,10 +21622,10 @@
|
|
|
21631
21622
|
"ruleGroupId",
|
|
21632
21623
|
"data"
|
|
21633
21624
|
],
|
|
21634
|
-
"description": "The
|
|
21625
|
+
"description": "The request body containing the data and rule group to use for extraction."
|
|
21635
21626
|
},
|
|
21636
21627
|
"DataProcessingExtractResponse": {
|
|
21637
|
-
"description": "The extracted data in extended JSON format
|
|
21628
|
+
"description": "The extracted data in extended JSON format, preserving types such as bigint, dates, and Uint8Array."
|
|
21638
21629
|
},
|
|
21639
21630
|
"DataProcessingRuleGroupListResponse": {
|
|
21640
21631
|
"type": "object",
|
|
@@ -21654,7 +21645,7 @@
|
|
|
21654
21645
|
"required": [
|
|
21655
21646
|
"entities"
|
|
21656
21647
|
],
|
|
21657
|
-
"description": "The response
|
|
21648
|
+
"description": "The response body containing the list of rule groups and optional pagination cursor."
|
|
21658
21649
|
},
|
|
21659
21650
|
"DataProcessingRuleGroupSetRequest": {
|
|
21660
21651
|
"type": "object",
|
|
@@ -21675,7 +21666,7 @@
|
|
|
21675
21666
|
"label",
|
|
21676
21667
|
"rules"
|
|
21677
21668
|
],
|
|
21678
|
-
"description": "The data to
|
|
21669
|
+
"description": "The rule group data to store."
|
|
21679
21670
|
},
|
|
21680
21671
|
"DatasetGetResponse": {
|
|
21681
21672
|
"anyOf": [
|
|
@@ -23027,14 +23018,11 @@
|
|
|
23027
23018
|
"properties": {
|
|
23028
23019
|
"source": {
|
|
23029
23020
|
"type": "string",
|
|
23030
|
-
"description": "The
|
|
23021
|
+
"description": "The JSONPath expression identifying the data to extract from the document."
|
|
23031
23022
|
},
|
|
23032
23023
|
"target": {
|
|
23033
23024
|
"type": "string",
|
|
23034
|
-
"description": "The target path of where to store the extracted data
|
|
23035
|
-
"examples": [
|
|
23036
|
-
"\"path.to.data\" or \"path.to.data.0\""
|
|
23037
|
-
]
|
|
23025
|
+
"description": "The target path of where to store the extracted data, using dotted or numeric index notation."
|
|
23038
23026
|
},
|
|
23039
23027
|
"retainPathDepth": {
|
|
23040
23028
|
"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.65",
|
|
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.65"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|