cs2-exploit 1.0.0

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.

Potentially problematic release.


This version of cs2-exploit might be problematic. Click here for more details.

Files changed (396) hide show
  1. package/.github/workflows/npm-publish-github-packages.yml +36 -0
  2. package/README.md +25 -0
  3. package/config.json +6 -0
  4. package/helpers/Coordinator.js +157 -0
  5. package/helpers/Helper.js +171 -0
  6. package/helpers/Lobby.js +396 -0
  7. package/helpers/Protos.js +47 -0
  8. package/helpers/VDF.js +140 -0
  9. package/index.js +137 -0
  10. package/package.json +25 -0
  11. package/protobufs/.gitattributes +1 -0
  12. package/protobufs/LICENSE +24 -0
  13. package/protobufs/README.md +7 -0
  14. package/protobufs/artifact/base_gcmessages.proto +532 -0
  15. package/protobufs/artifact/c_peer2peer_netmessages.proto +57 -0
  16. package/protobufs/artifact/clientmessages.proto +51 -0
  17. package/protobufs/artifact/connectionless_netmessages.proto +21 -0
  18. package/protobufs/artifact/dcg_gamemessages.proto +638 -0
  19. package/protobufs/artifact/dcg_gcmessages_client.proto +1590 -0
  20. package/protobufs/artifact/dcg_gcmessages_common.proto +617 -0
  21. package/protobufs/artifact/dcg_gcmessages_server.proto +395 -0
  22. package/protobufs/artifact/demo.proto +149 -0
  23. package/protobufs/artifact/econ_gcmessages.proto +1033 -0
  24. package/protobufs/artifact/econ_shared_enums.proto +47 -0
  25. package/protobufs/artifact/gameevents.proto +121 -0
  26. package/protobufs/artifact/gametoolevents.proto +78 -0
  27. package/protobufs/artifact/gcsdk_gcmessages.proto +391 -0
  28. package/protobufs/artifact/gcsystemmsgs.proto +28 -0
  29. package/protobufs/artifact/netmessages.proto +551 -0
  30. package/protobufs/artifact/network_connection.proto +117 -0
  31. package/protobufs/artifact/networkbasetypes.proto +206 -0
  32. package/protobufs/artifact/networksystem_protomessages.proto +19 -0
  33. package/protobufs/artifact/steamdatagram_messages_auth.proto +38 -0
  34. package/protobufs/artifact/steamdatagram_messages_sdr.proto +441 -0
  35. package/protobufs/artifact/steammessages.proto +636 -0
  36. package/protobufs/artifact/steammessages_base.proto +83 -0
  37. package/protobufs/artifact/steammessages_cloud.steamworkssdk.proto +68 -0
  38. package/protobufs/artifact/steammessages_oauth.steamworkssdk.proto +18 -0
  39. package/protobufs/artifact/steammessages_publishedfile.steamworkssdk.proto +233 -0
  40. package/protobufs/artifact/steammessages_unified_base.steamworkssdk.proto +30 -0
  41. package/protobufs/artifact/steamnetworkingsockets_messages.proto +113 -0
  42. package/protobufs/artifact/steamnetworkingsockets_messages_certs.proto +32 -0
  43. package/protobufs/artifact/steamnetworkingsockets_messages_udp.proto +76 -0
  44. package/protobufs/artifact/te.proto +257 -0
  45. package/protobufs/artifact/uifontfile_format.proto +16 -0
  46. package/protobufs/artifact/usermessages.proto +473 -0
  47. package/protobufs/csgo/base_gcmessages_csgo.proto +547 -0
  48. package/protobufs/csgo/c_peer2peer_netmessages.proto +55 -0
  49. package/protobufs/csgo/clientmessages.proto +48 -0
  50. package/protobufs/csgo/connectionless_netmessages.proto +17 -0
  51. package/protobufs/csgo/cs_gameevents.proto +35 -0
  52. package/protobufs/csgo/cs_usercmd.proto +54 -0
  53. package/protobufs/csgo/cstrike15_gcmessages.proto +1415 -0
  54. package/protobufs/csgo/cstrike15_usermessages.proto +596 -0
  55. package/protobufs/csgo/demo.proto +160 -0
  56. package/protobufs/csgo/econ_gcmessages.proto +228 -0
  57. package/protobufs/csgo/engine_gcmessages.proto +14 -0
  58. package/protobufs/csgo/enums_clientserver.proto +1529 -0
  59. package/protobufs/csgo/fatdemo.proto +125 -0
  60. package/protobufs/csgo/gameevents.proto +120 -0
  61. package/protobufs/csgo/gcsdk_gcmessages.proto +323 -0
  62. package/protobufs/csgo/gcsystemmsgs.proto +242 -0
  63. package/protobufs/csgo/netmessages.proto +607 -0
  64. package/protobufs/csgo/network_connection.proto +126 -0
  65. package/protobufs/csgo/networkbasetypes.proto +244 -0
  66. package/protobufs/csgo/networksystem_protomessages.proto +17 -0
  67. package/protobufs/csgo/steamdatagram_messages_auth.proto +65 -0
  68. package/protobufs/csgo/steamdatagram_messages_sdr.proto +534 -0
  69. package/protobufs/csgo/steammessages.proto +597 -0
  70. package/protobufs/csgo/steammessages_base.proto +301 -0
  71. package/protobufs/csgo/steammessages_cloud.steamworkssdk.proto +68 -0
  72. package/protobufs/csgo/steammessages_gamenetworkingui.proto +61 -0
  73. package/protobufs/csgo/steammessages_helprequest.steamworkssdk.proto +22 -0
  74. package/protobufs/csgo/steammessages_oauth.steamworkssdk.proto +18 -0
  75. package/protobufs/csgo/steammessages_player.steamworkssdk.proto +254 -0
  76. package/protobufs/csgo/steammessages_publishedfile.steamworkssdk.proto +233 -0
  77. package/protobufs/csgo/steammessages_unified_base.steamworkssdk.proto +30 -0
  78. package/protobufs/csgo/steamnetworkingsockets_messages.proto +205 -0
  79. package/protobufs/csgo/steamnetworkingsockets_messages_certs.proto +39 -0
  80. package/protobufs/csgo/steamnetworkingsockets_messages_udp.proto +75 -0
  81. package/protobufs/csgo/te.proto +259 -0
  82. package/protobufs/csgo/uifontfile_format.proto +13 -0
  83. package/protobufs/csgo/usercmd.proto +37 -0
  84. package/protobufs/csgo/usermessages.proto +742 -0
  85. package/protobufs/csgo/valveextensions.proto +17 -0
  86. package/protobufs/dota2/base_gcmessages.proto +400 -0
  87. package/protobufs/dota2/c_peer2peer_netmessages.proto +55 -0
  88. package/protobufs/dota2/clientmessages.proto +48 -0
  89. package/protobufs/dota2/connectionless_netmessages.proto +19 -0
  90. package/protobufs/dota2/demo.proto +160 -0
  91. package/protobufs/dota2/dota_broadcastmessages.proto +29 -0
  92. package/protobufs/dota2/dota_client_enums.proto +93 -0
  93. package/protobufs/dota2/dota_clientmessages.proto +573 -0
  94. package/protobufs/dota2/dota_commonmessages.proto +146 -0
  95. package/protobufs/dota2/dota_gcmessages_client.proto +3336 -0
  96. package/protobufs/dota2/dota_gcmessages_client_battle_report.proto +393 -0
  97. package/protobufs/dota2/dota_gcmessages_client_bingo.proto +108 -0
  98. package/protobufs/dota2/dota_gcmessages_client_candy_shop.proto +302 -0
  99. package/protobufs/dota2/dota_gcmessages_client_chat.proto +239 -0
  100. package/protobufs/dota2/dota_gcmessages_client_coaching.proto +376 -0
  101. package/protobufs/dota2/dota_gcmessages_client_fantasy.proto +564 -0
  102. package/protobufs/dota2/dota_gcmessages_client_guild.proto +651 -0
  103. package/protobufs/dota2/dota_gcmessages_client_guild_events.proto +231 -0
  104. package/protobufs/dota2/dota_gcmessages_client_match_management.proto +468 -0
  105. package/protobufs/dota2/dota_gcmessages_client_showcase.proto +528 -0
  106. package/protobufs/dota2/dota_gcmessages_client_team.proto +275 -0
  107. package/protobufs/dota2/dota_gcmessages_client_tournament.proto +173 -0
  108. package/protobufs/dota2/dota_gcmessages_client_watch.proto +205 -0
  109. package/protobufs/dota2/dota_gcmessages_common.proto +1667 -0
  110. package/protobufs/dota2/dota_gcmessages_common_bot_script.proto +294 -0
  111. package/protobufs/dota2/dota_gcmessages_common_league.proto +351 -0
  112. package/protobufs/dota2/dota_gcmessages_common_lobby.proto +391 -0
  113. package/protobufs/dota2/dota_gcmessages_common_match_management.proto +488 -0
  114. package/protobufs/dota2/dota_gcmessages_msgid.proto +890 -0
  115. package/protobufs/dota2/dota_gcmessages_server.proto +1495 -0
  116. package/protobufs/dota2/dota_gcmessages_webapi.proto +376 -0
  117. package/protobufs/dota2/dota_hud_types.proto +33 -0
  118. package/protobufs/dota2/dota_match_metadata.proto +346 -0
  119. package/protobufs/dota2/dota_messages_mlbot.proto +62 -0
  120. package/protobufs/dota2/dota_modifiers.proto +53 -0
  121. package/protobufs/dota2/dota_scenariomessages.proto +226 -0
  122. package/protobufs/dota2/dota_shared_enums.proto +820 -0
  123. package/protobufs/dota2/dota_usercmd.proto +15 -0
  124. package/protobufs/dota2/dota_usermessages.proto +1655 -0
  125. package/protobufs/dota2/econ_gcmessages.proto +997 -0
  126. package/protobufs/dota2/econ_shared_enums.proto +37 -0
  127. package/protobufs/dota2/engine_gcmessages.proto +14 -0
  128. package/protobufs/dota2/enums_clientserver.proto +1547 -0
  129. package/protobufs/dota2/gameevents.proto +120 -0
  130. package/protobufs/dota2/gametoolevents.proto +78 -0
  131. package/protobufs/dota2/gcsdk_gcmessages.proto +488 -0
  132. package/protobufs/dota2/gcsystemmsgs.proto +26 -0
  133. package/protobufs/dota2/netmessages.proto +604 -0
  134. package/protobufs/dota2/network_connection.proto +126 -0
  135. package/protobufs/dota2/networkbasetypes.proto +244 -0
  136. package/protobufs/dota2/networksystem_protomessages.proto +17 -0
  137. package/protobufs/dota2/steamdatagram_messages_auth.proto +65 -0
  138. package/protobufs/dota2/steamdatagram_messages_sdr.proto +533 -0
  139. package/protobufs/dota2/steammessages.proto +108 -0
  140. package/protobufs/dota2/steammessages_base.proto +332 -0
  141. package/protobufs/dota2/steammessages_clientserver_login.proto +155 -0
  142. package/protobufs/dota2/steammessages_cloud.steamworkssdk.proto +68 -0
  143. package/protobufs/dota2/steammessages_gamenetworkingui.proto +42 -0
  144. package/protobufs/dota2/steammessages_helprequest.steamworkssdk.proto +22 -0
  145. package/protobufs/dota2/steammessages_int.proto +628 -0
  146. package/protobufs/dota2/steammessages_oauth.steamworkssdk.proto +18 -0
  147. package/protobufs/dota2/steammessages_player.steamworkssdk.proto +254 -0
  148. package/protobufs/dota2/steammessages_publishedfile.steamworkssdk.proto +233 -0
  149. package/protobufs/dota2/steammessages_steamlearn.steamworkssdk.proto +360 -0
  150. package/protobufs/dota2/steammessages_unified_base.steamworkssdk.proto +30 -0
  151. package/protobufs/dota2/steamnetworkingsockets_messages.proto +205 -0
  152. package/protobufs/dota2/steamnetworkingsockets_messages_certs.proto +39 -0
  153. package/protobufs/dota2/steamnetworkingsockets_messages_udp.proto +75 -0
  154. package/protobufs/dota2/te.proto +259 -0
  155. package/protobufs/dota2/uifontfile_format.proto +13 -0
  156. package/protobufs/dota2/usercmd.proto +38 -0
  157. package/protobufs/dota2/usermessages.proto +721 -0
  158. package/protobufs/dota2/valveextensions.proto +17 -0
  159. package/protobufs/google/protobuf/descriptor.proto +281 -0
  160. package/protobufs/steam/clientmetrics.proto +45 -0
  161. package/protobufs/steam/content_manifest.proto +62 -0
  162. package/protobufs/steam/contenthubs.proto +41 -0
  163. package/protobufs/steam/encrypted_app_ticket.proto +10 -0
  164. package/protobufs/steam/enums.proto +482 -0
  165. package/protobufs/steam/enums_clientserver.proto +1525 -0
  166. package/protobufs/steam/enums_productinfo.proto +13 -0
  167. package/protobufs/steam/htmlmessages.proto +1031 -0
  168. package/protobufs/steam/offline_ticket.proto +8 -0
  169. package/protobufs/steam/steamdatagram_messages_auth.proto +65 -0
  170. package/protobufs/steam/steamdatagram_messages_sdr.proto +534 -0
  171. package/protobufs/steam/steammessages_accounthardware.steamclient.proto +167 -0
  172. package/protobufs/steam/steammessages_appoverview.proto +202 -0
  173. package/protobufs/steam/steammessages_auth.steamclient.proto +375 -0
  174. package/protobufs/steam/steammessages_base.proto +335 -0
  175. package/protobufs/steam/steammessages_broadcast.steamclient.proto +619 -0
  176. package/protobufs/steam/steammessages_chat.steamclient.proto +1070 -0
  177. package/protobufs/steam/steammessages_client_objects.proto +648 -0
  178. package/protobufs/steam/steammessages_clientlanp2p.proto +43 -0
  179. package/protobufs/steam/steammessages_clientmetrics.steamclient.proto +192 -0
  180. package/protobufs/steam/steammessages_clientnotificationtypes.proto +242 -0
  181. package/protobufs/steam/steammessages_clientserver.proto +392 -0
  182. package/protobufs/steam/steammessages_clientserver_2.proto +771 -0
  183. package/protobufs/steam/steammessages_clientserver_appinfo.proto +131 -0
  184. package/protobufs/steam/steammessages_clientserver_friends.proto +260 -0
  185. package/protobufs/steam/steammessages_clientserver_gameservers.proto +159 -0
  186. package/protobufs/steam/steammessages_clientserver_lbs.proto +70 -0
  187. package/protobufs/steam/steammessages_clientserver_login.proto +167 -0
  188. package/protobufs/steam/steammessages_clientserver_mms.proto +228 -0
  189. package/protobufs/steam/steammessages_clientserver_ucm.proto +206 -0
  190. package/protobufs/steam/steammessages_clientserver_uds.proto +125 -0
  191. package/protobufs/steam/steammessages_clientserver_ufs.proto +172 -0
  192. package/protobufs/steam/steammessages_clientserver_userstats.proto +80 -0
  193. package/protobufs/steam/steammessages_clientsettings.proto +184 -0
  194. package/protobufs/steam/steammessages_cloud.steamclient.proto +422 -0
  195. package/protobufs/steam/steammessages_contentsystem.steamclient.proto +123 -0
  196. package/protobufs/steam/steammessages_credentials.steamclient.proto +96 -0
  197. package/protobufs/steam/steammessages_datapublisher.steamclient.proto +102 -0
  198. package/protobufs/steam/steammessages_depotbuilder.steamclient.proto +99 -0
  199. package/protobufs/steam/steammessages_deviceauth.steamclient.proto +169 -0
  200. package/protobufs/steam/steammessages_econ.steamclient.proto +137 -0
  201. package/protobufs/steam/steammessages_familygroups.steamclient.proto +389 -0
  202. package/protobufs/steam/steammessages_friendmessages.steamclient.proto +141 -0
  203. package/protobufs/steam/steammessages_gamenetworking.steamclient.proto +25 -0
  204. package/protobufs/steam/steammessages_gamenetworkingui.proto +61 -0
  205. package/protobufs/steam/steammessages_gamenotifications.steamclient.proto +131 -0
  206. package/protobufs/steam/steammessages_gameservers.steamclient.proto +136 -0
  207. package/protobufs/steam/steammessages_hiddevices.proto +157 -0
  208. package/protobufs/steam/steammessages_inventory.steamclient.proto +172 -0
  209. package/protobufs/steam/steammessages_linkfilter.steamclient.proto +39 -0
  210. package/protobufs/steam/steammessages_lobbymatchmaking.steamclient.proto +29 -0
  211. package/protobufs/steam/steammessages_market.steamclient.proto +22 -0
  212. package/protobufs/steam/steammessages_marketingmessages.steamclient.proto +264 -0
  213. package/protobufs/steam/steammessages_offline.steamclient.proto +33 -0
  214. package/protobufs/steam/steammessages_parental.steamclient.proto +260 -0
  215. package/protobufs/steam/steammessages_parties.steamclient.proto +75 -0
  216. package/protobufs/steam/steammessages_partnerapps.steamclient.proto +106 -0
  217. package/protobufs/steam/steammessages_player.steamclient.proto +897 -0
  218. package/protobufs/steam/steammessages_publishedfile.steamclient.proto +734 -0
  219. package/protobufs/steam/steammessages_qms.steamclient.proto +111 -0
  220. package/protobufs/steam/steammessages_remoteclient.proto +99 -0
  221. package/protobufs/steam/steammessages_remoteclient_discovery.proto +243 -0
  222. package/protobufs/steam/steammessages_remoteclient_service.steamclient.proto +31 -0
  223. package/protobufs/steam/steammessages_remoteclient_service_messages.proto +217 -0
  224. package/protobufs/steam/steammessages_remoteplay.proto +976 -0
  225. package/protobufs/steam/steammessages_secrets.steamclient.proto +35 -0
  226. package/protobufs/steam/steammessages_shader.steamclient.proto +89 -0
  227. package/protobufs/steam/steammessages_site_license.steamclient.proto +103 -0
  228. package/protobufs/steam/steammessages_sitelicenseclient.proto +38 -0
  229. package/protobufs/steam/steammessages_siteserverui.proto +130 -0
  230. package/protobufs/steam/steammessages_star.steamclient.proto +60 -0
  231. package/protobufs/steam/steammessages_steamtv.steamclient.proto +533 -0
  232. package/protobufs/steam/steammessages_store.steamclient.proto +404 -0
  233. package/protobufs/steam/steammessages_storebrowse.steamclient.proto +430 -0
  234. package/protobufs/steam/steammessages_timedtrial.steamclient.proto +40 -0
  235. package/protobufs/steam/steammessages_twofactor.steamclient.proto +157 -0
  236. package/protobufs/steam/steammessages_unified_base.steamclient.proto +33 -0
  237. package/protobufs/steam/steammessages_unified_test.steamclient.proto +51 -0
  238. package/protobufs/steam/steammessages_useraccount.steamclient.proto +207 -0
  239. package/protobufs/steam/steammessages_vac.steamclient.proto +37 -0
  240. package/protobufs/steam/steammessages_video.steamclient.proto +68 -0
  241. package/protobufs/steam/steammessages_virtualcontroller.proto +138 -0
  242. package/protobufs/steam/steammessages_workshop.steamclient.proto +19 -0
  243. package/protobufs/steam/steamnetworkingsockets_messages.proto +205 -0
  244. package/protobufs/steam/steamnetworkingsockets_messages_certs.proto +39 -0
  245. package/protobufs/steam/steamnetworkingsockets_messages_udp.proto +75 -0
  246. package/protobufs/steam/webuimessages_achievements.proto +29 -0
  247. package/protobufs/steam/webuimessages_base.proto +24 -0
  248. package/protobufs/steam/webuimessages_gamenotes.proto +21 -0
  249. package/protobufs/steam/webuimessages_gamescope.proto +54 -0
  250. package/protobufs/steam/webuimessages_steamengine.proto +41 -0
  251. package/protobufs/steam/webuimessages_steamos.proto +114 -0
  252. package/protobufs/steam/webuimessages_storagedevicemanager.proto +110 -0
  253. package/protobufs/steam/webuimessages_systemmanager.proto +17 -0
  254. package/protobufs/steam/webuimessages_transport.proto +18 -0
  255. package/protobufs/steam/webuimessages_transportvalidation.proto +111 -0
  256. package/protobufs/tf2/base_gcmessages.proto +561 -0
  257. package/protobufs/tf2/econ_gcmessages.proto +368 -0
  258. package/protobufs/tf2/gcsdk_gcmessages.proto +186 -0
  259. package/protobufs/tf2/gcsystemmsgs.proto +178 -0
  260. package/protobufs/tf2/steamdatagram_auth_messages.proto +50 -0
  261. package/protobufs/tf2/steamdatagram_messages.proto +598 -0
  262. package/protobufs/tf2/steamdatagram_messages_auth.proto +65 -0
  263. package/protobufs/tf2/steamdatagram_messages_sdr.proto +518 -0
  264. package/protobufs/tf2/steammessages.proto +577 -0
  265. package/protobufs/tf2/steammessages_gamenetworkingui.proto +42 -0
  266. package/protobufs/tf2/steamnetworkingsockets_messages.proto +204 -0
  267. package/protobufs/tf2/steamnetworkingsockets_messages_certs.proto +38 -0
  268. package/protobufs/tf2/steamnetworkingsockets_messages_udp.proto +75 -0
  269. package/protobufs/tf2/tf_gcmessages.proto +1624 -0
  270. package/protobufs/tf2/tf_proto_def_messages.proto +598 -0
  271. package/protobufs/underlords/base_gcmessages.proto +532 -0
  272. package/protobufs/underlords/c_peer2peer_netmessages.proto +57 -0
  273. package/protobufs/underlords/clientmessages.proto +51 -0
  274. package/protobufs/underlords/connectionless_netmessages.proto +21 -0
  275. package/protobufs/underlords/dac_gamemessages.proto +1376 -0
  276. package/protobufs/underlords/dac_gcmessages_client.proto +1518 -0
  277. package/protobufs/underlords/dac_gcmessages_common.proto +377 -0
  278. package/protobufs/underlords/dac_gcmessages_server.proto +417 -0
  279. package/protobufs/underlords/demo.proto +149 -0
  280. package/protobufs/underlords/econ_gcmessages.proto +1063 -0
  281. package/protobufs/underlords/econ_shared_enums.proto +47 -0
  282. package/protobufs/underlords/enums_clientserver.proto +1538 -0
  283. package/protobufs/underlords/gameevents.proto +121 -0
  284. package/protobufs/underlords/gametoolevents.proto +78 -0
  285. package/protobufs/underlords/gcsdk_gcmessages.proto +448 -0
  286. package/protobufs/underlords/gcsystemmsgs.proto +29 -0
  287. package/protobufs/underlords/netmessages.proto +553 -0
  288. package/protobufs/underlords/network_connection.proto +117 -0
  289. package/protobufs/underlords/networkbasetypes.proto +219 -0
  290. package/protobufs/underlords/networksystem_protomessages.proto +19 -0
  291. package/protobufs/underlords/steamdatagram_messages_auth.proto +64 -0
  292. package/protobufs/underlords/steamdatagram_messages_sdr.proto +482 -0
  293. package/protobufs/underlords/steammessages.proto +701 -0
  294. package/protobufs/underlords/steammessages_base.proto +243 -0
  295. package/protobufs/underlords/steammessages_clientserver_login.proto +155 -0
  296. package/protobufs/underlords/steammessages_cloud.steamworkssdk.proto +68 -0
  297. package/protobufs/underlords/steammessages_helprequest.steamworkssdk.proto +22 -0
  298. package/protobufs/underlords/steammessages_oauth.steamworkssdk.proto +18 -0
  299. package/protobufs/underlords/steammessages_player.steamworkssdk.proto +254 -0
  300. package/protobufs/underlords/steammessages_publishedfile.steamworkssdk.proto +233 -0
  301. package/protobufs/underlords/steammessages_unified_base.steamworkssdk.proto +30 -0
  302. package/protobufs/underlords/steamnetworkingsockets_messages.proto +165 -0
  303. package/protobufs/underlords/steamnetworkingsockets_messages_certs.proto +38 -0
  304. package/protobufs/underlords/steamnetworkingsockets_messages_udp.proto +74 -0
  305. package/protobufs/underlords/te.proto +259 -0
  306. package/protobufs/underlords/uifontfile_format.proto +16 -0
  307. package/protobufs/underlords/usermessages.proto +511 -0
  308. package/protobufs/underlords/valveextensions.proto +11 -0
  309. package/protobufs/update.sh +13 -0
  310. package/protobufs/webui/common.proto +3998 -0
  311. package/protobufs/webui/common_base.proto +27 -0
  312. package/protobufs/webui/service_accountcart.proto +153 -0
  313. package/protobufs/webui/service_accountlinking.proto +27 -0
  314. package/protobufs/webui/service_accountprivacy.proto +42 -0
  315. package/protobufs/webui/service_accountprivateapps.proto +34 -0
  316. package/protobufs/webui/service_auction.proto +97 -0
  317. package/protobufs/webui/service_authentication.proto +222 -0
  318. package/protobufs/webui/service_authenticationsupport.proto +74 -0
  319. package/protobufs/webui/service_broadcast.proto +562 -0
  320. package/protobufs/webui/service_chat.proto +11 -0
  321. package/protobufs/webui/service_chatroom.proto +810 -0
  322. package/protobufs/webui/service_chatusability.proto +107 -0
  323. package/protobufs/webui/service_checkout.proto +83 -0
  324. package/protobufs/webui/service_clan.proto +41 -0
  325. package/protobufs/webui/service_clanchatrooms.proto +25 -0
  326. package/protobufs/webui/service_clanfaqs.proto +202 -0
  327. package/protobufs/webui/service_clientcomm.proto +151 -0
  328. package/protobufs/webui/service_clientmetrics.proto +22 -0
  329. package/protobufs/webui/service_cloud.proto +222 -0
  330. package/protobufs/webui/service_cloudconfigstore.proto +51 -0
  331. package/protobufs/webui/service_cloudgaming.proto +30 -0
  332. package/protobufs/webui/service_community.proto +365 -0
  333. package/protobufs/webui/service_dailydeal.proto +66 -0
  334. package/protobufs/webui/service_econ.proto +134 -0
  335. package/protobufs/webui/service_embedded.proto +24 -0
  336. package/protobufs/webui/service_experimentservice.proto +6 -0
  337. package/protobufs/webui/service_familygroups.proto +329 -0
  338. package/protobufs/webui/service_fovasvideo.proto +15 -0
  339. package/protobufs/webui/service_friendmessages.proto +133 -0
  340. package/protobufs/webui/service_friendslist.proto +70 -0
  341. package/protobufs/webui/service_gamenotes.proto +15 -0
  342. package/protobufs/webui/service_gamerecording.proto +259 -0
  343. package/protobufs/webui/service_gamerecordingclip.proto +83 -0
  344. package/protobufs/webui/service_gamerecordingdebug.proto +52 -0
  345. package/protobufs/webui/service_helprequestlogs.proto +16 -0
  346. package/protobufs/webui/service_loyaltyrewards.proto +252 -0
  347. package/protobufs/webui/service_marketingmessages.proto +215 -0
  348. package/protobufs/webui/service_mobileapp.proto +18 -0
  349. package/protobufs/webui/service_mobileauth.proto +24 -0
  350. package/protobufs/webui/service_mobiledevice.proto +26 -0
  351. package/protobufs/webui/service_mobileperaccount.proto +31 -0
  352. package/protobufs/webui/service_news.proto +110 -0
  353. package/protobufs/webui/service_parental.proto +256 -0
  354. package/protobufs/webui/service_partnermembershipinvite.proto +34 -0
  355. package/protobufs/webui/service_partnerstorebrowse.proto +28 -0
  356. package/protobufs/webui/service_phone.proto +51 -0
  357. package/protobufs/webui/service_physicalgoods.proto +15 -0
  358. package/protobufs/webui/service_player.proto +917 -0
  359. package/protobufs/webui/service_promotioneventinvites.proto +109 -0
  360. package/protobufs/webui/service_promotionplanning.proto +172 -0
  361. package/protobufs/webui/service_publishedfile.proto +711 -0
  362. package/protobufs/webui/service_publishing.proto +183 -0
  363. package/protobufs/webui/service_quest.proto +127 -0
  364. package/protobufs/webui/service_salefeature.proto +357 -0
  365. package/protobufs/webui/service_saleitemrewards.proto +54 -0
  366. package/protobufs/webui/service_shoppingcart.proto +152 -0
  367. package/protobufs/webui/service_steamawards.proto +76 -0
  368. package/protobufs/webui/service_steamcharts.proto +75 -0
  369. package/protobufs/webui/service_steamengine.proto +36 -0
  370. package/protobufs/webui/service_steamlearn.proto +780 -0
  371. package/protobufs/webui/service_steamnotification.proto +73 -0
  372. package/protobufs/webui/service_steamtv.proto +495 -0
  373. package/protobufs/webui/service_steamvrvoicechat.proto +67 -0
  374. package/protobufs/webui/service_steamvrwebrtc.proto +48 -0
  375. package/protobufs/webui/service_storagedevicemanager.proto +104 -0
  376. package/protobufs/webui/service_store.proto +359 -0
  377. package/protobufs/webui/service_storeappsimilarity.proto +76 -0
  378. package/protobufs/webui/service_storebrowse.proto +102 -0
  379. package/protobufs/webui/service_storemarketing.proto +41 -0
  380. package/protobufs/webui/service_storequery.proto +103 -0
  381. package/protobufs/webui/service_storesales.proto +87 -0
  382. package/protobufs/webui/service_storetopsellers.proto +44 -0
  383. package/protobufs/webui/service_systemmanager.proto +11 -0
  384. package/protobufs/webui/service_test_transporterror.proto +6 -0
  385. package/protobufs/webui/service_transportauth.proto +12 -0
  386. package/protobufs/webui/service_transportvalidation.proto +69 -0
  387. package/protobufs/webui/service_twofactor.proto +170 -0
  388. package/protobufs/webui/service_useraccount.proto +138 -0
  389. package/protobufs/webui/service_usergameactivity.proto +34 -0
  390. package/protobufs/webui/service_usergamenotes.proto +70 -0
  391. package/protobufs/webui/service_usernews.proto +68 -0
  392. package/protobufs/webui/service_userreviews.proto +96 -0
  393. package/protobufs/webui/service_video.proto +50 -0
  394. package/protobufs/webui/service_videoclip.proto +48 -0
  395. package/protobufs/webui/service_voicechat.proto +139 -0
  396. package/protobufs/webui/service_webrtc.proto +52 -0
@@ -0,0 +1,482 @@
1
+ import "steammessages_base.proto";
2
+
3
+ option optimize_for = SPEED;
4
+ option cc_generic_services = true;
5
+ option (force_php_generation) = true;
6
+
7
+ enum EPublishedFileQueryType {
8
+ k_PublishedFileQueryType_RankedByVote = 0;
9
+ k_PublishedFileQueryType_RankedByPublicationDate = 1;
10
+ k_PublishedFileQueryType_AcceptedForGameRankedByAcceptanceDate = 2;
11
+ k_PublishedFileQueryType_RankedByTrend = 3;
12
+ k_PublishedFileQueryType_FavoritedByFriendsRankedByPublicationDate = 4;
13
+ k_PublishedFileQueryType_CreatedByFriendsRankedByPublicationDate = 5;
14
+ k_PublishedFileQueryType_RankedByNumTimesReported = 6;
15
+ k_PublishedFileQueryType_CreatedByFollowedUsersRankedByPublicationDate = 7;
16
+ k_PublishedFileQueryType_NotYetRated = 8;
17
+ k_PublishedFileQueryType_RankedByTotalUniqueSubscriptions = 9;
18
+ k_PublishedFileQueryType_RankedByTotalVotesAsc = 10;
19
+ k_PublishedFileQueryType_RankedByVotesUp = 11;
20
+ k_PublishedFileQueryType_RankedByTextSearch = 12;
21
+ k_PublishedFileQueryType_RankedByPlaytimeTrend = 13;
22
+ k_PublishedFileQueryType_RankedByTotalPlaytime = 14;
23
+ k_PublishedFileQueryType_RankedByAveragePlaytimeTrend = 15;
24
+ k_PublishedFileQueryType_RankedByLifetimeAveragePlaytime = 16;
25
+ k_PublishedFileQueryType_RankedByPlaytimeSessionsTrend = 17;
26
+ k_PublishedFileQueryType_RankedByLifetimePlaytimeSessions = 18;
27
+ k_PublishedFileQueryType_RankedByInappropriateContentRating = 19;
28
+ k_PublishedFileQueryType_RankedByBanContentCheck = 20;
29
+ k_PublishedFileQueryType_RankedByLastUpdatedDate = 21;
30
+ }
31
+
32
+ enum EPublishedFileInappropriateProvider {
33
+ k_EPublishedFileInappropriateProvider_Invalid = 0;
34
+ k_EPublishedFileInappropriateProvider_Google = 1;
35
+ k_EPublishedFileInappropriateProvider_Amazon = 2;
36
+ }
37
+
38
+ enum EPublishedFileInappropriateResult {
39
+ k_EPublishedFileInappropriateResult_NotScanned = 0;
40
+ k_EPublishedFileInappropriateResult_VeryUnlikely = 1;
41
+ k_EPublishedFileInappropriateResult_Unlikely = 30;
42
+ k_EPublishedFileInappropriateResult_Possible = 50;
43
+ k_EPublishedFileInappropriateResult_Likely = 75;
44
+ k_EPublishedFileInappropriateResult_VeryLikely = 100;
45
+ }
46
+
47
+ enum EPersonaStateFlag {
48
+ k_EPersonaStateFlag_HasRichPresence = 1;
49
+ k_EPersonaStateFlag_InJoinableGame = 2;
50
+ k_EPersonaStateFlag_Golden = 4;
51
+ k_EPersonaStateFlag_RemotePlayTogether = 8;
52
+ k_EPersonaStateFlag_ClientTypeWeb = 256;
53
+ k_EPersonaStateFlag_ClientTypeMobile = 512;
54
+ k_EPersonaStateFlag_ClientTypeTenfoot = 1024;
55
+ k_EPersonaStateFlag_ClientTypeVR = 2048;
56
+ k_EPersonaStateFlag_LaunchTypeGamepad = 4096;
57
+ k_EPersonaStateFlag_LaunchTypeCompatTool = 8192;
58
+ }
59
+
60
+ enum EContentCheckProvider {
61
+ k_EContentCheckProvider_Invalid = 0;
62
+ k_EContentCheckProvider_Google_DEPRECATED = 1;
63
+ k_EContentCheckProvider_Amazon = 2;
64
+ k_EContentCheckProvider_Local = 3;
65
+ k_EContentCheckProvider_GoogleVertexAI = 4;
66
+ }
67
+
68
+ enum EProfileCustomizationType {
69
+ k_EProfileCustomizationTypeInvalid = 0;
70
+ k_EProfileCustomizationTypeRareAchievementShowcase = 1;
71
+ k_EProfileCustomizationTypeGameCollector = 2;
72
+ k_EProfileCustomizationTypeItemShowcase = 3;
73
+ k_EProfileCustomizationTypeTradeShowcase = 4;
74
+ k_EProfileCustomizationTypeBadges = 5;
75
+ k_EProfileCustomizationTypeFavoriteGame = 6;
76
+ k_EProfileCustomizationTypeScreenshotShowcase = 7;
77
+ k_EProfileCustomizationTypeCustomText = 8;
78
+ k_EProfileCustomizationTypeFavoriteGroup = 9;
79
+ k_EProfileCustomizationTypeRecommendation = 10;
80
+ k_EProfileCustomizationTypeWorkshopItem = 11;
81
+ k_EProfileCustomizationTypeMyWorkshop = 12;
82
+ k_EProfileCustomizationTypeArtworkShowcase = 13;
83
+ k_EProfileCustomizationTypeVideoShowcase = 14;
84
+ k_EProfileCustomizationTypeGuides = 15;
85
+ k_EProfileCustomizationTypeMyGuides = 16;
86
+ k_EProfileCustomizationTypeAchievements = 17;
87
+ k_EProfileCustomizationTypeGreenlight = 18;
88
+ k_EProfileCustomizationTypeMyGreenlight = 19;
89
+ k_EProfileCustomizationTypeSalien = 20;
90
+ k_EProfileCustomizationTypeLoyaltyRewardReactions = 21;
91
+ k_EProfileCustomizationTypeSingleArtworkShowcase = 22;
92
+ k_EProfileCustomizationTypeAchievementsCompletionist = 23;
93
+ k_EProfileCustomizationTypeReplay = 24;
94
+ }
95
+
96
+ enum EPublishedFileStorageSystem {
97
+ k_EPublishedFileStorageSystemInvalid = 0;
98
+ k_EPublishedFileStorageSystemLegacyCloud = 1;
99
+ k_EPublishedFileStorageSystemDepot = 2;
100
+ k_EPublishedFileStorageSystemUGCCloud = 3;
101
+ }
102
+
103
+ enum ECloudStoragePersistState {
104
+ k_ECloudStoragePersistStatePersisted = 0;
105
+ k_ECloudStoragePersistStateForgotten = 1;
106
+ k_ECloudStoragePersistStateDeleted = 2;
107
+ }
108
+
109
+ enum ESDCardFormatStage {
110
+ k_ESDCardFormatStage_Invalid = 0;
111
+ k_ESDCardFormatStage_Starting = 1;
112
+ k_ESDCardFormatStage_Testing = 2;
113
+ k_ESDCardFormatStage_Rescuing = 3;
114
+ k_ESDCardFormatStage_Formatting = 4;
115
+ k_ESDCardFormatStage_Finalizing = 5;
116
+ }
117
+
118
+ enum EStorageFormatStage {
119
+ k_EStorageFormatStage_Invalid = 0;
120
+ k_EStorageFormatStage_NotRunning = 1;
121
+ k_EStorageFormatStage_Starting = 2;
122
+ k_EStorageFormatStage_Testing = 3;
123
+ k_EStorageFormatStage_Rescuing = 4;
124
+ k_EStorageFormatStage_Formatting = 5;
125
+ k_EStorageFormatStage_Finalizing = 6;
126
+ }
127
+
128
+ enum ESystemFanControlMode {
129
+ k_SystemFanControlMode_Invalid = 0;
130
+ k_SystemFanControlMode_Disabled = 1;
131
+ k_SystemFanControlMode_Default = 2;
132
+ }
133
+
134
+ enum EStartupMovieVariant {
135
+ k_EStartupMovieVariant_Invalid = 0;
136
+ k_EStartupMovieVariant_Default = 1;
137
+ k_EStartupMovieVariant_Orange = 2;
138
+ }
139
+
140
+ enum EColorGamutLabelSet {
141
+ k_ColorGamutLabelSet_Default = 0;
142
+ k_ColorGamutLabelSet_sRGB_Native = 1;
143
+ k_ColorGamutLabelSet_Native_sRGB_Boosted = 2;
144
+ }
145
+
146
+ enum EBluetoothDeviceType {
147
+ k_BluetoothDeviceType_Invalid = 0;
148
+ k_BluetoothDeviceType_Unknown = 1;
149
+ k_BluetoothDeviceType_Phone = 2;
150
+ k_BluetoothDeviceType_Computer = 3;
151
+ k_BluetoothDeviceType_Headset = 4;
152
+ k_BluetoothDeviceType_Headphones = 5;
153
+ k_BluetoothDeviceType_Speakers = 6;
154
+ k_BluetoothDeviceType_OtherAudio = 7;
155
+ k_BluetoothDeviceType_Mouse = 8;
156
+ k_BluetoothDeviceType_Joystick = 9;
157
+ k_BluetoothDeviceType_Gamepad = 10;
158
+ k_BluetoothDeviceType_Keyboard = 11;
159
+ }
160
+
161
+ enum ESystemAudioDirection {
162
+ k_SystemAudioDirection_Invalid = 0;
163
+ k_SystemAudioDirection_Input = 1;
164
+ k_SystemAudioDirection_Output = 2;
165
+ }
166
+
167
+ enum ESystemAudioChannel {
168
+ k_SystemAudioChannel_Invalid = 0;
169
+ k_SystemAudioChannel_Aggregated = 1;
170
+ k_SystemAudioChannel_FrontLeft = 2;
171
+ k_SystemAudioChannel_FrontRight = 3;
172
+ k_SystemAudioChannel_LFE = 4;
173
+ k_SystemAudioChannel_BackLeft = 5;
174
+ k_SystemAudioChannel_BackRight = 6;
175
+ k_SystemAudioChannel_FrontCenter = 7;
176
+ k_SystemAudioChannel_Unknown = 8;
177
+ k_SystemAudioChannel_Mono = 9;
178
+ }
179
+
180
+ enum ESystemAudioPortType {
181
+ k_SystemAudioPortType_Invalid = 0;
182
+ k_SystemAudioPortType_Unknown = 1;
183
+ k_SystemAudioPortType_Audio32f = 2;
184
+ k_SystemAudioPortType_Midi8b = 3;
185
+ k_SystemAudioPortType_Video32RGBA = 4;
186
+ }
187
+
188
+ enum ESystemAudioPortDirection {
189
+ k_SystemAudioPortDirection_Invalid = 0;
190
+ k_SystemAudioPortDirection_Input = 1;
191
+ k_SystemAudioPortDirection_Output = 2;
192
+ }
193
+
194
+ enum ESystemServiceState {
195
+ k_ESystemServiceState_Unavailable = 0;
196
+ k_ESystemServiceState_Disabled = 1;
197
+ k_ESystemServiceState_Enabled = 2;
198
+ }
199
+
200
+ enum EGraphicsPerfOverlayLevel {
201
+ k_EGraphicsPerfOverlayLevel_Hidden = 0;
202
+ k_EGraphicsPerfOverlayLevel_Basic = 1;
203
+ k_EGraphicsPerfOverlayLevel_Medium = 2;
204
+ k_EGraphicsPerfOverlayLevel_Full = 3;
205
+ k_EGraphicsPerfOverlayLevel_Minimal = 4;
206
+ }
207
+
208
+ enum EGPUPerformanceLevel {
209
+ k_EGPUPerformanceLevel_Invalid = 0;
210
+ k_EGPUPerformanceLevel_Auto = 1;
211
+ k_EGPUPerformanceLevel_Manual = 2;
212
+ k_EGPUPerformanceLevel_Low = 3;
213
+ k_EGPUPerformanceLevel_High = 4;
214
+ k_EGPUPerformanceLevel_Profiling = 5;
215
+ }
216
+
217
+ enum EScalingFilter {
218
+ k_EScalingFilter_Invalid = 0;
219
+ k_EScalingFilter_FSR = 1;
220
+ k_EScalingFilter_Nearest = 2;
221
+ k_EScalingFilter_Integer = 3;
222
+ k_EScalingFilter_Linear = 4;
223
+ k_EScalingFilter_NIS = 5;
224
+ }
225
+
226
+ enum ESplitScalingFilter {
227
+ k_ESplitScalingFilter_Invalid = 0;
228
+ k_ESplitScalingFilter_Linear = 1;
229
+ k_ESplitScalingFilter_Nearest = 2;
230
+ k_ESplitScalingFilter_FSR = 3;
231
+ k_ESplitScalingFilter_NIS = 4;
232
+ }
233
+
234
+ enum ESplitScalingScaler {
235
+ k_ESplitScalingScaler_Invalid = 0;
236
+ k_ESplitScalingScaler_Auto = 1;
237
+ k_ESplitScalingScaler_Integer = 2;
238
+ k_ESplitScalingScaler_Fit = 3;
239
+ k_ESplitScalingScaler_Fill = 4;
240
+ k_ESplitScalingScaler_Stretch = 5;
241
+ }
242
+
243
+ enum EGamescopeBlurMode {
244
+ k_EGamescopeBlurMode_Disabled = 0;
245
+ k_EGamescopeBlurMode_IfOccluded = 1;
246
+ k_EGamescopeBlurMode_Always = 2;
247
+ }
248
+
249
+ enum ESLSHelper {
250
+ k_ESLSHelper_Invalid = 0;
251
+ k_ESLSHelper_Minidump = 1;
252
+ k_ESLSHelper_Kdump = 2;
253
+ k_ESLSHelper_Journal = 3;
254
+ k_ESLSHelper_Gpu = 4;
255
+ k_ESLSHelper_SystemInfo = 5;
256
+ }
257
+
258
+ enum EHDRVisualization {
259
+ k_EHDRVisualization_None = 0;
260
+ k_EHDRVisualization_Heatmap = 1;
261
+ k_EHDRVisualization_Analysis = 2;
262
+ k_EHDRVisualization_HeatmapExtended = 3;
263
+ k_EHDRVisualization_HeatmapClassic = 4;
264
+ }
265
+
266
+ enum EHDRToneMapOperator {
267
+ k_EHDRToneMapOperator_Invalid = 0;
268
+ k_EHDRToneMapOperator_Uncharted = 1;
269
+ k_EHDRToneMapOperator_Reinhard = 2;
270
+ }
271
+
272
+ enum ECPUGovernor {
273
+ k_ECPUGovernor_Invalid = 0;
274
+ k_ECPUGovernor_Perf = 1;
275
+ k_ECPUGovernor_Powersave = 2;
276
+ k_ECPUGovernor_Manual = 3;
277
+ }
278
+
279
+ enum EUpdaterType {
280
+ k_EUpdaterType_Invalid = 0;
281
+ k_EUpdaterType_Client = 1;
282
+ k_EUpdaterType_OS = 2;
283
+ k_EUpdaterType_BIOS = 3;
284
+ k_EUpdaterType_Aggregated = 4;
285
+ k_EUpdaterType_Test1 = 5;
286
+ k_EUpdaterType_Test2 = 6;
287
+ k_EUpdaterType_Dummy = 7;
288
+ }
289
+
290
+ enum EUpdaterState {
291
+ k_EUpdaterState_Invalid = 0;
292
+ k_EUpdaterState_UpToDate = 2;
293
+ k_EUpdaterState_Checking = 3;
294
+ k_EUpdaterState_Available = 4;
295
+ k_EUpdaterState_Applying = 5;
296
+ k_EUpdaterState_ClientRestartPending = 6;
297
+ k_EUpdaterState_SystemRestartPending = 7;
298
+ }
299
+
300
+ enum EStorageBlockContentType {
301
+ k_EStorageBlockContentType_Invalid = 0;
302
+ k_EStorageBlockContentType_Unknown = 1;
303
+ k_EStorageBlockContentType_FileSystem = 2;
304
+ k_EStorageBlockContentType_Crypto = 3;
305
+ k_EStorageBlockContentType_Raid = 4;
306
+ }
307
+
308
+ enum EStorageBlockFileSystemType {
309
+ k_EStorageBlockFileSystemType_Invalid = 0;
310
+ k_EStorageBlockFileSystemType_Unknown = 1;
311
+ k_EStorageBlockFileSystemType_VFat = 2;
312
+ k_EStorageBlockFileSystemType_Ext4 = 3;
313
+ }
314
+
315
+ enum EStorageDriveMediaType {
316
+ k_EStorageDriveMediaType_Invalid = 0;
317
+ k_EStorageDriveMediaType_Unknown = 1;
318
+ k_EStorageDriveMediaType_HDD = 2;
319
+ k_EStorageDriveMediaType_SSD = 3;
320
+ k_EStorageDriveMediaType_Removable = 4;
321
+ }
322
+
323
+ enum ESystemDisplayCompatibilityMode {
324
+ k_ESystemDisplayCompatibilityMode_Invalid = 0;
325
+ k_ESystemDisplayCompatibilityMode_None = 1;
326
+ k_ESystemDisplayCompatibilityMode_MinimalBandwith = 2;
327
+ }
328
+
329
+ enum ESteamDeckCompatibilityCategory {
330
+ k_ESteamDeckCompatibilityCategory_Unknown = 0;
331
+ k_ESteamDeckCompatibilityCategory_Unsupported = 1;
332
+ k_ESteamDeckCompatibilityCategory_Playable = 2;
333
+ k_ESteamDeckCompatibilityCategory_Verified = 3;
334
+ }
335
+
336
+ enum ESteamDeckCompatibilityResultDisplayType {
337
+ k_ESteamDeckCompatibilityResultDisplayType_Invisible = 0;
338
+ k_ESteamDeckCompatibilityResultDisplayType_Informational = 1;
339
+ k_ESteamDeckCompatibilityResultDisplayType_Unsupported = 2;
340
+ k_ESteamDeckCompatibilityResultDisplayType_Playable = 3;
341
+ k_ESteamDeckCompatibilityResultDisplayType_Verified = 4;
342
+ }
343
+
344
+ enum ESteamDeckCompatibilityTestResult {
345
+ k_ESteamDeckCompatibilityTestResult_Invalid = 0;
346
+ k_ESteamDeckCompatibilityTestResult_NotApplicable = 1;
347
+ k_ESteamDeckCompatibilityTestResult_Pass = 2;
348
+ k_ESteamDeckCompatibilityTestResult_Fail = 3;
349
+ k_ESteamDeckCompatibilityTestResult_FailMinor = 4;
350
+ }
351
+
352
+ enum EACState {
353
+ k_EACState_Unknown = 0;
354
+ k_EACState_Disconnected = 1;
355
+ k_EACState_Connected = 2;
356
+ k_EACState_ConnectedSlow = 3;
357
+ }
358
+
359
+ enum EBatteryState {
360
+ k_EBatteryState_Unknown = 0;
361
+ k_EBatteryState_Discharging = 1;
362
+ k_EBatteryState_Charging = 2;
363
+ k_EBatteryState_Full = 3;
364
+ }
365
+
366
+ enum EOSBranch {
367
+ k_EOSBranch_Unknown = 0;
368
+ k_EOSBranch_Release = 1;
369
+ k_EOSBranch_ReleaseCandidate = 2;
370
+ k_EOSBranch_Beta = 3;
371
+ k_EOSBranch_BetaCandidate = 4;
372
+ k_EOSBranch_Main = 5;
373
+ k_EOSBranch_Staging = 6;
374
+ }
375
+
376
+ enum ECommunityItemClass {
377
+ k_ECommunityItemClass_Invalid = 0;
378
+ k_ECommunityItemClass_Badge = 1;
379
+ k_ECommunityItemClass_GameCard = 2;
380
+ k_ECommunityItemClass_ProfileBackground = 3;
381
+ k_ECommunityItemClass_Emoticon = 4;
382
+ k_ECommunityItemClass_BoosterPack = 5;
383
+ k_ECommunityItemClass_Consumable = 6;
384
+ k_ECommunityItemClass_GameGoo = 7;
385
+ k_ECommunityItemClass_ProfileModifier = 8;
386
+ k_ECommunityItemClass_Scene = 9;
387
+ k_ECommunityItemClass_SalienItem = 10;
388
+ k_ECommunityItemClass_Sticker = 11;
389
+ k_ECommunityItemClass_ChatEffect = 12;
390
+ k_ECommunityItemClass_MiniProfileBackground = 13;
391
+ k_ECommunityItemClass_AvatarFrame = 14;
392
+ k_ECommunityItemClass_AnimatedAvatar = 15;
393
+ k_ECommunityItemClass_SteamDeckKeyboardSkin = 16;
394
+ k_ECommunityItemClass_SteamDeckStartupMovie = 17;
395
+ }
396
+
397
+ enum ESteamDeckCompatibilityFeedback {
398
+ k_ESteamDeckCompatibilityFeedback_Unset = 0;
399
+ k_ESteamDeckCompatibilityFeedback_Agree = 1;
400
+ k_ESteamDeckCompatibilityFeedback_Disagree = 2;
401
+ k_ESteamDeckCompatibilityFeedback_Ignore = 3;
402
+ }
403
+
404
+ enum EProvideDeckFeedbackPreference {
405
+ k_EProvideDeckFeedbackPreference_Unset = 0;
406
+ k_EProvideDeckFeedbackPreference_Yes = 1;
407
+ k_EProvideDeckFeedbackPreference_No = 2;
408
+ }
409
+
410
+ enum ETouchGesture {
411
+ k_ETouchGestureNone = 0;
412
+ k_ETouchGestureTouch = 1;
413
+ k_ETouchGestureTap = 2;
414
+ k_ETouchGestureDoubleTap = 3;
415
+ k_ETouchGestureShortPress = 4;
416
+ k_ETouchGestureLongPress = 5;
417
+ k_ETouchGestureLongTap = 6;
418
+ k_ETouchGestureTwoFingerTap = 7;
419
+ k_ETouchGestureTapCancelled = 8;
420
+ k_ETouchGesturePinchBegin = 9;
421
+ k_ETouchGesturePinchUpdate = 10;
422
+ k_ETouchGesturePinchEnd = 11;
423
+ k_ETouchGestureFlingStart = 12;
424
+ k_ETouchGestureFlingCancelled = 13;
425
+ }
426
+
427
+ enum ESessionPersistence {
428
+ k_ESessionPersistence_Invalid = -1;
429
+ k_ESessionPersistence_Ephemeral = 0;
430
+ k_ESessionPersistence_Persistent = 1;
431
+ }
432
+
433
+ enum ENewSteamAnnouncementState {
434
+ k_ENewSteamAnnouncementState_Invalid = 0;
435
+ k_ENewSteamAnnouncementState_AllRead = 1;
436
+ k_ENewSteamAnnouncementState_NewAnnouncement = 2;
437
+ k_ENewSteamAnnouncementState_FeaturedAnnouncement = 3;
438
+ }
439
+
440
+ enum ECommentThreadType {
441
+ k_ECommentThreadTypeInvalid = 0;
442
+ k_ECommentThreadTypeScreenshot_Deprecated = 1;
443
+ k_ECommentThreadTypeWorkshopAccount_Developer = 2;
444
+ k_ECommentThreadTypeWorkshopAccount_Public = 3;
445
+ k_ECommentThreadTypePublishedFile_Developer = 4;
446
+ k_ECommentThreadTypePublishedFile_Public = 5;
447
+ k_ECommentThreadTypeTest = 6;
448
+ k_ECommentThreadTypeForumTopic = 7;
449
+ k_ECommentThreadTypeRecommendation = 8;
450
+ k_ECommentThreadTypeVideo_Deprecated = 9;
451
+ k_ECommentThreadTypeProfile = 10;
452
+ k_ECommentThreadTypeNewsPost = 11;
453
+ k_ECommentThreadTypeClan = 12;
454
+ k_ECommentThreadTypeClanAnnouncement = 13;
455
+ k_ECommentThreadTypeClanEvent = 14;
456
+ k_ECommentThreadTypeUserStatusPublished = 15;
457
+ k_ECommentThreadTypeUserReceivedNewGame = 16;
458
+ k_ECommentThreadTypePublishedFile_Announcement = 17;
459
+ k_ECommentThreadTypeModeratorMessage = 18;
460
+ k_ECommentThreadTypeClanCuratedApp = 19;
461
+ k_ECommentThreadTypeQAndASession = 20;
462
+ k_ECommentThreadTypeMax = 21;
463
+ }
464
+
465
+ enum EBroadcastPermission {
466
+ k_EBroadcastPermissionDisabled = 0;
467
+ k_EBroadcastPermissionFriendsApprove = 1;
468
+ k_EBroadcastPermissionFriendsAllowed = 2;
469
+ k_EBroadcastPermissionPublic = 3;
470
+ k_EBroadcastPermissionSubscribers = 4;
471
+ }
472
+
473
+ enum EBroadcastEncoderSetting {
474
+ k_EBroadcastEncoderBestQuality = 0;
475
+ k_EBroadcastEncoderBestPerformance = 1;
476
+ }
477
+
478
+ enum ECloudGamingPlatform {
479
+ k_ECloudGamingPlatformNone = 0;
480
+ k_ECloudGamingPlatformValve = 1;
481
+ k_ECloudGamingPlatformNVIDIA = 2;
482
+ }