mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 10:21:40 +00:00
* fix: update commitizen version * feat: add WASM build tags to db actions * feat: Update all actions to follow `AddAsset` for error handling * feat: remove database dependency in dwn and motr commands * feat: add basic info form to registration view * feat: implement basic browser navigation component * refactor: move database related files to middleware * fix: remove unused test command * fix: update source directory for buf-publish workflow * feat: embed dwn config data * feat: add Sync RPC to query service * refactor: rename package to for better organization * feat: add new javascript exception handling for server requests * refactor: move dwn.wasm to embed directory * refactor: move server files to a new directory * refactor: move session related code to client package * refactor: Update dwn.wasm build path * refactor: move dwn wasm build to vfs * feat: introduce config loading middleware * feat: introduce DWN config and address JSON * refactor: move dwn wasm build output to embed directory * feat: introduce config and IndexedDB model * refactor: move DWN config file generation to vfs * refactor: move config package to * feat: add Sonr.ID IPFS gateway proxy * feat: add SWT data structure * feat: update index.html to use Sonr styles and scripts * feat(dwn): remove index.html server endpoint * feat: add Navigator API for web credential management
80 lines
2.2 KiB
Protocol Buffer
80 lines
2.2 KiB
Protocol Buffer
syntax = "proto3";
|
|
package did.v1;
|
|
|
|
import "did/v1/genesis.proto";
|
|
import "did/v1/models.proto";
|
|
import "google/api/annotations.proto";
|
|
|
|
option go_package = "github.com/onsonr/sonr/x/did/types";
|
|
|
|
// Query provides defines the gRPC querier service.
|
|
service Query {
|
|
// Params queries all parameters of the module.
|
|
rpc Params(QueryRequest) returns (QueryParamsResponse) {
|
|
option (google.api.http).get = "/params";
|
|
}
|
|
|
|
// Resolve queries the DID document by its id.
|
|
rpc Resolve(QueryRequest) returns (QueryResolveResponse) {
|
|
option (google.api.http).get = "/did/{did}";
|
|
}
|
|
|
|
// Service returns associated ServiceInfo for a given Origin
|
|
// if the servie is not found, a fingerprint is generated to be used
|
|
// as a TXT record in DNS. v=sonr, o=origin, p=protocol
|
|
rpc Service(QueryRequest) returns (QueryServiceResponse) {
|
|
option (google.api.http).get = "/service/{origin}";
|
|
}
|
|
|
|
// Sync queries the DID document by its id. And returns the required PKL information
|
|
rpc Sync(SyncRequest) returns (SyncResponse) {
|
|
option (google.api.http).post = "/sync";
|
|
}
|
|
}
|
|
|
|
// Queryequest is the request type for the Query/Params RPC method.
|
|
message QueryRequest {
|
|
string did = 1;
|
|
string origin = 2;
|
|
string key = 3;
|
|
string asset = 4;
|
|
}
|
|
|
|
// QueryResolveResponse is the response type for the Query/Resolve RPC method.
|
|
message QueryResponse {
|
|
bool success = 1;
|
|
string query = 2;
|
|
Document document = 3;
|
|
Params params = 5;
|
|
}
|
|
|
|
// QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
message QueryParamsResponse {
|
|
// params defines the parameters of the module.
|
|
Params params = 1;
|
|
}
|
|
|
|
// QueryResolveResponse is the response type for the Query/Resolve RPC method.
|
|
message QueryResolveResponse {
|
|
// document is the DID document
|
|
Document document = 1;
|
|
}
|
|
|
|
// QueryLoginOptionsResponse is the response type for the Query/LoginOptions RPC method.
|
|
message QueryServiceResponse {
|
|
// options is the PublicKeyCredentialAttestationOptions
|
|
bool existing = 1;
|
|
ServiceInfo service = 2;
|
|
string txt_record = 3;
|
|
}
|
|
|
|
// SyncRequest is the request type for the Sync RPC method.
|
|
message SyncRequest {
|
|
string did = 1;
|
|
}
|
|
|
|
// SyncResponse is the response type for the Sync RPC method.
|
|
message SyncResponse {
|
|
bool success = 1;
|
|
}
|