mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
refactor: update gRPC client to use new request types
This commit is contained in:
@@ -21,14 +21,14 @@ service Query {
|
||||
|
||||
// Allocate initializes a Target Vault available for claims with a compatible
|
||||
// Authentication mechanism. The default authentication mechanism is WebAuthn.
|
||||
rpc Allocate(AllocateRequest) returns (AllocateResponse) {
|
||||
option (google.api.http).get = "/vault/v1/allocate/{origin}/{subject}";
|
||||
rpc Allocate(QueryAllocateRequest) returns (QueryAllocateResponse) {
|
||||
option (google.api.http).get = "/vault/v1/allocate";
|
||||
}
|
||||
|
||||
// Sync queries the DID document by its id. And returns the required PKL
|
||||
// information
|
||||
rpc Sync(SyncRequest) returns (SyncResponse) {
|
||||
option (google.api.http).post = "/vault/v1/sync-initial";
|
||||
rpc Sync(QuerySyncRequest) returns (QuerySyncResponse) {
|
||||
option (google.api.http).get = "/vault/v1/sync-initial";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -50,14 +50,11 @@ message QuerySchemaResponse {
|
||||
Schema schema = 1;
|
||||
}
|
||||
|
||||
// AllocateRequest is the request type for the Allocate RPC method.
|
||||
message AllocateRequest {
|
||||
string origin = 1;
|
||||
string subject = 2;
|
||||
}
|
||||
// QueryAllocateRequest is the request type for the Allocate RPC method.
|
||||
message QueryAllocateRequest {}
|
||||
|
||||
// AllocateResponse is the response type for the Allocate RPC method.
|
||||
message AllocateResponse {
|
||||
message QueryAllocateResponse {
|
||||
bool success = 1;
|
||||
string cid = 2;
|
||||
string macaroon = 3;
|
||||
@@ -66,12 +63,12 @@ message AllocateResponse {
|
||||
}
|
||||
|
||||
// SyncRequest is the request type for the Sync RPC method.
|
||||
message SyncRequest {
|
||||
message QuerySyncRequest {
|
||||
string did = 1;
|
||||
}
|
||||
|
||||
// SyncResponse is the response type for the Sync RPC method.
|
||||
message SyncResponse {
|
||||
message QuerySyncResponse {
|
||||
bool success = 1;
|
||||
|
||||
// Schema is the DID document.
|
||||
|
||||
Reference in New Issue
Block a user