V2: updating to new proto schema. domain seperated packages #36

Merged
nfel merged 327 commits from v2 into dev 2026-07-21 10:59:54 +00:00
Showing only changes of commit 4b1ff1c31d - Show all commits
+4 -2
View File
@@ -226,7 +226,9 @@ message Recipient {
string key = 1; string key = 1;
optional string first_name = 2; optional string first_name = 2;
optional string last_name = 3; optional string last_name = 3;
optional string public_key = 4; optional int64 user_id = 4;
optional string public_key = 5;
} }
message LookUpNameReq { message LookUpNameReq {
@@ -235,4 +237,4 @@ message LookUpNameReq {
message LookUpNameRes { message LookUpNameRes {
Recipient recipient = 1; Recipient recipient = 1;
} }