@geodedb/client 1.0.0-alpha.25 → 1.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geodedb/client",
3
- "version": "1.0.0-alpha.25",
3
+ "version": "1.0.2",
4
4
  "description": "Node.js client library for Geode graph database (QUIC/gRPC + TLS 1.3)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/proto/geode.proto CHANGED
@@ -81,6 +81,7 @@ message HelloRequest {
81
81
  string client_name = 4;
82
82
  string client_version = 5;
83
83
  string wanted_conformance = 6;
84
+ optional string graph = 7;
84
85
  }
85
86
 
86
87
  message HelloResponse {
@@ -88,6 +89,8 @@ message HelloResponse {
88
89
  string session_id = 2;
89
90
  string error_message = 3;
90
91
  repeated string capabilities = 4;
92
+ bool password_reset_required = 5;
93
+ optional string graph = 6;
91
94
  }
92
95
 
93
96
  // ============================================================================