@twin.org/node 0.0.3-next.63 → 0.0.3-next.64
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 +14 -0
- package/docs/open-api/spec.json +0 -9
- 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,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [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)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* env vars consistency ([1823b7a](https://github.com/iotaledger/twin-node/commit/1823b7aeae5dc7484861534b851080afda64d869))
|
|
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.63 to 0.0.3-next.64
|
|
16
|
+
|
|
3
17
|
## [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
18
|
|
|
5
19
|
|
package/docs/open-api/spec.json
CHANGED
|
@@ -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",
|
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.64",
|
|
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.64"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|