Update to latest proto definitions from SteamDatabase/Protobufs

From commit 085746bbf6b48d1b89b7a63e7876932793f4c08f
This commit is contained in:
TBK 2025-10-18 20:00:55 +02:00
commit 9946f23749
No known key found for this signature in database
GPG key ID: 4F205025B48377EB
127 changed files with 40662 additions and 28630 deletions

View file

@ -27,6 +27,14 @@ message CMsgTest_NotifyServer_Notification {
optional string some_text = 1;
}
message CMsgTest_TestClientCall_Request {
optional int32 param = 1;
}
message CMsgTest_TestClientCall_Response {
optional int32 result = 1;
}
message CMsgTest_NoBody_Request {
}
@ -44,6 +52,10 @@ service TestSteamClient {
service TestServerFromClient {
rpc MessageToServer (.CMsgTest_MessageToServer_Request) returns (.CMsgTest_MessageToServer_Response);
rpc NotifyServer (.CMsgTest_NotifyServer_Notification) returns (.NoResponse);
rpc ClientCallAuthed1 (.CMsgTest_TestClientCall_Request) returns (.CMsgTest_TestClientCall_Response);
rpc ClientCallAuthed2 (.CMsgTest_TestClientCall_Request) returns (.CMsgTest_TestClientCall_Response);
rpc ClientCallAuthed3 (.CMsgTest_TestClientCall_Request) returns (.CMsgTest_TestClientCall_Response);
rpc ClientCallAuthed4 (.CMsgTest_TestClientCall_Request) returns (.CMsgTest_TestClientCall_Response);
}
service TestExternalPrivilege {