@tdxvolt/volt-client-grpc 0.15.1 → 0.16.0-beta.1

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.
@@ -1,37 +0,0 @@
1
- syntax = "proto3";
2
-
3
- package tdx.volt_api.ssi.v1;
4
-
5
- import "tdx/volt_api/volt/v1/status.proto";
6
-
7
- // Volt DIDs are essentially 'peer DIDs', i.e. they are not globally resolvable.
8
- // TDX DIDs are globally resolvable.
9
-
10
- service SsiAPI {
11
- rpc ResolveDID(ResolveDIDRequest) returns (ResolveDIDResponse);
12
- rpc TrustVerifiableCredential(TrustVerifiableCredentialRequest) returns (TrustVerifiableCredentialResponse);
13
- }
14
-
15
- //
16
- // Do we need to support/differentiate between plain DIDs and DID urls here?
17
- // Where a DID url is a DID followed by some additional lookup info,
18
- // e.g. did:tdx:volt:92181ffa-072a-452a-ae79-a243ab2812fc;service=/some/service?query#fragment
19
- //
20
- message ResolveDIDRequest {
21
- string did_url = 1;
22
- }
23
-
24
- message ResolveDIDResponse {
25
- tdx.volt_api.volt.v1.Status status = 1;
26
- string did_document_json = 2;
27
- }
28
-
29
- // Empty ATM - a VC is issued for the authenticated identity.
30
- message TrustVerifiableCredentialRequest {
31
- }
32
-
33
- message TrustVerifiableCredentialResponse {
34
- tdx.volt_api.volt.v1.Status status = 1;
35
- string verifiable_credential_json = 2;
36
- }
37
-