@tdxvolt/volt-client-grpc 0.16.0-beta.4 → 0.16.0-beta.5

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/lib/index.cjs CHANGED
@@ -589,6 +589,10 @@ class VoltCredential {
589
589
  return this._cryptoCache;
590
590
  }
591
591
 
592
+ get certificate() {
593
+ return this._cryptoCache.cert;
594
+ }
595
+
592
596
  get sessionId() {
593
597
  return this._cryptoCache.session_id;
594
598
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.16.0-beta.4",
6
+ "version": "0.16.0-beta.5",
7
7
  "description": "tdx Volt library for nodejs clients",
8
8
  "type": "module",
9
9
  "exports": {
@@ -69,6 +69,10 @@ export class VoltCredential {
69
69
  return this._cryptoCache;
70
70
  }
71
71
 
72
+ get certificate() {
73
+ return this._cryptoCache.cert;
74
+ }
75
+
72
76
  get sessionId() {
73
77
  return this._cryptoCache.session_id;
74
78
  }