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,360 @@
1
+ import "steammessages_unified_base.steamworkssdk.proto";
2
+
3
+ enum ESteamLearnDataType {
4
+ STEAMLEARN_DATATYPE_INVALID = 0;
5
+ STEAMLEARN_DATATYPE_INT32 = 1;
6
+ STEAMLEARN_DATATYPE_FLOAT32 = 2;
7
+ STEAMLEARN_DATATYPE_BOOL = 3;
8
+ STEAMLEARN_DATATYPE_STRING = 4;
9
+ STEAMLEARN_DATATYPE_OBJECT = 5;
10
+ }
11
+
12
+ enum ESteammLearnRegisterDataSourceResult {
13
+ STEAMLEARN_REGISTER_DATA_SOURCE_RESULT_ERROR = 0;
14
+ STEAMLEARN_REGISTER_DATA_SOURCE_RESULT_SUCCESS_CREATED = 1;
15
+ STEAMLEARN_REGISTER_DATA_SOURCE_RESULT_SUCCESS_FOUND = 2;
16
+ STEAMLEARN_REGISTER_DATA_SOURCE_RESULT_ERROR_GENERIC = 3;
17
+ STEAMLEARN_REGISTER_DATA_SOURCE_RESULT_ERROR_INVALID_NAME = 4;
18
+ STEAMLEARN_REGISTER_DATA_SOURCE_RESULT_ERROR_INVALID_VERSION = 5;
19
+ STEAMLEARN_REGISTER_DATA_SOURCE_RESULT_ERROR_DATA_CHANGED = 6;
20
+ STEAMLEARN_REGISTER_DATA_SOURCE_RESULT_ERROR_DATA_INVALID = 7;
21
+ STEAMLEARN_REGISTER_DATA_SOURCE_RESULT_ERROR_FORBIDDEN = 8;
22
+ STEAMLEARN_REGISTER_DATA_SOURCE_RESULT_ERROR_INVALID_TIMESTAMP = 9;
23
+ STEAMLEARN_REGISTER_DATA_SOURCE_RESULT_DISABLED = 10;
24
+ }
25
+
26
+ enum ESteamLearnCacheDataResult {
27
+ STEAMLEARN_CACHE_DATA_ERROR = 0;
28
+ STEAMLEARN_CACHE_DATA_SUCCESS = 1;
29
+ STEAMLEARN_CACHE_DATA_ERROR_UNKNOWN_DATA_SOURCE = 2;
30
+ STEAMLEARN_CACHE_DATA_ERROR_UNCACHED_DATA_SOURCE = 3;
31
+ STEAMLEARN_CACHE_DATA_ERROR_INVALID_KEYS = 4;
32
+ STEAMLEARN_CACHE_DATA_ERROR_FORBIDDEN = 5;
33
+ STEAMLEARN_CACHE_DATA_ERROR_INVALID_TIMESTAMP = 6;
34
+ STEAMLEARN_CACHE_DATA_DISABLED = 7;
35
+ }
36
+
37
+ enum ESteamLearnSnapshotProjectResult {
38
+ STEAMLEARN_SNAPSHOT_PROJECT_ERROR = 0;
39
+ STEAMLEARN_SNAPSHOT_PROJECT_SUCCESS_STORED = 1;
40
+ STEAMLEARN_SNAPSHOT_PROJECT_SUCCESS_QUEUED = 2;
41
+ STEAMLEARN_SNAPSHOT_PROJECT_ERROR_INVALID_PROJECT_ID = 3;
42
+ STEAMLEARN_SNAPSHOT_PROJECT_ERROR_UNKNOWN_DATA_SOURCE = 4;
43
+ STEAMLEARN_SNAPSHOT_PROJECT_ERROR_INVALID_DATA_SOURCE_KEY = 5;
44
+ STEAMLEARN_SNAPSHOT_PROJECT_ERROR_MISSING_CACHE_DURATION = 6;
45
+ STEAMLEARN_SNAPSHOT_PROJECT_ERROR_NO_PUBLISHED_CONFIG = 7;
46
+ STEAMLEARN_SNAPSHOT_PROJECT_ERROR_FORBIDDEN = 8;
47
+ STEAMLEARN_SNAPSHOT_PROJECT_ERROR_INVALID_TIMESTAMP = 9;
48
+ STEAMLEARN_SNAPSHOT_PROJECT_ERROR_INTERNAL_DATA_SOURCE_ERROR = 10;
49
+ STEAMLEARN_SNAPSHOT_PROJECT_DISABLED = 11;
50
+ STEAMLEARN_SNAPSHOT_PROJECT_ERROR_INVALID_PUBLISHED_VERSION = 12;
51
+ }
52
+
53
+ enum ESteamLearnGetHMACKeysResult {
54
+ STEAMLEARN_GET_HMAC_KEYS_SUCCESS = 0;
55
+ }
56
+
57
+ enum ESteamLearnInferenceResult {
58
+ STEAMLEARN_INFERENCE_ERROR = 0;
59
+ STEAMLEARN_INFERENCE_SUCCESS = 1;
60
+ STEAMLEARN_INFERENCE_ERROR_INVALID_PROJECT_ID = 2;
61
+ STEAMLEARN_INFERENCE_ERROR_MISSING_CACHED_SCHEMA_DATA = 3;
62
+ STEAMLEARN_INFERENCE_ERROR_NO_PUBLISHED_CONFIG = 4;
63
+ STEAMLEARN_INFERENCE_ERROR_FORBIDDEN = 5;
64
+ STEAMLEARN_INFERENCE_ERROR_INVALID_TIMESTAMP = 6;
65
+ STEAMLEARN_INFERENCE_ERROR_INVALID_PUBLISHED_VERSION = 7;
66
+ STEAMLEARN_INFERENCE_ERROR_NO_FETCH_ID_FOUND = 8;
67
+ STEAMLEARN_INFERENCE_ERROR_TOO_BUSY = 9;
68
+ }
69
+
70
+ enum ESteamLearnInferenceMetadataResult {
71
+ STEAMLEARN_INFERENCE_METADATA_ERROR = 0;
72
+ STEAMLEARN_INFERENCE_METADATA_SUCCESS = 1;
73
+ STEAMLEARN_INFERENCE_METADATA_ERROR_INVALID_PROJECT_ID = 2;
74
+ STEAMLEARN_INFERENCE_METADATA_ERROR_NO_PUBLISHED_CONFIG = 3;
75
+ STEAMLEARN_INFERENCE_METADATA_ERROR_FORBIDDEN = 4;
76
+ STEAMLEARN_INFERENCE_METADATA_ERROR_INVALID_TIMESTAMP = 5;
77
+ STEAMLEARN_INFERENCE_METADATA_ERROR_INVALID_PUBLISHED_VERSION = 6;
78
+ STEAMLEARN_INFERENCE_METADATA_ERROR_NO_FETCH_ID_FOUND = 7;
79
+ }
80
+
81
+ message CMsgSteamLearnDataSourceDescObject {
82
+ repeated .CMsgSteamLearnDataSourceDescElement elements = 1;
83
+ }
84
+
85
+ message CMsgSteamLearnDataSourceDescElement {
86
+ optional string name = 1;
87
+ optional .ESteamLearnDataType data_type = 2 [default = STEAMLEARN_DATATYPE_INVALID];
88
+ optional .CMsgSteamLearnDataSourceDescObject object = 3;
89
+ optional uint32 count = 4;
90
+ }
91
+
92
+ message CMsgSteamLearnDataSource {
93
+ optional uint32 id = 1;
94
+ optional string name = 2;
95
+ optional uint32 version = 3;
96
+ optional string source_description = 4;
97
+ optional .CMsgSteamLearnDataSourceDescObject structure = 5;
98
+ optional uint32 structure_crc = 6;
99
+ optional uint32 cache_duration_seconds = 7;
100
+ }
101
+
102
+ message CMsgSteamLearnDataObject {
103
+ repeated .CMsgSteamLearnDataElement elements = 1;
104
+ }
105
+
106
+ message CMsgSteamLearnDataElement {
107
+ optional string name = 1;
108
+ repeated int32 data_int32s = 20;
109
+ repeated float data_floats = 21;
110
+ repeated bool data_bools = 22;
111
+ repeated string data_strings = 23;
112
+ repeated .CMsgSteamLearnDataObject data_objects = 24;
113
+ }
114
+
115
+ message CMsgSteamLearnData {
116
+ optional uint32 data_source_id = 1;
117
+ repeated uint64 keys = 2;
118
+ optional .CMsgSteamLearnDataObject data_object = 3;
119
+ }
120
+
121
+ message CMsgSteamLearnDataList {
122
+ repeated .CMsgSteamLearnData data = 1;
123
+ }
124
+
125
+ message CMsgSteamLearn_AccessData {
126
+ optional uint32 publisher_id = 1;
127
+ optional uint32 timestamp = 2;
128
+ optional uint64 random_value = 3;
129
+ }
130
+
131
+ message CMsgSteamLearn_RegisterDataSource_Request {
132
+ optional string access_token = 1;
133
+ optional .CMsgSteamLearn_AccessData access_data = 2;
134
+ optional .CMsgSteamLearnDataSource data_source = 3;
135
+ }
136
+
137
+ message CMsgSteamLearn_RegisterDataSource_Response {
138
+ optional .ESteammLearnRegisterDataSourceResult result = 1 [default = STEAMLEARN_REGISTER_DATA_SOURCE_RESULT_ERROR];
139
+ optional .CMsgSteamLearnDataSource data_source = 2;
140
+ }
141
+
142
+ message CMsgSteamLearn_CacheData_Request {
143
+ optional string access_token = 1;
144
+ optional .CMsgSteamLearn_AccessData access_data = 2;
145
+ optional .CMsgSteamLearnData data = 3;
146
+ }
147
+
148
+ message CMsgSteamLearn_CacheData_Response {
149
+ optional .ESteamLearnCacheDataResult cache_data_result = 1 [default = STEAMLEARN_CACHE_DATA_ERROR];
150
+ }
151
+
152
+ message CMsgSteamLearn_SnapshotProject_Request {
153
+ optional string access_token = 1;
154
+ optional .CMsgSteamLearn_AccessData access_data = 2;
155
+ optional uint32 project_id = 3;
156
+ optional uint32 published_version = 7;
157
+ repeated uint64 keys = 4;
158
+ repeated .CMsgSteamLearnData data = 5;
159
+ optional uint32 pending_data_limit_seconds = 6;
160
+ }
161
+
162
+ message CMsgSteamLearn_SnapshotProject_Response {
163
+ optional .ESteamLearnSnapshotProjectResult snapshot_result = 1 [default = STEAMLEARN_SNAPSHOT_PROJECT_ERROR];
164
+ }
165
+
166
+ message CMsgSteamLearn_BatchOperation_Request {
167
+ repeated .CMsgSteamLearn_CacheData_Request cache_data_requests = 1;
168
+ repeated .CMsgSteamLearn_SnapshotProject_Request snapshot_requests = 2;
169
+ repeated .CMsgSteamLearn_Inference_Request inference_requests = 3;
170
+ }
171
+
172
+ message CMsgSteamLearn_BatchOperation_Response {
173
+ repeated .CMsgSteamLearn_CacheData_Response cache_data_responses = 1;
174
+ repeated .CMsgSteamLearn_SnapshotProject_Response snapshot_responses = 2;
175
+ repeated .CMsgSteamLearn_Inference_Response inference_responses = 3;
176
+ }
177
+
178
+ message CMsgSteamLearnHMACKeys {
179
+ message CacheDataKeys {
180
+ optional uint32 data_source_id = 1;
181
+ optional uint32 version = 3;
182
+ optional string key = 2;
183
+ }
184
+
185
+ message SnapshotProjectKeys {
186
+ optional uint32 project_id = 1;
187
+ optional uint32 published_version = 3;
188
+ optional string key = 2;
189
+ }
190
+
191
+ optional string register_data_source_key = 1;
192
+ repeated .CMsgSteamLearnHMACKeys.CacheDataKeys cache_data_keys = 2;
193
+ repeated .CMsgSteamLearnHMACKeys.SnapshotProjectKeys snapshot_project_keys = 3;
194
+ }
195
+
196
+ message CMsgSteamLearn_GetHMACKeys_Request {
197
+ optional uint32 appid = 1;
198
+ }
199
+
200
+ message CMsgSteamLearn_GetHMACKeys_Response {
201
+ optional .ESteamLearnGetHMACKeysResult result = 1 [default = STEAMLEARN_GET_HMAC_KEYS_SUCCESS];
202
+ optional .CMsgSteamLearnHMACKeys keys = 2;
203
+ }
204
+
205
+ message CMsgSteamLearn_Inference_Request {
206
+ optional string access_token = 1;
207
+ optional .CMsgSteamLearn_AccessData access_data = 2;
208
+ optional uint32 project_id = 3;
209
+ optional uint32 published_version = 4;
210
+ optional uint32 override_train_id = 5;
211
+ optional .CMsgSteamLearnDataList data = 6;
212
+ repeated float additional_data = 7;
213
+ }
214
+
215
+ message CMsgSteamLearn_InferenceMetadata_Request {
216
+ optional string access_token = 1;
217
+ optional .CMsgSteamLearn_AccessData access_data = 2;
218
+ optional uint32 project_id = 3;
219
+ optional uint32 published_version = 4;
220
+ optional uint32 override_train_id = 5;
221
+ }
222
+
223
+ message CMsgSteamLearn_InferenceMetadataBackend_Request {
224
+ optional uint32 project_id = 1;
225
+ optional uint32 fetch_id = 2;
226
+ }
227
+
228
+ message CMsgSteamLearn_InferenceMetadata_Response {
229
+ message RowRange {
230
+ optional uint64 min_row = 1;
231
+ optional uint64 max_row = 2;
232
+ }
233
+
234
+ message Range {
235
+ optional string data_element_path = 1;
236
+ optional float min_value = 2;
237
+ optional float max_value = 3;
238
+ }
239
+
240
+ message StdDev {
241
+ optional string data_element_path = 1;
242
+ optional float mean = 2;
243
+ optional float std_dev = 3;
244
+ }
245
+
246
+ message CompactTable {
247
+ message Entry {
248
+ optional uint32 value = 1;
249
+ optional uint32 mapping = 2;
250
+ optional uint64 count = 3;
251
+ }
252
+
253
+ message MapValuesEntry {
254
+ optional uint32 key = 1;
255
+ optional .CMsgSteamLearn_InferenceMetadata_Response.CompactTable.Entry value = 2;
256
+ }
257
+
258
+ message MapMappingsEntry {
259
+ optional uint32 key = 1;
260
+ optional .CMsgSteamLearn_InferenceMetadata_Response.CompactTable.Entry value = 2;
261
+ }
262
+
263
+ optional string name = 1;
264
+ repeated .CMsgSteamLearn_InferenceMetadata_Response.CompactTable.MapValuesEntry map_values = 2;
265
+ repeated .CMsgSteamLearn_InferenceMetadata_Response.CompactTable.MapMappingsEntry map_mappings = 3;
266
+ }
267
+
268
+ message KMeans {
269
+ message Cluster {
270
+ optional float x = 1;
271
+ optional float y = 2;
272
+ optional float radius = 3;
273
+ optional float radius_75pct = 4;
274
+ optional float radius_50pct = 5;
275
+ optional float radius_25pct = 6;
276
+ }
277
+
278
+ optional string name = 1;
279
+ repeated .CMsgSteamLearn_InferenceMetadata_Response.KMeans.Cluster clusters = 2;
280
+ }
281
+
282
+ message SnapshotHistogram {
283
+ optional float min_value = 1;
284
+ optional float max_value = 2;
285
+ optional uint32 num_buckets = 3;
286
+ repeated uint32 bucket_counts = 4;
287
+ }
288
+
289
+ optional .ESteamLearnInferenceMetadataResult inference_metadata_result = 1 [default = STEAMLEARN_INFERENCE_METADATA_ERROR];
290
+ optional .CMsgSteamLearn_InferenceMetadata_Response.RowRange row_range = 2;
291
+ repeated .CMsgSteamLearn_InferenceMetadata_Response.Range ranges = 3;
292
+ repeated .CMsgSteamLearn_InferenceMetadata_Response.StdDev std_devs = 4;
293
+ repeated .CMsgSteamLearn_InferenceMetadata_Response.CompactTable compact_tables = 5;
294
+ repeated .CMsgSteamLearn_InferenceMetadata_Response.KMeans kmeans = 6;
295
+ optional .CMsgSteamLearn_InferenceMetadata_Response.SnapshotHistogram snapshot_histogram = 7;
296
+ }
297
+
298
+ message CMsgSteamLearn_InferenceBackend_Response {
299
+ message BinaryCrossEntropyOutput {
300
+ optional float value = 1;
301
+ }
302
+
303
+ message MutliBinaryCrossEntropyOutput {
304
+ repeated float weight = 1;
305
+ repeated float value = 2;
306
+ }
307
+
308
+ message CategoricalCrossEntropyOutput {
309
+ repeated float weight = 1;
310
+ repeated float value = 2;
311
+ }
312
+
313
+ message Output {
314
+ oneof ResponseType {
315
+ .CMsgSteamLearn_InferenceBackend_Response.BinaryCrossEntropyOutput binary_crossentropy = 1;
316
+ .CMsgSteamLearn_InferenceBackend_Response.CategoricalCrossEntropyOutput categorical_crossentropy = 2;
317
+ .CMsgSteamLearn_InferenceBackend_Response.MutliBinaryCrossEntropyOutput multi_binary_crossentropy = 3;
318
+ }
319
+ }
320
+
321
+ repeated .CMsgSteamLearn_InferenceBackend_Response.Output outputs = 1;
322
+ }
323
+
324
+ message CMsgSteamLearn_Inference_Response {
325
+ optional .ESteamLearnInferenceResult inference_result = 1 [default = STEAMLEARN_INFERENCE_ERROR];
326
+ optional .CMsgSteamLearn_InferenceBackend_Response backend_response = 2;
327
+ repeated uint64 keys = 3;
328
+ }
329
+
330
+ service SteamLearn {
331
+ option (service_description) = "Service for submitting data, training, and inferencing with SteamLearn.";
332
+
333
+ rpc RegisterDataSource (.CMsgSteamLearn_RegisterDataSource_Request) returns (.CMsgSteamLearn_RegisterDataSource_Response) {
334
+ option (method_description) = "Registers a data desc (or finds a data desc if it's already registered).";
335
+ }
336
+
337
+ rpc CacheData (.CMsgSteamLearn_CacheData_Request) returns (.CMsgSteamLearn_CacheData_Response) {
338
+ option (method_description) = "Updates a cached data entry.";
339
+ }
340
+
341
+ rpc SnapshotProject (.CMsgSteamLearn_SnapshotProject_Request) returns (.CMsgSteamLearn_SnapshotProject_Response) {
342
+ option (method_description) = "Snapshots the current data for a project.";
343
+ }
344
+
345
+ rpc BatchOperation (.CMsgSteamLearn_BatchOperation_Request) returns (.CMsgSteamLearn_BatchOperation_Response) {
346
+ option (method_description) = "Batches multiple data updates, snapshots, and inference requests into a single call";
347
+ }
348
+
349
+ rpc GetHMACKeys (.CMsgSteamLearn_GetHMACKeys_Request) returns (.CMsgSteamLearn_GetHMACKeys_Response) {
350
+ option (method_description) = "Gets the HMAC keys needed for registering data sources, submitting data to them, and snapshotting projects";
351
+ }
352
+
353
+ rpc Inference (.CMsgSteamLearn_Inference_Request) returns (.CMsgSteamLearn_Inference_Response) {
354
+ option (method_description) = "Inferences using supplied data, or data associated with the specified key.";
355
+ }
356
+
357
+ rpc InferenceMetadata (.CMsgSteamLearn_InferenceMetadata_Request) returns (.CMsgSteamLearn_InferenceMetadata_Response) {
358
+ option (method_description) = "Requests the metadata that was generated from a specified fetch.";
359
+ }
360
+ }
@@ -0,0 +1,30 @@
1
+ import "google/protobuf/descriptor.proto";
2
+
3
+ option optimize_for = SPEED;
4
+ option cc_generic_services = false;
5
+
6
+ extend .google.protobuf.FieldOptions {
7
+ optional string description = 50000;
8
+ }
9
+
10
+ extend .google.protobuf.ServiceOptions {
11
+ optional string service_description = 50000;
12
+ optional .EProtoExecutionSite service_execution_site = 50008 [default = k_EProtoExecutionSiteUnknown];
13
+ }
14
+
15
+ extend .google.protobuf.MethodOptions {
16
+ optional string method_description = 50000;
17
+ }
18
+
19
+ extend .google.protobuf.EnumOptions {
20
+ optional string enum_description = 50000;
21
+ }
22
+
23
+ extend .google.protobuf.EnumValueOptions {
24
+ optional string enum_value_description = 50000;
25
+ }
26
+
27
+ enum EProtoExecutionSite {
28
+ k_EProtoExecutionSiteUnknown = 0;
29
+ k_EProtoExecutionSiteSteamClient = 3;
30
+ }
@@ -0,0 +1,205 @@
1
+ import "steamnetworkingsockets_messages_certs.proto";
2
+
3
+ option optimize_for = SPEED;
4
+ option cc_generic_services = false;
5
+
6
+ enum ESteamNetworkingSocketsCipher {
7
+ k_ESteamNetworkingSocketsCipher_INVALID = 0;
8
+ k_ESteamNetworkingSocketsCipher_NULL = 1;
9
+ k_ESteamNetworkingSocketsCipher_AES_256_GCM = 2;
10
+ }
11
+
12
+ message CMsgSteamDatagramSessionCryptInfo {
13
+ enum EKeyType {
14
+ INVALID = 0;
15
+ CURVE25519 = 1;
16
+ }
17
+
18
+ optional .CMsgSteamDatagramSessionCryptInfo.EKeyType key_type = 1 [default = INVALID];
19
+ optional bytes key_data = 2;
20
+ optional fixed64 nonce = 3;
21
+ optional uint32 protocol_version = 4;
22
+ repeated .ESteamNetworkingSocketsCipher ciphers = 5;
23
+ }
24
+
25
+ message CMsgSteamDatagramSessionCryptInfoSigned {
26
+ optional bytes info = 1;
27
+ optional bytes signature = 2;
28
+ }
29
+
30
+ message CMsgSteamDatagramDiagnostic {
31
+ optional uint32 severity = 1;
32
+ optional string text = 2;
33
+ }
34
+
35
+ message CMsgSteamDatagramLinkInstantaneousStats {
36
+ optional uint32 out_packets_per_sec_x10 = 1;
37
+ optional uint32 out_bytes_per_sec = 2;
38
+ optional uint32 in_packets_per_sec_x10 = 3;
39
+ optional uint32 in_bytes_per_sec = 4;
40
+ optional uint32 ping_ms = 5;
41
+ optional uint32 packets_dropped_pct = 6;
42
+ optional uint32 packets_weird_sequence_pct = 7;
43
+ optional uint32 peak_jitter_usec = 8;
44
+ }
45
+
46
+ message CMsgSteamDatagramLinkLifetimeStats {
47
+ optional uint32 connected_seconds = 2;
48
+ optional uint64 packets_sent = 3;
49
+ optional uint64 kb_sent = 4;
50
+ optional uint64 packets_recv = 5;
51
+ optional uint64 kb_recv = 6;
52
+ optional uint64 packets_recv_sequenced = 7;
53
+ optional uint64 packets_recv_dropped = 8;
54
+ optional uint64 packets_recv_out_of_order = 9;
55
+ optional uint64 packets_recv_out_of_order_corrected = 15;
56
+ optional uint64 packets_recv_duplicate = 10;
57
+ optional uint64 packets_recv_lurch = 11;
58
+ repeated uint64 multipath_packets_recv_sequenced = 12;
59
+ repeated uint64 multipath_packets_recv_later = 13;
60
+ optional uint32 multipath_send_enabled = 14;
61
+ optional uint32 quality_histogram_100 = 21;
62
+ optional uint32 quality_histogram_99 = 22;
63
+ optional uint32 quality_histogram_97 = 23;
64
+ optional uint32 quality_histogram_95 = 24;
65
+ optional uint32 quality_histogram_90 = 25;
66
+ optional uint32 quality_histogram_75 = 26;
67
+ optional uint32 quality_histogram_50 = 27;
68
+ optional uint32 quality_histogram_1 = 28;
69
+ optional uint32 quality_histogram_dead = 29;
70
+ optional uint32 quality_ntile_2nd = 30;
71
+ optional uint32 quality_ntile_5th = 31;
72
+ optional uint32 quality_ntile_25th = 32;
73
+ optional uint32 quality_ntile_50th = 33;
74
+ optional uint32 ping_histogram_25 = 41;
75
+ optional uint32 ping_histogram_50 = 42;
76
+ optional uint32 ping_histogram_75 = 43;
77
+ optional uint32 ping_histogram_100 = 44;
78
+ optional uint32 ping_histogram_125 = 45;
79
+ optional uint32 ping_histogram_150 = 46;
80
+ optional uint32 ping_histogram_200 = 47;
81
+ optional uint32 ping_histogram_300 = 48;
82
+ optional uint32 ping_histogram_max = 49;
83
+ optional uint32 ping_ntile_5th = 50;
84
+ optional uint32 ping_ntile_50th = 51;
85
+ optional uint32 ping_ntile_75th = 52;
86
+ optional uint32 ping_ntile_95th = 53;
87
+ optional uint32 ping_ntile_98th = 54;
88
+ optional uint32 jitter_histogram_negligible = 61;
89
+ optional uint32 jitter_histogram_1 = 62;
90
+ optional uint32 jitter_histogram_2 = 63;
91
+ optional uint32 jitter_histogram_5 = 64;
92
+ optional uint32 jitter_histogram_10 = 65;
93
+ optional uint32 jitter_histogram_20 = 66;
94
+ optional uint32 txspeed_max = 67;
95
+ optional uint32 txspeed_histogram_16 = 68;
96
+ optional uint32 txspeed_histogram_32 = 69;
97
+ optional uint32 txspeed_histogram_64 = 70;
98
+ optional uint32 txspeed_histogram_128 = 71;
99
+ optional uint32 txspeed_histogram_256 = 72;
100
+ optional uint32 txspeed_histogram_512 = 73;
101
+ optional uint32 txspeed_histogram_1024 = 74;
102
+ optional uint32 txspeed_histogram_max = 75;
103
+ optional uint32 txspeed_ntile_5th = 76;
104
+ optional uint32 txspeed_ntile_50th = 77;
105
+ optional uint32 txspeed_ntile_75th = 78;
106
+ optional uint32 txspeed_ntile_95th = 79;
107
+ optional uint32 txspeed_ntile_98th = 80;
108
+ optional uint32 rxspeed_max = 81;
109
+ optional uint32 rxspeed_histogram_16 = 82;
110
+ optional uint32 rxspeed_histogram_32 = 83;
111
+ optional uint32 rxspeed_histogram_64 = 84;
112
+ optional uint32 rxspeed_histogram_128 = 85;
113
+ optional uint32 rxspeed_histogram_256 = 86;
114
+ optional uint32 rxspeed_histogram_512 = 87;
115
+ optional uint32 rxspeed_histogram_1024 = 88;
116
+ optional uint32 rxspeed_histogram_max = 89;
117
+ optional uint32 rxspeed_ntile_5th = 90;
118
+ optional uint32 rxspeed_ntile_50th = 91;
119
+ optional uint32 rxspeed_ntile_75th = 92;
120
+ optional uint32 rxspeed_ntile_95th = 93;
121
+ optional uint32 rxspeed_ntile_98th = 94;
122
+ }
123
+
124
+ message CMsgSteamDatagramConnectionQuality {
125
+ optional .CMsgSteamDatagramLinkInstantaneousStats instantaneous = 1;
126
+ optional .CMsgSteamDatagramLinkLifetimeStats lifetime = 2;
127
+ }
128
+
129
+ message CMsgICECandidate {
130
+ optional string candidate = 3;
131
+ }
132
+
133
+ message CMsgICERendezvous {
134
+ message Auth {
135
+ optional string pwd_frag = 1;
136
+ }
137
+
138
+ optional .CMsgICERendezvous.Auth auth = 2;
139
+ optional .CMsgICECandidate add_candidate = 1;
140
+ }
141
+
142
+ message CMsgSteamNetworkingP2PRendezvous {
143
+ message ConnectRequest {
144
+ optional .CMsgSteamDatagramSessionCryptInfoSigned crypt = 6;
145
+ optional .CMsgSteamDatagramCertificateSigned cert = 7;
146
+ optional uint32 to_virtual_port = 9;
147
+ optional uint32 from_virtual_port = 10;
148
+ optional string from_fakeip = 11;
149
+ }
150
+
151
+ message ConnectOK {
152
+ optional .CMsgSteamDatagramSessionCryptInfoSigned crypt = 5;
153
+ optional .CMsgSteamDatagramCertificateSigned cert = 6;
154
+ }
155
+
156
+ message ConnectionClosed {
157
+ optional string debug = 5;
158
+ optional uint32 reason_code = 6;
159
+ }
160
+
161
+ message ReliableMessage {
162
+ optional .CMsgICERendezvous ice = 1;
163
+ }
164
+
165
+ message ApplicationMessage {
166
+ optional bytes data = 1;
167
+ optional uint64 msg_num = 2;
168
+ optional uint32 flags = 3;
169
+ optional uint32 lane_idx = 4;
170
+ }
171
+
172
+ optional string from_identity = 8;
173
+ optional fixed32 from_connection_id = 9;
174
+ optional string to_identity = 10;
175
+ optional fixed32 to_connection_id = 1;
176
+ optional bytes sdr_routes = 2;
177
+ optional uint32 ack_peer_routes_revision = 3;
178
+ optional bool ice_enabled = 7;
179
+ optional bytes hosted_server_ticket = 14;
180
+ optional .CMsgSteamNetworkingP2PRendezvous.ConnectRequest connect_request = 4;
181
+ optional .CMsgSteamNetworkingP2PRendezvous.ConnectOK connect_ok = 5;
182
+ optional .CMsgSteamNetworkingP2PRendezvous.ConnectionClosed connection_closed = 6;
183
+ optional uint32 ack_reliable_msg = 11;
184
+ optional uint32 first_reliable_msg = 12;
185
+ repeated .CMsgSteamNetworkingP2PRendezvous.ReliableMessage reliable_messages = 13;
186
+ repeated .CMsgSteamNetworkingP2PRendezvous.ApplicationMessage application_messages = 15;
187
+ }
188
+
189
+ message CMsgSteamNetworkingICESessionSummary {
190
+ optional uint32 failure_reason_code = 7;
191
+ optional uint32 local_candidate_types = 1;
192
+ optional uint32 remote_candidate_types = 2;
193
+ optional uint32 initial_route_kind = 3;
194
+ optional uint32 initial_ping = 4;
195
+ optional uint32 initial_score = 6;
196
+ optional uint32 negotiation_ms = 5;
197
+ optional uint32 best_route_kind = 16;
198
+ optional uint32 best_ping = 17;
199
+ optional uint32 best_score = 18;
200
+ optional uint32 best_time = 19;
201
+ optional uint32 selected_seconds = 12;
202
+ optional uint32 user_settings = 13;
203
+ optional uint32 ice_enable_var = 14;
204
+ optional uint32 local_candidate_types_allowed = 15;
205
+ }
@@ -0,0 +1,39 @@
1
+ option optimize_for = SPEED;
2
+ option cc_generic_services = false;
3
+
4
+ message CMsgSteamNetworkingIdentityLegacyBinary {
5
+ optional fixed64 steam_id = 16;
6
+ optional string xbox_pairwise_id = 17;
7
+ optional bytes generic_bytes = 2;
8
+ optional string generic_string = 3;
9
+ optional bytes ipv6_and_port = 4;
10
+ }
11
+
12
+ message CMsgSteamDatagramCertificate {
13
+ enum EKeyType {
14
+ INVALID = 0;
15
+ ED25519 = 1;
16
+ }
17
+
18
+ optional .CMsgSteamDatagramCertificate.EKeyType key_type = 1 [default = INVALID];
19
+ optional bytes key_data = 2;
20
+ optional fixed64 legacy_steam_id = 4;
21
+ optional .CMsgSteamNetworkingIdentityLegacyBinary legacy_identity_binary = 11;
22
+ optional string identity_string = 12;
23
+ repeated fixed32 gameserver_datacenter_ids = 5;
24
+ optional fixed32 time_created = 8;
25
+ optional fixed32 time_expiry = 9;
26
+ repeated uint32 app_ids = 10;
27
+ repeated string ip_addresses = 13;
28
+ }
29
+
30
+ message CMsgSteamDatagramCertificateSigned {
31
+ optional bytes cert = 4;
32
+ optional fixed64 ca_key_id = 5;
33
+ optional bytes ca_signature = 6;
34
+ optional bytes private_key_data = 1;
35
+ }
36
+
37
+ message CMsgSteamDatagramCertificateRequest {
38
+ optional .CMsgSteamDatagramCertificate cert = 1;
39
+ }
@@ -0,0 +1,75 @@
1
+ import "steamnetworkingsockets_messages_certs.proto";
2
+ import "steamnetworkingsockets_messages.proto";
3
+
4
+ option optimize_for = SPEED;
5
+ option cc_generic_services = false;
6
+
7
+ enum ESteamNetworkingUDPMsgID {
8
+ k_ESteamNetworkingUDPMsg_ChallengeRequest = 32;
9
+ k_ESteamNetworkingUDPMsg_ChallengeReply = 33;
10
+ k_ESteamNetworkingUDPMsg_ConnectRequest = 34;
11
+ k_ESteamNetworkingUDPMsg_ConnectOK = 35;
12
+ k_ESteamNetworkingUDPMsg_ConnectionClosed = 36;
13
+ k_ESteamNetworkingUDPMsg_NoConnection = 37;
14
+ }
15
+
16
+ message CMsgSteamSockets_UDP_ChallengeRequest {
17
+ optional fixed32 connection_id = 1;
18
+ optional fixed64 my_timestamp = 3;
19
+ optional uint32 protocol_version = 4;
20
+ }
21
+
22
+ message CMsgSteamSockets_UDP_ChallengeReply {
23
+ optional fixed32 connection_id = 1;
24
+ optional fixed64 challenge = 2;
25
+ optional fixed64 your_timestamp = 3;
26
+ optional uint32 protocol_version = 4;
27
+ }
28
+
29
+ message CMsgSteamSockets_UDP_ConnectRequest {
30
+ optional fixed32 client_connection_id = 1;
31
+ optional fixed64 challenge = 2;
32
+ optional fixed64 my_timestamp = 5;
33
+ optional uint32 ping_est_ms = 6;
34
+ optional .CMsgSteamDatagramSessionCryptInfoSigned crypt = 7;
35
+ optional .CMsgSteamDatagramCertificateSigned cert = 4;
36
+ optional uint32 legacy_protocol_version = 8;
37
+ optional string identity_string = 10;
38
+ optional fixed64 legacy_client_steam_id = 3;
39
+ optional .CMsgSteamNetworkingIdentityLegacyBinary legacy_identity_binary = 9;
40
+ }
41
+
42
+ message CMsgSteamSockets_UDP_ConnectOK {
43
+ optional fixed32 client_connection_id = 1;
44
+ optional fixed32 server_connection_id = 5;
45
+ optional fixed64 your_timestamp = 3;
46
+ optional uint32 delay_time_usec = 4;
47
+ optional .CMsgSteamDatagramSessionCryptInfoSigned crypt = 7;
48
+ optional .CMsgSteamDatagramCertificateSigned cert = 8;
49
+ optional string identity_string = 11;
50
+ optional fixed64 legacy_server_steam_id = 2;
51
+ optional .CMsgSteamNetworkingIdentityLegacyBinary legacy_identity_binary = 10;
52
+ }
53
+
54
+ message CMsgSteamSockets_UDP_ConnectionClosed {
55
+ optional fixed32 to_connection_id = 4;
56
+ optional fixed32 from_connection_id = 5;
57
+ optional string debug = 2;
58
+ optional uint32 reason_code = 3;
59
+ }
60
+
61
+ message CMsgSteamSockets_UDP_NoConnection {
62
+ optional fixed32 from_connection_id = 2;
63
+ optional fixed32 to_connection_id = 3;
64
+ }
65
+
66
+ message CMsgSteamSockets_UDP_Stats {
67
+ enum Flags {
68
+ ACK_REQUEST_E2E = 2;
69
+ ACK_REQUEST_IMMEDIATE = 4;
70
+ NOT_PRIMARY_TRANSPORT_E2E = 16;
71
+ }
72
+
73
+ optional .CMsgSteamDatagramConnectionQuality stats = 1;
74
+ optional uint32 flags = 3;
75
+ }