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

@ -62,6 +62,7 @@ message CMsgBluetoothManagerDeviceDetails {
optional bool wake_allowed_supported = 10;
optional int32 battery_percent = 11;
optional bool operation_in_progress = 12;
optional bool is_trusted = 13;
}
message CBluetoothManager_GetDeviceDetails_Response {
@ -121,6 +122,14 @@ message CBluetoothManager_SetWakeAllowed_Request {
message CBluetoothManager_SetWakeAllowed_Response {
}
message CBluetoothManager_SetTrusted_Request {
optional uint32 device = 1;
optional bool trusted = 2;
}
message CBluetoothManager_SetTrusted_Response {
}
service BluetoothManager {
option (webui_service_execution_site) = k_EClientExecutionSiteSteamUI;
@ -135,4 +144,5 @@ service BluetoothManager {
rpc Connect (.CBluetoothManager_Connect_Request) returns (.CBluetoothManager_Connect_Response);
rpc Disconnect (.CBluetoothManager_Disconnect_Request) returns (.CBluetoothManager_Disconnect_Response);
rpc SetWakeAllowed (.CBluetoothManager_SetWakeAllowed_Request) returns (.CBluetoothManager_SetWakeAllowed_Response);
rpc SetTrusted (.CBluetoothManager_SetTrusted_Request) returns (.CBluetoothManager_SetTrusted_Response);
}