steamutils 1.5.12 → 1.5.13

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.
Files changed (233) hide show
  1. package/.idea/codeStyles/Project.xml +1 -0
  2. package/.idea/deployment.xml +14 -0
  3. package/.prettierrc.json +3 -3
  4. package/SteamClient.js +1 -14
  5. package/_steamproto.js +39 -39
  6. package/axios.js +84 -84
  7. package/bufferHelpers.js +115 -115
  8. package/cheerio.js +103 -103
  9. package/const.js +569 -569
  10. package/create_proto.js +96 -96
  11. package/full_steamproto.js +39 -39
  12. package/helpers/protos.js +48 -48
  13. package/index.js +7949 -7949
  14. package/package.json +4 -4
  15. package/protos/csgo/base_gcmessages.proto +553 -553
  16. package/protos/csgo/base_gcmessages_csgo.proto +547 -547
  17. package/protos/csgo/c_peer2peer_netmessages.proto +55 -55
  18. package/protos/csgo/clientmessages.proto +48 -48
  19. package/protos/csgo/connectionless_netmessages.proto +17 -17
  20. package/protos/csgo/cs_gameevents.proto +35 -35
  21. package/protos/csgo/cs_usercmd.proto +34 -34
  22. package/protos/csgo/cstrike15_usermessages.proto +592 -592
  23. package/protos/csgo/demo.proto +165 -165
  24. package/protos/csgo/econ_gcmessages.proto +219 -219
  25. package/protos/csgo/enums_clientserver.proto +1529 -1529
  26. package/protos/csgo/fatdemo.proto +125 -125
  27. package/protos/csgo/gameevents.proto +120 -120
  28. package/protos/csgo/gcsdk_gcmessages.proto +323 -323
  29. package/protos/csgo/gcsystemmsgs.proto +243 -243
  30. package/protos/csgo/netmessages.proto +618 -618
  31. package/protos/csgo/networkbasetypes.proto +246 -246
  32. package/protos/csgo/networksystem_protomessages.proto +17 -17
  33. package/protos/csgo/steamdatagram_messages_auth.proto +65 -65
  34. package/protos/csgo/steamdatagram_messages_sdr.proto +534 -534
  35. package/protos/csgo/steammessages_cloud.steamworkssdk.proto +68 -68
  36. package/protos/csgo/steammessages_gamenetworkingui.proto +61 -61
  37. package/protos/csgo/steammessages_helprequest.steamworkssdk.proto +22 -22
  38. package/protos/csgo/steammessages_oauth.steamworkssdk.proto +18 -18
  39. package/protos/csgo/steammessages_player.steamworkssdk.proto +254 -254
  40. package/protos/csgo/steammessages_publishedfile.steamworkssdk.proto +233 -233
  41. package/protos/csgo/steamnetworkingsockets_messages.proto +205 -205
  42. package/protos/csgo/steamnetworkingsockets_messages_certs.proto +39 -39
  43. package/protos/csgo/steamnetworkingsockets_messages_udp.proto +75 -75
  44. package/protos/csgo/te.proto +259 -259
  45. package/protos/csgo/uifontfile_format.proto +13 -13
  46. package/protos/csgo/usercmd.proto +39 -39
  47. package/protos/csgo/usermessages.proto +752 -752
  48. package/protos/google/protobuf/descriptor.proto +281 -281
  49. package/protos/steam/clientmetrics.proto +45 -45
  50. package/protos/steam/content_manifest.proto +62 -62
  51. package/protos/steam/contenthubs.proto +41 -41
  52. package/protos/steam/encrypted_app_ticket.proto +10 -10
  53. package/protos/steam/enums.proto +501 -501
  54. package/protos/steam/enums_clientserver.proto +1508 -1508
  55. package/protos/steam/enums_productinfo.proto +14 -14
  56. package/protos/steam/htmlmessages.proto +1039 -1039
  57. package/protos/steam/offline_ticket.proto +8 -8
  58. package/protos/steam/steamdatagram_messages_auth.proto +65 -65
  59. package/protos/steam/steamdatagram_messages_sdr.proto +533 -533
  60. package/protos/steam/steammessages_accounthardware.steamclient.proto +167 -167
  61. package/protos/steam/steammessages_appoverview.proto +204 -204
  62. package/protos/steam/steammessages_auth.steamclient.proto +375 -375
  63. package/protos/steam/steammessages_broadcast.steamclient.proto +618 -618
  64. package/protos/steam/steammessages_chat.steamclient.proto +1070 -1070
  65. package/protos/steam/steammessages_client_objects.proto +649 -649
  66. package/protos/steam/steammessages_clientlanp2p.proto +43 -43
  67. package/protos/steam/steammessages_clientmetrics.steamclient.proto +192 -192
  68. package/protos/steam/steammessages_clientnotificationtypes.proto +250 -250
  69. package/protos/steam/steammessages_clientserver.proto +392 -392
  70. package/protos/steam/steammessages_clientserver_2.proto +771 -771
  71. package/protos/steam/steammessages_clientserver_appinfo.proto +131 -131
  72. package/protos/steam/steammessages_clientserver_friends.proto +260 -260
  73. package/protos/steam/steammessages_clientserver_gameservers.proto +159 -159
  74. package/protos/steam/steammessages_clientserver_lbs.proto +70 -70
  75. package/protos/steam/steammessages_clientserver_login.proto +167 -167
  76. package/protos/steam/steammessages_clientserver_mms.proto +233 -233
  77. package/protos/steam/steammessages_clientserver_ucm.proto +207 -207
  78. package/protos/steam/steammessages_clientserver_uds.proto +125 -125
  79. package/protos/steam/steammessages_clientserver_ufs.proto +45 -45
  80. package/protos/steam/steammessages_clientserver_userstats.proto +80 -80
  81. package/protos/steam/steammessages_cloud.steamclient.proto +422 -422
  82. package/protos/steam/steammessages_contentsystem.steamclient.proto +123 -123
  83. package/protos/steam/steammessages_credentials.steamclient.proto +96 -96
  84. package/protos/steam/steammessages_datapublisher.steamclient.proto +102 -102
  85. package/protos/steam/steammessages_depotbuilder.steamclient.proto +99 -99
  86. package/protos/steam/steammessages_deviceauth.steamclient.proto +169 -169
  87. package/protos/steam/steammessages_econ.steamclient.proto +137 -137
  88. package/protos/steam/steammessages_familygroups.steamclient.proto +441 -441
  89. package/protos/steam/steammessages_friendmessages.steamclient.proto +141 -141
  90. package/protos/steam/steammessages_gamenetworking.steamclient.proto +25 -25
  91. package/protos/steam/steammessages_gamenetworkingui.proto +61 -61
  92. package/protos/steam/steammessages_gamenotifications.steamclient.proto +131 -131
  93. package/protos/steam/steammessages_gameservers.steamclient.proto +136 -136
  94. package/protos/steam/steammessages_hiddevices.proto +157 -157
  95. package/protos/steam/steammessages_inventory.steamclient.proto +172 -172
  96. package/protos/steam/steammessages_linkfilter.steamclient.proto +39 -39
  97. package/protos/steam/steammessages_lobbymatchmaking.steamclient.proto +29 -29
  98. package/protos/steam/steammessages_market.steamclient.proto +22 -22
  99. package/protos/steam/steammessages_marketingmessages.steamclient.proto +273 -273
  100. package/protos/steam/steammessages_offline.steamclient.proto +33 -33
  101. package/protos/steam/steammessages_parental.steamclient.proto +262 -262
  102. package/protos/steam/steammessages_parties.steamclient.proto +75 -75
  103. package/protos/steam/steammessages_partnerapps.steamclient.proto +106 -106
  104. package/protos/steam/steammessages_player.steamclient.proto +915 -915
  105. package/protos/steam/steammessages_publishedfile.steamclient.proto +737 -737
  106. package/protos/steam/steammessages_qms.steamclient.proto +111 -111
  107. package/protos/steam/steammessages_remoteclient.proto +100 -100
  108. package/protos/steam/steammessages_remoteclient_discovery.proto +244 -244
  109. package/protos/steam/steammessages_remoteclient_service.steamclient.proto +31 -31
  110. package/protos/steam/steammessages_remoteclient_service_messages.proto +217 -217
  111. package/protos/steam/steammessages_remoteplay.proto +975 -975
  112. package/protos/steam/steammessages_secrets.steamclient.proto +35 -35
  113. package/protos/steam/steammessages_shader.steamclient.proto +89 -89
  114. package/protos/steam/steammessages_site_license.steamclient.proto +103 -103
  115. package/protos/steam/steammessages_sitelicenseclient.proto +38 -38
  116. package/protos/steam/steammessages_siteserverui.proto +130 -130
  117. package/protos/steam/steammessages_steamtv.steamclient.proto +533 -533
  118. package/protos/steam/steammessages_store.steamclient.proto +404 -404
  119. package/protos/steam/steammessages_storebrowse.steamclient.proto +457 -457
  120. package/protos/steam/steammessages_timedtrial.steamclient.proto +40 -40
  121. package/protos/steam/steammessages_twofactor.steamclient.proto +157 -157
  122. package/protos/steam/steammessages_unified_test.steamclient.proto +51 -51
  123. package/protos/steam/steammessages_useraccount.steamclient.proto +211 -211
  124. package/protos/steam/steammessages_vac.steamclient.proto +37 -37
  125. package/protos/steam/steammessages_video.steamclient.proto +68 -68
  126. package/protos/steam/steammessages_virtualcontroller.proto +138 -138
  127. package/protos/steam/steammessages_workshop.steamclient.proto +19 -19
  128. package/protos/steam/steamnetworkingsockets_messages.proto +205 -205
  129. package/protos/steam/steamnetworkingsockets_messages_certs.proto +39 -39
  130. package/protos/steam/steamnetworkingsockets_messages_udp.proto +75 -75
  131. package/protos/steam/webuimessages_achievements.proto +29 -29
  132. package/protos/steam/webuimessages_gamenotes.proto +21 -21
  133. package/protos/steam/webuimessages_gamescope.proto +57 -57
  134. package/protos/steam/webuimessages_steamengine.proto +41 -41
  135. package/protos/steam/webuimessages_steamos.proto +114 -114
  136. package/protos/steam/webuimessages_storagedevicemanager.proto +110 -110
  137. package/protos/steam/webuimessages_systemmanager.proto +17 -17
  138. package/protos/steam/webuimessages_transport.proto +22 -22
  139. package/protos/steam/webuimessages_transportvalidation.proto +111 -111
  140. package/protos/webui/common.proto +4024 -4024
  141. package/protos/webui/service_accountcart.proto +153 -153
  142. package/protos/webui/service_accountlinking.proto +27 -27
  143. package/protos/webui/service_accountprivacy.proto +42 -42
  144. package/protos/webui/service_accountprivateapps.proto +34 -34
  145. package/protos/webui/service_auction.proto +97 -97
  146. package/protos/webui/service_authentication.proto +222 -222
  147. package/protos/webui/service_authenticationsupport.proto +74 -74
  148. package/protos/webui/service_broadcast.proto +562 -562
  149. package/protos/webui/service_chat.proto +11 -11
  150. package/protos/webui/service_chatroom.proto +810 -810
  151. package/protos/webui/service_chatusability.proto +107 -107
  152. package/protos/webui/service_checkout.proto +84 -84
  153. package/protos/webui/service_clan.proto +41 -41
  154. package/protos/webui/service_clanchatrooms.proto +25 -25
  155. package/protos/webui/service_clanfaqs.proto +202 -202
  156. package/protos/webui/service_clientcomm.proto +151 -151
  157. package/protos/webui/service_clientmetrics.proto +22 -22
  158. package/protos/webui/service_cloud.proto +222 -222
  159. package/protos/webui/service_cloudconfigstore.proto +51 -51
  160. package/protos/webui/service_cloudgaming.proto +30 -30
  161. package/protos/webui/service_community.proto +365 -365
  162. package/protos/webui/service_dailydeal.proto +89 -89
  163. package/protos/webui/service_econ.proto +134 -134
  164. package/protos/webui/service_embedded.proto +24 -24
  165. package/protos/webui/service_experimentservice.proto +6 -6
  166. package/protos/webui/service_familygroups.proto +355 -355
  167. package/protos/webui/service_fovasvideo.proto +15 -15
  168. package/protos/webui/service_friendmessages.proto +133 -133
  169. package/protos/webui/service_friendslist.proto +70 -70
  170. package/protos/webui/service_gamenotes.proto +15 -15
  171. package/protos/webui/service_gamerecording.proto +265 -265
  172. package/protos/webui/service_gamerecordingclip.proto +85 -85
  173. package/protos/webui/service_gamerecordingdebug.proto +52 -52
  174. package/protos/webui/service_helprequestlogs.proto +16 -16
  175. package/protos/webui/service_loyaltyrewards.proto +252 -252
  176. package/protos/webui/service_marketingmessages.proto +215 -215
  177. package/protos/webui/service_mobileapp.proto +18 -18
  178. package/protos/webui/service_mobileauth.proto +24 -24
  179. package/protos/webui/service_mobiledevice.proto +26 -26
  180. package/protos/webui/service_mobileperaccount.proto +31 -31
  181. package/protos/webui/service_news.proto +110 -110
  182. package/protos/webui/service_parental.proto +258 -258
  183. package/protos/webui/service_partnermembershipinvite.proto +34 -34
  184. package/protos/webui/service_partnerstorebrowse.proto +28 -28
  185. package/protos/webui/service_phone.proto +51 -51
  186. package/protos/webui/service_physicalgoods.proto +15 -15
  187. package/protos/webui/service_player.proto +918 -918
  188. package/protos/webui/service_promotioneventinvites.proto +109 -109
  189. package/protos/webui/service_promotionplanning.proto +186 -186
  190. package/protos/webui/service_promotionstats.proto +23 -23
  191. package/protos/webui/service_publishedfile.proto +714 -714
  192. package/protos/webui/service_publishing.proto +200 -200
  193. package/protos/webui/service_quest.proto +127 -127
  194. package/protos/webui/service_salefeature.proto +373 -373
  195. package/protos/webui/service_saleitemrewards.proto +54 -54
  196. package/protos/webui/service_shoppingcart.proto +152 -152
  197. package/protos/webui/service_steamawards.proto +76 -76
  198. package/protos/webui/service_steamcharts.proto +75 -75
  199. package/protos/webui/service_steamengine.proto +36 -36
  200. package/protos/webui/service_steamlearn.proto +876 -876
  201. package/protos/webui/service_steamnotification.proto +73 -73
  202. package/protos/webui/service_steamtv.proto +495 -495
  203. package/protos/webui/service_steamvrvoicechat.proto +67 -67
  204. package/protos/webui/service_steamvrwebrtc.proto +48 -48
  205. package/protos/webui/service_storagedevicemanager.proto +104 -104
  206. package/protos/webui/service_store.proto +359 -359
  207. package/protos/webui/service_storeappsimilarity.proto +76 -76
  208. package/protos/webui/service_storebrowse.proto +103 -103
  209. package/protos/webui/service_storemarketing.proto +44 -44
  210. package/protos/webui/service_storequery.proto +103 -103
  211. package/protos/webui/service_storesales.proto +87 -87
  212. package/protos/webui/service_storetopsellers.proto +44 -44
  213. package/protos/webui/service_systemmanager.proto +11 -11
  214. package/protos/webui/service_test_transporterror.proto +6 -6
  215. package/protos/webui/service_transportauth.proto +17 -17
  216. package/protos/webui/service_transportvalidation.proto +69 -69
  217. package/protos/webui/service_twofactor.proto +170 -170
  218. package/protos/webui/service_useraccount.proto +142 -142
  219. package/protos/webui/service_usergameactivity.proto +34 -34
  220. package/protos/webui/service_usergamenotes.proto +70 -70
  221. package/protos/webui/service_usernews.proto +68 -68
  222. package/protos/webui/service_userreviews.proto +97 -97
  223. package/protos/webui/service_video.proto +50 -50
  224. package/protos/webui/service_videoclip.proto +62 -62
  225. package/protos/webui/service_voicechat.proto +139 -139
  226. package/protos/webui/service_webrtc.proto +52 -52
  227. package/remote.js +2 -2
  228. package/steamproto.js +146 -146
  229. package/utils.js +1150 -1150
  230. package/.idea/gbrowser_project.xml +0 -11
  231. package/.idea/git_toolbox_blame.xml +0 -6
  232. package/.idea/git_toolbox_prj.xml +0 -15
  233. package/race.js +0 -2241
@@ -1,649 +1,649 @@
1
- import "enums.proto";
2
-
3
- option optimize_for = SPEED;
4
- option cc_generic_services = false;
5
-
6
- enum ECloudPendingRemoteOperation {
7
- k_ECloudPendingRemoteOperationNone = 0;
8
- k_ECloudPendingRemoteOperationAppSessionActive = 1;
9
- k_ECloudPendingRemoteOperationUploadInProgress = 2;
10
- k_ECloudPendingRemoteOperationUploadPending = 3;
11
- k_ECloudPendingRemoteOperationAppSessionSuspended = 4;
12
- }
13
-
14
- enum ESteamDeckKeyboardLayout {
15
- k_ESteamDeckKeyboardLayout_QWERTY = 0;
16
- k_ESteamDeckKeyboardLayout_Bulgarian = 1;
17
- k_ESteamDeckKeyboardLayout_Chinese_Simplified = 2;
18
- k_ESteamDeckKeyboardLayout_Chinese_Traditional = 3;
19
- k_ESteamDeckKeyboardLayout_Czech = 4;
20
- k_ESteamDeckKeyboardLayout_Danish = 5;
21
- k_ESteamDeckKeyboardLayout_Finnish = 6;
22
- k_ESteamDeckKeyboardLayout_French = 7;
23
- k_ESteamDeckKeyboardLayout_German = 8;
24
- k_ESteamDeckKeyboardLayout_Greek = 9;
25
- k_ESteamDeckKeyboardLayout_Hungarian = 10;
26
- k_ESteamDeckKeyboardLayout_Italian = 11;
27
- k_ESteamDeckKeyboardLayout_Japanese = 12;
28
- k_ESteamDeckKeyboardLayout_Korean = 13;
29
- k_ESteamDeckKeyboardLayout_Norwegian = 14;
30
- k_ESteamDeckKeyboardLayout_Polish = 15;
31
- k_ESteamDeckKeyboardLayout_Portuguese = 16;
32
- k_ESteamDeckKeyboardLayout_Romanian = 17;
33
- k_ESteamDeckKeyboardLayout_Russian = 18;
34
- k_ESteamDeckKeyboardLayout_Spanish = 19;
35
- k_ESteamDeckKeyboardLayout_Swedish = 20;
36
- k_ESteamDeckKeyboardLayout_Thai = 21;
37
- k_ESteamDeckKeyboardLayout_Turkish_F = 22;
38
- k_ESteamDeckKeyboardLayout_Turkish_Q = 23;
39
- k_ESteamDeckKeyboardLayout_Ukrainian = 24;
40
- k_ESteamDeckKeyboardLayout_Vietnamese = 25;
41
- k_ESteamDeckKeyboardLayout_QWERTY_International = 26;
42
- k_ESteamDeckKeyboardLayout_Dvorak = 27;
43
- k_ESteamDeckKeyboardLayout_Colemak = 28;
44
- k_ESteamDeckKeyboardLayout_Bulgarian_Phonetic_Traditional = 29;
45
- k_ESteamDeckKeyboardLayout_Bulgarian_Phonetic = 30;
46
- k_ESteamDeckKeyboardLayout_Chinese_Traditional_Bopomofo = 31;
47
- k_ESteamDeckKeyboardLayout_Chinese_Traditional_Cangjie = 32;
48
- k_ESteamDeckKeyboardLayout_Japanese_Kana = 33;
49
- k_ESteamDeckKeyboardLayout_Chinese_Traditional_Quick = 34;
50
- k_ESteamDeckKeyboardLayout_Indonesian = 35;
51
- }
52
-
53
- message SteamMessagesClientIClientForcedEnumDependencies {
54
- optional .EBluetoothDeviceType a = 1 [default = k_BluetoothDeviceType_Invalid];
55
- optional .EStorageBlockContentType b = 2 [default = k_EStorageBlockContentType_Invalid];
56
- optional .EStorageBlockFileSystemType c = 3 [default = k_EStorageBlockFileSystemType_Invalid];
57
- optional .ESDCardFormatStage d = 4 [default = k_ESDCardFormatStage_Invalid];
58
- }
59
-
60
- message CMsgNetworkDeviceIP4Address {
61
- optional int32 ip = 1 [default = 0];
62
- optional int32 netmask = 2;
63
- }
64
-
65
- message CMsgNetworkDeviceIP4Config {
66
- repeated .CMsgNetworkDeviceIP4Address addresses = 1;
67
- repeated int32 dns_ip = 2;
68
- optional int32 gateway_ip = 3;
69
- optional bool is_dhcp_enabled = 4;
70
- optional bool is_default_route = 5;
71
- optional bool is_enabled = 6 [default = false];
72
- }
73
-
74
- message CMsgNetworkDeviceIP6Address {
75
- optional string ip = 1;
76
- }
77
-
78
- message CMsgNetworkDeviceIP6Config {
79
- repeated .CMsgNetworkDeviceIP6Address addresses = 1;
80
- repeated string dns_ip = 2;
81
- optional string gateway_ip = 3;
82
- optional bool is_dhcp_enabled = 4;
83
- optional bool is_default_route = 5;
84
- optional bool is_enabled = 6 [default = false];
85
- }
86
-
87
- message CMsgNetworkDevicesData {
88
- message Device {
89
- message Wired {
90
- optional bool is_cable_present = 1 [default = false];
91
- optional uint32 speed_mbit = 2;
92
- optional string friendly_name = 3;
93
- }
94
-
95
- message Wireless {
96
- message AP {
97
- optional uint32 id = 1 [default = 0];
98
- optional int32 estrength = 2;
99
- optional string ssid = 3;
100
- optional bool is_active = 4;
101
- optional bool is_autoconnect = 5;
102
- optional int32 esecurity = 6;
103
- optional string user_name = 7;
104
- optional string password = 8;
105
- optional int32 strength_raw = 9;
106
- }
107
-
108
- repeated .CMsgNetworkDevicesData.Device.Wireless.AP aps = 1;
109
- optional int32 esecurity_supported = 2;
110
- }
111
-
112
- optional uint32 id = 1 [default = 0];
113
- optional int32 etype = 2;
114
- optional int32 estate = 3;
115
- optional string mac = 4;
116
- optional string vendor = 5;
117
- optional string product = 6;
118
- optional .CMsgNetworkDeviceIP4Config ip4 = 7;
119
- optional .CMsgNetworkDeviceIP6Config ip6 = 8;
120
- optional .CMsgNetworkDevicesData.Device.Wired wired = 9;
121
- optional .CMsgNetworkDevicesData.Device.Wireless wireless = 10;
122
- }
123
-
124
- repeated .CMsgNetworkDevicesData.Device devices = 1;
125
- optional bool is_wifi_enabled = 2;
126
- optional bool is_wifi_scanning_enabled = 3;
127
- }
128
-
129
- message CMsgNetworkDeviceConnect {
130
- message KnownAP {
131
- optional uint32 ap_id = 1;
132
- }
133
-
134
- message CustomAP {
135
- optional string ssid = 1;
136
- optional int32 esecurity = 2;
137
- }
138
-
139
- message Credentials {
140
- optional string username = 1;
141
- optional string password = 2;
142
- }
143
-
144
- optional uint32 device_id = 1 [default = 0];
145
- optional .CMsgNetworkDeviceConnect.Credentials credentials = 4;
146
- optional .CMsgNetworkDeviceIP4Config ip4 = 5;
147
- optional .CMsgNetworkDeviceIP6Config ip6 = 6;
148
-
149
- oneof ap_info {
150
- .CMsgNetworkDeviceConnect.KnownAP ap_known = 2;
151
- .CMsgNetworkDeviceConnect.CustomAP ap_custom = 3;
152
- }
153
- }
154
-
155
- message CMsgStorageDevicesData {
156
- message Drive {
157
- optional uint32 id = 1 [default = 0];
158
- optional string model = 2;
159
- optional string vendor = 3;
160
- optional string serial = 4;
161
- optional bool is_ejectable = 5;
162
- optional uint64 size_bytes = 6;
163
- optional .EStorageDriveMediaType media_type = 7 [default = k_EStorageDriveMediaType_Invalid];
164
- }
165
-
166
- message BlockDevice {
167
- optional uint32 id = 1 [default = 0];
168
- optional uint32 drive_id = 2 [default = 0];
169
- optional string path = 3;
170
- optional string friendly_path = 4;
171
- optional string label = 5;
172
- optional uint64 size_bytes = 6;
173
- optional bool is_formattable = 7;
174
- optional bool is_read_only = 8;
175
- optional bool is_root_device = 9;
176
- optional .EStorageBlockContentType content_type = 10 [default = k_EStorageBlockContentType_Invalid];
177
- optional .EStorageBlockFileSystemType filesystem_type = 11 [default = k_EStorageBlockFileSystemType_Invalid];
178
- optional string mount_path = 12;
179
- }
180
-
181
- repeated .CMsgStorageDevicesData.Drive drives = 1;
182
- repeated .CMsgStorageDevicesData.BlockDevice block_devices = 2;
183
- optional bool is_unmount_supported = 3;
184
- optional bool is_trim_supported = 4;
185
- optional bool is_trim_running = 5;
186
- }
187
-
188
- message CCloud_PendingRemoteOperation {
189
- optional .ECloudPendingRemoteOperation operation = 1 [default = k_ECloudPendingRemoteOperationNone];
190
- optional string machine_name = 2;
191
- optional uint64 client_id = 3;
192
- optional uint32 time_last_updated = 4;
193
- }
194
-
195
- message CMsgCloudPendingRemoteOperations {
196
- repeated .CCloud_PendingRemoteOperation operations = 1;
197
- }
198
-
199
- message CMsgBluetoothDevicesData {
200
- message Adapter {
201
- optional uint32 id = 1 [default = 0];
202
- optional string mac = 2;
203
- optional string name = 3;
204
- optional bool is_enabled = 4;
205
- optional bool is_discovering = 5;
206
- }
207
-
208
- message Device {
209
- optional uint32 id = 1 [default = 0];
210
- optional uint32 adapter_id = 2 [default = 0];
211
- optional .EBluetoothDeviceType etype = 3 [default = k_BluetoothDeviceType_Invalid];
212
- optional string mac = 4;
213
- optional string name = 5;
214
- optional bool is_connected = 6;
215
- optional bool is_paired = 7;
216
- optional int32 strength_raw = 8;
217
- }
218
-
219
- message Manager {
220
- optional bool is_bluetooth_enabled = 1;
221
- }
222
-
223
- repeated .CMsgBluetoothDevicesData.Adapter adapters = 1;
224
- repeated .CMsgBluetoothDevicesData.Device devices = 2;
225
- optional .CMsgBluetoothDevicesData.Manager manager = 3;
226
- }
227
-
228
- message CMsgSystemPerfDiagnosticEntry {
229
- optional string name = 1;
230
- optional string value = 2;
231
- }
232
-
233
- message CMsgSystemPerfNetworkInterface {
234
- optional string name = 1;
235
- optional double timestamp = 2;
236
- optional int64 tx_bytes_total = 3;
237
- optional int64 rx_bytes_total = 4;
238
- optional int32 tx_bytes_per_sec = 5;
239
- optional int32 rx_bytes_per_sec = 6;
240
- }
241
-
242
- message CMsgSystemPerfDiagnosticInfo {
243
- repeated .CMsgSystemPerfDiagnosticEntry entries = 1;
244
- repeated .CMsgSystemPerfNetworkInterface interfaces = 2;
245
- optional float battery_temp_c = 3;
246
- }
247
-
248
- message CMsgSystemPerfLimits {
249
- optional int32 cpu_governor_manual_min_mhz = 1;
250
- optional int32 cpu_governor_manual_max_mhz = 2;
251
- optional int32 fsr_sharpness_min = 3;
252
- optional int32 fsr_sharpness_max = 4;
253
- optional int32 gpu_performance_manual_min_mhz = 5;
254
- optional int32 gpu_performance_manual_max_mhz = 6;
255
- optional bool perf_overlay_is_standalone = 7;
256
- optional bool is_dynamic_vrs_available = 8;
257
- optional bool is_manual_display_refresh_rate_available = 9;
258
- repeated .EGPUPerformanceLevel gpu_performance_levels_available = 10;
259
- optional int32 display_refresh_manual_hz_min = 11;
260
- optional int32 display_refresh_manual_hz_max = 12;
261
- repeated int32 fps_limit_options = 13;
262
- optional int32 tdp_limit_min = 14;
263
- optional int32 tdp_limit_max = 15;
264
- optional bool is_nis_supported = 16;
265
- optional int32 nis_sharpness_min = 17;
266
- optional int32 nis_sharpness_max = 18;
267
- optional int32 display_external_refresh_manual_hz_min = 19;
268
- optional int32 display_external_refresh_manual_hz_max = 20;
269
- repeated int32 fps_limit_options_external = 21;
270
- optional bool is_tearing_supported = 22;
271
- optional bool is_vrr_supported = 23;
272
- optional bool is_dynamic_refresh_rate_in_steam_supported = 24;
273
- optional bool is_split_scaling_and_filtering_supported = 25;
274
- repeated .ESplitScalingFilter split_scaling_filters_available = 26;
275
- repeated .ESplitScalingScaler split_scaling_scalers_available = 27;
276
- optional bool is_hdr_supported = 28;
277
- optional int32 display_refresh_manual_hz_oc_max = 29;
278
- optional bool disable_refresh_rate_management = 30;
279
- }
280
-
281
- message CMsgSystemPerfSettingsGlobal {
282
- optional float diagnostic_update_rate = 1;
283
- optional .ESystemServiceState system_trace_service_state = 2 [default = k_ESystemServiceState_Unavailable];
284
- optional .ESystemServiceState graphics_profiling_service_state = 3 [default = k_ESystemServiceState_Unavailable];
285
- optional .ESystemServiceState perf_overlay_service_state = 4 [default = k_ESystemServiceState_Unavailable];
286
- optional .EGraphicsPerfOverlayLevel perf_overlay_level = 5 [default = k_EGraphicsPerfOverlayLevel_Hidden];
287
- optional bool is_show_perf_overlay_over_steam_enabled = 6;
288
- optional bool is_advanced_settings_enabled = 7;
289
- optional bool allow_external_display_refresh_control = 8;
290
- optional bool is_hdr_enabled = 9;
291
- optional .EHDRToneMapOperator hdr_on_sdr_tonemap_operator = 12 [default = k_EHDRToneMapOperator_Invalid];
292
- optional bool is_hdr_debug_heatmap_enabled = 13;
293
- optional bool force_hdr_wide_gammut_for_sdr = 15 [default = true];
294
- optional bool allow_experimental_hdr = 16;
295
- optional float sdr_to_hdr_brightness = 22;
296
- optional bool debug_force_hdr_support = 18;
297
- optional bool force_hdr_10pq_output_debug = 19;
298
- optional bool is_display_oc_enabled = 20;
299
- optional bool is_color_management_enabled = 21;
300
- }
301
-
302
- message CMsgSystemPerfSettingsPerApp {
303
- optional int32 gpu_performance_manual_mhz = 1;
304
- optional int32 fps_limit = 2;
305
- optional bool is_variable_resolution_enabled = 3;
306
- optional bool is_dynamic_refresh_rate_enabled = 4;
307
- optional int32 tdp_limit = 5;
308
- optional .ECPUGovernor cpu_governor = 6 [default = k_ECPUGovernor_Invalid];
309
- optional int32 cpu_governor_manual_mhz = 7;
310
- optional int32 scaling_filter = 8;
311
- optional int32 fsr_sharpness = 9;
312
- optional bool is_fps_limit_enabled = 10;
313
- optional bool is_tdp_limit_enabled = 11;
314
- optional bool is_low_latency_mode_enabled = 12;
315
- optional int32 display_refresh_manual_hz = 13;
316
- optional bool is_game_perf_profile_enabled = 14;
317
- optional .EGPUPerformanceLevel gpu_performance_level = 15 [default = k_EGPUPerformanceLevel_Invalid];
318
- optional int32 nis_sharpness = 16;
319
- optional int32 display_external_refresh_manual_hz = 17;
320
- optional int32 fps_limit_external = 18;
321
- optional bool is_tearing_enabled = 19;
322
- optional bool is_vrr_enabled = 20;
323
- optional bool is_composite_debug_enabled = 21;
324
- optional bool force_composite = 22;
325
- optional bool use_dynamic_refresh_rate_in_steam = 23;
326
- optional .ESplitScalingFilter split_scaling_filter = 24 [default = k_ESplitScalingFilter_Invalid];
327
- optional .ESplitScalingScaler split_scaling_scaler = 25 [default = k_ESplitScalingScaler_Invalid];
328
- }
329
-
330
- message CMsgSystemPerfSettings {
331
- optional .CMsgSystemPerfSettingsGlobal global = 1;
332
- optional .CMsgSystemPerfSettingsPerApp per_app = 2;
333
- }
334
-
335
- message CMsgSystemPerfSettingsV1 {
336
- optional float diagnostic_update_rate = 1;
337
- optional .ESystemServiceState system_trace_service_state = 2 [default = k_ESystemServiceState_Unavailable];
338
- optional .ESystemServiceState graphics_profiling_service_state = 3 [default = k_ESystemServiceState_Unavailable];
339
- optional .ESystemServiceState perf_overlay_service_state = 4 [default = k_ESystemServiceState_Unavailable];
340
- optional .EGraphicsPerfOverlayLevel perf_overlay_level = 5 [default = k_EGraphicsPerfOverlayLevel_Hidden];
341
- optional .EGPUPerformanceLevel gpu_performance_level = 6 [default = k_EGPUPerformanceLevel_Invalid];
342
- optional int32 gpu_performance_manual_mhz = 7;
343
- optional int32 fps_limit = 8;
344
- optional bool is_variable_resolution_enabled = 9;
345
- optional bool is_dynamic_refresh_rate_enabled = 10;
346
- optional int32 tdp_limit = 11;
347
- optional .ECPUGovernor cpu_governor = 12 [default = k_ECPUGovernor_Invalid];
348
- optional int32 cpu_governor_manual_mhz = 13;
349
- optional int32 scaling_filter = 14;
350
- optional int32 fsr_sharpness = 15;
351
- optional bool is_fps_limit_enabled = 16;
352
- optional bool is_tdp_limit_enabled = 17;
353
- optional bool is_show_perf_overlay_over_steam_enabled = 18;
354
- optional bool is_low_latency_mode_enabled = 19;
355
- optional int32 display_refresh_manual_hz = 20;
356
- optional bool is_game_perf_profile_enabled = 21;
357
- }
358
-
359
- message CMsgSystemPerfState {
360
- optional .CMsgSystemPerfLimits limits = 1;
361
- optional .CMsgSystemPerfSettings settings = 2;
362
- optional uint64 current_game_id = 3;
363
- optional uint64 active_profile_game_id = 4;
364
- }
365
-
366
- message CMsgSystemPerfUpdateSettings {
367
- optional uint64 gameid = 1;
368
- optional bool skip_storage_update = 4;
369
-
370
- oneof update {
371
- bool reset_to_default = 2;
372
- .CMsgSystemPerfSettings settings_delta = 3;
373
- }
374
- }
375
-
376
- message CMsgSystemDockUpdateState {
377
- optional .EUpdaterState state = 1 [default = k_EUpdaterState_Invalid];
378
- optional fixed32 rtime_last_checked = 2;
379
- optional string version_current = 3;
380
- optional string version_available = 4;
381
- optional float stage_progress = 5;
382
- optional fixed32 rtime_estimated_completion = 6;
383
- optional int32 old_fw_workaround = 7;
384
- }
385
-
386
- message CMsgSystemDockState {
387
- optional .CMsgSystemDockUpdateState update_state = 1;
388
- }
389
-
390
- message CMsgSystemDockUpdateFirmware {
391
- optional bool check_only = 1;
392
- }
393
-
394
- message CMsgSystemAudioVolume {
395
- message ChannelEntry {
396
- optional .ESystemAudioChannel echannel = 1 [default = k_SystemAudioChannel_Invalid];
397
- optional float volume = 2;
398
- }
399
-
400
- repeated .CMsgSystemAudioVolume.ChannelEntry entries = 1;
401
- optional bool is_muted = 2;
402
- }
403
-
404
- message CMsgSystemAudioManagerObject {
405
- optional uint32 id = 1;
406
- optional fixed32 rtime_last_update = 2;
407
- }
408
-
409
- message CMsgSystemAudioManagerDevice {
410
- optional .CMsgSystemAudioManagerObject base = 1;
411
- optional string name = 2;
412
- optional string nick = 3;
413
- optional string description = 4;
414
- optional string api = 5;
415
- }
416
-
417
- message CMsgSystemAudioManagerNode {
418
- optional .CMsgSystemAudioManagerObject base = 1;
419
- optional uint32 device_id = 2;
420
- optional string name = 3;
421
- optional string nick = 4;
422
- optional string description = 5;
423
- optional .ESystemAudioDirection edirection = 6 [default = k_SystemAudioDirection_Invalid];
424
- optional .CMsgSystemAudioVolume volume = 7;
425
- }
426
-
427
- message CMsgSystemAudioManagerPort {
428
- optional .CMsgSystemAudioManagerObject base = 1;
429
- optional uint32 node_id = 3;
430
- optional string name = 4;
431
- optional string alias = 5;
432
- optional .ESystemAudioPortType etype = 6 [default = k_SystemAudioPortType_Invalid];
433
- optional .ESystemAudioPortDirection edirection = 7 [default = k_SystemAudioPortDirection_Invalid];
434
- optional bool is_physical = 8;
435
- optional bool is_terminal = 9;
436
- optional bool is_control = 10;
437
- optional bool is_monitor = 11;
438
- }
439
-
440
- message CMsgSystemAudioManagerLink {
441
- optional .CMsgSystemAudioManagerObject base = 1;
442
- optional uint32 output_node_id = 2;
443
- optional uint32 output_port_id = 3;
444
- optional uint32 input_node_id = 4;
445
- optional uint32 input_port_id = 5;
446
- }
447
-
448
- message CMsgSystemAudioManagerStateHW {
449
- repeated .CMsgSystemAudioManagerDevice devices = 1;
450
- repeated .CMsgSystemAudioManagerNode nodes = 2;
451
- repeated .CMsgSystemAudioManagerPort ports = 3;
452
- repeated .CMsgSystemAudioManagerLink links = 4;
453
- }
454
-
455
- message CMsgSystemAudioManagerState {
456
- optional fixed32 rtime_filter = 1;
457
- optional int32 counter = 2;
458
- optional .CMsgSystemAudioManagerStateHW hw = 3;
459
- }
460
-
461
- message CMsgSystemAudioManagerUpdateSomething {
462
- optional int32 counter = 1;
463
- }
464
-
465
- message CMsgSystemDisplayMode {
466
- optional int32 id = 1;
467
- optional int32 width = 2;
468
- optional int32 height = 3;
469
- optional int32 refresh_hz = 4;
470
- }
471
-
472
- message CMsgSystemDisplay {
473
- optional int32 id = 1;
474
- optional string name = 2;
475
- optional string description = 3;
476
- optional bool is_primary = 4;
477
- optional bool is_enabled = 5;
478
- optional bool is_internal = 6;
479
- optional bool has_mode_override = 7;
480
- optional int32 width_mm = 8;
481
- optional int32 height_mm = 9;
482
- optional int32 current_mode_id = 10;
483
- repeated .CMsgSystemDisplayMode modes = 11;
484
- optional int32 refresh_rate_min = 12;
485
- optional int32 refresh_rate_max = 13;
486
- optional bool is_vrr_capable = 14;
487
- optional bool is_vrr_enabled = 15;
488
- optional bool is_hdr_capable = 16;
489
- optional bool is_hdr_enabled = 17;
490
- repeated int32 supported_refresh_rates = 18;
491
- }
492
-
493
- message CMsgSystemDisplayManagerState {
494
- repeated .CMsgSystemDisplay displays = 1;
495
- optional bool is_mode_switching_supported = 2;
496
- optional .ESystemDisplayCompatibilityMode compatibility_mode = 3 [default = k_ESystemDisplayCompatibilityMode_Invalid];
497
- }
498
-
499
- message CMsgSystemDisplayManagerSetMode {
500
- optional int32 display_id = 1;
501
- optional int32 mode_id = 2;
502
- }
503
-
504
- message CMsgSystemManagerSettings {
505
- optional float idle_backlight_dim_battery_seconds = 1;
506
- optional float idle_backlight_dim_ac_seconds = 2;
507
- optional float idle_suspend_battery_seconds = 3;
508
- optional float idle_suspend_ac_seconds = 4;
509
- optional bool idle_suspend_supressed = 5;
510
- optional bool is_adaptive_brightness_available = 6;
511
- optional bool display_adaptive_brightness_enabled = 7;
512
- optional bool display_nightmode_enabled = 10;
513
- optional float display_nightmode_tintstrength = 11;
514
- optional float display_nightmode_maxhue = 12;
515
- optional float display_nightmode_maxsat = 13;
516
- optional float display_nightmode_uiexp = 14;
517
- optional float display_nightmode_blend = 15;
518
- optional bool display_nightmode_reset = 16;
519
- optional bool display_nightmode_schedule_enabled = 17;
520
- optional float display_nightmode_schedule_starttime = 18;
521
- optional float display_nightmode_schedule_endtime = 19;
522
- optional bool display_diagnostics_enabled = 20;
523
- optional float als_lux_primary = 21;
524
- optional float als_lux_median = 22;
525
- optional float display_backlight_raw = 23;
526
- optional float display_brightness_adaptivemin = 24;
527
- optional float display_brightness_adaptivemax = 25;
528
- optional bool is_wifi_powersave_enabled = 26;
529
- optional bool is_fan_control_available = 27;
530
- optional .ESystemFanControlMode fan_control_mode = 28 [default = k_SystemFanControlMode_Invalid];
531
- optional bool is_display_brightness_available = 29;
532
- optional bool is_display_colormanagement_available = 31;
533
- optional float display_colorgamut = 32;
534
- optional float als_lux_alternate = 33;
535
- optional bool is_display_colortemp_available = 34;
536
- optional float display_colortemp = 35;
537
- optional float display_colortemp_default = 36;
538
- optional bool display_colortemp_enabled = 37;
539
- optional .EColorGamutLabelSet display_colorgamut_labelset = 38 [default = k_ColorGamutLabelSet_Default];
540
- optional float display_brightness_overdrive_hdr_split = 39;
541
- }
542
-
543
- message CMsgSelectOSBranchParams {
544
- optional .EOSBranch branch = 1 [default = k_EOSBranch_Unknown];
545
- optional string custom_branch = 2;
546
- }
547
-
548
- message CMsgSystemUpdateProgress {
549
- optional float stage_progress = 1;
550
- optional int64 stage_size_bytes = 2;
551
- optional fixed32 rtime_estimated_completion = 3;
552
- }
553
-
554
- message CMsgSystemUpdateCheckResult {
555
- optional .EUpdaterType type = 1 [default = k_EUpdaterType_Invalid];
556
- optional uint32 eresult = 2 [default = 2];
557
- optional fixed32 rtime_checked = 3;
558
- optional bool available = 4;
559
- optional string version = 5;
560
- optional string auto_message = 6;
561
- optional bool system_restart_pending = 7;
562
- }
563
-
564
- message CMsgSystemUpdateApplyParams {
565
- repeated .EUpdaterType apply_types = 1;
566
- }
567
-
568
- message CMsgSystemUpdateApplyResult {
569
- optional .EUpdaterType type = 1 [default = k_EUpdaterType_Invalid];
570
- optional uint32 eresult = 2 [default = 2];
571
- optional bool requires_client_restart = 3 [default = false];
572
- optional bool requires_system_restart = 4 [default = false];
573
- }
574
-
575
- message CMsgSystemUpdateState {
576
- optional .EUpdaterState state = 1 [default = k_EUpdaterState_Invalid];
577
- optional .CMsgSystemUpdateProgress progress = 2;
578
- repeated .CMsgSystemUpdateCheckResult update_check_results = 3;
579
- repeated .CMsgSystemUpdateApplyResult update_apply_results = 4;
580
- optional bool supports_os_updates = 5;
581
- }
582
-
583
- message CMsgAchievementChange {
584
- optional uint32 appid = 1;
585
- }
586
-
587
- message CMsgCellList {
588
- message Cell {
589
- optional uint32 cell_id = 1;
590
- optional string loc_name = 2;
591
- }
592
-
593
- repeated .CMsgCellList.Cell cells = 1;
594
- }
595
-
596
- message CMsgShortcutInfo {
597
- optional uint32 appid = 1;
598
- optional string exe = 2;
599
- optional string start_dir = 3;
600
- optional string icon = 4;
601
- optional string path = 5;
602
- optional string args = 6;
603
- optional string app_name = 7;
604
- optional uint32 override_appid = 8;
605
- optional string flatpak_appid = 9;
606
- repeated string tags = 10;
607
- optional bool is_remote = 11;
608
- optional bool is_hidden = 12;
609
- optional bool is_temporary = 13;
610
- optional bool is_openvr = 14;
611
- optional bool allow_desktop_config = 15;
612
- optional bool allow_overlay = 16;
613
- optional uint32 rt_last_played_time = 17;
614
- optional bool is_devkit_shortcut = 18;
615
- optional string devkit_gameid = 19;
616
- }
617
-
618
- message CMsgShortcutAppIds {
619
- repeated uint32 appids = 1;
620
- }
621
-
622
- message CMsgMonitorInfo {
623
- message MonitorInfo {
624
- required string monitor_device_name = 1;
625
- required string monitor_display_name = 2;
626
- }
627
-
628
- required string selected_display_name = 1;
629
- repeated .CMsgMonitorInfo.MonitorInfo monitors = 2;
630
- }
631
-
632
- message CMsgGenerateSystemReportReply {
633
- optional string report_id = 1;
634
- }
635
-
636
- message CMsgWebUITransportInfo {
637
- optional uint32 port = 1;
638
- optional string auth_key = 2;
639
- }
640
-
641
- message CMsgClientShaderHitCacheEntry {
642
- optional bytes key_sha = 1;
643
- optional bytes code_sha = 2;
644
- optional uint64 time_last_reported = 3;
645
- }
646
-
647
- message CMsgClientShaderHitCache {
648
- repeated .CMsgClientShaderHitCacheEntry entries = 1;
649
- }
1
+ import "enums.proto";
2
+
3
+ option optimize_for = SPEED;
4
+ option cc_generic_services = false;
5
+
6
+ enum ECloudPendingRemoteOperation {
7
+ k_ECloudPendingRemoteOperationNone = 0;
8
+ k_ECloudPendingRemoteOperationAppSessionActive = 1;
9
+ k_ECloudPendingRemoteOperationUploadInProgress = 2;
10
+ k_ECloudPendingRemoteOperationUploadPending = 3;
11
+ k_ECloudPendingRemoteOperationAppSessionSuspended = 4;
12
+ }
13
+
14
+ enum ESteamDeckKeyboardLayout {
15
+ k_ESteamDeckKeyboardLayout_QWERTY = 0;
16
+ k_ESteamDeckKeyboardLayout_Bulgarian = 1;
17
+ k_ESteamDeckKeyboardLayout_Chinese_Simplified = 2;
18
+ k_ESteamDeckKeyboardLayout_Chinese_Traditional = 3;
19
+ k_ESteamDeckKeyboardLayout_Czech = 4;
20
+ k_ESteamDeckKeyboardLayout_Danish = 5;
21
+ k_ESteamDeckKeyboardLayout_Finnish = 6;
22
+ k_ESteamDeckKeyboardLayout_French = 7;
23
+ k_ESteamDeckKeyboardLayout_German = 8;
24
+ k_ESteamDeckKeyboardLayout_Greek = 9;
25
+ k_ESteamDeckKeyboardLayout_Hungarian = 10;
26
+ k_ESteamDeckKeyboardLayout_Italian = 11;
27
+ k_ESteamDeckKeyboardLayout_Japanese = 12;
28
+ k_ESteamDeckKeyboardLayout_Korean = 13;
29
+ k_ESteamDeckKeyboardLayout_Norwegian = 14;
30
+ k_ESteamDeckKeyboardLayout_Polish = 15;
31
+ k_ESteamDeckKeyboardLayout_Portuguese = 16;
32
+ k_ESteamDeckKeyboardLayout_Romanian = 17;
33
+ k_ESteamDeckKeyboardLayout_Russian = 18;
34
+ k_ESteamDeckKeyboardLayout_Spanish = 19;
35
+ k_ESteamDeckKeyboardLayout_Swedish = 20;
36
+ k_ESteamDeckKeyboardLayout_Thai = 21;
37
+ k_ESteamDeckKeyboardLayout_Turkish_F = 22;
38
+ k_ESteamDeckKeyboardLayout_Turkish_Q = 23;
39
+ k_ESteamDeckKeyboardLayout_Ukrainian = 24;
40
+ k_ESteamDeckKeyboardLayout_Vietnamese = 25;
41
+ k_ESteamDeckKeyboardLayout_QWERTY_International = 26;
42
+ k_ESteamDeckKeyboardLayout_Dvorak = 27;
43
+ k_ESteamDeckKeyboardLayout_Colemak = 28;
44
+ k_ESteamDeckKeyboardLayout_Bulgarian_Phonetic_Traditional = 29;
45
+ k_ESteamDeckKeyboardLayout_Bulgarian_Phonetic = 30;
46
+ k_ESteamDeckKeyboardLayout_Chinese_Traditional_Bopomofo = 31;
47
+ k_ESteamDeckKeyboardLayout_Chinese_Traditional_Cangjie = 32;
48
+ k_ESteamDeckKeyboardLayout_Japanese_Kana = 33;
49
+ k_ESteamDeckKeyboardLayout_Chinese_Traditional_Quick = 34;
50
+ k_ESteamDeckKeyboardLayout_Indonesian = 35;
51
+ }
52
+
53
+ message SteamMessagesClientIClientForcedEnumDependencies {
54
+ optional .EBluetoothDeviceType a = 1 [default = k_BluetoothDeviceType_Invalid];
55
+ optional .EStorageBlockContentType b = 2 [default = k_EStorageBlockContentType_Invalid];
56
+ optional .EStorageBlockFileSystemType c = 3 [default = k_EStorageBlockFileSystemType_Invalid];
57
+ optional .ESDCardFormatStage d = 4 [default = k_ESDCardFormatStage_Invalid];
58
+ }
59
+
60
+ message CMsgNetworkDeviceIP4Address {
61
+ optional int32 ip = 1 [default = 0];
62
+ optional int32 netmask = 2;
63
+ }
64
+
65
+ message CMsgNetworkDeviceIP4Config {
66
+ repeated .CMsgNetworkDeviceIP4Address addresses = 1;
67
+ repeated int32 dns_ip = 2;
68
+ optional int32 gateway_ip = 3;
69
+ optional bool is_dhcp_enabled = 4;
70
+ optional bool is_default_route = 5;
71
+ optional bool is_enabled = 6 [default = false];
72
+ }
73
+
74
+ message CMsgNetworkDeviceIP6Address {
75
+ optional string ip = 1;
76
+ }
77
+
78
+ message CMsgNetworkDeviceIP6Config {
79
+ repeated .CMsgNetworkDeviceIP6Address addresses = 1;
80
+ repeated string dns_ip = 2;
81
+ optional string gateway_ip = 3;
82
+ optional bool is_dhcp_enabled = 4;
83
+ optional bool is_default_route = 5;
84
+ optional bool is_enabled = 6 [default = false];
85
+ }
86
+
87
+ message CMsgNetworkDevicesData {
88
+ message Device {
89
+ message Wired {
90
+ optional bool is_cable_present = 1 [default = false];
91
+ optional uint32 speed_mbit = 2;
92
+ optional string friendly_name = 3;
93
+ }
94
+
95
+ message Wireless {
96
+ message AP {
97
+ optional uint32 id = 1 [default = 0];
98
+ optional int32 estrength = 2;
99
+ optional string ssid = 3;
100
+ optional bool is_active = 4;
101
+ optional bool is_autoconnect = 5;
102
+ optional int32 esecurity = 6;
103
+ optional string user_name = 7;
104
+ optional string password = 8;
105
+ optional int32 strength_raw = 9;
106
+ }
107
+
108
+ repeated .CMsgNetworkDevicesData.Device.Wireless.AP aps = 1;
109
+ optional int32 esecurity_supported = 2;
110
+ }
111
+
112
+ optional uint32 id = 1 [default = 0];
113
+ optional int32 etype = 2;
114
+ optional int32 estate = 3;
115
+ optional string mac = 4;
116
+ optional string vendor = 5;
117
+ optional string product = 6;
118
+ optional .CMsgNetworkDeviceIP4Config ip4 = 7;
119
+ optional .CMsgNetworkDeviceIP6Config ip6 = 8;
120
+ optional .CMsgNetworkDevicesData.Device.Wired wired = 9;
121
+ optional .CMsgNetworkDevicesData.Device.Wireless wireless = 10;
122
+ }
123
+
124
+ repeated .CMsgNetworkDevicesData.Device devices = 1;
125
+ optional bool is_wifi_enabled = 2;
126
+ optional bool is_wifi_scanning_enabled = 3;
127
+ }
128
+
129
+ message CMsgNetworkDeviceConnect {
130
+ message KnownAP {
131
+ optional uint32 ap_id = 1;
132
+ }
133
+
134
+ message CustomAP {
135
+ optional string ssid = 1;
136
+ optional int32 esecurity = 2;
137
+ }
138
+
139
+ message Credentials {
140
+ optional string username = 1;
141
+ optional string password = 2;
142
+ }
143
+
144
+ optional uint32 device_id = 1 [default = 0];
145
+ optional .CMsgNetworkDeviceConnect.Credentials credentials = 4;
146
+ optional .CMsgNetworkDeviceIP4Config ip4 = 5;
147
+ optional .CMsgNetworkDeviceIP6Config ip6 = 6;
148
+
149
+ oneof ap_info {
150
+ .CMsgNetworkDeviceConnect.KnownAP ap_known = 2;
151
+ .CMsgNetworkDeviceConnect.CustomAP ap_custom = 3;
152
+ }
153
+ }
154
+
155
+ message CMsgStorageDevicesData {
156
+ message Drive {
157
+ optional uint32 id = 1 [default = 0];
158
+ optional string model = 2;
159
+ optional string vendor = 3;
160
+ optional string serial = 4;
161
+ optional bool is_ejectable = 5;
162
+ optional uint64 size_bytes = 6;
163
+ optional .EStorageDriveMediaType media_type = 7 [default = k_EStorageDriveMediaType_Invalid];
164
+ }
165
+
166
+ message BlockDevice {
167
+ optional uint32 id = 1 [default = 0];
168
+ optional uint32 drive_id = 2 [default = 0];
169
+ optional string path = 3;
170
+ optional string friendly_path = 4;
171
+ optional string label = 5;
172
+ optional uint64 size_bytes = 6;
173
+ optional bool is_formattable = 7;
174
+ optional bool is_read_only = 8;
175
+ optional bool is_root_device = 9;
176
+ optional .EStorageBlockContentType content_type = 10 [default = k_EStorageBlockContentType_Invalid];
177
+ optional .EStorageBlockFileSystemType filesystem_type = 11 [default = k_EStorageBlockFileSystemType_Invalid];
178
+ optional string mount_path = 12;
179
+ }
180
+
181
+ repeated .CMsgStorageDevicesData.Drive drives = 1;
182
+ repeated .CMsgStorageDevicesData.BlockDevice block_devices = 2;
183
+ optional bool is_unmount_supported = 3;
184
+ optional bool is_trim_supported = 4;
185
+ optional bool is_trim_running = 5;
186
+ }
187
+
188
+ message CCloud_PendingRemoteOperation {
189
+ optional .ECloudPendingRemoteOperation operation = 1 [default = k_ECloudPendingRemoteOperationNone];
190
+ optional string machine_name = 2;
191
+ optional uint64 client_id = 3;
192
+ optional uint32 time_last_updated = 4;
193
+ }
194
+
195
+ message CMsgCloudPendingRemoteOperations {
196
+ repeated .CCloud_PendingRemoteOperation operations = 1;
197
+ }
198
+
199
+ message CMsgBluetoothDevicesData {
200
+ message Adapter {
201
+ optional uint32 id = 1 [default = 0];
202
+ optional string mac = 2;
203
+ optional string name = 3;
204
+ optional bool is_enabled = 4;
205
+ optional bool is_discovering = 5;
206
+ }
207
+
208
+ message Device {
209
+ optional uint32 id = 1 [default = 0];
210
+ optional uint32 adapter_id = 2 [default = 0];
211
+ optional .EBluetoothDeviceType etype = 3 [default = k_BluetoothDeviceType_Invalid];
212
+ optional string mac = 4;
213
+ optional string name = 5;
214
+ optional bool is_connected = 6;
215
+ optional bool is_paired = 7;
216
+ optional int32 strength_raw = 8;
217
+ }
218
+
219
+ message Manager {
220
+ optional bool is_bluetooth_enabled = 1;
221
+ }
222
+
223
+ repeated .CMsgBluetoothDevicesData.Adapter adapters = 1;
224
+ repeated .CMsgBluetoothDevicesData.Device devices = 2;
225
+ optional .CMsgBluetoothDevicesData.Manager manager = 3;
226
+ }
227
+
228
+ message CMsgSystemPerfDiagnosticEntry {
229
+ optional string name = 1;
230
+ optional string value = 2;
231
+ }
232
+
233
+ message CMsgSystemPerfNetworkInterface {
234
+ optional string name = 1;
235
+ optional double timestamp = 2;
236
+ optional int64 tx_bytes_total = 3;
237
+ optional int64 rx_bytes_total = 4;
238
+ optional int32 tx_bytes_per_sec = 5;
239
+ optional int32 rx_bytes_per_sec = 6;
240
+ }
241
+
242
+ message CMsgSystemPerfDiagnosticInfo {
243
+ repeated .CMsgSystemPerfDiagnosticEntry entries = 1;
244
+ repeated .CMsgSystemPerfNetworkInterface interfaces = 2;
245
+ optional float battery_temp_c = 3;
246
+ }
247
+
248
+ message CMsgSystemPerfLimits {
249
+ optional int32 cpu_governor_manual_min_mhz = 1;
250
+ optional int32 cpu_governor_manual_max_mhz = 2;
251
+ optional int32 fsr_sharpness_min = 3;
252
+ optional int32 fsr_sharpness_max = 4;
253
+ optional int32 gpu_performance_manual_min_mhz = 5;
254
+ optional int32 gpu_performance_manual_max_mhz = 6;
255
+ optional bool perf_overlay_is_standalone = 7;
256
+ optional bool is_dynamic_vrs_available = 8;
257
+ optional bool is_manual_display_refresh_rate_available = 9;
258
+ repeated .EGPUPerformanceLevel gpu_performance_levels_available = 10;
259
+ optional int32 display_refresh_manual_hz_min = 11;
260
+ optional int32 display_refresh_manual_hz_max = 12;
261
+ repeated int32 fps_limit_options = 13;
262
+ optional int32 tdp_limit_min = 14;
263
+ optional int32 tdp_limit_max = 15;
264
+ optional bool is_nis_supported = 16;
265
+ optional int32 nis_sharpness_min = 17;
266
+ optional int32 nis_sharpness_max = 18;
267
+ optional int32 display_external_refresh_manual_hz_min = 19;
268
+ optional int32 display_external_refresh_manual_hz_max = 20;
269
+ repeated int32 fps_limit_options_external = 21;
270
+ optional bool is_tearing_supported = 22;
271
+ optional bool is_vrr_supported = 23;
272
+ optional bool is_dynamic_refresh_rate_in_steam_supported = 24;
273
+ optional bool is_split_scaling_and_filtering_supported = 25;
274
+ repeated .ESplitScalingFilter split_scaling_filters_available = 26;
275
+ repeated .ESplitScalingScaler split_scaling_scalers_available = 27;
276
+ optional bool is_hdr_supported = 28;
277
+ optional int32 display_refresh_manual_hz_oc_max = 29;
278
+ optional bool disable_refresh_rate_management = 30;
279
+ }
280
+
281
+ message CMsgSystemPerfSettingsGlobal {
282
+ optional float diagnostic_update_rate = 1;
283
+ optional .ESystemServiceState system_trace_service_state = 2 [default = k_ESystemServiceState_Unavailable];
284
+ optional .ESystemServiceState graphics_profiling_service_state = 3 [default = k_ESystemServiceState_Unavailable];
285
+ optional .ESystemServiceState perf_overlay_service_state = 4 [default = k_ESystemServiceState_Unavailable];
286
+ optional .EGraphicsPerfOverlayLevel perf_overlay_level = 5 [default = k_EGraphicsPerfOverlayLevel_Hidden];
287
+ optional bool is_show_perf_overlay_over_steam_enabled = 6;
288
+ optional bool is_advanced_settings_enabled = 7;
289
+ optional bool allow_external_display_refresh_control = 8;
290
+ optional bool is_hdr_enabled = 9;
291
+ optional .EHDRToneMapOperator hdr_on_sdr_tonemap_operator = 12 [default = k_EHDRToneMapOperator_Invalid];
292
+ optional bool is_hdr_debug_heatmap_enabled = 13;
293
+ optional bool force_hdr_wide_gammut_for_sdr = 15 [default = true];
294
+ optional bool allow_experimental_hdr = 16;
295
+ optional float sdr_to_hdr_brightness = 22;
296
+ optional bool debug_force_hdr_support = 18;
297
+ optional bool force_hdr_10pq_output_debug = 19;
298
+ optional bool is_display_oc_enabled = 20;
299
+ optional bool is_color_management_enabled = 21;
300
+ }
301
+
302
+ message CMsgSystemPerfSettingsPerApp {
303
+ optional int32 gpu_performance_manual_mhz = 1;
304
+ optional int32 fps_limit = 2;
305
+ optional bool is_variable_resolution_enabled = 3;
306
+ optional bool is_dynamic_refresh_rate_enabled = 4;
307
+ optional int32 tdp_limit = 5;
308
+ optional .ECPUGovernor cpu_governor = 6 [default = k_ECPUGovernor_Invalid];
309
+ optional int32 cpu_governor_manual_mhz = 7;
310
+ optional int32 scaling_filter = 8;
311
+ optional int32 fsr_sharpness = 9;
312
+ optional bool is_fps_limit_enabled = 10;
313
+ optional bool is_tdp_limit_enabled = 11;
314
+ optional bool is_low_latency_mode_enabled = 12;
315
+ optional int32 display_refresh_manual_hz = 13;
316
+ optional bool is_game_perf_profile_enabled = 14;
317
+ optional .EGPUPerformanceLevel gpu_performance_level = 15 [default = k_EGPUPerformanceLevel_Invalid];
318
+ optional int32 nis_sharpness = 16;
319
+ optional int32 display_external_refresh_manual_hz = 17;
320
+ optional int32 fps_limit_external = 18;
321
+ optional bool is_tearing_enabled = 19;
322
+ optional bool is_vrr_enabled = 20;
323
+ optional bool is_composite_debug_enabled = 21;
324
+ optional bool force_composite = 22;
325
+ optional bool use_dynamic_refresh_rate_in_steam = 23;
326
+ optional .ESplitScalingFilter split_scaling_filter = 24 [default = k_ESplitScalingFilter_Invalid];
327
+ optional .ESplitScalingScaler split_scaling_scaler = 25 [default = k_ESplitScalingScaler_Invalid];
328
+ }
329
+
330
+ message CMsgSystemPerfSettings {
331
+ optional .CMsgSystemPerfSettingsGlobal global = 1;
332
+ optional .CMsgSystemPerfSettingsPerApp per_app = 2;
333
+ }
334
+
335
+ message CMsgSystemPerfSettingsV1 {
336
+ optional float diagnostic_update_rate = 1;
337
+ optional .ESystemServiceState system_trace_service_state = 2 [default = k_ESystemServiceState_Unavailable];
338
+ optional .ESystemServiceState graphics_profiling_service_state = 3 [default = k_ESystemServiceState_Unavailable];
339
+ optional .ESystemServiceState perf_overlay_service_state = 4 [default = k_ESystemServiceState_Unavailable];
340
+ optional .EGraphicsPerfOverlayLevel perf_overlay_level = 5 [default = k_EGraphicsPerfOverlayLevel_Hidden];
341
+ optional .EGPUPerformanceLevel gpu_performance_level = 6 [default = k_EGPUPerformanceLevel_Invalid];
342
+ optional int32 gpu_performance_manual_mhz = 7;
343
+ optional int32 fps_limit = 8;
344
+ optional bool is_variable_resolution_enabled = 9;
345
+ optional bool is_dynamic_refresh_rate_enabled = 10;
346
+ optional int32 tdp_limit = 11;
347
+ optional .ECPUGovernor cpu_governor = 12 [default = k_ECPUGovernor_Invalid];
348
+ optional int32 cpu_governor_manual_mhz = 13;
349
+ optional int32 scaling_filter = 14;
350
+ optional int32 fsr_sharpness = 15;
351
+ optional bool is_fps_limit_enabled = 16;
352
+ optional bool is_tdp_limit_enabled = 17;
353
+ optional bool is_show_perf_overlay_over_steam_enabled = 18;
354
+ optional bool is_low_latency_mode_enabled = 19;
355
+ optional int32 display_refresh_manual_hz = 20;
356
+ optional bool is_game_perf_profile_enabled = 21;
357
+ }
358
+
359
+ message CMsgSystemPerfState {
360
+ optional .CMsgSystemPerfLimits limits = 1;
361
+ optional .CMsgSystemPerfSettings settings = 2;
362
+ optional uint64 current_game_id = 3;
363
+ optional uint64 active_profile_game_id = 4;
364
+ }
365
+
366
+ message CMsgSystemPerfUpdateSettings {
367
+ optional uint64 gameid = 1;
368
+ optional bool skip_storage_update = 4;
369
+
370
+ oneof update {
371
+ bool reset_to_default = 2;
372
+ .CMsgSystemPerfSettings settings_delta = 3;
373
+ }
374
+ }
375
+
376
+ message CMsgSystemDockUpdateState {
377
+ optional .EUpdaterState state = 1 [default = k_EUpdaterState_Invalid];
378
+ optional fixed32 rtime_last_checked = 2;
379
+ optional string version_current = 3;
380
+ optional string version_available = 4;
381
+ optional float stage_progress = 5;
382
+ optional fixed32 rtime_estimated_completion = 6;
383
+ optional int32 old_fw_workaround = 7;
384
+ }
385
+
386
+ message CMsgSystemDockState {
387
+ optional .CMsgSystemDockUpdateState update_state = 1;
388
+ }
389
+
390
+ message CMsgSystemDockUpdateFirmware {
391
+ optional bool check_only = 1;
392
+ }
393
+
394
+ message CMsgSystemAudioVolume {
395
+ message ChannelEntry {
396
+ optional .ESystemAudioChannel echannel = 1 [default = k_SystemAudioChannel_Invalid];
397
+ optional float volume = 2;
398
+ }
399
+
400
+ repeated .CMsgSystemAudioVolume.ChannelEntry entries = 1;
401
+ optional bool is_muted = 2;
402
+ }
403
+
404
+ message CMsgSystemAudioManagerObject {
405
+ optional uint32 id = 1;
406
+ optional fixed32 rtime_last_update = 2;
407
+ }
408
+
409
+ message CMsgSystemAudioManagerDevice {
410
+ optional .CMsgSystemAudioManagerObject base = 1;
411
+ optional string name = 2;
412
+ optional string nick = 3;
413
+ optional string description = 4;
414
+ optional string api = 5;
415
+ }
416
+
417
+ message CMsgSystemAudioManagerNode {
418
+ optional .CMsgSystemAudioManagerObject base = 1;
419
+ optional uint32 device_id = 2;
420
+ optional string name = 3;
421
+ optional string nick = 4;
422
+ optional string description = 5;
423
+ optional .ESystemAudioDirection edirection = 6 [default = k_SystemAudioDirection_Invalid];
424
+ optional .CMsgSystemAudioVolume volume = 7;
425
+ }
426
+
427
+ message CMsgSystemAudioManagerPort {
428
+ optional .CMsgSystemAudioManagerObject base = 1;
429
+ optional uint32 node_id = 3;
430
+ optional string name = 4;
431
+ optional string alias = 5;
432
+ optional .ESystemAudioPortType etype = 6 [default = k_SystemAudioPortType_Invalid];
433
+ optional .ESystemAudioPortDirection edirection = 7 [default = k_SystemAudioPortDirection_Invalid];
434
+ optional bool is_physical = 8;
435
+ optional bool is_terminal = 9;
436
+ optional bool is_control = 10;
437
+ optional bool is_monitor = 11;
438
+ }
439
+
440
+ message CMsgSystemAudioManagerLink {
441
+ optional .CMsgSystemAudioManagerObject base = 1;
442
+ optional uint32 output_node_id = 2;
443
+ optional uint32 output_port_id = 3;
444
+ optional uint32 input_node_id = 4;
445
+ optional uint32 input_port_id = 5;
446
+ }
447
+
448
+ message CMsgSystemAudioManagerStateHW {
449
+ repeated .CMsgSystemAudioManagerDevice devices = 1;
450
+ repeated .CMsgSystemAudioManagerNode nodes = 2;
451
+ repeated .CMsgSystemAudioManagerPort ports = 3;
452
+ repeated .CMsgSystemAudioManagerLink links = 4;
453
+ }
454
+
455
+ message CMsgSystemAudioManagerState {
456
+ optional fixed32 rtime_filter = 1;
457
+ optional int32 counter = 2;
458
+ optional .CMsgSystemAudioManagerStateHW hw = 3;
459
+ }
460
+
461
+ message CMsgSystemAudioManagerUpdateSomething {
462
+ optional int32 counter = 1;
463
+ }
464
+
465
+ message CMsgSystemDisplayMode {
466
+ optional int32 id = 1;
467
+ optional int32 width = 2;
468
+ optional int32 height = 3;
469
+ optional int32 refresh_hz = 4;
470
+ }
471
+
472
+ message CMsgSystemDisplay {
473
+ optional int32 id = 1;
474
+ optional string name = 2;
475
+ optional string description = 3;
476
+ optional bool is_primary = 4;
477
+ optional bool is_enabled = 5;
478
+ optional bool is_internal = 6;
479
+ optional bool has_mode_override = 7;
480
+ optional int32 width_mm = 8;
481
+ optional int32 height_mm = 9;
482
+ optional int32 current_mode_id = 10;
483
+ repeated .CMsgSystemDisplayMode modes = 11;
484
+ optional int32 refresh_rate_min = 12;
485
+ optional int32 refresh_rate_max = 13;
486
+ optional bool is_vrr_capable = 14;
487
+ optional bool is_vrr_enabled = 15;
488
+ optional bool is_hdr_capable = 16;
489
+ optional bool is_hdr_enabled = 17;
490
+ repeated int32 supported_refresh_rates = 18;
491
+ }
492
+
493
+ message CMsgSystemDisplayManagerState {
494
+ repeated .CMsgSystemDisplay displays = 1;
495
+ optional bool is_mode_switching_supported = 2;
496
+ optional .ESystemDisplayCompatibilityMode compatibility_mode = 3 [default = k_ESystemDisplayCompatibilityMode_Invalid];
497
+ }
498
+
499
+ message CMsgSystemDisplayManagerSetMode {
500
+ optional int32 display_id = 1;
501
+ optional int32 mode_id = 2;
502
+ }
503
+
504
+ message CMsgSystemManagerSettings {
505
+ optional float idle_backlight_dim_battery_seconds = 1;
506
+ optional float idle_backlight_dim_ac_seconds = 2;
507
+ optional float idle_suspend_battery_seconds = 3;
508
+ optional float idle_suspend_ac_seconds = 4;
509
+ optional bool idle_suspend_supressed = 5;
510
+ optional bool is_adaptive_brightness_available = 6;
511
+ optional bool display_adaptive_brightness_enabled = 7;
512
+ optional bool display_nightmode_enabled = 10;
513
+ optional float display_nightmode_tintstrength = 11;
514
+ optional float display_nightmode_maxhue = 12;
515
+ optional float display_nightmode_maxsat = 13;
516
+ optional float display_nightmode_uiexp = 14;
517
+ optional float display_nightmode_blend = 15;
518
+ optional bool display_nightmode_reset = 16;
519
+ optional bool display_nightmode_schedule_enabled = 17;
520
+ optional float display_nightmode_schedule_starttime = 18;
521
+ optional float display_nightmode_schedule_endtime = 19;
522
+ optional bool display_diagnostics_enabled = 20;
523
+ optional float als_lux_primary = 21;
524
+ optional float als_lux_median = 22;
525
+ optional float display_backlight_raw = 23;
526
+ optional float display_brightness_adaptivemin = 24;
527
+ optional float display_brightness_adaptivemax = 25;
528
+ optional bool is_wifi_powersave_enabled = 26;
529
+ optional bool is_fan_control_available = 27;
530
+ optional .ESystemFanControlMode fan_control_mode = 28 [default = k_SystemFanControlMode_Invalid];
531
+ optional bool is_display_brightness_available = 29;
532
+ optional bool is_display_colormanagement_available = 31;
533
+ optional float display_colorgamut = 32;
534
+ optional float als_lux_alternate = 33;
535
+ optional bool is_display_colortemp_available = 34;
536
+ optional float display_colortemp = 35;
537
+ optional float display_colortemp_default = 36;
538
+ optional bool display_colortemp_enabled = 37;
539
+ optional .EColorGamutLabelSet display_colorgamut_labelset = 38 [default = k_ColorGamutLabelSet_Default];
540
+ optional float display_brightness_overdrive_hdr_split = 39;
541
+ }
542
+
543
+ message CMsgSelectOSBranchParams {
544
+ optional .EOSBranch branch = 1 [default = k_EOSBranch_Unknown];
545
+ optional string custom_branch = 2;
546
+ }
547
+
548
+ message CMsgSystemUpdateProgress {
549
+ optional float stage_progress = 1;
550
+ optional int64 stage_size_bytes = 2;
551
+ optional fixed32 rtime_estimated_completion = 3;
552
+ }
553
+
554
+ message CMsgSystemUpdateCheckResult {
555
+ optional .EUpdaterType type = 1 [default = k_EUpdaterType_Invalid];
556
+ optional uint32 eresult = 2 [default = 2];
557
+ optional fixed32 rtime_checked = 3;
558
+ optional bool available = 4;
559
+ optional string version = 5;
560
+ optional string auto_message = 6;
561
+ optional bool system_restart_pending = 7;
562
+ }
563
+
564
+ message CMsgSystemUpdateApplyParams {
565
+ repeated .EUpdaterType apply_types = 1;
566
+ }
567
+
568
+ message CMsgSystemUpdateApplyResult {
569
+ optional .EUpdaterType type = 1 [default = k_EUpdaterType_Invalid];
570
+ optional uint32 eresult = 2 [default = 2];
571
+ optional bool requires_client_restart = 3 [default = false];
572
+ optional bool requires_system_restart = 4 [default = false];
573
+ }
574
+
575
+ message CMsgSystemUpdateState {
576
+ optional .EUpdaterState state = 1 [default = k_EUpdaterState_Invalid];
577
+ optional .CMsgSystemUpdateProgress progress = 2;
578
+ repeated .CMsgSystemUpdateCheckResult update_check_results = 3;
579
+ repeated .CMsgSystemUpdateApplyResult update_apply_results = 4;
580
+ optional bool supports_os_updates = 5;
581
+ }
582
+
583
+ message CMsgAchievementChange {
584
+ optional uint32 appid = 1;
585
+ }
586
+
587
+ message CMsgCellList {
588
+ message Cell {
589
+ optional uint32 cell_id = 1;
590
+ optional string loc_name = 2;
591
+ }
592
+
593
+ repeated .CMsgCellList.Cell cells = 1;
594
+ }
595
+
596
+ message CMsgShortcutInfo {
597
+ optional uint32 appid = 1;
598
+ optional string exe = 2;
599
+ optional string start_dir = 3;
600
+ optional string icon = 4;
601
+ optional string path = 5;
602
+ optional string args = 6;
603
+ optional string app_name = 7;
604
+ optional uint32 override_appid = 8;
605
+ optional string flatpak_appid = 9;
606
+ repeated string tags = 10;
607
+ optional bool is_remote = 11;
608
+ optional bool is_hidden = 12;
609
+ optional bool is_temporary = 13;
610
+ optional bool is_openvr = 14;
611
+ optional bool allow_desktop_config = 15;
612
+ optional bool allow_overlay = 16;
613
+ optional uint32 rt_last_played_time = 17;
614
+ optional bool is_devkit_shortcut = 18;
615
+ optional string devkit_gameid = 19;
616
+ }
617
+
618
+ message CMsgShortcutAppIds {
619
+ repeated uint32 appids = 1;
620
+ }
621
+
622
+ message CMsgMonitorInfo {
623
+ message MonitorInfo {
624
+ required string monitor_device_name = 1;
625
+ required string monitor_display_name = 2;
626
+ }
627
+
628
+ required string selected_display_name = 1;
629
+ repeated .CMsgMonitorInfo.MonitorInfo monitors = 2;
630
+ }
631
+
632
+ message CMsgGenerateSystemReportReply {
633
+ optional string report_id = 1;
634
+ }
635
+
636
+ message CMsgWebUITransportInfo {
637
+ optional uint32 port = 1;
638
+ optional string auth_key = 2;
639
+ }
640
+
641
+ message CMsgClientShaderHitCacheEntry {
642
+ optional bytes key_sha = 1;
643
+ optional bytes code_sha = 2;
644
+ optional uint64 time_last_reported = 3;
645
+ }
646
+
647
+ message CMsgClientShaderHitCache {
648
+ repeated .CMsgClientShaderHitCacheEntry entries = 1;
649
+ }