@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.
@@ -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
- "vcAuthenticationMethodCreate": "Creating VC authentication method for node identity",
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 verifiable credential authentication
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=!TWIN_VC_AUTHENTICATION_VERIFICATION_METHOD_ID --output-json="organization-vc-authentication.json" --output-env="organization-vc-authentication.env"
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
@@ -18355,9 +18355,9 @@
18355
18355
  },
18356
18356
  "description": "The verifiable credentials to include in the presentation."
18357
18357
  },
18358
- "expiresInMinutes": {
18359
- "type": "number",
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.12",
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.12"
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"