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,125 @@
1
+ import "networkbasetypes.proto";
2
+
3
+ enum EHitGroup {
4
+ EHG_Generic = 0;
5
+ EHG_Head = 1;
6
+ EHG_Chest = 2;
7
+ EHG_Stomach = 3;
8
+ EHG_LeftArm = 4;
9
+ EHG_RightArm = 5;
10
+ EHG_LeftLeg = 6;
11
+ EHG_RightLeg = 7;
12
+ EHG_Gear = 8;
13
+ EHG_Miss = 9;
14
+ }
15
+
16
+ enum ETeam {
17
+ ET_Unknown = 0;
18
+ ET_Spectator = 1;
19
+ ET_Terrorist = 2;
20
+ ET_CT = 3;
21
+ }
22
+
23
+ enum EWeaponType {
24
+ EWT_Knife = 0;
25
+ EWT_Pistol = 1;
26
+ EWT_SubMachineGun = 2;
27
+ EWT_Rifle = 3;
28
+ EWT_Shotgun = 4;
29
+ EWT_SniperRifle = 5;
30
+ EWT_MachineGun = 6;
31
+ EWT_C4 = 7;
32
+ EWT_Grenade = 8;
33
+ EWT_Equipment = 9;
34
+ EWT_StackableItem = 10;
35
+ EWT_Unknown = 11;
36
+ }
37
+
38
+ message MLDict {
39
+ optional string key = 1;
40
+ optional string val_string = 2;
41
+ optional int32 val_int = 3;
42
+ optional float val_float = 4;
43
+ }
44
+
45
+ message MLEvent {
46
+ optional string event_name = 1;
47
+ repeated .MLDict data = 2;
48
+ }
49
+
50
+ message MLMatchState {
51
+ optional string game_mode = 1;
52
+ optional string phase = 2;
53
+ optional int32 round = 3;
54
+ optional int32 score_ct = 4;
55
+ optional int32 score_t = 5;
56
+ }
57
+
58
+ message MLRoundState {
59
+ optional string phase = 1;
60
+ optional .ETeam win_team = 2 [default = ET_Unknown];
61
+ optional string bomb_state = 3;
62
+ }
63
+
64
+ message MLWeaponState {
65
+ optional int32 index = 1;
66
+ optional string name = 2;
67
+ optional .EWeaponType type = 3 [default = EWT_Knife];
68
+ optional int32 ammo_clip = 4;
69
+ optional int32 ammo_clip_max = 5;
70
+ optional int32 ammo_reserve = 6;
71
+ optional string state = 7;
72
+ optional float recoil_index = 8;
73
+ }
74
+
75
+ message MLPlayerState {
76
+ optional int32 account_id = 1;
77
+ optional int32 player_slot = 2 [default = -1];
78
+ optional int32 entindex = 3;
79
+ optional string name = 4;
80
+ optional string clan = 5;
81
+ optional .ETeam team = 6 [default = ET_Unknown];
82
+ optional .CMsgVector abspos = 7;
83
+ optional .CMsgQAngle eyeangle = 8;
84
+ optional .CMsgVector eyeangle_fwd = 9;
85
+ optional int32 health = 10;
86
+ optional int32 armor = 11;
87
+ optional float flashed = 12;
88
+ optional float smoked = 13;
89
+ optional int32 money = 14;
90
+ optional int32 round_kills = 15;
91
+ optional int32 round_killhs = 16;
92
+ optional float burning = 17;
93
+ optional bool helmet = 18;
94
+ optional bool defuse_kit = 19;
95
+ repeated .MLWeaponState weapons = 20;
96
+ }
97
+
98
+ message MLGameState {
99
+ optional .MLMatchState match = 1;
100
+ optional .MLRoundState round = 2;
101
+ repeated .MLPlayerState players = 3;
102
+ }
103
+
104
+ message MLDemoHeader {
105
+ optional string map_name = 1;
106
+ optional int32 tick_rate = 2;
107
+ optional uint32 version = 3;
108
+ optional uint32 steam_universe = 4;
109
+ }
110
+
111
+ message MLTick {
112
+ optional int32 tick_count = 1;
113
+ optional .MLGameState state = 2;
114
+ repeated .MLEvent events = 3;
115
+ }
116
+
117
+ message VacNetShot {
118
+ optional fixed64 steamid_player = 1;
119
+ optional int32 round_number = 2;
120
+ optional int32 hit_type = 3;
121
+ optional int32 weapon_type = 4;
122
+ optional float distance_to_hurt_target = 5;
123
+ repeated float delta_yaw_window = 6;
124
+ repeated float delta_pitch_window = 7;
125
+ }
@@ -0,0 +1,120 @@
1
+ import "networkbasetypes.proto";
2
+
3
+ enum EBaseGameEvents {
4
+ GE_VDebugGameSessionIDEvent = 200;
5
+ GE_PlaceDecalEvent = 201;
6
+ GE_ClearWorldDecalsEvent = 202;
7
+ GE_ClearEntityDecalsEvent = 203;
8
+ GE_ClearDecalsForSkeletonInstanceEvent = 204;
9
+ GE_Source1LegacyGameEventList = 205;
10
+ GE_Source1LegacyListenEvents = 206;
11
+ GE_Source1LegacyGameEvent = 207;
12
+ GE_SosStartSoundEvent = 208;
13
+ GE_SosStopSoundEvent = 209;
14
+ GE_SosSetSoundEventParams = 210;
15
+ GE_SosSetLibraryStackFields = 211;
16
+ GE_SosStopSoundEventHash = 212;
17
+ }
18
+
19
+ message CMsgVDebugGameSessionIDEvent {
20
+ optional int32 clientid = 1;
21
+ optional string gamesessionid = 2;
22
+ }
23
+
24
+ message CMsgPlaceDecalEvent {
25
+ optional .CMsgVector position = 1;
26
+ optional .CMsgVector normal = 2;
27
+ optional .CMsgVector saxis = 3;
28
+ optional uint32 decalmaterialindex = 4;
29
+ optional uint32 flags = 5;
30
+ optional fixed32 color = 6;
31
+ optional float width = 7;
32
+ optional float height = 8;
33
+ optional float depth = 9;
34
+ optional uint32 entityhandleindex = 10;
35
+ optional fixed32 skeletoninstancehash = 11;
36
+ optional int32 boneindex = 12;
37
+ optional bool translucenthit = 13;
38
+ optional bool is_adjacent = 14;
39
+ }
40
+
41
+ message CMsgClearWorldDecalsEvent {
42
+ optional uint32 flagstoclear = 1;
43
+ }
44
+
45
+ message CMsgClearEntityDecalsEvent {
46
+ optional uint32 flagstoclear = 1;
47
+ }
48
+
49
+ message CMsgClearDecalsForSkeletonInstanceEvent {
50
+ optional uint32 flagstoclear = 1;
51
+ optional uint32 entityhandleindex = 2;
52
+ optional uint32 skeletoninstancehash = 3;
53
+ }
54
+
55
+ message CMsgSource1LegacyGameEventList {
56
+ message key_t {
57
+ optional int32 type = 1;
58
+ optional string name = 2;
59
+ }
60
+
61
+ message descriptor_t {
62
+ optional int32 eventid = 1;
63
+ optional string name = 2;
64
+ repeated .CMsgSource1LegacyGameEventList.key_t keys = 3;
65
+ }
66
+
67
+ repeated .CMsgSource1LegacyGameEventList.descriptor_t descriptors = 1;
68
+ }
69
+
70
+ message CMsgSource1LegacyListenEvents {
71
+ optional int32 playerslot = 1;
72
+ repeated uint32 eventarraybits = 2;
73
+ }
74
+
75
+ message CMsgSource1LegacyGameEvent {
76
+ message key_t {
77
+ optional int32 type = 1;
78
+ optional string val_string = 2;
79
+ optional float val_float = 3;
80
+ optional int32 val_long = 4;
81
+ optional int32 val_short = 5;
82
+ optional int32 val_byte = 6;
83
+ optional bool val_bool = 7;
84
+ optional uint64 val_uint64 = 8;
85
+ }
86
+
87
+ optional string event_name = 1;
88
+ optional int32 eventid = 2;
89
+ repeated .CMsgSource1LegacyGameEvent.key_t keys = 3;
90
+ optional int32 server_tick = 4;
91
+ optional int32 passthrough = 5;
92
+ }
93
+
94
+ message CMsgSosStartSoundEvent {
95
+ optional int32 soundevent_guid = 1;
96
+ optional fixed32 soundevent_hash = 2;
97
+ optional int32 source_entity_index = 3 [default = -1];
98
+ optional int32 seed = 4;
99
+ optional bytes packed_params = 5;
100
+ optional float start_time = 6;
101
+ }
102
+
103
+ message CMsgSosStopSoundEvent {
104
+ optional int32 soundevent_guid = 1;
105
+ }
106
+
107
+ message CMsgSosStopSoundEventHash {
108
+ optional fixed32 soundevent_hash = 1;
109
+ optional int32 source_entity_index = 2 [default = -1];
110
+ }
111
+
112
+ message CMsgSosSetSoundEventParams {
113
+ optional int32 soundevent_guid = 1;
114
+ optional bytes packed_params = 5;
115
+ }
116
+
117
+ message CMsgSosSetLibraryStackFields {
118
+ optional fixed32 stack_hash = 1;
119
+ optional bytes packed_fields = 5;
120
+ }
@@ -0,0 +1,323 @@
1
+ import "steammessages.proto";
2
+
3
+ enum GCClientLauncherType {
4
+ GCClientLauncherType_DEFAULT = 0;
5
+ GCClientLauncherType_PERFECTWORLD = 1;
6
+ GCClientLauncherType_STEAMCHINA = 2;
7
+ }
8
+
9
+ enum GCConnectionStatus {
10
+ GCConnectionStatus_HAVE_SESSION = 0;
11
+ GCConnectionStatus_GC_GOING_DOWN = 1;
12
+ GCConnectionStatus_NO_SESSION = 2;
13
+ GCConnectionStatus_NO_SESSION_IN_LOGON_QUEUE = 3;
14
+ GCConnectionStatus_NO_STEAM = 4;
15
+ }
16
+
17
+ message CMsgSOIDOwner {
18
+ optional uint32 type = 1;
19
+ optional uint64 id = 2;
20
+ }
21
+
22
+ message CMsgSOSingleObject {
23
+ optional int32 type_id = 2;
24
+ optional bytes object_data = 3;
25
+ optional fixed64 version = 4;
26
+ optional .CMsgSOIDOwner owner_soid = 5;
27
+ }
28
+
29
+ message CMsgSOMultipleObjects {
30
+ message SingleObject {
31
+ option (msgpool_soft_limit) = 256;
32
+ option (msgpool_hard_limit) = 1024;
33
+
34
+ optional int32 type_id = 1;
35
+ optional bytes object_data = 2;
36
+ }
37
+
38
+ repeated .CMsgSOMultipleObjects.SingleObject objects_modified = 2;
39
+ optional fixed64 version = 3;
40
+ optional .CMsgSOIDOwner owner_soid = 6;
41
+ }
42
+
43
+ message CMsgSOCacheSubscribed {
44
+ message SubscribedType {
45
+ optional int32 type_id = 1;
46
+ repeated bytes object_data = 2;
47
+ }
48
+
49
+ repeated .CMsgSOCacheSubscribed.SubscribedType objects = 2;
50
+ optional fixed64 version = 3;
51
+ optional .CMsgSOIDOwner owner_soid = 4;
52
+ }
53
+
54
+ message CMsgSOCacheUnsubscribed {
55
+ optional .CMsgSOIDOwner owner_soid = 2;
56
+ }
57
+
58
+ message CMsgSOCacheSubscriptionCheck {
59
+ optional fixed64 version = 2;
60
+ optional .CMsgSOIDOwner owner_soid = 3;
61
+ }
62
+
63
+ message CMsgSOCacheSubscriptionRefresh {
64
+ optional .CMsgSOIDOwner owner_soid = 2;
65
+ }
66
+
67
+ message CMsgSOCacheVersion {
68
+ optional fixed64 version = 1;
69
+ }
70
+
71
+ message CMsgAccountDetails {
72
+ optional bool valid = 1;
73
+ optional string account_name = 2;
74
+ optional bool public_profile = 4;
75
+ optional bool public_inventory = 5;
76
+ optional bool vac_banned = 6;
77
+ optional bool cyber_cafe = 7;
78
+ optional bool school_account = 8;
79
+ optional bool free_trial_account = 9;
80
+ optional bool subscribed = 10;
81
+ optional bool low_violence = 11;
82
+ optional bool limited = 12;
83
+ optional bool trusted = 13;
84
+ optional uint32 package = 14;
85
+ optional fixed32 time_cached = 15;
86
+ optional bool account_locked = 16;
87
+ optional bool community_banned = 17;
88
+ optional bool trade_banned = 18;
89
+ optional bool eligible_for_community_market = 19;
90
+ }
91
+
92
+ message CMsgGCMultiplexMessage {
93
+ optional uint32 msgtype = 1;
94
+ optional bytes payload = 2;
95
+ repeated fixed64 steamids = 3;
96
+ optional bool replytogc = 4;
97
+ }
98
+
99
+ message CMsgGCMultiplexMessage_Response {
100
+ optional uint32 msgtype = 1;
101
+ }
102
+
103
+ message CGCToGCMsgMasterAck {
104
+ optional uint32 dir_index = 1;
105
+ optional uint32 gc_type = 2;
106
+ }
107
+
108
+ message CGCToGCMsgMasterAck_Response {
109
+ optional int32 eresult = 1 [default = 2];
110
+ }
111
+
112
+ message CGCToGCMsgMasterStartupComplete {
113
+ }
114
+
115
+ message CGCToGCMsgRouted {
116
+ optional uint32 msg_type = 1;
117
+ optional fixed64 sender_id = 2;
118
+ optional bytes net_message = 3;
119
+ optional uint32 ip = 4;
120
+ }
121
+
122
+ message CGCToGCMsgRoutedReply {
123
+ optional uint32 msg_type = 1;
124
+ optional bytes net_message = 2;
125
+ }
126
+
127
+ message CMsgGCUpdateSessionIP {
128
+ optional fixed64 steamid = 1;
129
+ optional fixed32 ip = 2;
130
+ }
131
+
132
+ message CMsgGCRequestSessionIP {
133
+ optional fixed64 steamid = 1;
134
+ }
135
+
136
+ message CMsgGCRequestSessionIPResponse {
137
+ optional fixed32 ip = 1;
138
+ }
139
+
140
+ message CMsgSOCacheHaveVersion {
141
+ optional .CMsgSOIDOwner soid = 1;
142
+ optional fixed64 version = 2;
143
+ }
144
+
145
+ message CMsgClientHello {
146
+ optional uint32 version = 1;
147
+ repeated .CMsgSOCacheHaveVersion socache_have_versions = 2;
148
+ optional uint32 client_session_need = 3;
149
+ optional uint32 client_launcher = 4;
150
+ optional uint32 partner_srcid = 5;
151
+ optional uint32 partner_accountid = 6;
152
+ optional uint32 partner_accountflags = 7;
153
+ optional uint32 partner_accountbalance = 8;
154
+ optional uint32 steam_launcher = 9;
155
+ }
156
+
157
+ message CMsgServerHello {
158
+ optional uint32 version = 1;
159
+ repeated .CMsgSOCacheHaveVersion socache_have_versions = 2;
160
+ optional uint32 legacy_client_session_need = 3;
161
+ optional uint32 client_launcher = 4;
162
+ optional bytes legacy_steamdatagram_routing = 6;
163
+ optional uint32 required_internal_addr = 7;
164
+ optional bytes steamdatagram_login = 8;
165
+ }
166
+
167
+ message CMsgClientWelcome {
168
+ message Location {
169
+ optional float latitude = 1;
170
+ optional float longitude = 2;
171
+ optional string country = 3;
172
+ }
173
+
174
+ optional uint32 version = 1;
175
+ optional bytes game_data = 2;
176
+ repeated .CMsgSOCacheSubscribed outofdate_subscribed_caches = 3;
177
+ repeated .CMsgSOCacheSubscriptionCheck uptodate_subscribed_caches = 4;
178
+ optional .CMsgClientWelcome.Location location = 5;
179
+ optional bytes game_data2 = 6;
180
+ optional uint32 rtime32_gc_welcome_timestamp = 7;
181
+ optional uint32 currency = 8;
182
+ optional uint32 balance = 9;
183
+ optional string balance_url = 10;
184
+ optional string txn_country_code = 11;
185
+ }
186
+
187
+ message CMsgConnectionStatus {
188
+ optional .GCConnectionStatus status = 1 [default = GCConnectionStatus_HAVE_SESSION];
189
+ optional uint32 client_session_need = 2;
190
+ optional int32 queue_position = 3;
191
+ optional int32 queue_size = 4;
192
+ optional int32 wait_seconds = 5;
193
+ optional int32 estimated_wait_seconds_remaining = 6;
194
+ }
195
+
196
+ message CWorkshop_PopulateItemDescriptions_Request {
197
+ message SingleItemDescription {
198
+ optional uint32 gameitemid = 1;
199
+ optional string item_description = 2;
200
+ optional bool one_per_account = 3;
201
+ }
202
+
203
+ message ItemDescriptionsLanguageBlock {
204
+ optional string language = 1;
205
+ repeated .CWorkshop_PopulateItemDescriptions_Request.SingleItemDescription descriptions = 2;
206
+ }
207
+
208
+ optional uint32 appid = 1;
209
+ repeated .CWorkshop_PopulateItemDescriptions_Request.ItemDescriptionsLanguageBlock languages = 2;
210
+ }
211
+
212
+ message CWorkshop_GetContributors_Request {
213
+ optional uint32 appid = 1;
214
+ optional uint32 gameitemid = 2;
215
+ }
216
+
217
+ message CWorkshop_GetContributors_Response {
218
+ repeated fixed64 contributors = 1;
219
+ }
220
+
221
+ message CWorkshop_SetItemPaymentRules_Request {
222
+ message WorkshopItemPaymentRule {
223
+ optional uint64 workshop_file_id = 1;
224
+ optional float revenue_percentage = 2;
225
+ optional string rule_description = 3;
226
+ optional uint32 rule_type = 4 [default = 1];
227
+ }
228
+
229
+ message WorkshopDirectPaymentRule {
230
+ optional uint64 workshop_file_id = 1;
231
+ optional string rule_description = 2;
232
+ }
233
+
234
+ message PartnerItemPaymentRule {
235
+ optional uint32 account_id = 1;
236
+ optional float revenue_percentage = 2;
237
+ optional string rule_description = 3;
238
+ }
239
+
240
+ optional uint32 appid = 1;
241
+ optional uint32 gameitemid = 2;
242
+ repeated .CWorkshop_SetItemPaymentRules_Request.WorkshopItemPaymentRule associated_workshop_files = 3;
243
+ repeated .CWorkshop_SetItemPaymentRules_Request.PartnerItemPaymentRule partner_accounts = 4;
244
+ optional bool validate_only = 5;
245
+ optional bool make_workshop_files_subscribable = 6;
246
+ optional .CWorkshop_SetItemPaymentRules_Request.WorkshopDirectPaymentRule associated_workshop_file_for_direct_payments = 7;
247
+ }
248
+
249
+ message CWorkshop_SetItemPaymentRules_Response {
250
+ }
251
+
252
+ message CGameServers_AggregationQuery_Request {
253
+ optional string filter = 1;
254
+ repeated string group_fields = 3;
255
+ }
256
+
257
+ message CGameServers_AggregationQuery_Response {
258
+ message Group {
259
+ repeated string group_values = 1;
260
+ optional uint32 servers_empty = 2;
261
+ optional uint32 servers_full = 3;
262
+ optional uint32 servers_total = 4;
263
+ optional uint32 players_humans = 5;
264
+ optional uint32 players_bots = 6;
265
+ optional uint32 player_capacity = 7;
266
+ }
267
+
268
+ repeated .CGameServers_AggregationQuery_Response.Group groups = 1;
269
+ }
270
+
271
+ message CWorkshop_AddSpecialPayment_Request {
272
+ optional uint32 appid = 1;
273
+ optional uint32 gameitemid = 2;
274
+ optional string date = 3;
275
+ optional uint64 payment_us_usd = 4;
276
+ optional uint64 payment_row_usd = 5;
277
+ }
278
+
279
+ message CWorkshop_AddSpecialPayment_Response {
280
+ }
281
+
282
+ message CProductInfo_SetRichPresenceLocalization_Request {
283
+ message Token {
284
+ optional string token = 1;
285
+ optional string value = 2;
286
+ }
287
+
288
+ message LanguageSection {
289
+ optional string language = 1;
290
+ repeated .CProductInfo_SetRichPresenceLocalization_Request.Token tokens = 2;
291
+ }
292
+
293
+ optional uint32 appid = 1;
294
+ repeated .CProductInfo_SetRichPresenceLocalization_Request.LanguageSection languages = 2;
295
+ optional uint64 steamid = 3;
296
+ }
297
+
298
+ message CProductInfo_SetRichPresenceLocalization_Response {
299
+ }
300
+
301
+ message CMsgSerializedSOCache {
302
+ message TypeCache {
303
+ optional uint32 type = 1;
304
+ repeated bytes objects = 2;
305
+ optional uint32 service_id = 3;
306
+ }
307
+
308
+ message Cache {
309
+ message Version {
310
+ optional uint32 service = 1;
311
+ optional uint64 version = 2;
312
+ }
313
+
314
+ optional uint32 type = 1;
315
+ optional uint64 id = 2;
316
+ repeated .CMsgSerializedSOCache.Cache.Version versions = 3;
317
+ repeated .CMsgSerializedSOCache.TypeCache type_caches = 4;
318
+ }
319
+
320
+ optional uint32 file_version = 1;
321
+ repeated .CMsgSerializedSOCache.Cache caches = 2;
322
+ optional uint32 gc_socache_file_version = 3;
323
+ }