Group Send Endorsement support for pre-key fetch endpoint

This commit is contained in:
Jonathan Klabunde Tomer
2024-04-19 15:40:46 -07:00
committed by GitHub
parent ab64828661
commit b8f64fe3d4
9 changed files with 468 additions and 123 deletions

View File

@@ -164,9 +164,19 @@ message GetPreKeysAnonymousRequest {
GetPreKeysRequest request = 1;
/**
* The unidentified access key (UAK) for the targeted account.
* A means to authorize the request.
*/
bytes unidentified_access_key = 2;
oneof authorization {
/**
* The unidentified access key (UAK) for the targeted account.
*/
bytes unidentified_access_key = 2;
/**
* A group send endorsement token for the targeted account.
*/
bytes group_send_token = 3;
}
}
message GetPreKeysResponse {