@twin.org/node 0.0.3-next.12 → 0.0.3-next.13
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 +1 -10
- package/docs/changelog.md +14 -0
- package/docs/examples.md +2 -2
- package/docs/open-api/spec.json +3 -3
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -599,15 +599,6 @@
|
|
|
599
599
|
"missingRequiredProperty": "The property \"{requiredProperty}\" is required when using the Synchronised Entity Storage Connector.",
|
|
600
600
|
"missingRequiredPropertySort": "The property \"{requiredProperty}\" requires sorting attributes for the Synchronised Entity Storage Connector."
|
|
601
601
|
},
|
|
602
|
-
"verifiableCredentialAuthenticationProcessor": {
|
|
603
|
-
"tokenMissing": "No token provided",
|
|
604
|
-
"tokenVerificationFailed": "The token could not be verified",
|
|
605
|
-
"tokenMissingCredential": "The token does not contain a verifiable credential",
|
|
606
|
-
"tokenMissingIssuer": "The token does not contain an issuer",
|
|
607
|
-
"tokenMissingIssuanceDate": "The token is missing the 'issuanceDate' field for issuer \"{issuer}\"",
|
|
608
|
-
"tokenExpired": "The token has expired for issuer \"{issuer}\"",
|
|
609
|
-
"tokenMissingSubject": "The token is missing the 'credentialSubject' field for issuer \"{issuer}\""
|
|
610
|
-
},
|
|
611
602
|
"entityStorageService": {
|
|
612
603
|
"entityNotFound": "Could not find entity with id \"{notFoundId}\""
|
|
613
604
|
},
|
|
@@ -1098,7 +1089,7 @@
|
|
|
1098
1089
|
"labels": {
|
|
1099
1090
|
"nodeIdentityCreate": "Creating node identity",
|
|
1100
1091
|
"nodeAuthKeyCreate": "Creating node auth key",
|
|
1101
|
-
"
|
|
1092
|
+
"trustVerificationMethodCreate": "Creating trust verification method for node identity",
|
|
1102
1093
|
"synchronisedStorageKeyAdd": "Adding synchronised storage key for node identity",
|
|
1103
1094
|
"nodeIdentitySet": "Setting node identity",
|
|
1104
1095
|
"nodeTenantCreate": "Creating node tenant",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @twin.org/node - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.13](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.12...node-v0.0.3-next.13) (2026-01-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add trust ttl ([#73](https://github.com/twinfoundation/node/issues/73)) ([911cee7](https://github.com/twinfoundation/node/commit/911cee771bba490143bb1574ca8360f7cf8baa1a))
|
|
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.12 to 0.0.3-next.13
|
|
16
|
+
|
|
3
17
|
## [0.0.3-next.12](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.11...node-v0.0.3-next.12) (2026-01-19)
|
|
4
18
|
|
|
5
19
|
|
package/docs/examples.md
CHANGED
|
@@ -124,10 +124,10 @@ twin-node identity-verifiable-credential-create --load-env="organization-identit
|
|
|
124
124
|
twin-node identity-verification-method-create --load-env="node-identity.env,organization-identity.env" --identity=!ORGANIZATION_DID --controller=!NODE_DID --verification-method-id=!TWIN_IMMUTABLE_PROOF_VERIFICATION_METHOD_ID --output-json="organization-immutable-proof.json" --output-env="organization-immutable-proof.env"
|
|
125
125
|
```
|
|
126
126
|
|
|
127
|
-
### Add a verification method to the organization identity for
|
|
127
|
+
### Add a verification method to the organization identity for trust verification
|
|
128
128
|
|
|
129
129
|
```shell
|
|
130
|
-
twin-node identity-verification-method-create --load-env="node-identity.env,organization-identity.env" --identity=!ORGANIZATION_DID --controller=!NODE_DID --verification-method-id=!
|
|
130
|
+
twin-node identity-verification-method-create --load-env="node-identity.env,organization-identity.env" --identity=!ORGANIZATION_DID --controller=!NODE_DID --verification-method-id=!TWIN_TRUST_VERIFICATION_METHOD_ID --output-json="organization-trust.json" --output-env="organization-trust.env"
|
|
131
131
|
```
|
|
132
132
|
|
|
133
133
|
### Add a key associated with the organization to be used for blob encryption
|
package/docs/open-api/spec.json
CHANGED
|
@@ -18355,9 +18355,9 @@
|
|
|
18355
18355
|
},
|
|
18356
18356
|
"description": "The verifiable credentials to include in the presentation."
|
|
18357
18357
|
},
|
|
18358
|
-
"
|
|
18359
|
-
"type": "
|
|
18360
|
-
"description": "The expiration time for the presentation."
|
|
18358
|
+
"expirationDate": {
|
|
18359
|
+
"type": "string",
|
|
18360
|
+
"description": "The expiration date/time for the presentation."
|
|
18361
18361
|
}
|
|
18362
18362
|
},
|
|
18363
18363
|
"required": [
|
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.13",
|
|
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.13"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/twinfoundation/node/issues"
|