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.
- package/.github/workflows/npm-publish-github-packages.yml +36 -0
- package/README.md +25 -0
- package/config.json +6 -0
- package/helpers/Coordinator.js +157 -0
- package/helpers/Helper.js +171 -0
- package/helpers/Lobby.js +396 -0
- package/helpers/Protos.js +47 -0
- package/helpers/VDF.js +140 -0
- package/index.js +137 -0
- package/package.json +25 -0
- package/protobufs/.gitattributes +1 -0
- package/protobufs/LICENSE +24 -0
- package/protobufs/README.md +7 -0
- package/protobufs/artifact/base_gcmessages.proto +532 -0
- package/protobufs/artifact/c_peer2peer_netmessages.proto +57 -0
- package/protobufs/artifact/clientmessages.proto +51 -0
- package/protobufs/artifact/connectionless_netmessages.proto +21 -0
- package/protobufs/artifact/dcg_gamemessages.proto +638 -0
- package/protobufs/artifact/dcg_gcmessages_client.proto +1590 -0
- package/protobufs/artifact/dcg_gcmessages_common.proto +617 -0
- package/protobufs/artifact/dcg_gcmessages_server.proto +395 -0
- package/protobufs/artifact/demo.proto +149 -0
- package/protobufs/artifact/econ_gcmessages.proto +1033 -0
- package/protobufs/artifact/econ_shared_enums.proto +47 -0
- package/protobufs/artifact/gameevents.proto +121 -0
- package/protobufs/artifact/gametoolevents.proto +78 -0
- package/protobufs/artifact/gcsdk_gcmessages.proto +391 -0
- package/protobufs/artifact/gcsystemmsgs.proto +28 -0
- package/protobufs/artifact/netmessages.proto +551 -0
- package/protobufs/artifact/network_connection.proto +117 -0
- package/protobufs/artifact/networkbasetypes.proto +206 -0
- package/protobufs/artifact/networksystem_protomessages.proto +19 -0
- package/protobufs/artifact/steamdatagram_messages_auth.proto +38 -0
- package/protobufs/artifact/steamdatagram_messages_sdr.proto +441 -0
- package/protobufs/artifact/steammessages.proto +636 -0
- package/protobufs/artifact/steammessages_base.proto +83 -0
- package/protobufs/artifact/steammessages_cloud.steamworkssdk.proto +68 -0
- package/protobufs/artifact/steammessages_oauth.steamworkssdk.proto +18 -0
- package/protobufs/artifact/steammessages_publishedfile.steamworkssdk.proto +233 -0
- package/protobufs/artifact/steammessages_unified_base.steamworkssdk.proto +30 -0
- package/protobufs/artifact/steamnetworkingsockets_messages.proto +113 -0
- package/protobufs/artifact/steamnetworkingsockets_messages_certs.proto +32 -0
- package/protobufs/artifact/steamnetworkingsockets_messages_udp.proto +76 -0
- package/protobufs/artifact/te.proto +257 -0
- package/protobufs/artifact/uifontfile_format.proto +16 -0
- package/protobufs/artifact/usermessages.proto +473 -0
- package/protobufs/csgo/base_gcmessages_csgo.proto +547 -0
- package/protobufs/csgo/c_peer2peer_netmessages.proto +55 -0
- package/protobufs/csgo/clientmessages.proto +48 -0
- package/protobufs/csgo/connectionless_netmessages.proto +17 -0
- package/protobufs/csgo/cs_gameevents.proto +35 -0
- package/protobufs/csgo/cs_usercmd.proto +54 -0
- package/protobufs/csgo/cstrike15_gcmessages.proto +1415 -0
- package/protobufs/csgo/cstrike15_usermessages.proto +596 -0
- package/protobufs/csgo/demo.proto +160 -0
- package/protobufs/csgo/econ_gcmessages.proto +228 -0
- package/protobufs/csgo/engine_gcmessages.proto +14 -0
- package/protobufs/csgo/enums_clientserver.proto +1529 -0
- package/protobufs/csgo/fatdemo.proto +125 -0
- package/protobufs/csgo/gameevents.proto +120 -0
- package/protobufs/csgo/gcsdk_gcmessages.proto +323 -0
- package/protobufs/csgo/gcsystemmsgs.proto +242 -0
- package/protobufs/csgo/netmessages.proto +607 -0
- package/protobufs/csgo/network_connection.proto +126 -0
- package/protobufs/csgo/networkbasetypes.proto +244 -0
- package/protobufs/csgo/networksystem_protomessages.proto +17 -0
- package/protobufs/csgo/steamdatagram_messages_auth.proto +65 -0
- package/protobufs/csgo/steamdatagram_messages_sdr.proto +534 -0
- package/protobufs/csgo/steammessages.proto +597 -0
- package/protobufs/csgo/steammessages_base.proto +301 -0
- package/protobufs/csgo/steammessages_cloud.steamworkssdk.proto +68 -0
- package/protobufs/csgo/steammessages_gamenetworkingui.proto +61 -0
- package/protobufs/csgo/steammessages_helprequest.steamworkssdk.proto +22 -0
- package/protobufs/csgo/steammessages_oauth.steamworkssdk.proto +18 -0
- package/protobufs/csgo/steammessages_player.steamworkssdk.proto +254 -0
- package/protobufs/csgo/steammessages_publishedfile.steamworkssdk.proto +233 -0
- package/protobufs/csgo/steammessages_unified_base.steamworkssdk.proto +30 -0
- package/protobufs/csgo/steamnetworkingsockets_messages.proto +205 -0
- package/protobufs/csgo/steamnetworkingsockets_messages_certs.proto +39 -0
- package/protobufs/csgo/steamnetworkingsockets_messages_udp.proto +75 -0
- package/protobufs/csgo/te.proto +259 -0
- package/protobufs/csgo/uifontfile_format.proto +13 -0
- package/protobufs/csgo/usercmd.proto +37 -0
- package/protobufs/csgo/usermessages.proto +742 -0
- package/protobufs/csgo/valveextensions.proto +17 -0
- package/protobufs/dota2/base_gcmessages.proto +400 -0
- package/protobufs/dota2/c_peer2peer_netmessages.proto +55 -0
- package/protobufs/dota2/clientmessages.proto +48 -0
- package/protobufs/dota2/connectionless_netmessages.proto +19 -0
- package/protobufs/dota2/demo.proto +160 -0
- package/protobufs/dota2/dota_broadcastmessages.proto +29 -0
- package/protobufs/dota2/dota_client_enums.proto +93 -0
- package/protobufs/dota2/dota_clientmessages.proto +573 -0
- package/protobufs/dota2/dota_commonmessages.proto +146 -0
- package/protobufs/dota2/dota_gcmessages_client.proto +3336 -0
- package/protobufs/dota2/dota_gcmessages_client_battle_report.proto +393 -0
- package/protobufs/dota2/dota_gcmessages_client_bingo.proto +108 -0
- package/protobufs/dota2/dota_gcmessages_client_candy_shop.proto +302 -0
- package/protobufs/dota2/dota_gcmessages_client_chat.proto +239 -0
- package/protobufs/dota2/dota_gcmessages_client_coaching.proto +376 -0
- package/protobufs/dota2/dota_gcmessages_client_fantasy.proto +564 -0
- package/protobufs/dota2/dota_gcmessages_client_guild.proto +651 -0
- package/protobufs/dota2/dota_gcmessages_client_guild_events.proto +231 -0
- package/protobufs/dota2/dota_gcmessages_client_match_management.proto +468 -0
- package/protobufs/dota2/dota_gcmessages_client_showcase.proto +528 -0
- package/protobufs/dota2/dota_gcmessages_client_team.proto +275 -0
- package/protobufs/dota2/dota_gcmessages_client_tournament.proto +173 -0
- package/protobufs/dota2/dota_gcmessages_client_watch.proto +205 -0
- package/protobufs/dota2/dota_gcmessages_common.proto +1667 -0
- package/protobufs/dota2/dota_gcmessages_common_bot_script.proto +294 -0
- package/protobufs/dota2/dota_gcmessages_common_league.proto +351 -0
- package/protobufs/dota2/dota_gcmessages_common_lobby.proto +391 -0
- package/protobufs/dota2/dota_gcmessages_common_match_management.proto +488 -0
- package/protobufs/dota2/dota_gcmessages_msgid.proto +890 -0
- package/protobufs/dota2/dota_gcmessages_server.proto +1495 -0
- package/protobufs/dota2/dota_gcmessages_webapi.proto +376 -0
- package/protobufs/dota2/dota_hud_types.proto +33 -0
- package/protobufs/dota2/dota_match_metadata.proto +346 -0
- package/protobufs/dota2/dota_messages_mlbot.proto +62 -0
- package/protobufs/dota2/dota_modifiers.proto +53 -0
- package/protobufs/dota2/dota_scenariomessages.proto +226 -0
- package/protobufs/dota2/dota_shared_enums.proto +820 -0
- package/protobufs/dota2/dota_usercmd.proto +15 -0
- package/protobufs/dota2/dota_usermessages.proto +1655 -0
- package/protobufs/dota2/econ_gcmessages.proto +997 -0
- package/protobufs/dota2/econ_shared_enums.proto +37 -0
- package/protobufs/dota2/engine_gcmessages.proto +14 -0
- package/protobufs/dota2/enums_clientserver.proto +1547 -0
- package/protobufs/dota2/gameevents.proto +120 -0
- package/protobufs/dota2/gametoolevents.proto +78 -0
- package/protobufs/dota2/gcsdk_gcmessages.proto +488 -0
- package/protobufs/dota2/gcsystemmsgs.proto +26 -0
- package/protobufs/dota2/netmessages.proto +604 -0
- package/protobufs/dota2/network_connection.proto +126 -0
- package/protobufs/dota2/networkbasetypes.proto +244 -0
- package/protobufs/dota2/networksystem_protomessages.proto +17 -0
- package/protobufs/dota2/steamdatagram_messages_auth.proto +65 -0
- package/protobufs/dota2/steamdatagram_messages_sdr.proto +533 -0
- package/protobufs/dota2/steammessages.proto +108 -0
- package/protobufs/dota2/steammessages_base.proto +332 -0
- package/protobufs/dota2/steammessages_clientserver_login.proto +155 -0
- package/protobufs/dota2/steammessages_cloud.steamworkssdk.proto +68 -0
- package/protobufs/dota2/steammessages_gamenetworkingui.proto +42 -0
- package/protobufs/dota2/steammessages_helprequest.steamworkssdk.proto +22 -0
- package/protobufs/dota2/steammessages_int.proto +628 -0
- package/protobufs/dota2/steammessages_oauth.steamworkssdk.proto +18 -0
- package/protobufs/dota2/steammessages_player.steamworkssdk.proto +254 -0
- package/protobufs/dota2/steammessages_publishedfile.steamworkssdk.proto +233 -0
- package/protobufs/dota2/steammessages_steamlearn.steamworkssdk.proto +360 -0
- package/protobufs/dota2/steammessages_unified_base.steamworkssdk.proto +30 -0
- package/protobufs/dota2/steamnetworkingsockets_messages.proto +205 -0
- package/protobufs/dota2/steamnetworkingsockets_messages_certs.proto +39 -0
- package/protobufs/dota2/steamnetworkingsockets_messages_udp.proto +75 -0
- package/protobufs/dota2/te.proto +259 -0
- package/protobufs/dota2/uifontfile_format.proto +13 -0
- package/protobufs/dota2/usercmd.proto +38 -0
- package/protobufs/dota2/usermessages.proto +721 -0
- package/protobufs/dota2/valveextensions.proto +17 -0
- package/protobufs/google/protobuf/descriptor.proto +281 -0
- package/protobufs/steam/clientmetrics.proto +45 -0
- package/protobufs/steam/content_manifest.proto +62 -0
- package/protobufs/steam/contenthubs.proto +41 -0
- package/protobufs/steam/encrypted_app_ticket.proto +10 -0
- package/protobufs/steam/enums.proto +482 -0
- package/protobufs/steam/enums_clientserver.proto +1525 -0
- package/protobufs/steam/enums_productinfo.proto +13 -0
- package/protobufs/steam/htmlmessages.proto +1031 -0
- package/protobufs/steam/offline_ticket.proto +8 -0
- package/protobufs/steam/steamdatagram_messages_auth.proto +65 -0
- package/protobufs/steam/steamdatagram_messages_sdr.proto +534 -0
- package/protobufs/steam/steammessages_accounthardware.steamclient.proto +167 -0
- package/protobufs/steam/steammessages_appoverview.proto +202 -0
- package/protobufs/steam/steammessages_auth.steamclient.proto +375 -0
- package/protobufs/steam/steammessages_base.proto +335 -0
- package/protobufs/steam/steammessages_broadcast.steamclient.proto +619 -0
- package/protobufs/steam/steammessages_chat.steamclient.proto +1070 -0
- package/protobufs/steam/steammessages_client_objects.proto +648 -0
- package/protobufs/steam/steammessages_clientlanp2p.proto +43 -0
- package/protobufs/steam/steammessages_clientmetrics.steamclient.proto +192 -0
- package/protobufs/steam/steammessages_clientnotificationtypes.proto +242 -0
- package/protobufs/steam/steammessages_clientserver.proto +392 -0
- package/protobufs/steam/steammessages_clientserver_2.proto +771 -0
- package/protobufs/steam/steammessages_clientserver_appinfo.proto +131 -0
- package/protobufs/steam/steammessages_clientserver_friends.proto +260 -0
- package/protobufs/steam/steammessages_clientserver_gameservers.proto +159 -0
- package/protobufs/steam/steammessages_clientserver_lbs.proto +70 -0
- package/protobufs/steam/steammessages_clientserver_login.proto +167 -0
- package/protobufs/steam/steammessages_clientserver_mms.proto +228 -0
- package/protobufs/steam/steammessages_clientserver_ucm.proto +206 -0
- package/protobufs/steam/steammessages_clientserver_uds.proto +125 -0
- package/protobufs/steam/steammessages_clientserver_ufs.proto +172 -0
- package/protobufs/steam/steammessages_clientserver_userstats.proto +80 -0
- package/protobufs/steam/steammessages_clientsettings.proto +184 -0
- package/protobufs/steam/steammessages_cloud.steamclient.proto +422 -0
- package/protobufs/steam/steammessages_contentsystem.steamclient.proto +123 -0
- package/protobufs/steam/steammessages_credentials.steamclient.proto +96 -0
- package/protobufs/steam/steammessages_datapublisher.steamclient.proto +102 -0
- package/protobufs/steam/steammessages_depotbuilder.steamclient.proto +99 -0
- package/protobufs/steam/steammessages_deviceauth.steamclient.proto +169 -0
- package/protobufs/steam/steammessages_econ.steamclient.proto +137 -0
- package/protobufs/steam/steammessages_familygroups.steamclient.proto +389 -0
- package/protobufs/steam/steammessages_friendmessages.steamclient.proto +141 -0
- package/protobufs/steam/steammessages_gamenetworking.steamclient.proto +25 -0
- package/protobufs/steam/steammessages_gamenetworkingui.proto +61 -0
- package/protobufs/steam/steammessages_gamenotifications.steamclient.proto +131 -0
- package/protobufs/steam/steammessages_gameservers.steamclient.proto +136 -0
- package/protobufs/steam/steammessages_hiddevices.proto +157 -0
- package/protobufs/steam/steammessages_inventory.steamclient.proto +172 -0
- package/protobufs/steam/steammessages_linkfilter.steamclient.proto +39 -0
- package/protobufs/steam/steammessages_lobbymatchmaking.steamclient.proto +29 -0
- package/protobufs/steam/steammessages_market.steamclient.proto +22 -0
- package/protobufs/steam/steammessages_marketingmessages.steamclient.proto +264 -0
- package/protobufs/steam/steammessages_offline.steamclient.proto +33 -0
- package/protobufs/steam/steammessages_parental.steamclient.proto +260 -0
- package/protobufs/steam/steammessages_parties.steamclient.proto +75 -0
- package/protobufs/steam/steammessages_partnerapps.steamclient.proto +106 -0
- package/protobufs/steam/steammessages_player.steamclient.proto +897 -0
- package/protobufs/steam/steammessages_publishedfile.steamclient.proto +734 -0
- package/protobufs/steam/steammessages_qms.steamclient.proto +111 -0
- package/protobufs/steam/steammessages_remoteclient.proto +99 -0
- package/protobufs/steam/steammessages_remoteclient_discovery.proto +243 -0
- package/protobufs/steam/steammessages_remoteclient_service.steamclient.proto +31 -0
- package/protobufs/steam/steammessages_remoteclient_service_messages.proto +217 -0
- package/protobufs/steam/steammessages_remoteplay.proto +976 -0
- package/protobufs/steam/steammessages_secrets.steamclient.proto +35 -0
- package/protobufs/steam/steammessages_shader.steamclient.proto +89 -0
- package/protobufs/steam/steammessages_site_license.steamclient.proto +103 -0
- package/protobufs/steam/steammessages_sitelicenseclient.proto +38 -0
- package/protobufs/steam/steammessages_siteserverui.proto +130 -0
- package/protobufs/steam/steammessages_star.steamclient.proto +60 -0
- package/protobufs/steam/steammessages_steamtv.steamclient.proto +533 -0
- package/protobufs/steam/steammessages_store.steamclient.proto +404 -0
- package/protobufs/steam/steammessages_storebrowse.steamclient.proto +430 -0
- package/protobufs/steam/steammessages_timedtrial.steamclient.proto +40 -0
- package/protobufs/steam/steammessages_twofactor.steamclient.proto +157 -0
- package/protobufs/steam/steammessages_unified_base.steamclient.proto +33 -0
- package/protobufs/steam/steammessages_unified_test.steamclient.proto +51 -0
- package/protobufs/steam/steammessages_useraccount.steamclient.proto +207 -0
- package/protobufs/steam/steammessages_vac.steamclient.proto +37 -0
- package/protobufs/steam/steammessages_video.steamclient.proto +68 -0
- package/protobufs/steam/steammessages_virtualcontroller.proto +138 -0
- package/protobufs/steam/steammessages_workshop.steamclient.proto +19 -0
- package/protobufs/steam/steamnetworkingsockets_messages.proto +205 -0
- package/protobufs/steam/steamnetworkingsockets_messages_certs.proto +39 -0
- package/protobufs/steam/steamnetworkingsockets_messages_udp.proto +75 -0
- package/protobufs/steam/webuimessages_achievements.proto +29 -0
- package/protobufs/steam/webuimessages_base.proto +24 -0
- package/protobufs/steam/webuimessages_gamenotes.proto +21 -0
- package/protobufs/steam/webuimessages_gamescope.proto +54 -0
- package/protobufs/steam/webuimessages_steamengine.proto +41 -0
- package/protobufs/steam/webuimessages_steamos.proto +114 -0
- package/protobufs/steam/webuimessages_storagedevicemanager.proto +110 -0
- package/protobufs/steam/webuimessages_systemmanager.proto +17 -0
- package/protobufs/steam/webuimessages_transport.proto +18 -0
- package/protobufs/steam/webuimessages_transportvalidation.proto +111 -0
- package/protobufs/tf2/base_gcmessages.proto +561 -0
- package/protobufs/tf2/econ_gcmessages.proto +368 -0
- package/protobufs/tf2/gcsdk_gcmessages.proto +186 -0
- package/protobufs/tf2/gcsystemmsgs.proto +178 -0
- package/protobufs/tf2/steamdatagram_auth_messages.proto +50 -0
- package/protobufs/tf2/steamdatagram_messages.proto +598 -0
- package/protobufs/tf2/steamdatagram_messages_auth.proto +65 -0
- package/protobufs/tf2/steamdatagram_messages_sdr.proto +518 -0
- package/protobufs/tf2/steammessages.proto +577 -0
- package/protobufs/tf2/steammessages_gamenetworkingui.proto +42 -0
- package/protobufs/tf2/steamnetworkingsockets_messages.proto +204 -0
- package/protobufs/tf2/steamnetworkingsockets_messages_certs.proto +38 -0
- package/protobufs/tf2/steamnetworkingsockets_messages_udp.proto +75 -0
- package/protobufs/tf2/tf_gcmessages.proto +1624 -0
- package/protobufs/tf2/tf_proto_def_messages.proto +598 -0
- package/protobufs/underlords/base_gcmessages.proto +532 -0
- package/protobufs/underlords/c_peer2peer_netmessages.proto +57 -0
- package/protobufs/underlords/clientmessages.proto +51 -0
- package/protobufs/underlords/connectionless_netmessages.proto +21 -0
- package/protobufs/underlords/dac_gamemessages.proto +1376 -0
- package/protobufs/underlords/dac_gcmessages_client.proto +1518 -0
- package/protobufs/underlords/dac_gcmessages_common.proto +377 -0
- package/protobufs/underlords/dac_gcmessages_server.proto +417 -0
- package/protobufs/underlords/demo.proto +149 -0
- package/protobufs/underlords/econ_gcmessages.proto +1063 -0
- package/protobufs/underlords/econ_shared_enums.proto +47 -0
- package/protobufs/underlords/enums_clientserver.proto +1538 -0
- package/protobufs/underlords/gameevents.proto +121 -0
- package/protobufs/underlords/gametoolevents.proto +78 -0
- package/protobufs/underlords/gcsdk_gcmessages.proto +448 -0
- package/protobufs/underlords/gcsystemmsgs.proto +29 -0
- package/protobufs/underlords/netmessages.proto +553 -0
- package/protobufs/underlords/network_connection.proto +117 -0
- package/protobufs/underlords/networkbasetypes.proto +219 -0
- package/protobufs/underlords/networksystem_protomessages.proto +19 -0
- package/protobufs/underlords/steamdatagram_messages_auth.proto +64 -0
- package/protobufs/underlords/steamdatagram_messages_sdr.proto +482 -0
- package/protobufs/underlords/steammessages.proto +701 -0
- package/protobufs/underlords/steammessages_base.proto +243 -0
- package/protobufs/underlords/steammessages_clientserver_login.proto +155 -0
- package/protobufs/underlords/steammessages_cloud.steamworkssdk.proto +68 -0
- package/protobufs/underlords/steammessages_helprequest.steamworkssdk.proto +22 -0
- package/protobufs/underlords/steammessages_oauth.steamworkssdk.proto +18 -0
- package/protobufs/underlords/steammessages_player.steamworkssdk.proto +254 -0
- package/protobufs/underlords/steammessages_publishedfile.steamworkssdk.proto +233 -0
- package/protobufs/underlords/steammessages_unified_base.steamworkssdk.proto +30 -0
- package/protobufs/underlords/steamnetworkingsockets_messages.proto +165 -0
- package/protobufs/underlords/steamnetworkingsockets_messages_certs.proto +38 -0
- package/protobufs/underlords/steamnetworkingsockets_messages_udp.proto +74 -0
- package/protobufs/underlords/te.proto +259 -0
- package/protobufs/underlords/uifontfile_format.proto +16 -0
- package/protobufs/underlords/usermessages.proto +511 -0
- package/protobufs/underlords/valveextensions.proto +11 -0
- package/protobufs/update.sh +13 -0
- package/protobufs/webui/common.proto +3998 -0
- package/protobufs/webui/common_base.proto +27 -0
- package/protobufs/webui/service_accountcart.proto +153 -0
- package/protobufs/webui/service_accountlinking.proto +27 -0
- package/protobufs/webui/service_accountprivacy.proto +42 -0
- package/protobufs/webui/service_accountprivateapps.proto +34 -0
- package/protobufs/webui/service_auction.proto +97 -0
- package/protobufs/webui/service_authentication.proto +222 -0
- package/protobufs/webui/service_authenticationsupport.proto +74 -0
- package/protobufs/webui/service_broadcast.proto +562 -0
- package/protobufs/webui/service_chat.proto +11 -0
- package/protobufs/webui/service_chatroom.proto +810 -0
- package/protobufs/webui/service_chatusability.proto +107 -0
- package/protobufs/webui/service_checkout.proto +83 -0
- package/protobufs/webui/service_clan.proto +41 -0
- package/protobufs/webui/service_clanchatrooms.proto +25 -0
- package/protobufs/webui/service_clanfaqs.proto +202 -0
- package/protobufs/webui/service_clientcomm.proto +151 -0
- package/protobufs/webui/service_clientmetrics.proto +22 -0
- package/protobufs/webui/service_cloud.proto +222 -0
- package/protobufs/webui/service_cloudconfigstore.proto +51 -0
- package/protobufs/webui/service_cloudgaming.proto +30 -0
- package/protobufs/webui/service_community.proto +365 -0
- package/protobufs/webui/service_dailydeal.proto +66 -0
- package/protobufs/webui/service_econ.proto +134 -0
- package/protobufs/webui/service_embedded.proto +24 -0
- package/protobufs/webui/service_experimentservice.proto +6 -0
- package/protobufs/webui/service_familygroups.proto +329 -0
- package/protobufs/webui/service_fovasvideo.proto +15 -0
- package/protobufs/webui/service_friendmessages.proto +133 -0
- package/protobufs/webui/service_friendslist.proto +70 -0
- package/protobufs/webui/service_gamenotes.proto +15 -0
- package/protobufs/webui/service_gamerecording.proto +259 -0
- package/protobufs/webui/service_gamerecordingclip.proto +83 -0
- package/protobufs/webui/service_gamerecordingdebug.proto +52 -0
- package/protobufs/webui/service_helprequestlogs.proto +16 -0
- package/protobufs/webui/service_loyaltyrewards.proto +252 -0
- package/protobufs/webui/service_marketingmessages.proto +215 -0
- package/protobufs/webui/service_mobileapp.proto +18 -0
- package/protobufs/webui/service_mobileauth.proto +24 -0
- package/protobufs/webui/service_mobiledevice.proto +26 -0
- package/protobufs/webui/service_mobileperaccount.proto +31 -0
- package/protobufs/webui/service_news.proto +110 -0
- package/protobufs/webui/service_parental.proto +256 -0
- package/protobufs/webui/service_partnermembershipinvite.proto +34 -0
- package/protobufs/webui/service_partnerstorebrowse.proto +28 -0
- package/protobufs/webui/service_phone.proto +51 -0
- package/protobufs/webui/service_physicalgoods.proto +15 -0
- package/protobufs/webui/service_player.proto +917 -0
- package/protobufs/webui/service_promotioneventinvites.proto +109 -0
- package/protobufs/webui/service_promotionplanning.proto +172 -0
- package/protobufs/webui/service_publishedfile.proto +711 -0
- package/protobufs/webui/service_publishing.proto +183 -0
- package/protobufs/webui/service_quest.proto +127 -0
- package/protobufs/webui/service_salefeature.proto +357 -0
- package/protobufs/webui/service_saleitemrewards.proto +54 -0
- package/protobufs/webui/service_shoppingcart.proto +152 -0
- package/protobufs/webui/service_steamawards.proto +76 -0
- package/protobufs/webui/service_steamcharts.proto +75 -0
- package/protobufs/webui/service_steamengine.proto +36 -0
- package/protobufs/webui/service_steamlearn.proto +780 -0
- package/protobufs/webui/service_steamnotification.proto +73 -0
- package/protobufs/webui/service_steamtv.proto +495 -0
- package/protobufs/webui/service_steamvrvoicechat.proto +67 -0
- package/protobufs/webui/service_steamvrwebrtc.proto +48 -0
- package/protobufs/webui/service_storagedevicemanager.proto +104 -0
- package/protobufs/webui/service_store.proto +359 -0
- package/protobufs/webui/service_storeappsimilarity.proto +76 -0
- package/protobufs/webui/service_storebrowse.proto +102 -0
- package/protobufs/webui/service_storemarketing.proto +41 -0
- package/protobufs/webui/service_storequery.proto +103 -0
- package/protobufs/webui/service_storesales.proto +87 -0
- package/protobufs/webui/service_storetopsellers.proto +44 -0
- package/protobufs/webui/service_systemmanager.proto +11 -0
- package/protobufs/webui/service_test_transporterror.proto +6 -0
- package/protobufs/webui/service_transportauth.proto +12 -0
- package/protobufs/webui/service_transportvalidation.proto +69 -0
- package/protobufs/webui/service_twofactor.proto +170 -0
- package/protobufs/webui/service_useraccount.proto +138 -0
- package/protobufs/webui/service_usergameactivity.proto +34 -0
- package/protobufs/webui/service_usergamenotes.proto +70 -0
- package/protobufs/webui/service_usernews.proto +68 -0
- package/protobufs/webui/service_userreviews.proto +96 -0
- package/protobufs/webui/service_video.proto +50 -0
- package/protobufs/webui/service_videoclip.proto +48 -0
- package/protobufs/webui/service_voicechat.proto +139 -0
- package/protobufs/webui/service_webrtc.proto +52 -0
|
@@ -0,0 +1,377 @@
|
|
|
1
|
+
import "steammessages.proto";
|
|
2
|
+
import "econ_gcmessages.proto";
|
|
3
|
+
|
|
4
|
+
option optimize_for = SPEED;
|
|
5
|
+
option cc_generic_services = false;
|
|
6
|
+
|
|
7
|
+
enum EGCDACCommonMessages {
|
|
8
|
+
k_EMsgAnyToGCReportAsserts = 7000;
|
|
9
|
+
k_EMsgAnyToGCReportAssertsResponse = 7001;
|
|
10
|
+
k_EMsgGCItemEditorReservationsRequest = 7283;
|
|
11
|
+
k_EMsgGCItemEditorReservationsResponse = 7284;
|
|
12
|
+
k_EMsgGCItemEditorReserveItemDef = 7285;
|
|
13
|
+
k_EMsgGCItemEditorReserveItemDefResponse = 7286;
|
|
14
|
+
k_EMsgGCItemEditorReleaseReservation = 7287;
|
|
15
|
+
k_EMsgGCItemEditorReleaseReservationResponse = 7288;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
enum EDACStoreID {
|
|
19
|
+
k_EDACStoreID_Invalid = 0;
|
|
20
|
+
k_EDACStoreID_iOS = 1;
|
|
21
|
+
k_EDACStoreID_GooglePlay = 2;
|
|
22
|
+
k_EDACStoreID_SteamOverlay = 3;
|
|
23
|
+
k_EDACStoreID_Test = 4;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
enum EDACRegionMode {
|
|
27
|
+
k_EDACRegionMode_ROW = 0;
|
|
28
|
+
k_EDACRegionMode_China = 1;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
enum EDACMatchMode {
|
|
32
|
+
k_EDACMatchMode_Invalid = 0;
|
|
33
|
+
k_EDACMatchMode_Casual = 1;
|
|
34
|
+
k_EDACMatchMode_PrivateLobby = 2;
|
|
35
|
+
k_EDACMatchMode_SoloBot = 3;
|
|
36
|
+
k_EDACMatchMode_Ranked = 4;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
enum EDACGameMode {
|
|
40
|
+
k_EDACGameMode_Invalid = 0;
|
|
41
|
+
k_EDACGameMode_Normal = 1;
|
|
42
|
+
k_EDACGameMode_Turbo = 2;
|
|
43
|
+
k_EDACGameMode_Duos = 3;
|
|
44
|
+
k_EDACGameMode_TechPrototypeA = 4;
|
|
45
|
+
k_EDACGameMode_Sandbox = 5;
|
|
46
|
+
k_EDACGameMode_Puzzle = 6;
|
|
47
|
+
k_EDACGameMode_Tutorial = 7;
|
|
48
|
+
k_EDACGameMode_Streetfight = 8;
|
|
49
|
+
k_EDACGameMode_Classic = 11;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
enum EDACLobbyTeam {
|
|
53
|
+
k_EDACLobbyTeam_Team0 = 0;
|
|
54
|
+
k_EDACLobbyTeam_Team1 = 1;
|
|
55
|
+
k_EDACLobbyTeam_Team2 = 2;
|
|
56
|
+
k_EDACLobbyTeam_Team3 = 3;
|
|
57
|
+
k_EDACLobbyTeam_Team4 = 4;
|
|
58
|
+
k_EDACLobbyTeam_Team5 = 5;
|
|
59
|
+
k_EDACLobbyTeam_Team6 = 6;
|
|
60
|
+
k_EDACLobbyTeam_Team7 = 7;
|
|
61
|
+
k_EDACLobbyTeam_Spectator = 250;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
enum EDACBotDifficulty {
|
|
65
|
+
k_EDACBotDifficulty_None = 0;
|
|
66
|
+
k_EDACBotDifficulty_Easy = 1;
|
|
67
|
+
k_EDACBotDifficulty_Medium = 2;
|
|
68
|
+
k_EDACBotDifficulty_Hard = 3;
|
|
69
|
+
k_EDACBotDifficulty_Nightmare = 4;
|
|
70
|
+
k_EDACBotDifficulty_ML = 5;
|
|
71
|
+
k_EDACBotDifficulty_MommaEeb = 6;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
enum EDACAIType {
|
|
75
|
+
k_EDACAIType_Invalid = 0;
|
|
76
|
+
k_EDACAIType_Lvl1 = 1;
|
|
77
|
+
k_EDACAIType_Lvl2 = 2;
|
|
78
|
+
k_EDACAIType_Lvl3 = 3;
|
|
79
|
+
k_EDACAIType_Lvl4 = 4;
|
|
80
|
+
k_EDACAIType_Lvl5 = 5;
|
|
81
|
+
k_EDACAIType_Lvl6 = 6;
|
|
82
|
+
k_EDACAIType_Lvl7 = 7;
|
|
83
|
+
k_EDACAIType_Lvl8 = 8;
|
|
84
|
+
k_EDACAIType_ML = 19;
|
|
85
|
+
k_EDACAIType_PB0 = 20;
|
|
86
|
+
k_EDACAIType_PB1 = 21;
|
|
87
|
+
k_EDACAIType_PB2 = 22;
|
|
88
|
+
k_EDACAIType_PB3 = 23;
|
|
89
|
+
k_EDACAIType_PB4 = 24;
|
|
90
|
+
k_EDACAIType_PB5 = 25;
|
|
91
|
+
k_EDACAIType_PB6 = 26;
|
|
92
|
+
k_EDACAIType_PB7 = 27;
|
|
93
|
+
k_EDACAIType_PB8 = 28;
|
|
94
|
+
k_EDACAIType_PB9 = 29;
|
|
95
|
+
k_EDACAIType_PB10 = 30;
|
|
96
|
+
k_EDACAIType_PB11 = 31;
|
|
97
|
+
k_EDACAIType_PB12 = 32;
|
|
98
|
+
k_EDACAIType_PB13 = 33;
|
|
99
|
+
k_EDACAIType_PB14 = 34;
|
|
100
|
+
k_EDACAIType_PB15 = 35;
|
|
101
|
+
k_EDACAIType_PB16 = 36;
|
|
102
|
+
k_EDACAIType_PB17 = 37;
|
|
103
|
+
k_EDACAIType_PB18 = 38;
|
|
104
|
+
k_EDACAIType_PB19 = 39;
|
|
105
|
+
k_EDACAIType_PB20 = 40;
|
|
106
|
+
k_EDACAIType_PB21 = 41;
|
|
107
|
+
k_EDACAIType_PB22 = 42;
|
|
108
|
+
k_EDACAIType_PB23 = 43;
|
|
109
|
+
k_EDACAIType_PB24 = 44;
|
|
110
|
+
k_EDACAIType_PB25 = 45;
|
|
111
|
+
k_EDACAIType_PB26 = 46;
|
|
112
|
+
k_EDACAIType_PB27 = 47;
|
|
113
|
+
k_EDACAIType_PB28 = 48;
|
|
114
|
+
k_EDACAIType_PB29 = 49;
|
|
115
|
+
k_EDACAIType_PB30 = 50;
|
|
116
|
+
k_EDACAIType_PB31 = 51;
|
|
117
|
+
k_EDACAIType_PB32 = 52;
|
|
118
|
+
k_EDACAIType_PB33 = 53;
|
|
119
|
+
k_EDACAIType_PB34 = 54;
|
|
120
|
+
k_EDACAIType_PB35 = 55;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
enum EDACMatchState {
|
|
124
|
+
k_EMatchState_InProgress = 0;
|
|
125
|
+
k_EMatchState_Completed = 1;
|
|
126
|
+
k_EMatchState_Failed_NetworkIssues = 2;
|
|
127
|
+
k_EMatchState_Failed_ServerCrash = 3;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
enum EDACPlayerState {
|
|
131
|
+
k_EPlayerState_Playing = 0;
|
|
132
|
+
k_EPlayerState_Eliminated = 1;
|
|
133
|
+
k_EPlayerState_Abandoned = 2;
|
|
134
|
+
k_EPlayerState_Disconnected = 3;
|
|
135
|
+
k_EPlayerState_ServerCrashed = 4;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
enum ELobbyServerState {
|
|
139
|
+
k_eLobbyServerState_Assign = 0;
|
|
140
|
+
k_eLobbyServerState_InGame = 1;
|
|
141
|
+
k_eLobbyServerState_PostMatch = 2;
|
|
142
|
+
k_eLobbyServerState_SignedOut = 3;
|
|
143
|
+
k_eLobbyServerState_Abandoned = 4;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
message CMsgGameModifiers {
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
message CMsgTeamInfo {
|
|
150
|
+
repeated uint32 member_account_ids = 1 [packed = true];
|
|
151
|
+
optional string team_name = 2;
|
|
152
|
+
optional uint32 mmr_level_score = 3;
|
|
153
|
+
optional uint32 mmr_level = 4;
|
|
154
|
+
optional uint32 mmr_leaderboard_place = 5;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
message CServerLobbyData_PlayerInfo {
|
|
158
|
+
message LoadoutSlot {
|
|
159
|
+
optional uint32 loadout_slot = 1;
|
|
160
|
+
optional uint32 def_index = 2;
|
|
161
|
+
optional uint32 loadout_sub_slot = 3;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
message Currency {
|
|
165
|
+
optional uint32 currency_id = 1;
|
|
166
|
+
optional uint32 amount = 2;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
message Challenge {
|
|
170
|
+
optional uint32 challenge_id = 1;
|
|
171
|
+
optional uint32 progress = 2;
|
|
172
|
+
optional uint32 sequence_id = 3;
|
|
173
|
+
optional uint32 slot_id = 4;
|
|
174
|
+
optional uint32 config_id = 5;
|
|
175
|
+
optional uint32 claimed = 6;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
message VirtualItem {
|
|
179
|
+
optional uint32 def_index = 1;
|
|
180
|
+
optional uint32 equip_slot = 2;
|
|
181
|
+
optional uint32 equip_sub_slot = 3;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
message Event {
|
|
185
|
+
optional uint32 event_id = 1;
|
|
186
|
+
optional bool event_owned = 2;
|
|
187
|
+
repeated .CServerLobbyData_PlayerInfo.Challenge challenges = 3;
|
|
188
|
+
repeated .CServerLobbyData_PlayerInfo.Currency currencies = 4;
|
|
189
|
+
repeated .CServerLobbyData_PlayerInfo.VirtualItem virtual_items = 5;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
optional uint32 account_id = 1;
|
|
193
|
+
optional uint32 mmr_level = 2;
|
|
194
|
+
repeated .CServerLobbyData_PlayerInfo.LoadoutSlot loadout = 3;
|
|
195
|
+
repeated .CServerLobbyData_PlayerInfo.Event events = 4;
|
|
196
|
+
optional uint32 global_leaderboard_rank = 5;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
message CMsgRegionPingTimesClient {
|
|
200
|
+
repeated fixed32 data_center_codes = 1 [packed = true];
|
|
201
|
+
repeated uint32 ping_times = 2 [packed = true];
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
message CSODACLobby {
|
|
205
|
+
optional uint32 server_version = 1;
|
|
206
|
+
optional uint32 compatibility_version = 2;
|
|
207
|
+
optional fixed64 server_steam_id = 3;
|
|
208
|
+
optional bool dev_ignore_staging_files = 4;
|
|
209
|
+
optional uint64 lobby_id = 5;
|
|
210
|
+
optional uint64 match_id = 6;
|
|
211
|
+
optional .ELobbyServerState server_state = 8 [default = k_eLobbyServerState_Assign];
|
|
212
|
+
optional .EDACMatchMode match_mode = 10 [default = k_EDACMatchMode_Invalid];
|
|
213
|
+
optional uint32 udp_connect_ip = 11;
|
|
214
|
+
optional uint32 udp_connect_port = 12;
|
|
215
|
+
optional .EDACGameMode game_mode = 13 [default = k_EDACGameMode_Invalid];
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
message CSODACParty {
|
|
219
|
+
message Member {
|
|
220
|
+
optional uint32 account_id = 1;
|
|
221
|
+
optional string persona_name = 2;
|
|
222
|
+
optional uint32 rights_flags = 3;
|
|
223
|
+
optional bool is_ready = 4;
|
|
224
|
+
optional .CSODACParty.EPlayerType player_type = 5 [default = k_ePlayerType_Player];
|
|
225
|
+
optional uint32 compatibility_version = 6;
|
|
226
|
+
optional .EDACPlatform platform = 7 [default = k_eDACPlatform_None];
|
|
227
|
+
optional uint32 team = 8;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
message LeftMember {
|
|
231
|
+
optional uint32 account_id = 1;
|
|
232
|
+
optional uint32 rights_flags = 2;
|
|
233
|
+
optional .CSODACParty.EPlayerType player_type = 3 [default = k_ePlayerType_Player];
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
message Invite {
|
|
237
|
+
optional uint32 account_id = 1;
|
|
238
|
+
optional string persona_name = 2;
|
|
239
|
+
optional uint32 invited_by = 3;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
message TeamInfo {
|
|
243
|
+
repeated uint32 account_ids = 1 [packed = true];
|
|
244
|
+
optional string team_name = 2;
|
|
245
|
+
optional uint32 first_played = 3;
|
|
246
|
+
optional uint32 games_played = 4;
|
|
247
|
+
optional uint32 num_first_place = 6;
|
|
248
|
+
optional uint32 num_top_three = 7;
|
|
249
|
+
optional uint32 mmr_level = 8;
|
|
250
|
+
optional uint32 mmr_level_progress = 9;
|
|
251
|
+
optional uint32 mmr_level_score = 10;
|
|
252
|
+
optional uint32 flags = 11;
|
|
253
|
+
optional uint32 leaderboard_place = 12;
|
|
254
|
+
optional uint32 games_to_unlock_rename = 13;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
enum EMemberRights {
|
|
258
|
+
k_eMemberRights_Admin = 1;
|
|
259
|
+
k_eMemberRights_Creator = 2;
|
|
260
|
+
k_eMemberRights_RankedMM = 4;
|
|
261
|
+
k_eMemberRights_HighRankedMM = 8;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
enum EPlayerType {
|
|
265
|
+
k_ePlayerType_Player = 0;
|
|
266
|
+
k_ePlayerType_Spectator = 1;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
enum ETeamFlags {
|
|
270
|
+
k_eTeamFlags_CanRename = 1;
|
|
271
|
+
k_eTeamFlags_RenameCooldown = 2;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
optional uint64 party_id = 1;
|
|
275
|
+
repeated .CSODACParty.Member members = 2;
|
|
276
|
+
repeated .CSODACParty.Invite invites = 3;
|
|
277
|
+
optional bool in_match_making = 5;
|
|
278
|
+
optional string party_password = 6;
|
|
279
|
+
repeated .CSODACParty.LeftMember left_members = 10;
|
|
280
|
+
optional uint64 join_code = 11;
|
|
281
|
+
optional .EDACBotDifficulty bot_difficulty = 12 [default = k_EDACBotDifficulty_None];
|
|
282
|
+
optional bool use_custom_modifier = 13;
|
|
283
|
+
optional .CMsgGameModifiers custom_modifier = 14;
|
|
284
|
+
repeated .CSODACParty.TeamInfo teams = 15;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
message CSOAccountSyncStorage {
|
|
288
|
+
optional uint32 account_id = 1;
|
|
289
|
+
optional uint32 id = 2;
|
|
290
|
+
optional uint32 value = 3;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
message CSOGameAccountClient {
|
|
294
|
+
optional uint32 account_id = 1 [(key_field) = true];
|
|
295
|
+
optional uint32 mmr_level = 2;
|
|
296
|
+
optional uint32 mmr_leaderboard = 3;
|
|
297
|
+
optional uint64 flags = 4;
|
|
298
|
+
optional uint32 unlock_ranked_progress = 5;
|
|
299
|
+
optional float mmr_level_partial_progress = 6;
|
|
300
|
+
optional uint32 mmr_level_score = 8;
|
|
301
|
+
optional uint32 mm_ban_time_stamp = 9;
|
|
302
|
+
optional uint32 mm_ban_reason = 10;
|
|
303
|
+
optional uint32 mm_ranked_ban_time_stamp = 11;
|
|
304
|
+
optional uint32 mm_ranked_ban_reason = 12;
|
|
305
|
+
optional uint32 credits = 13;
|
|
306
|
+
optional uint32 turbo_mmr_level = 14;
|
|
307
|
+
optional uint32 turbo_mmr_leaderboard = 15;
|
|
308
|
+
optional float turbo_mmr_level_partial_progress = 16;
|
|
309
|
+
optional uint32 turbo_mmr_level_score = 17;
|
|
310
|
+
optional uint32 wins_1st = 18;
|
|
311
|
+
optional uint32 wins_2nd = 19;
|
|
312
|
+
optional uint32 wins_3rd = 20;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
message CMsgStreetfightSettings {
|
|
316
|
+
optional uint32 underlord_id = 1;
|
|
317
|
+
optional uint32 streetfight_id = 2;
|
|
318
|
+
repeated uint32 item_ids_for_player = 3;
|
|
319
|
+
optional uint32 prestige_level = 4;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
message CMsgGameModeSettings {
|
|
323
|
+
oneof settings {
|
|
324
|
+
uint32 puzzle_id = 1;
|
|
325
|
+
uint32 tutorial_phase = 2;
|
|
326
|
+
string sandbox_share_code = 3;
|
|
327
|
+
.CMsgStreetfightSettings streetfight_settings = 4;
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
message CMsgStartFindingMatchInfo {
|
|
332
|
+
optional uint32 client_version = 2;
|
|
333
|
+
optional .EDACMatchMode match_mode = 3 [default = k_EDACMatchMode_Invalid];
|
|
334
|
+
optional .EDACPlatform platform = 4 [default = k_eDACPlatform_None];
|
|
335
|
+
optional .EDACBotDifficulty bot_difficulty = 5 [default = k_EDACBotDifficulty_None];
|
|
336
|
+
optional .EDACGameMode game_mode = 6 [default = k_EDACGameMode_Invalid];
|
|
337
|
+
optional .EDACRegionMode region_mode = 8 [default = k_EDACRegionMode_ROW];
|
|
338
|
+
optional .CMsgGameModeSettings game_mode_settings = 9;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
message CMsgAnyToGCReportAsserts {
|
|
342
|
+
message TrackedAssert {
|
|
343
|
+
optional string filename = 1;
|
|
344
|
+
optional uint32 line_number = 2;
|
|
345
|
+
optional string sample_msg = 3;
|
|
346
|
+
optional string sample_stack = 4;
|
|
347
|
+
optional uint32 times_fired = 5;
|
|
348
|
+
optional string function_name = 6;
|
|
349
|
+
optional string condition = 7;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
optional uint32 version = 1;
|
|
353
|
+
repeated .CMsgAnyToGCReportAsserts.TrackedAssert asserts = 2;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
message CMsgAnyToGCReportAssertsResponse {
|
|
357
|
+
optional bool success = 1;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
message CMsgHistogram {
|
|
361
|
+
message HistogramBucket {
|
|
362
|
+
optional uint32 value = 1;
|
|
363
|
+
optional uint32 count = 2;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
repeated .CMsgHistogram.HistogramBucket histogram_buckets = 1;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
message CMsgPuzzleLeaderboardHistogram {
|
|
370
|
+
optional uint32 puzzle_id = 1;
|
|
371
|
+
optional uint32 leaderboard_type = 2;
|
|
372
|
+
optional .CMsgHistogram histogram = 3;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
message CMsgPuzzleLeaderboardHistogramList {
|
|
376
|
+
repeated .CMsgPuzzleLeaderboardHistogram leaderboard_histograms = 1;
|
|
377
|
+
}
|