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,3998 @@
|
|
|
1
|
+
import "common_base.proto";
|
|
2
|
+
|
|
3
|
+
// Used by: common.proto
|
|
4
|
+
message CAppBootstrapData {
|
|
5
|
+
optional uint32 appid = 1;
|
|
6
|
+
optional bool hidden = 2;
|
|
7
|
+
repeated string user_tag = 3;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
// Used by: common.proto
|
|
11
|
+
message CAppOverview {
|
|
12
|
+
optional uint32 appid = 1;
|
|
13
|
+
optional string display_name = 2;
|
|
14
|
+
optional bool visible_in_game_list = 4;
|
|
15
|
+
optional string sort_as = 6;
|
|
16
|
+
optional int32 app_type = 7 [(.description) = "enum"];
|
|
17
|
+
optional uint32 mru_index = 13;
|
|
18
|
+
optional uint32 rt_recent_activity_time = 14 [default = 0];
|
|
19
|
+
optional uint32 minutes_playtime_forever = 16 [default = 0];
|
|
20
|
+
optional uint32 minutes_playtime_last_two_weeks = 17 [default = 0];
|
|
21
|
+
optional uint32 rt_last_time_played = 18 [default = 0];
|
|
22
|
+
repeated uint32 store_tag = 19;
|
|
23
|
+
repeated .CAppOverview_AppAssociation association = 20;
|
|
24
|
+
repeated uint32 store_category = 23;
|
|
25
|
+
optional uint32 rt_original_release_date = 25 [default = 0];
|
|
26
|
+
optional uint32 rt_steam_release_date = 26 [default = 0];
|
|
27
|
+
optional string icon_hash = 27;
|
|
28
|
+
optional string logo_hash = 30;
|
|
29
|
+
optional int32 controller_support = 31 [(.description) = "enum"];
|
|
30
|
+
optional bool vr_supported = 32;
|
|
31
|
+
optional uint32 metacritic_score = 36;
|
|
32
|
+
optional uint64 size_on_disk = 37;
|
|
33
|
+
optional bool third_party_mod = 38;
|
|
34
|
+
optional string icon_data = 39;
|
|
35
|
+
optional string icon_data_format = 40;
|
|
36
|
+
optional string gameid = 41;
|
|
37
|
+
optional string library_capsule_filename = 42;
|
|
38
|
+
repeated .CAppOverview_PerClientData per_client_data = 43;
|
|
39
|
+
optional uint64 most_available_clientid = 44;
|
|
40
|
+
optional uint64 selected_clientid = 45;
|
|
41
|
+
optional uint32 rt_store_asset_mtime = 46;
|
|
42
|
+
optional uint32 rt_custom_image_mtime = 47;
|
|
43
|
+
optional uint32 optional_parent_app_id = 48;
|
|
44
|
+
optional uint32 owner_account_id = 49;
|
|
45
|
+
optional bool compat_mapping_enabled = 50;
|
|
46
|
+
optional uint32 compat_mapping_priority = 51;
|
|
47
|
+
optional string compat_mapping_tool_name = 52;
|
|
48
|
+
optional uint32 review_score_with_bombs = 53;
|
|
49
|
+
optional uint32 review_percentage_with_bombs = 54;
|
|
50
|
+
optional uint32 review_score_without_bombs = 55;
|
|
51
|
+
optional uint32 review_percentage_without_bombs = 56;
|
|
52
|
+
optional string library_id = 57;
|
|
53
|
+
optional bool vr_only = 58;
|
|
54
|
+
optional uint32 mastersub_appid = 59;
|
|
55
|
+
optional string mastersub_includedwith_logo = 60;
|
|
56
|
+
optional uint32 compat_allowlist_setting = 61 [default = 0];
|
|
57
|
+
optional string site_license_site_name = 62;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// Used by: common.proto
|
|
61
|
+
message CAppOverview_AppAssociation {
|
|
62
|
+
optional int32 type = 1 [(.description) = "enum"];
|
|
63
|
+
optional string name = 2;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
message CAppOverview_Change {
|
|
67
|
+
repeated .CAppOverview app_overview = 1;
|
|
68
|
+
repeated uint32 removed_appid = 2;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
// Used by: common.proto
|
|
72
|
+
message CAppOverview_PerClientData {
|
|
73
|
+
optional uint64 clientid = 1;
|
|
74
|
+
optional string client_name = 2;
|
|
75
|
+
optional int32 display_status = 3 [(.description) = "enum"];
|
|
76
|
+
optional uint32 status_percentage = 4 [default = 0];
|
|
77
|
+
optional string active_beta = 5;
|
|
78
|
+
optional bool installed = 6;
|
|
79
|
+
optional uint64 bytes_downloaded = 7 [default = 0];
|
|
80
|
+
optional uint64 bytes_total = 8 [default = 0];
|
|
81
|
+
optional bool streaming_to_local_client = 9;
|
|
82
|
+
optional bool is_available_on_current_platform = 10;
|
|
83
|
+
optional bool is_invalid_os_type = 11;
|
|
84
|
+
optional uint32 playtime_left = 12;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// Used by: AccountCart, Checkout
|
|
88
|
+
message CartAmount {
|
|
89
|
+
optional int64 amount_in_cents = 1;
|
|
90
|
+
optional int32 currency_code = 2;
|
|
91
|
+
optional string formatted_amount = 3;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// Used by: AccountCart, Checkout
|
|
95
|
+
message CartCoupon {
|
|
96
|
+
optional uint32 couponid = 1;
|
|
97
|
+
optional uint64 gidcoupon = 2;
|
|
98
|
+
optional string title = 5;
|
|
99
|
+
optional string coupon_description = 6;
|
|
100
|
+
optional string large_icon_url = 7;
|
|
101
|
+
optional int32 discount_pct = 8;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// Used by: AccountCart, Checkout
|
|
105
|
+
message CartGiftInfo {
|
|
106
|
+
optional int32 accountid_giftee = 1;
|
|
107
|
+
optional .CartGiftMessage gift_message = 2;
|
|
108
|
+
optional int32 time_scheduled_send = 3;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
// Used by: AccountCart, Checkout
|
|
112
|
+
message CartGiftMessage {
|
|
113
|
+
optional string gifteename = 1;
|
|
114
|
+
optional string message = 2;
|
|
115
|
+
optional string sentiment = 3;
|
|
116
|
+
optional string signature = 4;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
message CBilling_Address {
|
|
120
|
+
optional string first_name = 1;
|
|
121
|
+
optional string last_name = 2;
|
|
122
|
+
optional string address1 = 3;
|
|
123
|
+
optional string address2 = 4;
|
|
124
|
+
optional string city = 5;
|
|
125
|
+
optional string us_state = 6;
|
|
126
|
+
optional string country_code = 7;
|
|
127
|
+
optional string postcode = 8;
|
|
128
|
+
optional int32 zip_plus4 = 9;
|
|
129
|
+
optional string phone = 10;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
message CBroadcast_NotifyBroadcastSessionHeartbeat_Notification {
|
|
133
|
+
optional fixed64 broadcast_id = 1;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
message CBroadcast_NotifyBroadcastUploadStop_Notification {
|
|
137
|
+
optional fixed64 broadcast_upload_id = 1;
|
|
138
|
+
optional uint32 upload_result = 2;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// Used by: ChatRoom, ChatRoomClient, ClanChatRooms
|
|
142
|
+
message CChatPartyBeacon {
|
|
143
|
+
optional uint32 app_id = 1;
|
|
144
|
+
optional fixed64 steamid_owner = 2;
|
|
145
|
+
optional fixed64 beacon_id = 3;
|
|
146
|
+
optional string game_metadata = 4;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// Used by: ChatRoom, ChatRoomClient, ClanChatRooms
|
|
150
|
+
message CChatRoleActions {
|
|
151
|
+
optional uint64 role_id = 1;
|
|
152
|
+
optional bool can_create_rename_delete_channel = 2;
|
|
153
|
+
optional bool can_kick = 3;
|
|
154
|
+
optional bool can_ban = 4;
|
|
155
|
+
optional bool can_invite = 5;
|
|
156
|
+
optional bool can_change_tagline_avatar_name = 6;
|
|
157
|
+
optional bool can_chat = 7;
|
|
158
|
+
optional bool can_view_history = 8;
|
|
159
|
+
optional bool can_change_group_roles = 9;
|
|
160
|
+
optional bool can_change_user_roles = 10;
|
|
161
|
+
optional bool can_mention_all = 11;
|
|
162
|
+
optional bool can_set_watching_broadcast = 12;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// Used by: ChatRoom, ChatRoomClient, ClanChatRooms
|
|
166
|
+
message CChatRoom_GetChatRoomGroupSummary_Response {
|
|
167
|
+
optional uint64 chat_group_id = 1;
|
|
168
|
+
optional string chat_group_name = 2;
|
|
169
|
+
optional uint32 active_member_count = 3;
|
|
170
|
+
optional uint32 active_voice_member_count = 4;
|
|
171
|
+
optional uint64 default_chat_id = 5;
|
|
172
|
+
repeated .CChatRoomState chat_rooms = 6;
|
|
173
|
+
optional uint32 clanid = 7;
|
|
174
|
+
optional string chat_group_tagline = 8;
|
|
175
|
+
optional uint32 accountid_owner = 9;
|
|
176
|
+
repeated uint32 top_members = 10;
|
|
177
|
+
optional bytes chat_group_avatar_sha = 11;
|
|
178
|
+
optional int32 rank = 12 [(.description) = "enum"];
|
|
179
|
+
optional uint64 default_role_id = 13;
|
|
180
|
+
repeated uint64 role_ids = 14;
|
|
181
|
+
repeated .CChatRoleActions role_actions = 15;
|
|
182
|
+
optional uint32 watching_broadcast_accountid = 16;
|
|
183
|
+
optional uint32 appid = 17;
|
|
184
|
+
repeated .CChatPartyBeacon party_beacons = 18;
|
|
185
|
+
optional uint64 watching_broadcast_channel_id = 19;
|
|
186
|
+
optional uint64 active_minigame_id = 20;
|
|
187
|
+
optional string avatar_ugc_url = 21;
|
|
188
|
+
optional bool disabled = 22;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
// Used by: ChatRoom, ChatRoomClient, ClanChatRooms
|
|
192
|
+
message CChatRoomState {
|
|
193
|
+
optional uint64 chat_id = 1;
|
|
194
|
+
optional string chat_name = 2;
|
|
195
|
+
optional bool voice_allowed = 3;
|
|
196
|
+
repeated uint32 members_in_voice = 4;
|
|
197
|
+
optional uint32 time_last_message = 5;
|
|
198
|
+
optional uint32 sort_order = 6;
|
|
199
|
+
optional string last_message = 7;
|
|
200
|
+
optional uint32 accountid_last_message = 8;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
message CClanEventData {
|
|
204
|
+
optional fixed64 gid = 1;
|
|
205
|
+
optional fixed64 clan_steamid = 2;
|
|
206
|
+
optional string event_name = 3;
|
|
207
|
+
optional int32 event_type = 4 [(.description) = "enum"];
|
|
208
|
+
optional uint32 appid = 5;
|
|
209
|
+
optional string server_address = 6;
|
|
210
|
+
optional string server_password = 7;
|
|
211
|
+
optional uint32 rtime32_start_time = 8;
|
|
212
|
+
optional uint32 rtime32_end_time = 9;
|
|
213
|
+
optional int32 comment_count = 10;
|
|
214
|
+
optional fixed64 creator_steamid = 11;
|
|
215
|
+
optional fixed64 last_update_steamid = 12;
|
|
216
|
+
optional string event_notes = 13;
|
|
217
|
+
optional string jsondata = 14;
|
|
218
|
+
optional .CCommunity_ClanAnnouncementInfo announcement_body = 15;
|
|
219
|
+
optional bool published = 16;
|
|
220
|
+
optional bool hidden = 17;
|
|
221
|
+
optional uint32 rtime32_visibility_start = 18;
|
|
222
|
+
optional uint32 rtime32_visibility_end = 19;
|
|
223
|
+
optional uint32 broadcaster_accountid = 20;
|
|
224
|
+
optional uint32 follower_count = 21;
|
|
225
|
+
optional uint32 ignore_count = 22;
|
|
226
|
+
optional fixed64 forum_topic_id = 23;
|
|
227
|
+
optional uint32 rtime32_last_modified = 24;
|
|
228
|
+
optional fixed64 news_post_gid = 25;
|
|
229
|
+
optional uint32 rtime_mod_reviewed = 26;
|
|
230
|
+
optional uint32 featured_app_tagid = 27;
|
|
231
|
+
repeated uint32 referenced_appids = 28;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
// Used by: common.proto
|
|
235
|
+
message CClientMetrics_AppInterfaceCreation {
|
|
236
|
+
optional string raw_version = 1;
|
|
237
|
+
optional string requested_interface_type = 2;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
// Used by: common.proto
|
|
241
|
+
message CClientMetrics_AppInterfaceMethodCounts {
|
|
242
|
+
optional string interface_name = 1;
|
|
243
|
+
optional string method_name = 2;
|
|
244
|
+
optional uint32 call_count = 3;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
message CClientMetrics_AppInterfaceStats_Notification {
|
|
248
|
+
optional uint64 game_id = 1;
|
|
249
|
+
repeated .CClientMetrics_AppInterfaceCreation interfaces_created = 2;
|
|
250
|
+
repeated .CClientMetrics_AppInterfaceMethodCounts methods_called = 3;
|
|
251
|
+
optional uint32 session_length_seconds = 4;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
message CClientMetrics_ClientBootstrap_Notification {
|
|
255
|
+
optional .CClientMetrics_ClientBootstrap_Summary summary = 1;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
// Used by: common.proto
|
|
259
|
+
message CClientMetrics_ClientBootstrap_RequestInfo {
|
|
260
|
+
optional string original_hostname = 1;
|
|
261
|
+
optional string actual_hostname = 2;
|
|
262
|
+
optional string path = 3;
|
|
263
|
+
optional string base_name = 4;
|
|
264
|
+
optional bool success = 5;
|
|
265
|
+
optional uint32 status_code = 6;
|
|
266
|
+
optional string address_of_request_url = 7;
|
|
267
|
+
optional uint32 response_time_ms = 8;
|
|
268
|
+
optional uint64 bytes_received = 9;
|
|
269
|
+
optional uint32 num_retries = 10;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
// Used by: common.proto
|
|
273
|
+
message CClientMetrics_ClientBootstrap_Summary {
|
|
274
|
+
optional uint32 launcher_type = 1;
|
|
275
|
+
optional uint32 steam_realm = 2;
|
|
276
|
+
optional string beta_name = 3;
|
|
277
|
+
optional bool download_completed = 4;
|
|
278
|
+
optional uint32 total_time_ms = 6;
|
|
279
|
+
repeated .CClientMetrics_ClientBootstrap_RequestInfo manifest_requests = 7;
|
|
280
|
+
repeated .CClientMetrics_ClientBootstrap_RequestInfo package_requests = 8;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
message CClientMetrics_CloudAppSyncStats_Notification {
|
|
284
|
+
optional uint32 app_id = 1;
|
|
285
|
+
optional uint32 platform_type = 2;
|
|
286
|
+
optional bool preload = 3;
|
|
287
|
+
optional bool blocking_app_launch = 4;
|
|
288
|
+
optional uint32 files_uploaded = 5;
|
|
289
|
+
optional uint32 files_downloaded = 6;
|
|
290
|
+
optional uint32 files_deleted = 7;
|
|
291
|
+
optional uint64 bytes_uploaded = 8;
|
|
292
|
+
optional uint64 bytes_downloaded = 9;
|
|
293
|
+
optional uint64 microsec_total = 10;
|
|
294
|
+
optional uint64 microsec_init_caches = 11;
|
|
295
|
+
optional uint64 microsec_validate_state = 12;
|
|
296
|
+
optional uint64 microsec_ac_launch = 13;
|
|
297
|
+
optional uint64 microsec_ac_prep_user_files = 14;
|
|
298
|
+
optional uint64 microsec_ac_exit = 15;
|
|
299
|
+
optional uint64 microsec_build_sync_list = 16;
|
|
300
|
+
optional uint64 microsec_delete_files = 17;
|
|
301
|
+
optional uint64 microsec_download_files = 18;
|
|
302
|
+
optional uint64 microsec_upload_files = 19;
|
|
303
|
+
optional uint32 hardware_type = 20;
|
|
304
|
+
optional uint32 files_managed = 21;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
// Used by: common.proto
|
|
308
|
+
message CClientMetrics_ContentDownloadResponse_Counts {
|
|
309
|
+
optional uint32 class_100 = 1;
|
|
310
|
+
optional uint32 class_200 = 2;
|
|
311
|
+
optional uint32 class_300 = 3;
|
|
312
|
+
optional uint32 class_400 = 4;
|
|
313
|
+
optional uint32 class_500 = 5;
|
|
314
|
+
optional uint32 no_response = 6;
|
|
315
|
+
optional uint32 class_unknown = 7;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
message CClientMetrics_ContentDownloadResponse_Counts_Notification {
|
|
319
|
+
optional uint32 cell_id = 1;
|
|
320
|
+
optional .CClientMetrics_ContentDownloadResponse_Hosts data = 2;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
// Used by: common.proto
|
|
324
|
+
message CClientMetrics_ContentDownloadResponse_HostCounts {
|
|
325
|
+
optional string hostname = 1;
|
|
326
|
+
optional uint32 source_type = 2;
|
|
327
|
+
optional .CClientMetrics_ContentDownloadResponse_Counts counts = 3;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
// Used by: common.proto
|
|
331
|
+
message CClientMetrics_ContentDownloadResponse_Hosts {
|
|
332
|
+
repeated .CClientMetrics_ContentDownloadResponse_HostCounts hosts = 1;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
message CClientMetrics_ContentValidation_Notification {
|
|
336
|
+
optional int32 validation_result = 1;
|
|
337
|
+
optional uint32 app_id = 2;
|
|
338
|
+
optional bool staged_files = 3;
|
|
339
|
+
optional bool user_initiated = 4;
|
|
340
|
+
optional bool early_out = 5;
|
|
341
|
+
optional uint32 chunks_scanned = 6;
|
|
342
|
+
optional uint32 chunks_corrupt = 7;
|
|
343
|
+
optional uint64 bytes_scanned = 8;
|
|
344
|
+
optional uint64 chunk_bytes_corrupt = 9;
|
|
345
|
+
optional uint64 total_file_size_corrupt = 10;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
message CClientMetrics_DownloadRates_Notification {
|
|
349
|
+
optional uint32 cell_id = 1;
|
|
350
|
+
repeated .CClientMetrics_DownloadRates_Notification_StatsInfo stats = 2;
|
|
351
|
+
optional uint32 throttling_kbps = 3;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
// Used by: common.proto
|
|
355
|
+
message CClientMetrics_DownloadRates_Notification_StatsInfo {
|
|
356
|
+
optional uint32 source_type = 1;
|
|
357
|
+
optional uint32 source_id = 2;
|
|
358
|
+
optional uint64 bytes = 3;
|
|
359
|
+
optional string host_name = 4;
|
|
360
|
+
optional uint64 microseconds = 5;
|
|
361
|
+
optional bool used_ipv6 = 6;
|
|
362
|
+
optional bool proxied = 7;
|
|
363
|
+
optional bool used_http2 = 8;
|
|
364
|
+
optional uint32 cache_hits = 9;
|
|
365
|
+
optional uint32 cache_misses = 10;
|
|
366
|
+
optional uint64 hit_bytes = 11;
|
|
367
|
+
optional uint64 miss_bytes = 12;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
message CClientMetrics_IPv6Connectivity_Notification {
|
|
371
|
+
optional uint32 cell_id = 1;
|
|
372
|
+
repeated .CClientMetrics_IPv6Connectivity_Result results = 2;
|
|
373
|
+
optional bool private_ip_is_rfc6598 = 3;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
// Used by: common.proto
|
|
377
|
+
message CClientMetrics_IPv6Connectivity_Result {
|
|
378
|
+
optional uint32 protocol_tested = 1;
|
|
379
|
+
optional uint32 connectivity_state = 2;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
message CClientMetrics_ReportClientArgs_Notification {
|
|
383
|
+
repeated string client_args = 1;
|
|
384
|
+
optional bool gpu_webview_regkey_disabled = 2;
|
|
385
|
+
optional bool suppress_gpu_chrome = 3;
|
|
386
|
+
optional bool browser_not_supported = 4;
|
|
387
|
+
optional bool hw_accel_video_regkey_disabled = 5;
|
|
388
|
+
optional bool mini_mode_enabled = 6;
|
|
389
|
+
optional bool fps_counter_enabled = 7;
|
|
390
|
+
optional bool library_low_bandwidth_mode_enabled = 8;
|
|
391
|
+
optional bool library_low_perf_mode_enabled = 9;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
message CClientMetrics_ReportReactUsage_Notification {
|
|
395
|
+
optional string product = 1;
|
|
396
|
+
optional string version = 2;
|
|
397
|
+
repeated .CClientMetrics_ReportReactUsage_Notification_RouteData routes = 3;
|
|
398
|
+
repeated .CClientMetrics_ReportReactUsage_Notification_ComponentData components = 4;
|
|
399
|
+
repeated .CClientMetrics_ReportReactUsage_Notification_ActionData actions = 5;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
// Used by: common.proto
|
|
403
|
+
message CClientMetrics_ReportReactUsage_Notification_ActionData {
|
|
404
|
+
optional string action = 1;
|
|
405
|
+
optional uint32 count = 2;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
// Used by: common.proto
|
|
409
|
+
message CClientMetrics_ReportReactUsage_Notification_ComponentData {
|
|
410
|
+
optional string component = 1;
|
|
411
|
+
optional uint32 count = 2;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
// Used by: common.proto
|
|
415
|
+
message CClientMetrics_ReportReactUsage_Notification_RouteData {
|
|
416
|
+
optional string route = 1;
|
|
417
|
+
optional uint32 count = 2;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
message CClientMetrics_SteamPipeWorkStats_Notification {
|
|
421
|
+
optional uint32 appid = 1;
|
|
422
|
+
optional uint32 depotid = 2;
|
|
423
|
+
optional int32 work_type = 3 [(.description) = "enum"];
|
|
424
|
+
repeated .CClientMetrics_SteamPipeWorkStats_Operation operations = 4;
|
|
425
|
+
optional uint32 hardware_type = 5;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
// Used by: common.proto
|
|
429
|
+
message CClientMetrics_SteamPipeWorkStats_Operation {
|
|
430
|
+
optional int32 type = 1 [(.description) = "enum"];
|
|
431
|
+
optional uint32 num_ops = 2;
|
|
432
|
+
optional uint64 num_bytes = 3;
|
|
433
|
+
optional uint64 busy_time_ms = 4;
|
|
434
|
+
optional uint64 idle_time_ms = 5;
|
|
435
|
+
optional uint64 sum_run_time_ms = 6;
|
|
436
|
+
optional uint64 sum_wait_time_ms = 7;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
// Used by: common.proto
|
|
440
|
+
message CCommunity_ClanAnnouncementInfo {
|
|
441
|
+
optional uint64 gid = 1;
|
|
442
|
+
optional uint64 clanid = 2;
|
|
443
|
+
optional uint64 posterid = 3;
|
|
444
|
+
optional string headline = 4;
|
|
445
|
+
optional uint32 posttime = 5;
|
|
446
|
+
optional uint32 updatetime = 6;
|
|
447
|
+
optional string body = 7;
|
|
448
|
+
optional int32 commentcount = 8;
|
|
449
|
+
repeated string tags = 9;
|
|
450
|
+
optional int32 language = 10;
|
|
451
|
+
optional bool hidden = 11;
|
|
452
|
+
optional fixed64 forum_topic_id = 12;
|
|
453
|
+
optional fixed64 event_gid = 13;
|
|
454
|
+
optional int32 voteupcount = 14;
|
|
455
|
+
optional int32 votedowncount = 15;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
message CCuratorPreferences {
|
|
459
|
+
optional uint32 supported_languages = 1;
|
|
460
|
+
optional bool platform_windows = 2;
|
|
461
|
+
optional bool platform_mac = 3;
|
|
462
|
+
optional bool platform_linux = 4;
|
|
463
|
+
optional bool vr_content = 5;
|
|
464
|
+
optional bool adult_content_violence = 6;
|
|
465
|
+
optional bool adult_content_sex = 7;
|
|
466
|
+
optional uint32 timestamp_updated = 8;
|
|
467
|
+
repeated uint32 tagids_curated = 9;
|
|
468
|
+
repeated uint32 tagids_filtered = 10;
|
|
469
|
+
optional string website_title = 11;
|
|
470
|
+
optional string website_url = 12;
|
|
471
|
+
optional string discussion_url = 13;
|
|
472
|
+
optional bool show_broadcast = 14;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
message CLibraryBootstrapData {
|
|
476
|
+
repeated .CAppBootstrapData app_data = 1;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
message CLocalizationToken {
|
|
480
|
+
optional uint32 language = 1;
|
|
481
|
+
optional string localized_string = 2;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
message CMarketingMessages_MarkMessageSeen_Notification {
|
|
485
|
+
optional fixed64 gid = 1;
|
|
486
|
+
optional uint32 display_index = 2 [default = 0];
|
|
487
|
+
optional int32 template_type = 3 [default = 0, (.description) = "enum"];
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
message CMsgAMUnlockHEVC {
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
message CMsgAMUnlockHEVCResponse {
|
|
494
|
+
optional int32 eresult = 1 [default = 2];
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
message CMsgAMUnlockStreaming {
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
message CMsgAMUnlockStreamingResponse {
|
|
501
|
+
optional int32 eresult = 1 [default = 2];
|
|
502
|
+
optional bytes encryption_key = 2;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
message CMsgAppRights {
|
|
506
|
+
optional bool edit_info = 1;
|
|
507
|
+
optional bool publish = 2;
|
|
508
|
+
optional bool view_error_data = 3;
|
|
509
|
+
optional bool download = 4;
|
|
510
|
+
optional bool upload_cdkeys = 5;
|
|
511
|
+
optional bool generate_cdkeys = 6;
|
|
512
|
+
optional bool view_financials = 7;
|
|
513
|
+
optional bool manage_ceg = 8;
|
|
514
|
+
optional bool manage_signing = 9;
|
|
515
|
+
optional bool manage_cdkeys = 10;
|
|
516
|
+
optional bool edit_marketing = 11;
|
|
517
|
+
optional bool economy_support = 12;
|
|
518
|
+
optional bool economy_support_supervisor = 13;
|
|
519
|
+
optional bool manage_pricing = 14;
|
|
520
|
+
optional bool broadcast_live = 15;
|
|
521
|
+
optional bool view_marketing_traffic = 16;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
// Used by: common.proto
|
|
525
|
+
message CMsgAuthTicket {
|
|
526
|
+
optional uint32 estate = 1;
|
|
527
|
+
optional uint32 eresult = 2 [default = 2];
|
|
528
|
+
optional fixed64 steamid = 3;
|
|
529
|
+
optional fixed64 gameid = 4;
|
|
530
|
+
optional uint32 h_steam_pipe = 5;
|
|
531
|
+
optional uint32 ticket_crc = 6;
|
|
532
|
+
optional bytes ticket = 7;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
message CMsgBadgeCraftedNotification {
|
|
536
|
+
optional uint32 appid = 1;
|
|
537
|
+
optional uint32 badge_level = 2;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
message CMsgClientAccountInfo {
|
|
541
|
+
optional string persona_name = 1;
|
|
542
|
+
optional string ip_country = 2;
|
|
543
|
+
optional int32 count_authed_computers = 5;
|
|
544
|
+
optional uint32 account_flags = 7;
|
|
545
|
+
optional uint64 facebook_id = 8;
|
|
546
|
+
optional string facebook_name = 9;
|
|
547
|
+
optional bool steamguard_notify_newmachines = 14;
|
|
548
|
+
optional string steamguard_machine_name_user_chosen = 15;
|
|
549
|
+
optional bool is_phone_verified = 16;
|
|
550
|
+
optional uint32 two_factor_state = 17;
|
|
551
|
+
optional bool is_phone_identifying = 18;
|
|
552
|
+
optional bool is_phone_needing_reverify = 19;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
message CMsgClientActivateOEMLicense {
|
|
556
|
+
optional string bios_manufacturer = 1;
|
|
557
|
+
optional string bios_serialnumber = 2;
|
|
558
|
+
optional bytes license_file = 3;
|
|
559
|
+
optional string mainboard_manufacturer = 4;
|
|
560
|
+
optional string mainboard_product = 5;
|
|
561
|
+
optional string mainboard_serialnumber = 6;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
message CMsgClientAddFriend {
|
|
565
|
+
optional fixed64 steamid_to_add = 1;
|
|
566
|
+
optional string accountname_or_email_to_add = 2;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
message CMsgClientAddFriendResponse {
|
|
570
|
+
optional int32 eresult = 1 [default = 2];
|
|
571
|
+
optional fixed64 steam_id_added = 2;
|
|
572
|
+
optional string persona_name_added = 3;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
message CMsgClientAddFriendToGroup {
|
|
576
|
+
optional int32 groupid = 1;
|
|
577
|
+
optional fixed64 steamiduser = 2;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
message CMsgClientAddFriendToGroupResponse {
|
|
581
|
+
optional uint32 eresult = 1;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
message CMsgClientAMGetClanOfficers {
|
|
585
|
+
optional fixed64 steamid_clan = 1;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
message CMsgClientAMGetClanOfficersResponse {
|
|
589
|
+
optional int32 eresult = 1 [default = 2];
|
|
590
|
+
optional fixed64 steamid_clan = 2;
|
|
591
|
+
optional int32 officer_count = 3;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
message CMsgClientAMGetPersonaNameHistory {
|
|
595
|
+
optional int32 id_count = 1;
|
|
596
|
+
repeated .CMsgClientAMGetPersonaNameHistory_IdInstance Ids = 2;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
// Used by: common.proto
|
|
600
|
+
message CMsgClientAMGetPersonaNameHistory_IdInstance {
|
|
601
|
+
optional fixed64 steamid = 1;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
message CMsgClientAMGetPersonaNameHistoryResponse {
|
|
605
|
+
repeated .CMsgClientAMGetPersonaNameHistoryResponse_NameTableInstance responses = 2;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
// Used by: common.proto
|
|
609
|
+
message CMsgClientAMGetPersonaNameHistoryResponse_NameTableInstance {
|
|
610
|
+
optional int32 eresult = 1 [default = 2];
|
|
611
|
+
optional fixed64 steamid = 2;
|
|
612
|
+
repeated .CMsgClientAMGetPersonaNameHistoryResponse_NameTableInstance_NameInstance names = 3;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
// Used by: common.proto
|
|
616
|
+
message CMsgClientAMGetPersonaNameHistoryResponse_NameTableInstance_NameInstance {
|
|
617
|
+
optional fixed32 name_since = 1;
|
|
618
|
+
optional string name = 2;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
message CMsgClientAppInfoChanges {
|
|
622
|
+
optional uint32 current_change_number = 1;
|
|
623
|
+
optional bool force_full_update = 2;
|
|
624
|
+
repeated uint32 appIDs = 3;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
message CMsgClientAppInfoRequest {
|
|
628
|
+
repeated .CMsgClientAppInfoRequest_App apps = 1;
|
|
629
|
+
optional bool supports_batches = 2 [default = false];
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
// Used by: common.proto
|
|
633
|
+
message CMsgClientAppInfoRequest_App {
|
|
634
|
+
optional uint32 app_id = 1;
|
|
635
|
+
optional uint32 section_flags = 2;
|
|
636
|
+
repeated uint32 section_CRC = 3;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
message CMsgClientAppInfoResponse {
|
|
640
|
+
repeated .CMsgClientAppInfoResponse_App apps = 1;
|
|
641
|
+
repeated uint32 apps_unknown = 2;
|
|
642
|
+
optional uint32 apps_pending = 3;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
// Used by: common.proto
|
|
646
|
+
message CMsgClientAppInfoResponse_App {
|
|
647
|
+
optional uint32 app_id = 1;
|
|
648
|
+
optional uint32 change_number = 2;
|
|
649
|
+
repeated .CMsgClientAppInfoResponse_App_Section sections = 3;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
// Used by: common.proto
|
|
653
|
+
message CMsgClientAppInfoResponse_App_Section {
|
|
654
|
+
optional uint32 section_id = 1;
|
|
655
|
+
optional bytes section_kv = 2;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
message CMsgClientAppInfoUpdate {
|
|
659
|
+
optional uint32 last_changenumber = 1;
|
|
660
|
+
optional bool send_changelist = 2;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
message CMsgClientAuthList {
|
|
664
|
+
optional uint32 tokens_left = 1;
|
|
665
|
+
optional uint32 last_request_seq = 2;
|
|
666
|
+
optional uint32 last_request_seq_from_server = 3;
|
|
667
|
+
repeated .CMsgAuthTicket tickets = 4;
|
|
668
|
+
repeated uint32 app_ids = 5;
|
|
669
|
+
optional uint32 message_sequence = 6;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
message CMsgClientAuthListAck {
|
|
673
|
+
repeated uint32 ticket_crc = 1;
|
|
674
|
+
repeated uint32 app_ids = 2;
|
|
675
|
+
optional uint32 message_sequence = 3;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
message CMsgClientAuthorizeLocalDevice {
|
|
679
|
+
optional int32 eresult = 1 [default = 2];
|
|
680
|
+
optional uint32 owner_account_id = 2;
|
|
681
|
+
optional uint64 authed_device_token = 3;
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
message CMsgClientAuthorizeLocalDeviceNotification {
|
|
685
|
+
optional int32 eresult = 1 [default = 2];
|
|
686
|
+
optional uint32 owner_account_id = 2;
|
|
687
|
+
optional uint64 local_device_token = 3;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
message CMsgClientAuthorizeLocalDeviceRequest {
|
|
691
|
+
optional string device_description = 1;
|
|
692
|
+
optional uint32 owner_account_id = 2;
|
|
693
|
+
optional uint64 local_device_token = 3;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
message CMsgClientChallengeRequest {
|
|
697
|
+
optional fixed64 steamid = 1;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
message CMsgClientChallengeResponse {
|
|
701
|
+
optional fixed64 challenge = 1;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
message CMsgClientChangeStatus {
|
|
705
|
+
optional uint32 persona_state = 1;
|
|
706
|
+
optional string player_name = 2;
|
|
707
|
+
optional bool is_auto_generated_name = 3;
|
|
708
|
+
optional bool high_priority = 4;
|
|
709
|
+
optional bool persona_set_by_user = 5;
|
|
710
|
+
optional uint32 persona_state_flags = 6 [default = 0];
|
|
711
|
+
optional bool need_persona_response = 7;
|
|
712
|
+
optional bool is_client_idle = 8;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
message CMsgClientChatGetFriendMessageHistory {
|
|
716
|
+
optional fixed64 steamid = 1;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
message CMsgClientChatGetFriendMessageHistoryForOfflineMessages {
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
message CMsgClientChatGetFriendMessageHistoryResponse {
|
|
723
|
+
optional fixed64 steamid = 1;
|
|
724
|
+
optional uint32 success = 2;
|
|
725
|
+
repeated .CMsgClientChatGetFriendMessageHistoryResponse_FriendMessage messages = 3;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
// Used by: common.proto
|
|
729
|
+
message CMsgClientChatGetFriendMessageHistoryResponse_FriendMessage {
|
|
730
|
+
optional uint32 accountid = 1;
|
|
731
|
+
optional uint32 timestamp = 2;
|
|
732
|
+
optional string message = 3;
|
|
733
|
+
optional bool unread = 4;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
message CMsgClientChatInvite {
|
|
737
|
+
optional fixed64 steam_id_invited = 1;
|
|
738
|
+
optional fixed64 steam_id_chat = 2;
|
|
739
|
+
optional fixed64 steam_id_patron = 3;
|
|
740
|
+
optional int32 chatroom_type = 4;
|
|
741
|
+
optional fixed64 steam_id_friend_chat = 5;
|
|
742
|
+
optional string chat_name = 6;
|
|
743
|
+
optional fixed64 game_id = 7;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
message CMsgClientCheckAppBetaPassword {
|
|
747
|
+
optional uint32 app_id = 1;
|
|
748
|
+
optional string betapassword = 2;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
message CMsgClientCheckAppBetaPasswordResponse {
|
|
752
|
+
optional int32 eresult = 1 [default = 2];
|
|
753
|
+
repeated .CMsgClientCheckAppBetaPasswordResponse_BetaPassword betapasswords = 4;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
// Used by: common.proto
|
|
757
|
+
message CMsgClientCheckAppBetaPasswordResponse_BetaPassword {
|
|
758
|
+
optional string betaname = 1;
|
|
759
|
+
optional string betapassword = 2;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
message CMsgClientCheckFileSignature {
|
|
763
|
+
optional uint32 app_id = 1;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
message CMsgClientCheckFileSignatureResponse {
|
|
767
|
+
optional uint32 app_id = 1;
|
|
768
|
+
optional uint32 pid = 2;
|
|
769
|
+
optional uint32 eresult = 3;
|
|
770
|
+
optional string filename = 4;
|
|
771
|
+
optional uint32 esignatureresult = 5;
|
|
772
|
+
optional bytes sha_file = 6;
|
|
773
|
+
optional bytes signatureheader = 7;
|
|
774
|
+
optional uint32 filesize = 8;
|
|
775
|
+
optional uint32 getlasterror = 9;
|
|
776
|
+
optional uint32 evalvesignaturecheckdetail = 10;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
message CMsgClientClanState {
|
|
780
|
+
optional fixed64 steamid_clan = 1;
|
|
781
|
+
optional uint32 clan_account_flags = 3;
|
|
782
|
+
optional .CMsgClientClanState_NameInfo name_info = 4;
|
|
783
|
+
optional .CMsgClientClanState_UserCounts user_counts = 5;
|
|
784
|
+
repeated .CMsgClientClanState_Event events = 6;
|
|
785
|
+
repeated .CMsgClientClanState_Event announcements = 7;
|
|
786
|
+
optional bool chat_room_private = 8;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
// Used by: common.proto
|
|
790
|
+
message CMsgClientClanState_Event {
|
|
791
|
+
optional fixed64 gid = 1;
|
|
792
|
+
optional uint32 event_time = 2;
|
|
793
|
+
optional string headline = 3;
|
|
794
|
+
optional fixed64 game_id = 4;
|
|
795
|
+
optional bool just_posted = 5;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
// Used by: common.proto
|
|
799
|
+
message CMsgClientClanState_NameInfo {
|
|
800
|
+
optional string clan_name = 1;
|
|
801
|
+
optional bytes sha_avatar = 2;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
// Used by: common.proto
|
|
805
|
+
message CMsgClientClanState_UserCounts {
|
|
806
|
+
optional uint32 members = 1;
|
|
807
|
+
optional uint32 online = 2;
|
|
808
|
+
optional uint32 chatting = 3;
|
|
809
|
+
optional uint32 in_game = 4;
|
|
810
|
+
optional uint32 chat_room_members = 5;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
message CMsgClientCMList {
|
|
814
|
+
repeated uint32 cm_addresses = 1;
|
|
815
|
+
repeated uint32 cm_ports = 2;
|
|
816
|
+
repeated string cm_websocket_addresses = 3;
|
|
817
|
+
optional uint32 percent_default_to_websocket = 4;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
message CMsgClientCommentNotifications {
|
|
821
|
+
optional uint32 count_new_comments = 1;
|
|
822
|
+
optional uint32 count_new_comments_owner = 2;
|
|
823
|
+
optional uint32 count_new_comments_subscriptions = 3;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
message CMsgClientConnectionStats {
|
|
827
|
+
optional .CMsgClientConnectionStats_Stats_Logon stats_logon = 1;
|
|
828
|
+
optional .CMsgClientConnectionStats_Stats_VConn stats_vconn = 2;
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
// Used by: common.proto
|
|
832
|
+
message CMsgClientConnectionStats_Stats_Logon {
|
|
833
|
+
optional int32 connect_attempts = 1;
|
|
834
|
+
optional int32 connect_successes = 2;
|
|
835
|
+
optional int32 connect_failures = 3;
|
|
836
|
+
optional int32 connections_dropped = 4;
|
|
837
|
+
optional uint32 seconds_running = 5;
|
|
838
|
+
optional uint32 msec_tologonthistime = 6;
|
|
839
|
+
optional uint32 count_bad_cms = 7;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
// Used by: common.proto
|
|
843
|
+
message CMsgClientConnectionStats_Stats_UDP {
|
|
844
|
+
optional uint64 pkts_sent = 1;
|
|
845
|
+
optional uint64 bytes_sent = 2;
|
|
846
|
+
optional uint64 pkts_recv = 3;
|
|
847
|
+
optional uint64 pkts_processed = 4;
|
|
848
|
+
optional uint64 bytes_recv = 5;
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
// Used by: common.proto
|
|
852
|
+
message CMsgClientConnectionStats_Stats_VConn {
|
|
853
|
+
optional uint32 connections_udp = 1;
|
|
854
|
+
optional uint32 connections_tcp = 2;
|
|
855
|
+
optional .CMsgClientConnectionStats_Stats_UDP stats_udp = 3;
|
|
856
|
+
optional uint64 pkts_abandoned = 4;
|
|
857
|
+
optional uint64 conn_req_received = 5;
|
|
858
|
+
optional uint64 pkts_resent = 6;
|
|
859
|
+
optional uint64 msgs_sent = 7;
|
|
860
|
+
optional uint64 msgs_sent_failed = 8;
|
|
861
|
+
optional uint64 msgs_recv = 9;
|
|
862
|
+
optional uint64 datagrams_sent = 10;
|
|
863
|
+
optional uint64 datagrams_recv = 11;
|
|
864
|
+
optional uint64 bad_pkts_recv = 12;
|
|
865
|
+
optional uint64 unknown_conn_pkts_recv = 13;
|
|
866
|
+
optional uint64 missed_pkts_recv = 14;
|
|
867
|
+
optional uint64 dup_pkts_recv = 15;
|
|
868
|
+
optional uint64 failed_connect_challenges = 16;
|
|
869
|
+
optional uint32 micro_sec_avg_latency = 17;
|
|
870
|
+
optional uint32 micro_sec_min_latency = 18;
|
|
871
|
+
optional uint32 micro_sec_max_latency = 19;
|
|
872
|
+
optional uint32 mem_pool_msg_in_use = 20;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
message CMsgClientCreateFriendsGroup {
|
|
876
|
+
optional fixed64 steamid = 1;
|
|
877
|
+
optional string groupname = 2;
|
|
878
|
+
repeated fixed64 steamid_friends = 3;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
message CMsgClientCreateFriendsGroupResponse {
|
|
882
|
+
optional uint32 eresult = 1;
|
|
883
|
+
optional int32 groupid = 2;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
message CMsgClientDeauthorizeDevice {
|
|
887
|
+
optional int32 eresult = 1 [default = 2];
|
|
888
|
+
optional uint32 deauthorization_account_id = 2;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
message CMsgClientDeauthorizeDeviceRequest {
|
|
892
|
+
optional uint32 deauthorization_account_id = 1;
|
|
893
|
+
optional uint64 deauthorization_device_token = 2;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
message CMsgClientDeleteFriendsGroup {
|
|
897
|
+
optional fixed64 steamid = 1;
|
|
898
|
+
optional int32 groupid = 2;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
message CMsgClientDeleteFriendsGroupResponse {
|
|
902
|
+
optional uint32 eresult = 1;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
message CMsgClientDeregisterWithServer {
|
|
906
|
+
optional uint32 eservertype = 1;
|
|
907
|
+
optional uint32 app_id = 2;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
message CMsgClientDPCheckSpecialSurvey {
|
|
911
|
+
optional uint32 survey_id = 1;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
message CMsgClientDPCheckSpecialSurveyResponse {
|
|
915
|
+
optional uint32 eResult = 1 [default = 2];
|
|
916
|
+
optional uint32 state = 2;
|
|
917
|
+
optional string name = 3;
|
|
918
|
+
optional string custom_url = 4;
|
|
919
|
+
optional bool include_software = 5;
|
|
920
|
+
optional bytes token = 6;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
message CMsgClientDPContentStatsReport {
|
|
924
|
+
optional fixed64 stats_machine_id = 1;
|
|
925
|
+
optional string country_code = 2;
|
|
926
|
+
optional int32 os_type = 3;
|
|
927
|
+
optional int32 language = 4;
|
|
928
|
+
optional uint32 num_install_folders = 5;
|
|
929
|
+
optional uint32 num_installed_games = 6;
|
|
930
|
+
optional uint64 size_installed_games = 7;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
message CMsgClientDPSendSpecialSurveyResponse {
|
|
934
|
+
optional uint32 survey_id = 1;
|
|
935
|
+
optional bytes data = 2;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
message CMsgClientDPSendSpecialSurveyResponseReply {
|
|
939
|
+
optional uint32 eResult = 1 [default = 2];
|
|
940
|
+
optional bytes token = 2;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
message CMsgClientEmailAddrInfo {
|
|
944
|
+
optional string email_address = 1;
|
|
945
|
+
optional bool email_is_validated = 2;
|
|
946
|
+
optional bool email_validation_changed = 3;
|
|
947
|
+
optional bool credential_change_requires_code = 4;
|
|
948
|
+
optional bool password_or_secretqa_change_requires_code = 5;
|
|
949
|
+
optional bool remind_user_about_email = 6;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
message CMsgClientEmoticonList {
|
|
953
|
+
repeated .CMsgClientEmoticonList_Emoticon emoticons = 1;
|
|
954
|
+
repeated .CMsgClientEmoticonList_Sticker stickers = 2;
|
|
955
|
+
repeated .CMsgClientEmoticonList_Effect effects = 3;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
// Used by: common.proto
|
|
959
|
+
message CMsgClientEmoticonList_Effect {
|
|
960
|
+
optional string name = 1;
|
|
961
|
+
optional int32 count = 2;
|
|
962
|
+
optional uint32 time_received = 3;
|
|
963
|
+
optional bool infinite_use = 4;
|
|
964
|
+
optional uint32 appid = 5;
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
// Used by: common.proto
|
|
968
|
+
message CMsgClientEmoticonList_Emoticon {
|
|
969
|
+
optional string name = 1;
|
|
970
|
+
optional int32 count = 2;
|
|
971
|
+
optional uint32 time_last_used = 3;
|
|
972
|
+
optional uint32 use_count = 4;
|
|
973
|
+
optional uint32 time_received = 5;
|
|
974
|
+
optional uint32 appid = 6;
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
// Used by: common.proto
|
|
978
|
+
message CMsgClientEmoticonList_Sticker {
|
|
979
|
+
optional string name = 1;
|
|
980
|
+
optional int32 count = 2;
|
|
981
|
+
optional uint32 time_received = 3;
|
|
982
|
+
optional uint32 appid = 4;
|
|
983
|
+
optional uint32 time_last_used = 5;
|
|
984
|
+
optional uint32 use_count = 6;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
message CMsgClientFriendMsg {
|
|
988
|
+
optional fixed64 steamid = 1;
|
|
989
|
+
optional int32 chat_entry_type = 2;
|
|
990
|
+
optional bytes message = 3;
|
|
991
|
+
optional fixed32 rtime32_server_timestamp = 4;
|
|
992
|
+
optional bool echo_to_sender = 5;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
message CMsgClientFriendMsgIncoming {
|
|
996
|
+
optional fixed64 steamid_from = 1;
|
|
997
|
+
optional int32 chat_entry_type = 2;
|
|
998
|
+
optional bool from_limited_account = 3;
|
|
999
|
+
optional bytes message = 4;
|
|
1000
|
+
optional fixed32 rtime32_server_timestamp = 5;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
message CMsgClientFriendProfileInfo {
|
|
1004
|
+
optional fixed64 steamid_friend = 1;
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
message CMsgClientFriendProfileInfoResponse {
|
|
1008
|
+
optional int32 eresult = 1 [default = 2];
|
|
1009
|
+
optional fixed64 steamid_friend = 2;
|
|
1010
|
+
optional uint32 time_created = 3;
|
|
1011
|
+
optional string real_name = 4;
|
|
1012
|
+
optional string city_name = 5;
|
|
1013
|
+
optional string state_name = 6;
|
|
1014
|
+
optional string country_name = 7;
|
|
1015
|
+
optional string headline = 8;
|
|
1016
|
+
optional string summary = 9;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
message CMsgClientFriendsGroupsList {
|
|
1020
|
+
optional bool bremoval = 1;
|
|
1021
|
+
optional bool bincremental = 2;
|
|
1022
|
+
repeated .CMsgClientFriendsGroupsList_FriendGroup friendGroups = 3;
|
|
1023
|
+
repeated .CMsgClientFriendsGroupsList_FriendGroupsMembership memberships = 4;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
// Used by: common.proto
|
|
1027
|
+
message CMsgClientFriendsGroupsList_FriendGroup {
|
|
1028
|
+
optional int32 nGroupID = 1;
|
|
1029
|
+
optional string strGroupName = 2;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
// Used by: common.proto
|
|
1033
|
+
message CMsgClientFriendsGroupsList_FriendGroupsMembership {
|
|
1034
|
+
optional fixed64 ulSteamID = 1;
|
|
1035
|
+
optional int32 nGroupID = 2;
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
message CMsgClientFriendUserStatusPublished {
|
|
1039
|
+
optional fixed64 friend_steamid = 1;
|
|
1040
|
+
optional uint32 appid = 2;
|
|
1041
|
+
optional string status_text = 3;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
message CMsgClientFSGetFriendsSteamLevels {
|
|
1045
|
+
repeated uint32 accountids = 1;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
message CMsgClientFSGetFriendsSteamLevelsResponse {
|
|
1049
|
+
repeated .CMsgClientFSGetFriendsSteamLevelsResponse_Friend friends = 1;
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
// Used by: common.proto
|
|
1053
|
+
message CMsgClientFSGetFriendsSteamLevelsResponse_Friend {
|
|
1054
|
+
optional uint32 accountid = 1;
|
|
1055
|
+
optional uint32 level = 2;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
message CMsgClientGameConnectTokens {
|
|
1059
|
+
optional uint32 max_tokens_to_keep = 1 [default = 10];
|
|
1060
|
+
repeated bytes tokens = 2;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
message CMsgClientGamesPlayed {
|
|
1064
|
+
repeated .CMsgClientGamesPlayed_GamePlayed games_played = 1;
|
|
1065
|
+
optional uint32 client_os_type = 2;
|
|
1066
|
+
optional uint32 cloud_gaming_platform = 3;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
// Used by: common.proto
|
|
1070
|
+
message CMsgClientGamesPlayed_GamePlayed {
|
|
1071
|
+
optional uint64 steam_id_gs = 1;
|
|
1072
|
+
optional fixed64 game_id = 2;
|
|
1073
|
+
optional uint32 deprecated_game_ip_address = 3;
|
|
1074
|
+
optional uint32 game_port = 4;
|
|
1075
|
+
optional bool is_secure = 5;
|
|
1076
|
+
optional bytes token = 6;
|
|
1077
|
+
optional string game_extra_info = 7;
|
|
1078
|
+
optional bytes game_data_blob = 8;
|
|
1079
|
+
optional uint32 process_id = 9;
|
|
1080
|
+
optional uint32 streaming_provider_id = 10;
|
|
1081
|
+
optional uint32 game_flags = 11;
|
|
1082
|
+
optional uint32 owner_id = 12;
|
|
1083
|
+
optional string vr_hmd_vendor = 13;
|
|
1084
|
+
optional string vr_hmd_model = 14;
|
|
1085
|
+
optional uint32 launch_option_type = 15 [default = 0];
|
|
1086
|
+
optional int32 primary_controller_type = 16 [default = -1];
|
|
1087
|
+
optional string primary_steam_controller_serial = 17 [default = ""];
|
|
1088
|
+
optional uint32 total_steam_controller_count = 18 [default = 0];
|
|
1089
|
+
optional uint32 total_non_steam_controller_count = 19 [default = 0];
|
|
1090
|
+
optional uint64 controller_workshop_file_id = 20 [default = 0];
|
|
1091
|
+
optional uint32 launch_source = 21 [default = 0];
|
|
1092
|
+
optional uint32 vr_hmd_runtime = 22;
|
|
1093
|
+
optional .CMsgIPAddress game_ip_address = 23;
|
|
1094
|
+
optional uint32 controller_connection_type = 24 [default = 0];
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
message CMsgClientGetAppOwnershipTicket {
|
|
1098
|
+
optional uint32 app_id = 1;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
message CMsgClientGetAppOwnershipTicketResponse {
|
|
1102
|
+
optional uint32 eresult = 1 [default = 2];
|
|
1103
|
+
optional uint32 app_id = 2;
|
|
1104
|
+
optional bytes ticket = 3;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
message CMsgClientGetAuthorizedDevices {
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
message CMsgClientGetAuthorizedDevicesResponse {
|
|
1111
|
+
optional int32 eresult = 1 [default = 2];
|
|
1112
|
+
repeated .CMsgClientGetAuthorizedDevicesResponse_AuthorizedDevice authorized_device = 2;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
// Used by: common.proto
|
|
1116
|
+
message CMsgClientGetAuthorizedDevicesResponse_AuthorizedDevice {
|
|
1117
|
+
optional uint64 auth_device_token = 1;
|
|
1118
|
+
optional string device_name = 2;
|
|
1119
|
+
optional uint32 last_access_time = 3;
|
|
1120
|
+
optional uint32 borrower_id = 4;
|
|
1121
|
+
optional bool is_pending = 5;
|
|
1122
|
+
optional uint32 app_played = 6;
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
message CMsgClientGetCDNAuthToken {
|
|
1126
|
+
optional uint32 depot_id = 1;
|
|
1127
|
+
optional string host_name = 2;
|
|
1128
|
+
optional uint32 app_id = 3;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
message CMsgClientGetCDNAuthTokenResponse {
|
|
1132
|
+
optional uint32 eresult = 1 [default = 2];
|
|
1133
|
+
optional string token = 2;
|
|
1134
|
+
optional uint32 expiration_time = 3;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
message CMsgClientGetClanActivityCounts {
|
|
1138
|
+
repeated uint64 steamid_clans = 1;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
message CMsgClientGetClanActivityCountsResponse {
|
|
1142
|
+
optional uint32 eresult = 1 [default = 2];
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
message CMsgClientGetClientAppList {
|
|
1146
|
+
optional bool media = 1;
|
|
1147
|
+
optional bool tools = 2;
|
|
1148
|
+
optional bool games = 3;
|
|
1149
|
+
optional bool only_installed = 4;
|
|
1150
|
+
optional bool only_changing = 5;
|
|
1151
|
+
optional bool comics = 6;
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
message CMsgClientGetClientAppListResponse {
|
|
1155
|
+
repeated .CMsgClientGetClientAppListResponse_App apps = 1;
|
|
1156
|
+
optional uint64 bytes_available = 2;
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
// Used by: common.proto
|
|
1160
|
+
message CMsgClientGetClientAppListResponse_App {
|
|
1161
|
+
optional uint32 appid = 1;
|
|
1162
|
+
optional string category = 2;
|
|
1163
|
+
optional bool favorite = 3;
|
|
1164
|
+
optional bool installed = 4;
|
|
1165
|
+
optional bool auto_update = 5;
|
|
1166
|
+
optional uint64 bytes_downloaded = 6;
|
|
1167
|
+
optional uint64 bytes_needed = 7;
|
|
1168
|
+
optional uint32 bytes_download_rate = 8;
|
|
1169
|
+
repeated .CMsgClientGetClientAppListResponse_App_DLC dlcs = 9;
|
|
1170
|
+
optional string app_type = 10;
|
|
1171
|
+
optional bool download_paused = 11;
|
|
1172
|
+
optional uint32 num_downloading = 12;
|
|
1173
|
+
optional uint32 num_paused = 13;
|
|
1174
|
+
optional bool changing = 14;
|
|
1175
|
+
optional bool available_on_platform = 15;
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
// Used by: common.proto
|
|
1179
|
+
message CMsgClientGetClientAppListResponse_App_DLC {
|
|
1180
|
+
optional uint32 appid = 1;
|
|
1181
|
+
optional bool installed = 2;
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
message CMsgClientGetClientDetails {
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
message CMsgClientGetClientDetailsResponse {
|
|
1188
|
+
optional uint32 package_version = 1;
|
|
1189
|
+
optional string os = 2;
|
|
1190
|
+
optional string machine_name = 3;
|
|
1191
|
+
optional string ip_public = 4;
|
|
1192
|
+
optional string ip_private = 5;
|
|
1193
|
+
repeated .CMsgClientGetClientDetailsResponse_Game games_running = 6;
|
|
1194
|
+
optional uint64 bytes_available = 7;
|
|
1195
|
+
optional uint32 protocol_version = 8;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
// Used by: common.proto
|
|
1199
|
+
message CMsgClientGetClientDetailsResponse_Game {
|
|
1200
|
+
optional uint32 appid = 1;
|
|
1201
|
+
optional string extra_info = 2;
|
|
1202
|
+
optional uint32 time_running_sec = 3;
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
message CMsgClientGetDepotDecryptionKey {
|
|
1206
|
+
optional uint32 depot_id = 1;
|
|
1207
|
+
optional uint32 app_id = 2;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
message CMsgClientGetDepotDecryptionKeyResponse {
|
|
1211
|
+
optional int32 eresult = 1 [default = 2];
|
|
1212
|
+
optional uint32 depot_id = 2;
|
|
1213
|
+
optional bytes depot_encryption_key = 3;
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
message CMsgClientGetEmoticonList {
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
message CMsgClientGetUserStats {
|
|
1220
|
+
optional fixed64 game_id = 1;
|
|
1221
|
+
optional uint32 crc_stats = 2;
|
|
1222
|
+
optional int32 schema_local_version = 3;
|
|
1223
|
+
optional fixed64 steam_id_for_user = 4;
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
message CMsgClientGetUserStatsResponse {
|
|
1227
|
+
optional fixed64 game_id = 1;
|
|
1228
|
+
optional int32 eresult = 2 [default = 2];
|
|
1229
|
+
optional uint32 crc_stats = 3;
|
|
1230
|
+
optional bytes schema = 4;
|
|
1231
|
+
repeated .CMsgClientGetUserStatsResponse_Stats stats = 5;
|
|
1232
|
+
repeated .CMsgClientGetUserStatsResponse_Achievement_Blocks achievement_blocks = 6;
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
// Used by: common.proto
|
|
1236
|
+
message CMsgClientGetUserStatsResponse_Achievement_Blocks {
|
|
1237
|
+
optional uint32 achievement_id = 1;
|
|
1238
|
+
repeated fixed32 unlock_time = 2;
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
// Used by: common.proto
|
|
1242
|
+
message CMsgClientGetUserStatsResponse_Stats {
|
|
1243
|
+
optional uint32 stat_id = 1;
|
|
1244
|
+
optional uint32 stat_value = 2;
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
message CMsgClientGMSServerQuery {
|
|
1248
|
+
optional uint32 app_id = 1;
|
|
1249
|
+
optional uint32 geo_location_ip = 2;
|
|
1250
|
+
optional uint32 region_code = 3;
|
|
1251
|
+
optional string filter_text = 4;
|
|
1252
|
+
optional uint32 max_servers = 5;
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
message CMsgClientHeartBeat {
|
|
1256
|
+
optional bool send_reply = 1;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
message CMsgClientHideFriend {
|
|
1260
|
+
optional fixed64 friendid = 1;
|
|
1261
|
+
optional bool hide = 2;
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
message CMsgClientInstallClientApp {
|
|
1265
|
+
optional uint32 appid = 1;
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
message CMsgClientInstallClientAppResponse {
|
|
1269
|
+
optional uint32 result = 1;
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
message CMsgClientInviteToGame {
|
|
1273
|
+
optional fixed64 steam_id_dest = 1;
|
|
1274
|
+
optional fixed64 steam_id_src = 2;
|
|
1275
|
+
optional string connect_string = 3;
|
|
1276
|
+
optional string remote_play = 4;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
message CMsgClientIsLimitedAccount {
|
|
1280
|
+
optional bool bis_limited_account = 1;
|
|
1281
|
+
optional bool bis_community_banned = 2;
|
|
1282
|
+
optional bool bis_locked_account = 3;
|
|
1283
|
+
optional bool bis_limited_account_allowed_to_invite_friends = 4;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
message CMsgClientItemAnnouncements {
|
|
1287
|
+
optional uint32 count_new_items = 1;
|
|
1288
|
+
repeated .CMsgClientItemAnnouncements_UnseenItem unseen_items = 2;
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
// Used by: common.proto
|
|
1292
|
+
message CMsgClientItemAnnouncements_UnseenItem {
|
|
1293
|
+
optional uint32 appid = 1;
|
|
1294
|
+
optional uint64 context_id = 2;
|
|
1295
|
+
optional uint64 asset_id = 3;
|
|
1296
|
+
optional uint64 amount = 4;
|
|
1297
|
+
optional fixed32 rtime32_gained = 5;
|
|
1298
|
+
optional uint32 source_appid = 6;
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
message CMsgClientKickPlayingSession {
|
|
1302
|
+
optional bool only_stop_game = 1;
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
message CMsgClientLBSFindOrCreateLB {
|
|
1306
|
+
optional uint32 app_id = 1;
|
|
1307
|
+
optional int32 leaderboard_sort_method = 2;
|
|
1308
|
+
optional int32 leaderboard_display_type = 3;
|
|
1309
|
+
optional bool create_if_not_found = 4;
|
|
1310
|
+
optional string leaderboard_name = 5;
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
message CMsgClientLBSFindOrCreateLBResponse {
|
|
1314
|
+
optional int32 eresult = 1 [default = 2];
|
|
1315
|
+
optional int32 leaderboard_id = 2;
|
|
1316
|
+
optional int32 leaderboard_entry_count = 3;
|
|
1317
|
+
optional int32 leaderboard_sort_method = 4 [default = 0];
|
|
1318
|
+
optional int32 leaderboard_display_type = 5 [default = 0];
|
|
1319
|
+
optional string leaderboard_name = 6;
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
message CMsgClientLBSGetLBEntries {
|
|
1323
|
+
optional int32 app_id = 1;
|
|
1324
|
+
optional int32 leaderboard_id = 2;
|
|
1325
|
+
optional int32 range_start = 3;
|
|
1326
|
+
optional int32 range_end = 4;
|
|
1327
|
+
optional int32 leaderboard_data_request = 5;
|
|
1328
|
+
repeated fixed64 steamids = 6;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
message CMsgClientLBSGetLBEntriesResponse {
|
|
1332
|
+
optional int32 eresult = 1 [default = 2];
|
|
1333
|
+
optional int32 leaderboard_entry_count = 2;
|
|
1334
|
+
repeated .CMsgClientLBSGetLBEntriesResponse_Entry entries = 3;
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
// Used by: common.proto
|
|
1338
|
+
message CMsgClientLBSGetLBEntriesResponse_Entry {
|
|
1339
|
+
optional fixed64 steam_id_user = 1;
|
|
1340
|
+
optional int32 global_rank = 2;
|
|
1341
|
+
optional int32 score = 3;
|
|
1342
|
+
optional bytes details = 4;
|
|
1343
|
+
optional fixed64 ugc_id = 5;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
message CMsgClientLBSSetScore {
|
|
1347
|
+
optional uint32 app_id = 1;
|
|
1348
|
+
optional int32 leaderboard_id = 2;
|
|
1349
|
+
optional int32 score = 3;
|
|
1350
|
+
optional bytes details = 4;
|
|
1351
|
+
optional int32 upload_score_method = 5;
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
message CMsgClientLBSSetScoreResponse {
|
|
1355
|
+
optional int32 eresult = 1 [default = 2];
|
|
1356
|
+
optional int32 leaderboard_entry_count = 2;
|
|
1357
|
+
optional bool score_changed = 3;
|
|
1358
|
+
optional int32 global_rank_previous = 4;
|
|
1359
|
+
optional int32 global_rank_new = 5;
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
message CMsgClientLBSSetUGC {
|
|
1363
|
+
optional uint32 app_id = 1;
|
|
1364
|
+
optional int32 leaderboard_id = 2;
|
|
1365
|
+
optional fixed64 ugc_id = 3;
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
message CMsgClientLBSSetUGCResponse {
|
|
1369
|
+
optional int32 eresult = 1 [default = 2];
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
message CMsgClientLicenseList {
|
|
1373
|
+
optional int32 eresult = 1 [default = 2];
|
|
1374
|
+
repeated .CMsgClientLicenseList_License licenses = 2;
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
// Used by: common.proto
|
|
1378
|
+
message CMsgClientLicenseList_License {
|
|
1379
|
+
optional uint32 package_id = 1;
|
|
1380
|
+
optional fixed32 time_created = 2;
|
|
1381
|
+
optional fixed32 time_next_process = 3;
|
|
1382
|
+
optional int32 minute_limit = 4;
|
|
1383
|
+
optional int32 minutes_used = 5;
|
|
1384
|
+
optional uint32 payment_method = 6;
|
|
1385
|
+
optional uint32 flags = 7;
|
|
1386
|
+
optional string purchase_country_code = 8;
|
|
1387
|
+
optional uint32 license_type = 9;
|
|
1388
|
+
optional int32 territory_code = 10;
|
|
1389
|
+
optional int32 change_number = 11;
|
|
1390
|
+
optional uint32 owner_id = 12;
|
|
1391
|
+
optional uint32 initial_period = 13;
|
|
1392
|
+
optional uint32 initial_time_unit = 14;
|
|
1393
|
+
optional uint32 renewal_period = 15;
|
|
1394
|
+
optional uint32 renewal_time_unit = 16;
|
|
1395
|
+
optional uint64 access_token = 17;
|
|
1396
|
+
optional uint32 master_package_id = 18;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
message CMsgClientLoggedOff {
|
|
1400
|
+
optional int32 eresult = 1 [default = 2];
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
message CMsgClientLogOff {
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
message CMsgClientLogon {
|
|
1407
|
+
optional uint32 protocol_version = 1;
|
|
1408
|
+
optional uint32 deprecated_obfustucated_private_ip = 2;
|
|
1409
|
+
optional uint32 cell_id = 3;
|
|
1410
|
+
optional uint32 last_session_id = 4;
|
|
1411
|
+
optional uint32 client_package_version = 5;
|
|
1412
|
+
optional string client_language = 6;
|
|
1413
|
+
optional uint32 client_os_type = 7;
|
|
1414
|
+
optional bool should_remember_password = 8 [default = false];
|
|
1415
|
+
optional string wine_version = 9;
|
|
1416
|
+
optional uint32 deprecated_10 = 10;
|
|
1417
|
+
optional .CMsgIPAddress obfuscated_private_ip = 11;
|
|
1418
|
+
optional uint32 deprecated_public_ip = 20;
|
|
1419
|
+
optional uint32 qos_level = 21;
|
|
1420
|
+
optional fixed64 client_supplied_steam_id = 22;
|
|
1421
|
+
optional .CMsgIPAddress public_ip = 23;
|
|
1422
|
+
optional bytes machine_id = 30;
|
|
1423
|
+
optional uint32 launcher_type = 31 [default = 0];
|
|
1424
|
+
optional uint32 ui_mode = 32 [default = 0];
|
|
1425
|
+
optional uint32 chat_mode = 33 [default = 0];
|
|
1426
|
+
optional bytes steam2_auth_ticket = 41;
|
|
1427
|
+
optional string email_address = 42;
|
|
1428
|
+
optional fixed32 rtime32_account_creation = 43;
|
|
1429
|
+
optional string account_name = 50;
|
|
1430
|
+
optional string password = 51;
|
|
1431
|
+
optional string game_server_token = 52;
|
|
1432
|
+
optional string login_key = 60;
|
|
1433
|
+
optional bool was_converted_deprecated_msg = 70 [default = false];
|
|
1434
|
+
optional string anon_user_target_account_name = 80;
|
|
1435
|
+
optional fixed64 resolved_user_steam_id = 81;
|
|
1436
|
+
optional int32 eresult_sentryfile = 82;
|
|
1437
|
+
optional bytes sha_sentryfile = 83;
|
|
1438
|
+
optional string auth_code = 84;
|
|
1439
|
+
optional int32 otp_type = 85;
|
|
1440
|
+
optional uint32 otp_value = 86;
|
|
1441
|
+
optional string otp_identifier = 87;
|
|
1442
|
+
optional bool steam2_ticket_request = 88;
|
|
1443
|
+
optional bytes sony_psn_ticket = 90;
|
|
1444
|
+
optional string sony_psn_service_id = 91;
|
|
1445
|
+
optional bool create_new_psn_linked_account_if_needed = 92 [default = false];
|
|
1446
|
+
optional string sony_psn_name = 93;
|
|
1447
|
+
optional int32 game_server_app_id = 94;
|
|
1448
|
+
optional bool steamguard_dont_remember_computer = 95;
|
|
1449
|
+
optional string machine_name = 96;
|
|
1450
|
+
optional string machine_name_userchosen = 97;
|
|
1451
|
+
optional string country_override = 98;
|
|
1452
|
+
optional bool is_steam_box = 99;
|
|
1453
|
+
optional uint64 client_instance_id = 100;
|
|
1454
|
+
optional string two_factor_code = 101;
|
|
1455
|
+
optional bool supports_rate_limit_response = 102;
|
|
1456
|
+
optional string web_logon_nonce = 103;
|
|
1457
|
+
optional int32 priority_reason = 104;
|
|
1458
|
+
optional .CMsgClientSecret embedded_client_secret = 105;
|
|
1459
|
+
optional bool disable_partner_autogrants = 106;
|
|
1460
|
+
optional bool is_steam_deck = 107;
|
|
1461
|
+
optional string access_token = 108;
|
|
1462
|
+
optional bool is_chrome_os = 109;
|
|
1463
|
+
optional bool is_tesla = 110;
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
message CMsgClientLogonResponse {
|
|
1467
|
+
optional int32 eresult = 1 [default = 2];
|
|
1468
|
+
optional int32 legacy_out_of_game_heartbeat_seconds = 2;
|
|
1469
|
+
//optional int32 out_of_game_heartbeat_seconds = 2;
|
|
1470
|
+
optional int32 heartbeat_seconds = 3;
|
|
1471
|
+
//optional int32 in_game_heartbeat_seconds = 3;
|
|
1472
|
+
optional uint32 deprecated_public_ip = 4;
|
|
1473
|
+
optional fixed32 rtime32_server_time = 5;
|
|
1474
|
+
optional uint32 account_flags = 6;
|
|
1475
|
+
optional uint32 cell_id = 7;
|
|
1476
|
+
optional string email_domain = 8;
|
|
1477
|
+
optional bytes steam2_ticket = 9;
|
|
1478
|
+
optional int32 eresult_extended = 10;
|
|
1479
|
+
optional string webapi_authenticate_user_nonce = 11;
|
|
1480
|
+
optional uint32 cell_id_ping_threshold = 12;
|
|
1481
|
+
optional bool deprecated_use_pics = 13;
|
|
1482
|
+
optional string vanity_url = 14;
|
|
1483
|
+
optional .CMsgIPAddress public_ip = 15;
|
|
1484
|
+
optional string user_country = 16;
|
|
1485
|
+
optional fixed64 client_supplied_steamid = 20;
|
|
1486
|
+
optional string ip_country_code = 21;
|
|
1487
|
+
optional bytes parental_settings = 22;
|
|
1488
|
+
optional bytes parental_setting_signature = 23;
|
|
1489
|
+
optional int32 count_loginfailures_to_migrate = 24;
|
|
1490
|
+
optional int32 count_disconnects_to_migrate = 25;
|
|
1491
|
+
optional int32 ogs_data_report_time_window = 26;
|
|
1492
|
+
optional uint64 client_instance_id = 27;
|
|
1493
|
+
optional bool force_client_update_check = 28;
|
|
1494
|
+
optional string agreement_session_url = 29;
|
|
1495
|
+
optional uint64 token_id = 30;
|
|
1496
|
+
optional uint64 family_group_id = 31;
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
message CMsgClientManageFriendsGroup {
|
|
1500
|
+
optional int32 groupid = 1;
|
|
1501
|
+
optional string groupname = 2;
|
|
1502
|
+
repeated fixed64 steamid_friends_added = 3;
|
|
1503
|
+
repeated fixed64 steamid_friends_removed = 4;
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
message CMsgClientManageFriendsGroupResponse {
|
|
1507
|
+
optional uint32 eresult = 1;
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
message CMsgClientMMSCreateLobby {
|
|
1511
|
+
optional uint32 app_id = 1;
|
|
1512
|
+
optional int32 max_members = 2;
|
|
1513
|
+
optional int32 lobby_type = 3;
|
|
1514
|
+
optional int32 lobby_flags = 4;
|
|
1515
|
+
optional uint32 cell_id = 5;
|
|
1516
|
+
optional uint32 deprecated_public_ip = 6;
|
|
1517
|
+
optional bytes metadata = 7;
|
|
1518
|
+
optional string persona_name_owner = 8;
|
|
1519
|
+
optional .CMsgIPAddress public_ip = 9;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
message CMsgClientMMSCreateLobbyResponse {
|
|
1523
|
+
optional uint32 app_id = 1;
|
|
1524
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1525
|
+
optional int32 eresult = 3 [default = 2];
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
message CMsgClientMMSGetLobbyData {
|
|
1529
|
+
optional uint32 app_id = 1;
|
|
1530
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
message CMsgClientMMSGetLobbyList {
|
|
1534
|
+
optional uint32 app_id = 1;
|
|
1535
|
+
optional int32 num_lobbies_requested = 3;
|
|
1536
|
+
optional uint32 cell_id = 4;
|
|
1537
|
+
optional uint32 deprecated_public_ip = 5;
|
|
1538
|
+
repeated .CMsgClientMMSGetLobbyList_Filter filters = 6;
|
|
1539
|
+
optional .CMsgIPAddress public_ip = 7;
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1542
|
+
// Used by: common.proto
|
|
1543
|
+
message CMsgClientMMSGetLobbyList_Filter {
|
|
1544
|
+
optional string key = 1;
|
|
1545
|
+
optional string value = 2;
|
|
1546
|
+
optional int32 comparision = 3;
|
|
1547
|
+
optional int32 filter_type = 4;
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
message CMsgClientMMSGetLobbyListResponse {
|
|
1551
|
+
optional uint32 app_id = 1;
|
|
1552
|
+
optional int32 eresult = 3 [default = 2];
|
|
1553
|
+
repeated .CMsgClientMMSGetLobbyListResponse_Lobby lobbies = 4;
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
// Used by: common.proto
|
|
1557
|
+
message CMsgClientMMSGetLobbyListResponse_Lobby {
|
|
1558
|
+
optional fixed64 steam_id = 1;
|
|
1559
|
+
optional int32 max_members = 2;
|
|
1560
|
+
optional int32 lobby_type = 3;
|
|
1561
|
+
optional int32 lobby_flags = 4;
|
|
1562
|
+
optional bytes metadata = 5;
|
|
1563
|
+
optional int32 num_members = 6;
|
|
1564
|
+
optional float distance = 7;
|
|
1565
|
+
optional int64 weight = 8;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
message CMsgClientMMSGetLobbyStatus {
|
|
1569
|
+
optional uint32 app_id = 1;
|
|
1570
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1571
|
+
optional bool claim_membership = 3;
|
|
1572
|
+
optional bool claim_ownership = 4;
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
message CMsgClientMMSGetLobbyStatusResponse {
|
|
1576
|
+
optional uint32 app_id = 1;
|
|
1577
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1578
|
+
optional int32 lobby_status = 3 [(.description) = "enum"];
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
message CMsgClientMMSInviteToLobby {
|
|
1582
|
+
optional uint32 app_id = 1;
|
|
1583
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1584
|
+
optional fixed64 steam_id_user_invited = 3;
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
message CMsgClientMMSJoinLobby {
|
|
1588
|
+
optional uint32 app_id = 1;
|
|
1589
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1590
|
+
optional string persona_name = 3;
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
message CMsgClientMMSJoinLobbyResponse {
|
|
1594
|
+
optional uint32 app_id = 1;
|
|
1595
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1596
|
+
optional int32 chat_room_enter_response = 3;
|
|
1597
|
+
optional int32 max_members = 4;
|
|
1598
|
+
optional int32 lobby_type = 5;
|
|
1599
|
+
optional int32 lobby_flags = 6;
|
|
1600
|
+
optional fixed64 steam_id_owner = 7;
|
|
1601
|
+
optional bytes metadata = 8;
|
|
1602
|
+
repeated .CMsgClientMMSJoinLobbyResponse_Member members = 9;
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
// Used by: common.proto
|
|
1606
|
+
message CMsgClientMMSJoinLobbyResponse_Member {
|
|
1607
|
+
optional fixed64 steam_id = 1;
|
|
1608
|
+
optional string persona_name = 2;
|
|
1609
|
+
optional bytes metadata = 3;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
message CMsgClientMMSLeaveLobby {
|
|
1613
|
+
optional uint32 app_id = 1;
|
|
1614
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
message CMsgClientMMSLeaveLobbyResponse {
|
|
1618
|
+
optional uint32 app_id = 1;
|
|
1619
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1620
|
+
optional int32 eresult = 3 [default = 2];
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
message CMsgClientMMSLobbyChatMsg {
|
|
1624
|
+
optional uint32 app_id = 1;
|
|
1625
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1626
|
+
optional fixed64 steam_id_sender = 3;
|
|
1627
|
+
optional bytes lobby_message = 4;
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
message CMsgClientMMSLobbyData {
|
|
1631
|
+
optional uint32 app_id = 1;
|
|
1632
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1633
|
+
optional int32 num_members = 3;
|
|
1634
|
+
optional int32 max_members = 4;
|
|
1635
|
+
optional int32 lobby_type = 5;
|
|
1636
|
+
optional int32 lobby_flags = 6;
|
|
1637
|
+
optional fixed64 steam_id_owner = 7;
|
|
1638
|
+
optional bytes metadata = 8;
|
|
1639
|
+
repeated .CMsgClientMMSLobbyData_Member members = 9;
|
|
1640
|
+
optional uint32 lobby_cellid = 10;
|
|
1641
|
+
optional bool owner_should_accept_changes = 11;
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
// Used by: common.proto
|
|
1645
|
+
message CMsgClientMMSLobbyData_Member {
|
|
1646
|
+
optional fixed64 steam_id = 1;
|
|
1647
|
+
optional string persona_name = 2;
|
|
1648
|
+
optional bytes metadata = 3;
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
message CMsgClientMMSLobbyGameServerSet {
|
|
1652
|
+
optional uint32 app_id = 1;
|
|
1653
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1654
|
+
optional uint32 deprecated_game_server_ip = 3;
|
|
1655
|
+
optional uint32 game_server_port = 4;
|
|
1656
|
+
optional fixed64 game_server_steam_id = 5;
|
|
1657
|
+
optional .CMsgIPAddress game_server_ip = 6;
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
message CMsgClientMMSSendLobbyChatMsg {
|
|
1661
|
+
optional uint32 app_id = 1;
|
|
1662
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1663
|
+
optional fixed64 steam_id_target = 3;
|
|
1664
|
+
optional bytes lobby_message = 4;
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
message CMsgClientMMSSetLobbyData {
|
|
1668
|
+
optional uint32 app_id = 1;
|
|
1669
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1670
|
+
optional fixed64 steam_id_member = 3;
|
|
1671
|
+
optional int32 max_members = 4;
|
|
1672
|
+
optional int32 lobby_type = 5;
|
|
1673
|
+
optional int32 lobby_flags = 6;
|
|
1674
|
+
optional bytes metadata = 7;
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
message CMsgClientMMSSetLobbyDataResponse {
|
|
1678
|
+
optional uint32 app_id = 1;
|
|
1679
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1680
|
+
optional int32 eresult = 3 [default = 2];
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
message CMsgClientMMSSetLobbyGameServer {
|
|
1684
|
+
optional uint32 app_id = 1;
|
|
1685
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1686
|
+
optional uint32 deprecated_game_server_ip = 3;
|
|
1687
|
+
optional uint32 game_server_port = 4;
|
|
1688
|
+
optional fixed64 game_server_steam_id = 5;
|
|
1689
|
+
optional .CMsgIPAddress game_server_ip = 6;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
message CMsgClientMMSSetLobbyLinked {
|
|
1693
|
+
optional uint32 app_id = 1;
|
|
1694
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1695
|
+
optional fixed64 steam_id_lobby2 = 3;
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
message CMsgClientMMSSetLobbyOwner {
|
|
1699
|
+
optional uint32 app_id = 1;
|
|
1700
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1701
|
+
optional fixed64 steam_id_new_owner = 3;
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
message CMsgClientMMSSetLobbyOwnerResponse {
|
|
1705
|
+
optional uint32 app_id = 1;
|
|
1706
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1707
|
+
optional int32 eresult = 3 [default = 2];
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
message CMsgClientMMSSetRatelimitPolicyOnClient {
|
|
1711
|
+
optional uint32 app_id = 1;
|
|
1712
|
+
optional bool enable_rate_limits = 2;
|
|
1713
|
+
optional int32 seconds_per_message = 3;
|
|
1714
|
+
optional int32 milliseconds_per_data_update = 4;
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
message CMsgClientMMSUserJoinedLobby {
|
|
1718
|
+
optional uint32 app_id = 1;
|
|
1719
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1720
|
+
optional fixed64 steam_id_user = 3;
|
|
1721
|
+
optional string persona_name = 4;
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1724
|
+
message CMsgClientMMSUserLeftLobby {
|
|
1725
|
+
optional uint32 app_id = 1;
|
|
1726
|
+
optional fixed64 steam_id_lobby = 2;
|
|
1727
|
+
optional fixed64 steam_id_user = 3;
|
|
1728
|
+
optional string persona_name = 4;
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1731
|
+
message CMsgClientNetworkingCertReply {
|
|
1732
|
+
optional bytes cert = 4;
|
|
1733
|
+
optional fixed64 ca_key_id = 5;
|
|
1734
|
+
optional bytes ca_signature = 6;
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
message CMsgClientNetworkingCertRequest {
|
|
1738
|
+
optional bytes key_data = 2;
|
|
1739
|
+
optional uint32 app_id = 3;
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
message CMsgClientNetworkingMobileCertReply {
|
|
1743
|
+
optional string encoded_cert = 1;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
message CMsgClientNetworkingMobileCertRequest {
|
|
1747
|
+
optional uint32 app_id = 1;
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
message CMsgClientNewLoginKey {
|
|
1751
|
+
optional uint32 unique_id = 1;
|
|
1752
|
+
optional string login_key = 2;
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
message CMsgClientNewLoginKeyAccepted {
|
|
1756
|
+
optional uint32 unique_id = 1;
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
message CMsgClientOfflineMessageNotification {
|
|
1760
|
+
optional uint32 offline_messages = 1;
|
|
1761
|
+
repeated uint32 friends_with_offline_messages = 2;
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
message CMsgClientOGSReportBug {
|
|
1765
|
+
optional uint64 sessionid = 1;
|
|
1766
|
+
optional string bugtext = 2;
|
|
1767
|
+
optional bytes screenshot = 3;
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
message CMsgClientOGSReportString {
|
|
1771
|
+
optional bool accumulated = 1;
|
|
1772
|
+
optional uint64 sessionid = 2;
|
|
1773
|
+
optional int32 severity = 3;
|
|
1774
|
+
optional string formatter = 4;
|
|
1775
|
+
optional bytes varargs = 5;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
message CMsgClientP2PConnectionFailInfo {
|
|
1779
|
+
optional fixed64 steam_id_dest = 1;
|
|
1780
|
+
optional fixed64 steam_id_src = 2;
|
|
1781
|
+
optional uint32 app_id = 3;
|
|
1782
|
+
optional uint32 ep2p_session_error = 4;
|
|
1783
|
+
optional fixed64 connection_id_dest = 5;
|
|
1784
|
+
optional uint32 close_reason = 7;
|
|
1785
|
+
optional string close_message = 8;
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
message CMsgClientP2PConnectionInfo {
|
|
1789
|
+
optional fixed64 steam_id_dest = 1;
|
|
1790
|
+
optional fixed64 steam_id_src = 2;
|
|
1791
|
+
optional uint32 app_id = 3;
|
|
1792
|
+
optional bytes candidate = 4;
|
|
1793
|
+
optional fixed64 connection_id_src = 5;
|
|
1794
|
+
optional bytes rendezvous = 6;
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
message CMsgClientPackageInfoRequest {
|
|
1798
|
+
repeated uint32 package_ids = 1;
|
|
1799
|
+
optional bool meta_data_only = 2;
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
message CMsgClientPackageInfoResponse {
|
|
1803
|
+
repeated .CMsgClientPackageInfoResponse_Package packages = 1;
|
|
1804
|
+
repeated uint32 packages_unknown = 2;
|
|
1805
|
+
optional uint32 packages_pending = 3;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
// Used by: common.proto
|
|
1809
|
+
message CMsgClientPackageInfoResponse_Package {
|
|
1810
|
+
optional uint32 package_id = 1;
|
|
1811
|
+
optional uint32 change_number = 2;
|
|
1812
|
+
optional bytes sha = 3;
|
|
1813
|
+
optional bytes buffer = 4;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
message CMsgClientPersonaState {
|
|
1817
|
+
optional uint32 status_flags = 1;
|
|
1818
|
+
repeated .CMsgClientPersonaState_Friend friends = 2;
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
// Used by: ChatRoom, ChatRoomClient, common.proto
|
|
1822
|
+
message CMsgClientPersonaState_Friend {
|
|
1823
|
+
optional fixed64 friendid = 1;
|
|
1824
|
+
optional uint32 persona_state = 2;
|
|
1825
|
+
optional uint32 game_played_app_id = 3;
|
|
1826
|
+
optional uint32 game_server_ip = 4;
|
|
1827
|
+
optional uint32 game_server_port = 5;
|
|
1828
|
+
optional uint32 persona_state_flags = 6;
|
|
1829
|
+
optional uint32 online_session_instances = 7;
|
|
1830
|
+
optional bool persona_set_by_user = 10;
|
|
1831
|
+
optional string player_name = 15;
|
|
1832
|
+
optional uint32 query_port = 20;
|
|
1833
|
+
optional fixed64 steamid_source = 25;
|
|
1834
|
+
optional bytes avatar_hash = 31;
|
|
1835
|
+
optional uint32 last_logoff = 45;
|
|
1836
|
+
optional uint32 last_logon = 46;
|
|
1837
|
+
optional uint32 last_seen_online = 47;
|
|
1838
|
+
optional uint32 clan_rank = 50;
|
|
1839
|
+
optional string game_name = 55;
|
|
1840
|
+
optional fixed64 gameid = 56;
|
|
1841
|
+
optional bytes game_data_blob = 60;
|
|
1842
|
+
optional .CMsgClientPersonaState_Friend_ClanData clan_data = 64;
|
|
1843
|
+
optional string clan_tag = 65;
|
|
1844
|
+
repeated .CMsgClientPersonaState_Friend_KV rich_presence = 71;
|
|
1845
|
+
optional fixed64 broadcast_id = 72;
|
|
1846
|
+
optional fixed64 game_lobby_id = 73;
|
|
1847
|
+
optional uint32 watching_broadcast_accountid = 74;
|
|
1848
|
+
optional uint32 watching_broadcast_appid = 75;
|
|
1849
|
+
optional uint32 watching_broadcast_viewers = 76;
|
|
1850
|
+
optional string watching_broadcast_title = 77;
|
|
1851
|
+
optional bool is_community_banned = 78;
|
|
1852
|
+
optional bool player_name_pending_review = 79;
|
|
1853
|
+
optional bool avatar_pending_review = 80;
|
|
1854
|
+
}
|
|
1855
|
+
|
|
1856
|
+
// Used by: ChatRoom, ChatRoomClient, common.proto
|
|
1857
|
+
message CMsgClientPersonaState_Friend_ClanData {
|
|
1858
|
+
optional uint32 ogg_app_id = 1;
|
|
1859
|
+
optional uint64 chat_group_id = 2;
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
// Used by: ChatRoom, ChatRoomClient, common.proto
|
|
1863
|
+
message CMsgClientPersonaState_Friend_KV {
|
|
1864
|
+
optional string key = 1;
|
|
1865
|
+
optional string value = 2;
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
message CMsgClientPICSAccessTokenRequest {
|
|
1869
|
+
repeated uint32 packageids = 1;
|
|
1870
|
+
repeated uint32 appids = 2;
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
message CMsgClientPICSAccessTokenResponse {
|
|
1874
|
+
repeated .CMsgClientPICSAccessTokenResponse_PackageToken package_access_tokens = 1;
|
|
1875
|
+
repeated uint32 package_denied_tokens = 2;
|
|
1876
|
+
repeated .CMsgClientPICSAccessTokenResponse_AppToken app_access_tokens = 3;
|
|
1877
|
+
repeated uint32 app_denied_tokens = 4;
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
// Used by: common.proto
|
|
1881
|
+
message CMsgClientPICSAccessTokenResponse_AppToken {
|
|
1882
|
+
optional uint32 appid = 1;
|
|
1883
|
+
optional uint64 access_token = 2;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
// Used by: common.proto
|
|
1887
|
+
message CMsgClientPICSAccessTokenResponse_PackageToken {
|
|
1888
|
+
optional uint32 packageid = 1;
|
|
1889
|
+
optional uint64 access_token = 2;
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
message CMsgClientPICSChangesSinceRequest {
|
|
1893
|
+
optional uint32 since_change_number = 1;
|
|
1894
|
+
optional bool send_app_info_changes = 2;
|
|
1895
|
+
optional bool send_package_info_changes = 3;
|
|
1896
|
+
optional uint32 num_app_info_cached = 4;
|
|
1897
|
+
optional uint32 num_package_info_cached = 5;
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
message CMsgClientPICSChangesSinceResponse {
|
|
1901
|
+
optional uint32 current_change_number = 1;
|
|
1902
|
+
optional uint32 since_change_number = 2;
|
|
1903
|
+
optional bool force_full_update = 3;
|
|
1904
|
+
repeated .CMsgClientPICSChangesSinceResponse_PackageChange package_changes = 4;
|
|
1905
|
+
repeated .CMsgClientPICSChangesSinceResponse_AppChange app_changes = 5;
|
|
1906
|
+
optional bool force_full_app_update = 6;
|
|
1907
|
+
optional bool force_full_package_update = 7;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
// Used by: common.proto
|
|
1911
|
+
message CMsgClientPICSChangesSinceResponse_AppChange {
|
|
1912
|
+
optional uint32 appid = 1;
|
|
1913
|
+
optional uint32 change_number = 2;
|
|
1914
|
+
optional bool needs_token = 3;
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1917
|
+
// Used by: common.proto
|
|
1918
|
+
message CMsgClientPICSChangesSinceResponse_PackageChange {
|
|
1919
|
+
optional uint32 packageid = 1;
|
|
1920
|
+
optional uint32 change_number = 2;
|
|
1921
|
+
optional bool needs_token = 3;
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
message CMsgClientPICSProductInfoRequest {
|
|
1925
|
+
repeated .CMsgClientPICSProductInfoRequest_PackageInfo packages = 1;
|
|
1926
|
+
repeated .CMsgClientPICSProductInfoRequest_AppInfo apps = 2;
|
|
1927
|
+
optional bool meta_data_only = 3;
|
|
1928
|
+
optional uint32 num_prev_failed = 4;
|
|
1929
|
+
optional uint32 supports_package_tokens = 5;
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
// Used by: common.proto
|
|
1933
|
+
message CMsgClientPICSProductInfoRequest_AppInfo {
|
|
1934
|
+
optional uint32 appid = 1;
|
|
1935
|
+
optional uint64 access_token = 2;
|
|
1936
|
+
optional bool only_public_obsolete = 3;
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
// Used by: common.proto
|
|
1940
|
+
message CMsgClientPICSProductInfoRequest_PackageInfo {
|
|
1941
|
+
optional uint32 packageid = 1;
|
|
1942
|
+
optional uint64 access_token = 2;
|
|
1943
|
+
}
|
|
1944
|
+
|
|
1945
|
+
message CMsgClientPICSProductInfoResponse {
|
|
1946
|
+
repeated .CMsgClientPICSProductInfoResponse_AppInfo apps = 1;
|
|
1947
|
+
repeated uint32 unknown_appids = 2;
|
|
1948
|
+
repeated .CMsgClientPICSProductInfoResponse_PackageInfo packages = 3;
|
|
1949
|
+
repeated uint32 unknown_packageids = 4;
|
|
1950
|
+
optional bool meta_data_only = 5;
|
|
1951
|
+
optional bool response_pending = 6;
|
|
1952
|
+
optional uint32 http_min_size = 7;
|
|
1953
|
+
optional string http_host = 8;
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
// Used by: common.proto
|
|
1957
|
+
message CMsgClientPICSProductInfoResponse_AppInfo {
|
|
1958
|
+
optional uint32 appid = 1;
|
|
1959
|
+
optional uint32 change_number = 2;
|
|
1960
|
+
optional bool missing_token = 3;
|
|
1961
|
+
optional bytes sha = 4;
|
|
1962
|
+
optional bytes buffer = 5;
|
|
1963
|
+
optional bool only_public = 6;
|
|
1964
|
+
optional uint32 size = 7;
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
// Used by: common.proto
|
|
1968
|
+
message CMsgClientPICSProductInfoResponse_PackageInfo {
|
|
1969
|
+
optional uint32 packageid = 1;
|
|
1970
|
+
optional uint32 change_number = 2;
|
|
1971
|
+
optional bool missing_token = 3;
|
|
1972
|
+
optional bytes sha = 4;
|
|
1973
|
+
optional bytes buffer = 5;
|
|
1974
|
+
optional uint32 size = 6;
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
message CMsgClientPlayerNicknameList {
|
|
1978
|
+
optional bool removal = 1;
|
|
1979
|
+
optional bool incremental = 2;
|
|
1980
|
+
repeated .CMsgClientPlayerNicknameList_PlayerNickname nicknames = 3;
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1983
|
+
// Used by: common.proto
|
|
1984
|
+
message CMsgClientPlayerNicknameList_PlayerNickname {
|
|
1985
|
+
optional fixed64 steamid = 1;
|
|
1986
|
+
optional string nickname = 3;
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1989
|
+
message CMsgClientPlayingSessionState {
|
|
1990
|
+
optional bool playing_blocked = 2;
|
|
1991
|
+
optional uint32 playing_app = 3;
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
message CMsgClientPurchaseResponse {
|
|
1995
|
+
optional int32 eresult = 1 [default = 2];
|
|
1996
|
+
optional int32 purchase_result_details = 2;
|
|
1997
|
+
optional bytes purchase_receipt_info = 3;
|
|
1998
|
+
}
|
|
1999
|
+
|
|
2000
|
+
message CMsgClientPurchaseWithMachineID {
|
|
2001
|
+
optional uint32 package_id = 1;
|
|
2002
|
+
optional bytes machine_info = 2;
|
|
2003
|
+
}
|
|
2004
|
+
|
|
2005
|
+
message CMsgClientReadMachineAuth {
|
|
2006
|
+
optional string filename = 1;
|
|
2007
|
+
optional uint32 offset = 2;
|
|
2008
|
+
optional uint32 cubtoread = 3;
|
|
2009
|
+
}
|
|
2010
|
+
|
|
2011
|
+
message CMsgClientReadMachineAuthResponse {
|
|
2012
|
+
optional string filename = 1;
|
|
2013
|
+
optional uint32 eresult = 2;
|
|
2014
|
+
optional uint32 filesize = 3;
|
|
2015
|
+
optional bytes sha_file = 4;
|
|
2016
|
+
optional uint32 getlasterror = 5;
|
|
2017
|
+
optional uint32 offset = 6;
|
|
2018
|
+
optional uint32 cubread = 7;
|
|
2019
|
+
optional bytes bytes_read = 8;
|
|
2020
|
+
optional string filename_sentry = 9;
|
|
2021
|
+
}
|
|
2022
|
+
|
|
2023
|
+
message CMsgClientRedeemGuestPass {
|
|
2024
|
+
optional fixed64 guest_pass_id = 1;
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
message CMsgClientRedeemGuestPassResponse {
|
|
2028
|
+
optional uint32 eresult = 1 [default = 2];
|
|
2029
|
+
optional uint32 package_id = 2;
|
|
2030
|
+
optional uint32 must_own_appid = 3;
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
message CMsgClientRegisterAuthTicketWithCM {
|
|
2034
|
+
optional uint32 protocol_version = 1;
|
|
2035
|
+
optional bytes ticket = 3;
|
|
2036
|
+
optional uint64 client_instance_id = 4;
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
message CMsgClientRegisterKey {
|
|
2040
|
+
optional string key = 1;
|
|
2041
|
+
}
|
|
2042
|
+
|
|
2043
|
+
message CMsgClientRegisterOEMMachine {
|
|
2044
|
+
optional bytes oem_register_file = 1;
|
|
2045
|
+
}
|
|
2046
|
+
|
|
2047
|
+
message CMsgClientRegisterOEMMachineResponse {
|
|
2048
|
+
optional uint32 eresult = 1;
|
|
2049
|
+
}
|
|
2050
|
+
|
|
2051
|
+
message CMsgClientRemoveFriend {
|
|
2052
|
+
optional fixed64 friendid = 1;
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2055
|
+
message CMsgClientRemoveFriendFromGroup {
|
|
2056
|
+
optional int32 groupid = 1;
|
|
2057
|
+
optional fixed64 steamiduser = 2;
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
message CMsgClientRemoveFriendFromGroupResponse {
|
|
2061
|
+
optional uint32 eresult = 1;
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
message CMsgClientReportOverlayDetourFailure {
|
|
2065
|
+
repeated string failure_strings = 1;
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
message CMsgClientRequestAccountData {
|
|
2069
|
+
optional string account_or_email = 1;
|
|
2070
|
+
optional uint32 action = 2;
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
message CMsgClientRequestAccountDataResponse {
|
|
2074
|
+
optional uint32 action = 1;
|
|
2075
|
+
optional uint32 eresult = 2;
|
|
2076
|
+
optional string account_name = 3;
|
|
2077
|
+
optional uint32 ct_matches = 4;
|
|
2078
|
+
optional string account_name_suggestion1 = 5;
|
|
2079
|
+
optional string account_name_suggestion2 = 6;
|
|
2080
|
+
optional string account_name_suggestion3 = 7;
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
message CMsgClientRequestCommentNotifications {
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
message CMsgClientRequestedClientStats {
|
|
2087
|
+
repeated .CMsgClientRequestedClientStats_StatsToSend stats_to_send = 1;
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
// Used by: common.proto
|
|
2091
|
+
message CMsgClientRequestedClientStats_StatsToSend {
|
|
2092
|
+
optional uint32 client_stat = 1;
|
|
2093
|
+
optional uint32 stat_aggregate_method = 2;
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
message CMsgClientRequestEncryptedAppTicket {
|
|
2097
|
+
optional uint32 app_id = 1;
|
|
2098
|
+
optional bytes userdata = 2;
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
message CMsgClientRequestEncryptedAppTicketResponse {
|
|
2102
|
+
optional uint32 app_id = 1;
|
|
2103
|
+
optional int32 eresult = 2 [default = 2];
|
|
2104
|
+
optional .EncryptedAppTicket encrypted_app_ticket = 3;
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
message CMsgClientRequestForgottenPasswordEmail {
|
|
2108
|
+
optional string account_name = 1;
|
|
2109
|
+
optional string password_tried = 2;
|
|
2110
|
+
}
|
|
2111
|
+
|
|
2112
|
+
message CMsgClientRequestForgottenPasswordEmailResponse {
|
|
2113
|
+
optional uint32 eResult = 1;
|
|
2114
|
+
optional bool use_secret_question = 2;
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2117
|
+
message CMsgClientRequestFreeLicense {
|
|
2118
|
+
repeated uint32 appids = 2;
|
|
2119
|
+
}
|
|
2120
|
+
|
|
2121
|
+
message CMsgClientRequestFreeLicenseResponse {
|
|
2122
|
+
optional uint32 eresult = 1 [default = 2];
|
|
2123
|
+
repeated uint32 granted_packageids = 2;
|
|
2124
|
+
repeated uint32 granted_appids = 3;
|
|
2125
|
+
}
|
|
2126
|
+
|
|
2127
|
+
message CMsgClientRequestFriendData {
|
|
2128
|
+
optional uint32 persona_state_requested = 1;
|
|
2129
|
+
repeated fixed64 friends = 2;
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
message CMsgClientRequestItemAnnouncements {
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
message CMsgClientRequestMachineAuth {
|
|
2136
|
+
optional string filename = 1;
|
|
2137
|
+
optional uint32 eresult_sentryfile = 2;
|
|
2138
|
+
optional uint32 filesize = 3;
|
|
2139
|
+
optional bytes sha_sentryfile = 4;
|
|
2140
|
+
optional int32 lock_account_action = 6;
|
|
2141
|
+
optional uint32 otp_type = 7;
|
|
2142
|
+
optional string otp_identifier = 8;
|
|
2143
|
+
optional bytes otp_sharedsecret = 9;
|
|
2144
|
+
optional uint32 otp_value = 10;
|
|
2145
|
+
optional string machine_name = 11;
|
|
2146
|
+
optional string machine_name_userchosen = 12;
|
|
2147
|
+
}
|
|
2148
|
+
|
|
2149
|
+
message CMsgClientRequestMachineAuthResponse {
|
|
2150
|
+
optional uint32 eresult = 1;
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
message CMsgClientRequestOfflineMessageCount {
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
message CMsgClientRequestWebAPIAuthenticateUserNonce {
|
|
2157
|
+
optional int32 token_type = 1 [default = -1];
|
|
2158
|
+
}
|
|
2159
|
+
|
|
2160
|
+
message CMsgClientRequestWebAPIAuthenticateUserNonceResponse {
|
|
2161
|
+
optional int32 eresult = 1 [default = 2];
|
|
2162
|
+
optional int32 token_type = 3 [default = -1];
|
|
2163
|
+
optional string webapi_authenticate_user_nonce = 11;
|
|
2164
|
+
}
|
|
2165
|
+
|
|
2166
|
+
message CMsgClientRichPresenceInfo {
|
|
2167
|
+
repeated .CMsgClientRichPresenceInfo_RichPresence rich_presence = 1;
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
// Used by: common.proto
|
|
2171
|
+
message CMsgClientRichPresenceInfo_RichPresence {
|
|
2172
|
+
optional fixed64 steamid_user = 1;
|
|
2173
|
+
optional bytes rich_presence_kv = 2;
|
|
2174
|
+
}
|
|
2175
|
+
|
|
2176
|
+
message CMsgClientRichPresenceRequest {
|
|
2177
|
+
repeated fixed64 steamid_request = 1;
|
|
2178
|
+
}
|
|
2179
|
+
|
|
2180
|
+
message CMsgClientRichPresenceUpload {
|
|
2181
|
+
optional bytes rich_presence_kv = 1;
|
|
2182
|
+
repeated fixed64 steamid_broadcast = 2;
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2185
|
+
message CMsgClientScreenshotsChanged {
|
|
2186
|
+
}
|
|
2187
|
+
|
|
2188
|
+
// Used by: common.proto
|
|
2189
|
+
message CMsgClientSecret {
|
|
2190
|
+
optional uint32 version = 1;
|
|
2191
|
+
optional uint32 appid = 2;
|
|
2192
|
+
optional uint32 deviceid = 3;
|
|
2193
|
+
optional fixed64 nonce = 4;
|
|
2194
|
+
optional bytes hmac = 5;
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2197
|
+
message CMsgClientSentLogs {
|
|
2198
|
+
}
|
|
2199
|
+
|
|
2200
|
+
message CMsgClientServersAvailable {
|
|
2201
|
+
repeated .CMsgClientServersAvailable_Server_Types_Available server_types_available = 1;
|
|
2202
|
+
optional uint32 server_type_for_auth_services = 2;
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2205
|
+
// Used by: common.proto
|
|
2206
|
+
message CMsgClientServersAvailable_Server_Types_Available {
|
|
2207
|
+
optional uint32 server = 1;
|
|
2208
|
+
optional bool changed = 2;
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
message CMsgClientServerTimestampRequest {
|
|
2212
|
+
optional uint64 client_request_timestamp = 1;
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
message CMsgClientServerTimestampResponse {
|
|
2216
|
+
optional uint64 client_request_timestamp = 1;
|
|
2217
|
+
optional uint64 server_timestamp_ms = 2;
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
message CMsgClientServiceCall {
|
|
2221
|
+
optional bytes sysid_routing = 1;
|
|
2222
|
+
optional uint32 call_handle = 2;
|
|
2223
|
+
optional uint32 module_crc = 3;
|
|
2224
|
+
optional bytes module_hash = 4;
|
|
2225
|
+
optional uint32 function_id = 5;
|
|
2226
|
+
optional uint32 cub_output_max = 6;
|
|
2227
|
+
optional uint32 flags = 7;
|
|
2228
|
+
optional bytes callparameter = 8;
|
|
2229
|
+
optional bool ping_only = 9;
|
|
2230
|
+
optional uint32 max_outstanding_calls = 10;
|
|
2231
|
+
}
|
|
2232
|
+
|
|
2233
|
+
message CMsgClientServiceCallResponse {
|
|
2234
|
+
optional bytes sysid_routing = 1;
|
|
2235
|
+
optional uint32 call_handle = 2;
|
|
2236
|
+
optional uint32 module_crc = 3;
|
|
2237
|
+
optional bytes module_hash = 4;
|
|
2238
|
+
optional uint32 ecallresult = 5;
|
|
2239
|
+
optional bytes result_content = 6;
|
|
2240
|
+
optional bytes os_version_info = 7;
|
|
2241
|
+
optional bytes system_info = 8;
|
|
2242
|
+
optional fixed64 load_address = 9;
|
|
2243
|
+
optional bytes exception_record = 10;
|
|
2244
|
+
optional bytes portable_os_version_info = 11;
|
|
2245
|
+
optional bytes portable_system_info = 12;
|
|
2246
|
+
optional bool was_converted = 13;
|
|
2247
|
+
optional uint32 internal_result = 14;
|
|
2248
|
+
optional uint32 current_count = 15;
|
|
2249
|
+
optional uint32 last_call_handle = 16;
|
|
2250
|
+
optional uint32 last_call_module_crc = 17;
|
|
2251
|
+
optional bytes last_call_sysid_routing = 18;
|
|
2252
|
+
optional uint32 last_ecallresult = 19;
|
|
2253
|
+
optional uint32 last_callissue_delta = 20;
|
|
2254
|
+
optional uint32 last_callcomplete_delta = 21;
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2257
|
+
message CMsgClientServiceMethodLegacy {
|
|
2258
|
+
optional string method_name = 1;
|
|
2259
|
+
optional bytes serialized_method = 2;
|
|
2260
|
+
optional bool is_notification = 3;
|
|
2261
|
+
}
|
|
2262
|
+
|
|
2263
|
+
message CMsgClientServiceMethodLegacyResponse {
|
|
2264
|
+
optional string method_name = 1;
|
|
2265
|
+
optional bytes serialized_method_response = 2;
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2268
|
+
message CMsgClientServiceModule {
|
|
2269
|
+
optional uint32 module_crc = 1;
|
|
2270
|
+
optional bytes module_hash = 2;
|
|
2271
|
+
optional bytes module_content = 3;
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2274
|
+
message CMsgClientSessionToken {
|
|
2275
|
+
optional uint64 token = 1;
|
|
2276
|
+
}
|
|
2277
|
+
|
|
2278
|
+
message CMsgClientSetClientAppUpdateState {
|
|
2279
|
+
optional uint32 appid = 1;
|
|
2280
|
+
optional bool update = 2;
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2283
|
+
message CMsgClientSetClientAppUpdateStateResponse {
|
|
2284
|
+
optional uint32 result = 1;
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
message CMsgClientSetPlayerNickname {
|
|
2288
|
+
optional fixed64 steamid = 1;
|
|
2289
|
+
optional string nickname = 2;
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2292
|
+
message CMsgClientSetPlayerNicknameResponse {
|
|
2293
|
+
optional uint32 eresult = 1;
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
message CMsgClientSharedLibraryLockStatus {
|
|
2297
|
+
repeated .CMsgClientSharedLibraryLockStatus_LockedLibrary locked_library = 1;
|
|
2298
|
+
optional uint32 own_library_locked_by = 2;
|
|
2299
|
+
}
|
|
2300
|
+
|
|
2301
|
+
// Used by: common.proto
|
|
2302
|
+
message CMsgClientSharedLibraryLockStatus_LockedLibrary {
|
|
2303
|
+
optional uint32 owner_id = 1;
|
|
2304
|
+
optional uint32 locked_by = 2;
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2307
|
+
message CMsgClientSharedLibraryStopPlaying {
|
|
2308
|
+
optional int32 seconds_left = 1;
|
|
2309
|
+
repeated .CMsgClientSharedLibraryStopPlaying_StopApp stop_apps = 2;
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2312
|
+
// Used by: common.proto
|
|
2313
|
+
message CMsgClientSharedLibraryStopPlaying_StopApp {
|
|
2314
|
+
optional uint32 app_id = 1;
|
|
2315
|
+
optional uint32 owner_id = 2;
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
message CMsgClientStat2 {
|
|
2319
|
+
repeated .CMsgClientStat2_StatDetail stat_detail = 1;
|
|
2320
|
+
}
|
|
2321
|
+
|
|
2322
|
+
// Used by: common.proto
|
|
2323
|
+
message CMsgClientStat2_StatDetail {
|
|
2324
|
+
optional uint32 client_stat = 1;
|
|
2325
|
+
optional int64 ll_value = 2;
|
|
2326
|
+
optional uint32 time_of_day = 3;
|
|
2327
|
+
optional uint32 cell_id = 4;
|
|
2328
|
+
optional uint32 depot_id = 5;
|
|
2329
|
+
optional uint32 app_id = 6;
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2332
|
+
message CMsgClientStatsUpdated {
|
|
2333
|
+
optional fixed64 steam_id = 1;
|
|
2334
|
+
optional fixed64 game_id = 2;
|
|
2335
|
+
optional uint32 crc_stats = 3;
|
|
2336
|
+
repeated .CMsgClientStatsUpdated_Updated_Stats updated_stats = 4;
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2339
|
+
// Used by: common.proto
|
|
2340
|
+
message CMsgClientStatsUpdated_Updated_Stats {
|
|
2341
|
+
optional uint32 stat_id = 1;
|
|
2342
|
+
optional uint32 stat_value = 2;
|
|
2343
|
+
}
|
|
2344
|
+
|
|
2345
|
+
message CMsgClientStoreUserStats {
|
|
2346
|
+
optional fixed64 game_id = 1;
|
|
2347
|
+
optional bool explicit_reset = 2;
|
|
2348
|
+
repeated .CMsgClientStoreUserStats_Stats_To_Store stats_to_store = 3;
|
|
2349
|
+
}
|
|
2350
|
+
|
|
2351
|
+
// Used by: common.proto
|
|
2352
|
+
message CMsgClientStoreUserStats_Stats_To_Store {
|
|
2353
|
+
optional uint32 stat_id = 1;
|
|
2354
|
+
optional uint32 stat_value = 2;
|
|
2355
|
+
}
|
|
2356
|
+
|
|
2357
|
+
message CMsgClientStoreUserStats2 {
|
|
2358
|
+
optional fixed64 game_id = 1;
|
|
2359
|
+
optional fixed64 settor_steam_id = 2;
|
|
2360
|
+
optional fixed64 settee_steam_id = 3;
|
|
2361
|
+
optional uint32 crc_stats = 4;
|
|
2362
|
+
optional bool explicit_reset = 5;
|
|
2363
|
+
repeated .CMsgClientStoreUserStats2_Stats stats = 6;
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2366
|
+
// Used by: common.proto
|
|
2367
|
+
message CMsgClientStoreUserStats2_Stats {
|
|
2368
|
+
optional uint32 stat_id = 1;
|
|
2369
|
+
optional uint32 stat_value = 2;
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
message CMsgClientStoreUserStatsResponse {
|
|
2373
|
+
optional fixed64 game_id = 1;
|
|
2374
|
+
optional int32 eresult = 2 [default = 2];
|
|
2375
|
+
optional uint32 crc_stats = 3;
|
|
2376
|
+
repeated .CMsgClientStoreUserStatsResponse_Stats_Failed_Validation stats_failed_validation = 4;
|
|
2377
|
+
optional bool stats_out_of_date = 5;
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2380
|
+
// Used by: common.proto
|
|
2381
|
+
message CMsgClientStoreUserStatsResponse_Stats_Failed_Validation {
|
|
2382
|
+
optional uint32 stat_id = 1;
|
|
2383
|
+
optional uint32 reverted_stat_value = 2;
|
|
2384
|
+
}
|
|
2385
|
+
|
|
2386
|
+
message CMsgClientTicketAuthComplete {
|
|
2387
|
+
optional fixed64 steam_id = 1;
|
|
2388
|
+
optional fixed64 game_id = 2;
|
|
2389
|
+
optional uint32 estate = 3;
|
|
2390
|
+
optional uint32 eauth_session_response = 4;
|
|
2391
|
+
optional bytes DEPRECATED_ticket = 5;
|
|
2392
|
+
optional uint32 ticket_crc = 6;
|
|
2393
|
+
optional uint32 ticket_sequence = 7;
|
|
2394
|
+
optional fixed64 owner_steam_id = 8;
|
|
2395
|
+
}
|
|
2396
|
+
|
|
2397
|
+
message CMsgClientUCMAddScreenshot {
|
|
2398
|
+
optional uint32 appid = 1;
|
|
2399
|
+
optional string filename = 2;
|
|
2400
|
+
optional string thumbname = 3;
|
|
2401
|
+
optional fixed32 rtime32_created = 4;
|
|
2402
|
+
optional uint32 width = 5;
|
|
2403
|
+
optional uint32 height = 6;
|
|
2404
|
+
optional uint32 permissions = 7;
|
|
2405
|
+
optional string caption = 8;
|
|
2406
|
+
optional string shortcut_name = 9;
|
|
2407
|
+
repeated .CMsgClientUCMAddScreenshot_Tag tag = 10;
|
|
2408
|
+
repeated fixed64 tagged_steamid = 11;
|
|
2409
|
+
optional bool spoiler_tag = 12;
|
|
2410
|
+
repeated uint64 tagged_publishedfileid = 13;
|
|
2411
|
+
optional string vr_filename = 14;
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
// Used by: common.proto
|
|
2415
|
+
message CMsgClientUCMAddScreenshot_Tag {
|
|
2416
|
+
optional string tag_name = 1;
|
|
2417
|
+
optional string tag_value = 2;
|
|
2418
|
+
}
|
|
2419
|
+
|
|
2420
|
+
message CMsgClientUCMAddScreenshotResponse {
|
|
2421
|
+
optional int32 eresult = 1 [default = 2];
|
|
2422
|
+
optional fixed64 screenshotid = 2 [default = 18446744073709551615];
|
|
2423
|
+
}
|
|
2424
|
+
|
|
2425
|
+
message CMsgClientUCMDeletePublishedFile {
|
|
2426
|
+
optional fixed64 published_file_id = 1;
|
|
2427
|
+
optional uint32 app_id = 2;
|
|
2428
|
+
}
|
|
2429
|
+
|
|
2430
|
+
message CMsgClientUCMDeletePublishedFileResponse {
|
|
2431
|
+
optional int32 eresult = 1 [default = 2];
|
|
2432
|
+
}
|
|
2433
|
+
|
|
2434
|
+
message CMsgClientUCMDeleteScreenshot {
|
|
2435
|
+
optional fixed64 screenshotid = 1 [default = 18446744073709551615];
|
|
2436
|
+
}
|
|
2437
|
+
|
|
2438
|
+
message CMsgClientUCMDeleteScreenshotResponse {
|
|
2439
|
+
optional int32 eresult = 1 [default = 2];
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
message CMsgClientUCMEnumeratePublishedFilesByUserAction {
|
|
2443
|
+
optional uint32 app_id = 1;
|
|
2444
|
+
optional uint32 start_index = 2;
|
|
2445
|
+
optional int32 action = 3;
|
|
2446
|
+
}
|
|
2447
|
+
|
|
2448
|
+
message CMsgClientUCMEnumeratePublishedFilesByUserActionResponse {
|
|
2449
|
+
optional int32 eresult = 1 [default = 2];
|
|
2450
|
+
repeated .CMsgClientUCMEnumeratePublishedFilesByUserActionResponse_PublishedFileId published_files = 2;
|
|
2451
|
+
optional uint32 total_results = 3;
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2454
|
+
// Used by: common.proto
|
|
2455
|
+
message CMsgClientUCMEnumeratePublishedFilesByUserActionResponse_PublishedFileId {
|
|
2456
|
+
optional fixed64 published_file_id = 1;
|
|
2457
|
+
optional fixed32 rtime_time_stamp = 2 [default = 0];
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
message CMsgClientUCMEnumerateUserPublishedFiles {
|
|
2461
|
+
optional uint32 app_id = 1;
|
|
2462
|
+
optional uint32 start_index = 2;
|
|
2463
|
+
optional uint32 sort_order = 3;
|
|
2464
|
+
}
|
|
2465
|
+
|
|
2466
|
+
message CMsgClientUCMEnumerateUserPublishedFilesResponse {
|
|
2467
|
+
optional int32 eresult = 1 [default = 2];
|
|
2468
|
+
repeated .CMsgClientUCMEnumerateUserPublishedFilesResponse_PublishedFileId published_files = 2;
|
|
2469
|
+
optional uint32 total_results = 3;
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
// Used by: common.proto
|
|
2473
|
+
message CMsgClientUCMEnumerateUserPublishedFilesResponse_PublishedFileId {
|
|
2474
|
+
optional fixed64 published_file_id = 1;
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2477
|
+
message CMsgClientUCMEnumerateUserSubscribedFiles {
|
|
2478
|
+
optional uint32 app_id = 1;
|
|
2479
|
+
optional uint32 start_index = 2;
|
|
2480
|
+
optional uint32 list_type = 3 [default = 1];
|
|
2481
|
+
optional uint32 matching_file_type = 4 [default = 0];
|
|
2482
|
+
optional uint32 count = 5 [default = 50];
|
|
2483
|
+
}
|
|
2484
|
+
|
|
2485
|
+
message CMsgClientUCMEnumerateUserSubscribedFilesResponse {
|
|
2486
|
+
optional int32 eresult = 1 [default = 2];
|
|
2487
|
+
repeated .CMsgClientUCMEnumerateUserSubscribedFilesResponse_PublishedFileId subscribed_files = 2;
|
|
2488
|
+
optional uint32 total_results = 3;
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2491
|
+
// Used by: common.proto
|
|
2492
|
+
message CMsgClientUCMEnumerateUserSubscribedFilesResponse_PublishedFileId {
|
|
2493
|
+
optional fixed64 published_file_id = 1;
|
|
2494
|
+
optional fixed32 rtime32_subscribed = 2 [default = 0];
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2497
|
+
message CMsgClientUCMEnumerateUserSubscribedFilesWithUpdates {
|
|
2498
|
+
optional uint32 app_id = 1;
|
|
2499
|
+
optional uint32 start_index = 2;
|
|
2500
|
+
optional fixed32 start_time = 3;
|
|
2501
|
+
optional uint32 desired_revision = 4 [default = 0];
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
message CMsgClientUCMEnumerateUserSubscribedFilesWithUpdatesResponse {
|
|
2505
|
+
optional int32 eresult = 1 [default = 2];
|
|
2506
|
+
repeated .CMsgClientUCMEnumerateUserSubscribedFilesWithUpdatesResponse_PublishedFileId subscribed_files = 2;
|
|
2507
|
+
optional uint32 total_results = 3;
|
|
2508
|
+
}
|
|
2509
|
+
|
|
2510
|
+
// Used by: common.proto
|
|
2511
|
+
message CMsgClientUCMEnumerateUserSubscribedFilesWithUpdatesResponse_PublishedFileId {
|
|
2512
|
+
optional fixed64 published_file_id = 1;
|
|
2513
|
+
optional fixed32 rtime32_subscribed = 2 [default = 0];
|
|
2514
|
+
optional uint32 appid = 3;
|
|
2515
|
+
optional fixed64 file_hcontent = 4;
|
|
2516
|
+
optional uint32 file_size = 5;
|
|
2517
|
+
optional fixed32 rtime32_last_updated = 6;
|
|
2518
|
+
optional bool is_depot_content = 7;
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
message CMsgClientUCMGetPublishedFilesForUser {
|
|
2522
|
+
optional uint32 app_id = 1;
|
|
2523
|
+
optional fixed64 creator_steam_id = 2;
|
|
2524
|
+
repeated string required_tags = 3;
|
|
2525
|
+
repeated string excluded_tags = 4;
|
|
2526
|
+
optional uint32 start_index = 5;
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
message CMsgClientUCMGetPublishedFilesForUserResponse {
|
|
2530
|
+
optional int32 eresult = 1 [default = 2];
|
|
2531
|
+
repeated .CMsgClientUCMGetPublishedFilesForUserResponse_PublishedFileId published_files = 2;
|
|
2532
|
+
optional uint32 total_results = 3;
|
|
2533
|
+
}
|
|
2534
|
+
|
|
2535
|
+
// Used by: common.proto
|
|
2536
|
+
message CMsgClientUCMGetPublishedFilesForUserResponse_PublishedFileId {
|
|
2537
|
+
optional fixed64 published_file_id = 1;
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
message CMsgClientUCMPublishedFileUpdated {
|
|
2541
|
+
optional fixed64 published_file_id = 1;
|
|
2542
|
+
optional uint32 app_id = 2;
|
|
2543
|
+
optional uint32 time_updated = 3;
|
|
2544
|
+
optional fixed64 hcontent = 4;
|
|
2545
|
+
optional fixed32 file_size = 5;
|
|
2546
|
+
optional bool is_depot_content = 6;
|
|
2547
|
+
optional uint32 revision = 7;
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
message CMsgClientUCMPublishFile {
|
|
2551
|
+
optional uint32 app_id = 1;
|
|
2552
|
+
optional string file_name = 2;
|
|
2553
|
+
optional string preview_file_name = 3;
|
|
2554
|
+
optional uint32 consumer_app_id = 4;
|
|
2555
|
+
optional string title = 5;
|
|
2556
|
+
optional string description = 6;
|
|
2557
|
+
repeated string tags = 8;
|
|
2558
|
+
optional bool workshop_file = 9;
|
|
2559
|
+
optional int32 visibility = 10;
|
|
2560
|
+
optional uint32 file_type = 11;
|
|
2561
|
+
optional string url = 12;
|
|
2562
|
+
optional uint32 video_provider = 13;
|
|
2563
|
+
optional string video_account_name = 14;
|
|
2564
|
+
optional string video_identifier = 15;
|
|
2565
|
+
optional bool in_progress = 16;
|
|
2566
|
+
}
|
|
2567
|
+
|
|
2568
|
+
message CMsgClientUCMPublishFileResponse {
|
|
2569
|
+
optional int32 eresult = 1 [default = 2];
|
|
2570
|
+
optional fixed64 published_file_id = 2 [default = 18446744073709551615];
|
|
2571
|
+
optional bool needs_workshop_legal_agreement_acceptance = 3 [default = false];
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
message CMsgClientUCMSetUserPublishedFileAction {
|
|
2575
|
+
optional fixed64 published_file_id = 1;
|
|
2576
|
+
optional uint32 app_id = 2;
|
|
2577
|
+
optional int32 action = 3;
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2580
|
+
message CMsgClientUCMSetUserPublishedFileActionResponse {
|
|
2581
|
+
optional int32 eresult = 1 [default = 2];
|
|
2582
|
+
}
|
|
2583
|
+
|
|
2584
|
+
message CMsgClientUCMUpdatePublishedFile {
|
|
2585
|
+
optional uint32 app_id = 1;
|
|
2586
|
+
optional fixed64 published_file_id = 2;
|
|
2587
|
+
optional string file_name = 3;
|
|
2588
|
+
optional string preview_file_name = 4;
|
|
2589
|
+
optional string title = 5;
|
|
2590
|
+
optional string description = 6;
|
|
2591
|
+
repeated string tags = 7;
|
|
2592
|
+
optional int32 visibility = 8;
|
|
2593
|
+
optional bool update_file = 9;
|
|
2594
|
+
optional bool update_preview_file = 10;
|
|
2595
|
+
optional bool update_title = 11;
|
|
2596
|
+
optional bool update_description = 12;
|
|
2597
|
+
optional bool update_tags = 13;
|
|
2598
|
+
optional bool update_visibility = 14;
|
|
2599
|
+
optional string change_description = 15;
|
|
2600
|
+
optional bool update_url = 16;
|
|
2601
|
+
optional string url = 17;
|
|
2602
|
+
optional bool update_content_manifest = 18;
|
|
2603
|
+
optional fixed64 content_manifest = 19;
|
|
2604
|
+
optional string metadata = 20;
|
|
2605
|
+
optional bool update_metadata = 21;
|
|
2606
|
+
optional int32 language = 22 [default = 0];
|
|
2607
|
+
repeated string removed_kvtags = 23;
|
|
2608
|
+
repeated .CMsgClientUCMUpdatePublishedFile_KeyValueTag kvtags = 24;
|
|
2609
|
+
repeated .CMsgClientUCMUpdatePublishedFile_AdditionalPreview previews = 25;
|
|
2610
|
+
repeated int32 previews_to_remove = 26;
|
|
2611
|
+
optional bool clear_in_progress = 27;
|
|
2612
|
+
optional bool remove_all_kvtags = 28;
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2615
|
+
// Used by: common.proto
|
|
2616
|
+
message CMsgClientUCMUpdatePublishedFile_AdditionalPreview {
|
|
2617
|
+
optional string original_file_name = 1;
|
|
2618
|
+
optional string internal_file_name = 2;
|
|
2619
|
+
optional string videoid = 3;
|
|
2620
|
+
optional uint32 preview_type = 4;
|
|
2621
|
+
optional int32 update_index = 5 [default = -1];
|
|
2622
|
+
}
|
|
2623
|
+
|
|
2624
|
+
// Used by: common.proto
|
|
2625
|
+
message CMsgClientUCMUpdatePublishedFile_KeyValueTag {
|
|
2626
|
+
optional string key = 1;
|
|
2627
|
+
optional string value = 2;
|
|
2628
|
+
}
|
|
2629
|
+
|
|
2630
|
+
message CMsgClientUCMUpdatePublishedFileResponse {
|
|
2631
|
+
optional int32 eresult = 1 [default = 2];
|
|
2632
|
+
optional bool needs_workshop_legal_agreement_acceptance = 2 [default = false];
|
|
2633
|
+
}
|
|
2634
|
+
|
|
2635
|
+
message CMsgClientUDSP2PSessionEnded {
|
|
2636
|
+
optional fixed64 steamid_remote = 1;
|
|
2637
|
+
optional int32 appid = 2;
|
|
2638
|
+
optional int32 session_length_sec = 3;
|
|
2639
|
+
optional int32 session_error = 4;
|
|
2640
|
+
optional int32 nattype = 5;
|
|
2641
|
+
optional int32 bytes_recv = 6;
|
|
2642
|
+
optional int32 bytes_sent = 7;
|
|
2643
|
+
optional int32 bytes_sent_relay = 8;
|
|
2644
|
+
optional int32 bytes_recv_relay = 9;
|
|
2645
|
+
optional int32 time_to_connect_ms = 10;
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2648
|
+
message CMsgClientUDSP2PSessionStarted {
|
|
2649
|
+
optional fixed64 steamid_remote = 1;
|
|
2650
|
+
optional int32 appid = 2;
|
|
2651
|
+
}
|
|
2652
|
+
|
|
2653
|
+
message CMsgClientUFSDeleteFileRequest {
|
|
2654
|
+
optional uint32 app_id = 1;
|
|
2655
|
+
optional string file_name = 2;
|
|
2656
|
+
optional bool is_explicit_delete = 3;
|
|
2657
|
+
}
|
|
2658
|
+
|
|
2659
|
+
message CMsgClientUFSDeleteFileResponse {
|
|
2660
|
+
optional int32 eresult = 1 [default = 2];
|
|
2661
|
+
optional string file_name = 2;
|
|
2662
|
+
}
|
|
2663
|
+
|
|
2664
|
+
message CMsgClientUFSDownloadRequest {
|
|
2665
|
+
optional uint32 app_id = 1;
|
|
2666
|
+
optional string file_name = 2;
|
|
2667
|
+
optional bool can_handle_http = 3;
|
|
2668
|
+
}
|
|
2669
|
+
|
|
2670
|
+
message CMsgClientUFSDownloadResponse {
|
|
2671
|
+
optional int32 eresult = 1 [default = 2];
|
|
2672
|
+
optional uint32 app_id = 2;
|
|
2673
|
+
optional uint32 file_size = 3;
|
|
2674
|
+
optional uint32 raw_file_size = 4;
|
|
2675
|
+
optional bytes sha_file = 5;
|
|
2676
|
+
optional uint64 time_stamp = 6;
|
|
2677
|
+
optional bool is_explicit_delete = 7;
|
|
2678
|
+
optional bool use_http = 8;
|
|
2679
|
+
optional string http_host = 9;
|
|
2680
|
+
optional string http_url = 10;
|
|
2681
|
+
optional bytes kv_headers = 11;
|
|
2682
|
+
optional bool use_https = 12;
|
|
2683
|
+
optional bool encrypted = 13;
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2686
|
+
message CMsgClientUFSFileChunk {
|
|
2687
|
+
optional bytes sha_file = 1;
|
|
2688
|
+
optional uint32 file_start = 2;
|
|
2689
|
+
optional bytes data = 3;
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
message CMsgClientUFSGetFileListForApp {
|
|
2693
|
+
repeated uint32 apps_to_query = 1;
|
|
2694
|
+
optional bool send_path_prefixes = 2;
|
|
2695
|
+
}
|
|
2696
|
+
|
|
2697
|
+
message CMsgClientUFSGetFileListForAppResponse {
|
|
2698
|
+
repeated .CMsgClientUFSGetFileListForAppResponse_File files = 1;
|
|
2699
|
+
repeated string path_prefixes = 2;
|
|
2700
|
+
}
|
|
2701
|
+
|
|
2702
|
+
// Used by: common.proto
|
|
2703
|
+
message CMsgClientUFSGetFileListForAppResponse_File {
|
|
2704
|
+
optional uint32 app_id = 1;
|
|
2705
|
+
optional string file_name = 2;
|
|
2706
|
+
optional bytes sha_file = 3;
|
|
2707
|
+
optional uint64 time_stamp = 4;
|
|
2708
|
+
optional uint32 raw_file_size = 5;
|
|
2709
|
+
optional bool is_explicit_delete = 6;
|
|
2710
|
+
optional uint32 platforms_to_sync = 7;
|
|
2711
|
+
optional uint32 path_prefix_index = 8;
|
|
2712
|
+
}
|
|
2713
|
+
|
|
2714
|
+
message CMsgClientUFSGetSingleFileInfo {
|
|
2715
|
+
optional uint32 app_id = 1;
|
|
2716
|
+
optional string file_name = 2;
|
|
2717
|
+
}
|
|
2718
|
+
|
|
2719
|
+
message CMsgClientUFSGetSingleFileInfoResponse {
|
|
2720
|
+
optional int32 eresult = 1 [default = 2];
|
|
2721
|
+
optional uint32 app_id = 2;
|
|
2722
|
+
optional string file_name = 3;
|
|
2723
|
+
optional bytes sha_file = 4;
|
|
2724
|
+
optional uint64 time_stamp = 5;
|
|
2725
|
+
optional uint32 raw_file_size = 6;
|
|
2726
|
+
optional bool is_explicit_delete = 7;
|
|
2727
|
+
}
|
|
2728
|
+
|
|
2729
|
+
message CMsgClientUFSGetUGCDetails {
|
|
2730
|
+
optional fixed64 hcontent = 1 [default = 18446744073709551615];
|
|
2731
|
+
}
|
|
2732
|
+
|
|
2733
|
+
message CMsgClientUFSGetUGCDetailsResponse {
|
|
2734
|
+
optional int32 eresult = 1 [default = 2];
|
|
2735
|
+
optional string url = 2;
|
|
2736
|
+
optional uint32 app_id = 3;
|
|
2737
|
+
optional string filename = 4;
|
|
2738
|
+
optional fixed64 steamid_creator = 5;
|
|
2739
|
+
optional uint32 file_size = 6;
|
|
2740
|
+
optional uint32 compressed_file_size = 7;
|
|
2741
|
+
optional string rangecheck_host = 8;
|
|
2742
|
+
optional string file_encoded_sha1 = 9;
|
|
2743
|
+
}
|
|
2744
|
+
|
|
2745
|
+
message CMsgClientUFSLoginRequest {
|
|
2746
|
+
optional uint32 protocol_version = 1;
|
|
2747
|
+
optional uint64 am_session_token = 2;
|
|
2748
|
+
repeated uint32 apps = 3;
|
|
2749
|
+
}
|
|
2750
|
+
|
|
2751
|
+
message CMsgClientUFSLoginResponse {
|
|
2752
|
+
optional int32 eresult = 1 [default = 2];
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2755
|
+
message CMsgClientUFSShareFile {
|
|
2756
|
+
optional uint32 app_id = 1;
|
|
2757
|
+
optional string file_name = 2;
|
|
2758
|
+
}
|
|
2759
|
+
|
|
2760
|
+
message CMsgClientUFSShareFileResponse {
|
|
2761
|
+
optional int32 eresult = 1 [default = 2];
|
|
2762
|
+
optional fixed64 hcontent = 2 [default = 18446744073709551615];
|
|
2763
|
+
}
|
|
2764
|
+
|
|
2765
|
+
message CMsgClientUFSTransferHeartbeat {
|
|
2766
|
+
}
|
|
2767
|
+
|
|
2768
|
+
message CMsgClientUFSUploadCommit {
|
|
2769
|
+
repeated .CMsgClientUFSUploadCommit_File files = 1;
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
// Used by: common.proto
|
|
2773
|
+
message CMsgClientUFSUploadCommit_File {
|
|
2774
|
+
optional int32 eresult = 1 [default = 2];
|
|
2775
|
+
optional uint32 app_id = 2;
|
|
2776
|
+
optional bytes sha_file = 3;
|
|
2777
|
+
optional uint32 cub_file = 4;
|
|
2778
|
+
optional string file_name = 5;
|
|
2779
|
+
}
|
|
2780
|
+
|
|
2781
|
+
message CMsgClientUFSUploadCommitResponse {
|
|
2782
|
+
repeated .CMsgClientUFSUploadCommitResponse_File files = 1;
|
|
2783
|
+
}
|
|
2784
|
+
|
|
2785
|
+
// Used by: common.proto
|
|
2786
|
+
message CMsgClientUFSUploadCommitResponse_File {
|
|
2787
|
+
optional int32 eresult = 1 [default = 2];
|
|
2788
|
+
optional uint32 app_id = 2;
|
|
2789
|
+
optional bytes sha_file = 3;
|
|
2790
|
+
}
|
|
2791
|
+
|
|
2792
|
+
message CMsgClientUFSUploadFileFinished {
|
|
2793
|
+
optional int32 eresult = 1 [default = 2];
|
|
2794
|
+
optional bytes sha_file = 2;
|
|
2795
|
+
}
|
|
2796
|
+
|
|
2797
|
+
message CMsgClientUFSUploadFileRequest {
|
|
2798
|
+
optional uint32 app_id = 1;
|
|
2799
|
+
optional uint32 file_size = 2;
|
|
2800
|
+
optional uint32 raw_file_size = 3;
|
|
2801
|
+
optional bytes sha_file = 4;
|
|
2802
|
+
optional uint64 time_stamp = 5;
|
|
2803
|
+
optional string file_name = 6;
|
|
2804
|
+
optional uint32 platforms_to_sync_deprecated = 7;
|
|
2805
|
+
optional uint32 platforms_to_sync = 8 [default = 4294967295];
|
|
2806
|
+
optional uint32 cell_id = 9;
|
|
2807
|
+
optional bool can_encrypt = 10;
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2810
|
+
message CMsgClientUFSUploadFileResponse {
|
|
2811
|
+
optional int32 eresult = 1 [default = 2];
|
|
2812
|
+
optional bytes sha_file = 2;
|
|
2813
|
+
optional bool use_http = 3;
|
|
2814
|
+
optional string http_host = 4;
|
|
2815
|
+
optional string http_url = 5;
|
|
2816
|
+
optional bytes kv_headers = 6;
|
|
2817
|
+
optional bool use_https = 7;
|
|
2818
|
+
optional bool encrypt_file = 8;
|
|
2819
|
+
}
|
|
2820
|
+
|
|
2821
|
+
message CMsgClientUGSGetGlobalStats {
|
|
2822
|
+
optional uint64 gameid = 1;
|
|
2823
|
+
optional uint32 history_days_requested = 2;
|
|
2824
|
+
optional fixed32 time_last_requested = 3;
|
|
2825
|
+
optional uint32 first_day_cached = 4;
|
|
2826
|
+
optional uint32 days_cached = 5;
|
|
2827
|
+
}
|
|
2828
|
+
|
|
2829
|
+
message CMsgClientUGSGetGlobalStatsResponse {
|
|
2830
|
+
optional int32 eresult = 1 [default = 2];
|
|
2831
|
+
optional fixed32 timestamp = 2;
|
|
2832
|
+
optional int32 day_current = 3;
|
|
2833
|
+
repeated .CMsgClientUGSGetGlobalStatsResponse_Day days = 4;
|
|
2834
|
+
}
|
|
2835
|
+
|
|
2836
|
+
// Used by: common.proto
|
|
2837
|
+
message CMsgClientUGSGetGlobalStatsResponse_Day {
|
|
2838
|
+
optional uint32 day_id = 1;
|
|
2839
|
+
repeated .CMsgClientUGSGetGlobalStatsResponse_Day_Stat stats = 2;
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2842
|
+
// Used by: common.proto
|
|
2843
|
+
message CMsgClientUGSGetGlobalStatsResponse_Day_Stat {
|
|
2844
|
+
optional int32 stat_id = 1;
|
|
2845
|
+
optional int64 data = 2;
|
|
2846
|
+
}
|
|
2847
|
+
|
|
2848
|
+
message CMsgClientUIMode {
|
|
2849
|
+
optional uint32 uimode = 1;
|
|
2850
|
+
optional uint32 chat_mode = 2;
|
|
2851
|
+
}
|
|
2852
|
+
|
|
2853
|
+
message CMsgClientUninstallClientApp {
|
|
2854
|
+
optional uint32 appid = 1;
|
|
2855
|
+
}
|
|
2856
|
+
|
|
2857
|
+
message CMsgClientUninstallClientAppResponse {
|
|
2858
|
+
optional uint32 result = 1;
|
|
2859
|
+
}
|
|
2860
|
+
|
|
2861
|
+
message CMsgClientUnsignedInstallScript {
|
|
2862
|
+
optional uint32 app_id = 1;
|
|
2863
|
+
optional string file_name = 2;
|
|
2864
|
+
optional uint32 file_size = 3;
|
|
2865
|
+
optional bool signature_broken = 4;
|
|
2866
|
+
optional uint32 depot_id = 5;
|
|
2867
|
+
optional uint64 manifest_id = 6;
|
|
2868
|
+
optional uint32 file_flags = 7;
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2871
|
+
message CMsgClientUpdateAppJobReport {
|
|
2872
|
+
optional uint32 app_id = 1;
|
|
2873
|
+
repeated uint32 depot_ids = 2;
|
|
2874
|
+
optional uint32 app_state = 3;
|
|
2875
|
+
optional uint32 job_app_error = 4;
|
|
2876
|
+
optional string error_details = 5;
|
|
2877
|
+
optional uint32 job_duration = 6;
|
|
2878
|
+
optional uint32 files_validation_failed = 7;
|
|
2879
|
+
optional uint64 job_bytes_downloaded = 8;
|
|
2880
|
+
optional uint64 job_bytes_staged = 9;
|
|
2881
|
+
optional uint64 bytes_comitted = 10;
|
|
2882
|
+
optional uint32 start_app_state = 11;
|
|
2883
|
+
optional fixed64 stats_machine_id = 12;
|
|
2884
|
+
optional string branch_name = 13;
|
|
2885
|
+
optional uint64 total_bytes_downloaded = 14;
|
|
2886
|
+
optional uint64 total_bytes_staged = 15;
|
|
2887
|
+
optional uint64 total_bytes_restored = 16;
|
|
2888
|
+
optional bool is_borrowed = 17;
|
|
2889
|
+
optional bool is_free_weekend = 18;
|
|
2890
|
+
optional uint64 total_bytes_legacy = 19;
|
|
2891
|
+
optional uint64 total_bytes_patched = 20;
|
|
2892
|
+
optional uint64 total_bytes_saved = 21;
|
|
2893
|
+
optional uint32 cell_id = 22;
|
|
2894
|
+
}
|
|
2895
|
+
|
|
2896
|
+
message CMsgClientUpdateMachineAuth {
|
|
2897
|
+
optional string filename = 1;
|
|
2898
|
+
optional uint32 offset = 2;
|
|
2899
|
+
optional uint32 cubtowrite = 3;
|
|
2900
|
+
optional bytes bytes = 4;
|
|
2901
|
+
optional uint32 otp_type = 5;
|
|
2902
|
+
optional string otp_identifier = 6;
|
|
2903
|
+
optional bytes otp_sharedsecret = 7;
|
|
2904
|
+
optional uint32 otp_timedrift = 8;
|
|
2905
|
+
}
|
|
2906
|
+
|
|
2907
|
+
message CMsgClientUpdateMachineAuthResponse {
|
|
2908
|
+
optional string filename = 1;
|
|
2909
|
+
optional uint32 eresult = 2;
|
|
2910
|
+
optional uint32 filesize = 3;
|
|
2911
|
+
optional bytes sha_file = 4;
|
|
2912
|
+
optional uint32 getlasterror = 5;
|
|
2913
|
+
optional uint32 offset = 6;
|
|
2914
|
+
optional uint32 cubwrote = 7;
|
|
2915
|
+
optional int32 otp_type = 8;
|
|
2916
|
+
optional uint32 otp_value = 9;
|
|
2917
|
+
optional string otp_identifier = 10;
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
message CMsgClientUpdateUserGameInfo {
|
|
2921
|
+
optional fixed64 steamid_idgs = 1;
|
|
2922
|
+
optional fixed64 gameid = 2;
|
|
2923
|
+
optional uint32 game_ip = 3;
|
|
2924
|
+
optional uint32 game_port = 4;
|
|
2925
|
+
optional bytes token = 5;
|
|
2926
|
+
}
|
|
2927
|
+
|
|
2928
|
+
message CMsgClientUseLocalDeviceAuthorizations {
|
|
2929
|
+
repeated uint32 authorization_account_id = 1;
|
|
2930
|
+
repeated .CMsgClientUseLocalDeviceAuthorizations_DeviceToken device_tokens = 2;
|
|
2931
|
+
}
|
|
2932
|
+
|
|
2933
|
+
// Used by: common.proto
|
|
2934
|
+
message CMsgClientUseLocalDeviceAuthorizations_DeviceToken {
|
|
2935
|
+
optional uint32 owner_account_id = 1;
|
|
2936
|
+
optional uint64 token_id = 2;
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2939
|
+
message CMsgClientUserNotifications {
|
|
2940
|
+
repeated .CMsgClientUserNotifications_Notification notifications = 1;
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
// Used by: common.proto
|
|
2944
|
+
message CMsgClientUserNotifications_Notification {
|
|
2945
|
+
optional uint32 user_notification_type = 1;
|
|
2946
|
+
optional uint32 count = 2;
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
message CMsgClientVanityURLChangedNotification {
|
|
2950
|
+
optional string vanity_url = 1;
|
|
2951
|
+
}
|
|
2952
|
+
|
|
2953
|
+
message CMsgClientVoiceCallPreAuthorize {
|
|
2954
|
+
optional fixed64 caller_steamid = 1;
|
|
2955
|
+
optional fixed64 receiver_steamid = 2;
|
|
2956
|
+
optional int32 caller_id = 3;
|
|
2957
|
+
optional bool hangup = 4;
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2960
|
+
message CMsgClientVoiceCallPreAuthorizeResponse {
|
|
2961
|
+
optional fixed64 caller_steamid = 1;
|
|
2962
|
+
optional fixed64 receiver_steamid = 2;
|
|
2963
|
+
optional int32 eresult = 3 [default = 2];
|
|
2964
|
+
optional int32 caller_id = 4;
|
|
2965
|
+
}
|
|
2966
|
+
|
|
2967
|
+
message CMsgClientWalletInfoUpdate {
|
|
2968
|
+
optional bool has_wallet = 1;
|
|
2969
|
+
optional int32 balance = 2;
|
|
2970
|
+
optional int32 currency = 3;
|
|
2971
|
+
optional int32 balance_delayed = 4;
|
|
2972
|
+
optional int64 balance64 = 5;
|
|
2973
|
+
optional int64 balance64_delayed = 6;
|
|
2974
|
+
}
|
|
2975
|
+
|
|
2976
|
+
message CMsgClientWorkshopItemChangesRequest {
|
|
2977
|
+
optional uint32 app_id = 1;
|
|
2978
|
+
optional uint32 last_time_updated = 2;
|
|
2979
|
+
optional uint32 num_items_needed = 3;
|
|
2980
|
+
}
|
|
2981
|
+
|
|
2982
|
+
message CMsgClientWorkshopItemChangesResponse {
|
|
2983
|
+
optional int32 eresult = 1 [default = 2];
|
|
2984
|
+
optional uint32 update_time = 2;
|
|
2985
|
+
repeated .CMsgClientWorkshopItemChangesResponse_WorkshopItemInfo workshop_items = 5;
|
|
2986
|
+
}
|
|
2987
|
+
|
|
2988
|
+
// Used by: common.proto
|
|
2989
|
+
message CMsgClientWorkshopItemChangesResponse_WorkshopItemInfo {
|
|
2990
|
+
optional fixed64 published_file_id = 1;
|
|
2991
|
+
optional uint32 time_updated = 2;
|
|
2992
|
+
optional fixed64 manifest_id = 3;
|
|
2993
|
+
}
|
|
2994
|
+
|
|
2995
|
+
message CMsgClientWorkshopItemInfoRequest {
|
|
2996
|
+
optional uint32 app_id = 1;
|
|
2997
|
+
optional uint32 last_time_updated = 2;
|
|
2998
|
+
repeated .CMsgClientWorkshopItemInfoRequest_WorkshopItem workshop_items = 3;
|
|
2999
|
+
}
|
|
3000
|
+
|
|
3001
|
+
// Used by: common.proto
|
|
3002
|
+
message CMsgClientWorkshopItemInfoRequest_WorkshopItem {
|
|
3003
|
+
optional fixed64 published_file_id = 1;
|
|
3004
|
+
optional uint32 time_updated = 2;
|
|
3005
|
+
}
|
|
3006
|
+
|
|
3007
|
+
message CMsgClientWorkshopItemInfoResponse {
|
|
3008
|
+
optional int32 eresult = 1 [default = 2];
|
|
3009
|
+
optional uint32 update_time = 2;
|
|
3010
|
+
repeated .CMsgClientWorkshopItemInfoResponse_WorkshopItemInfo workshop_items = 3;
|
|
3011
|
+
repeated fixed64 private_items = 4;
|
|
3012
|
+
}
|
|
3013
|
+
|
|
3014
|
+
// Used by: common.proto
|
|
3015
|
+
message CMsgClientWorkshopItemInfoResponse_WorkshopItemInfo {
|
|
3016
|
+
optional fixed64 published_file_id = 1;
|
|
3017
|
+
optional uint32 time_updated = 2;
|
|
3018
|
+
optional fixed64 manifest_id = 3;
|
|
3019
|
+
optional bool is_legacy = 4;
|
|
3020
|
+
}
|
|
3021
|
+
|
|
3022
|
+
message CMsgCREGetUserPublishedItemVoteDetails {
|
|
3023
|
+
repeated .CMsgCREGetUserPublishedItemVoteDetails_PublishedFileId published_file_ids = 1;
|
|
3024
|
+
}
|
|
3025
|
+
|
|
3026
|
+
// Used by: common.proto
|
|
3027
|
+
message CMsgCREGetUserPublishedItemVoteDetails_PublishedFileId {
|
|
3028
|
+
optional fixed64 published_file_id = 1;
|
|
3029
|
+
}
|
|
3030
|
+
|
|
3031
|
+
message CMsgCREGetUserPublishedItemVoteDetailsResponse {
|
|
3032
|
+
optional int32 eresult = 1 [default = 2];
|
|
3033
|
+
repeated .CMsgCREGetUserPublishedItemVoteDetailsResponse_UserItemVoteDetail user_item_vote_details = 2;
|
|
3034
|
+
}
|
|
3035
|
+
|
|
3036
|
+
// Used by: common.proto
|
|
3037
|
+
message CMsgCREGetUserPublishedItemVoteDetailsResponse_UserItemVoteDetail {
|
|
3038
|
+
optional fixed64 published_file_id = 1;
|
|
3039
|
+
optional int32 vote = 2 [default = 0];
|
|
3040
|
+
}
|
|
3041
|
+
|
|
3042
|
+
message CMsgCREItemVoteSummary {
|
|
3043
|
+
repeated .CMsgCREItemVoteSummary_PublishedFileId published_file_ids = 1;
|
|
3044
|
+
}
|
|
3045
|
+
|
|
3046
|
+
// Used by: common.proto
|
|
3047
|
+
message CMsgCREItemVoteSummary_PublishedFileId {
|
|
3048
|
+
optional fixed64 published_file_id = 1;
|
|
3049
|
+
}
|
|
3050
|
+
|
|
3051
|
+
message CMsgCREItemVoteSummaryResponse {
|
|
3052
|
+
optional int32 eresult = 1 [default = 2];
|
|
3053
|
+
repeated .CMsgCREItemVoteSummaryResponse_ItemVoteSummary item_vote_summaries = 2;
|
|
3054
|
+
}
|
|
3055
|
+
|
|
3056
|
+
// Used by: common.proto
|
|
3057
|
+
message CMsgCREItemVoteSummaryResponse_ItemVoteSummary {
|
|
3058
|
+
optional fixed64 published_file_id = 1;
|
|
3059
|
+
optional int32 votes_for = 2;
|
|
3060
|
+
optional int32 votes_against = 3;
|
|
3061
|
+
optional int32 reports = 4;
|
|
3062
|
+
optional float score = 5;
|
|
3063
|
+
}
|
|
3064
|
+
|
|
3065
|
+
message CMsgCREUpdateUserPublishedItemVote {
|
|
3066
|
+
optional fixed64 published_file_id = 1;
|
|
3067
|
+
optional bool vote_up = 2;
|
|
3068
|
+
}
|
|
3069
|
+
|
|
3070
|
+
message CMsgCREUpdateUserPublishedItemVoteResponse {
|
|
3071
|
+
optional int32 eresult = 1 [default = 2];
|
|
3072
|
+
}
|
|
3073
|
+
|
|
3074
|
+
message CMsgDownloadRateStatistics {
|
|
3075
|
+
optional uint32 cell_id = 1;
|
|
3076
|
+
repeated .CMsgDownloadRateStatistics_StatsInfo stats = 2;
|
|
3077
|
+
optional uint32 throttling_kbps = 3;
|
|
3078
|
+
optional uint32 steam_realm = 4;
|
|
3079
|
+
}
|
|
3080
|
+
|
|
3081
|
+
// Used by: common.proto
|
|
3082
|
+
message CMsgDownloadRateStatistics_StatsInfo {
|
|
3083
|
+
optional uint32 source_type = 1;
|
|
3084
|
+
optional uint32 source_id = 2;
|
|
3085
|
+
optional uint32 seconds = 3;
|
|
3086
|
+
optional uint64 bytes = 4;
|
|
3087
|
+
optional string host_name = 5;
|
|
3088
|
+
optional uint64 microseconds = 6;
|
|
3089
|
+
optional bool used_ipv6 = 7;
|
|
3090
|
+
optional bool proxied = 8;
|
|
3091
|
+
}
|
|
3092
|
+
|
|
3093
|
+
message CMsgDPGetNumberOfCurrentPlayers {
|
|
3094
|
+
optional uint32 appid = 1;
|
|
3095
|
+
}
|
|
3096
|
+
|
|
3097
|
+
message CMsgDPGetNumberOfCurrentPlayersResponse {
|
|
3098
|
+
optional int32 eresult = 1 [default = 2];
|
|
3099
|
+
optional int32 player_count = 2;
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3102
|
+
message CMsgDRMDownloadRequestWithCrashData {
|
|
3103
|
+
optional uint32 download_flags = 1;
|
|
3104
|
+
optional uint32 download_types_known = 2;
|
|
3105
|
+
optional bytes guid_drm = 3;
|
|
3106
|
+
optional bytes guid_split = 4;
|
|
3107
|
+
optional bytes guid_merge = 5;
|
|
3108
|
+
optional string module_name = 6;
|
|
3109
|
+
optional string module_path = 7;
|
|
3110
|
+
optional bytes crash_data = 8;
|
|
3111
|
+
}
|
|
3112
|
+
|
|
3113
|
+
message CMsgDRMDownloadResponse {
|
|
3114
|
+
optional uint32 eresult = 1 [default = 2];
|
|
3115
|
+
optional uint32 app_id = 2;
|
|
3116
|
+
optional uint32 blob_download_type = 3;
|
|
3117
|
+
optional bytes merge_guid = 4;
|
|
3118
|
+
optional uint32 download_file_dfs_ip = 5;
|
|
3119
|
+
optional uint32 download_file_dfs_port = 6;
|
|
3120
|
+
optional string download_file_url = 7;
|
|
3121
|
+
optional string module_path = 8;
|
|
3122
|
+
}
|
|
3123
|
+
|
|
3124
|
+
message CMsgDRMFinalResult {
|
|
3125
|
+
optional uint32 eResult = 1 [default = 2];
|
|
3126
|
+
optional uint32 app_id = 2;
|
|
3127
|
+
optional uint32 blob_download_type = 3;
|
|
3128
|
+
optional uint32 error_detail = 4;
|
|
3129
|
+
optional bytes merge_guid = 5;
|
|
3130
|
+
optional uint32 download_file_dfs_ip = 6;
|
|
3131
|
+
optional uint32 download_file_dfs_port = 7;
|
|
3132
|
+
optional string download_file_url = 8;
|
|
3133
|
+
}
|
|
3134
|
+
|
|
3135
|
+
message CMsgFSEnumerateFollowingList {
|
|
3136
|
+
optional uint32 start_index = 1;
|
|
3137
|
+
}
|
|
3138
|
+
|
|
3139
|
+
message CMsgFSEnumerateFollowingListResponse {
|
|
3140
|
+
optional int32 eresult = 1 [default = 2];
|
|
3141
|
+
optional int32 total_results = 2;
|
|
3142
|
+
repeated fixed64 steam_ids = 3;
|
|
3143
|
+
}
|
|
3144
|
+
|
|
3145
|
+
message CMsgFSGetFollowerCount {
|
|
3146
|
+
optional fixed64 steam_id = 1;
|
|
3147
|
+
}
|
|
3148
|
+
|
|
3149
|
+
message CMsgFSGetFollowerCountResponse {
|
|
3150
|
+
optional int32 eresult = 1 [default = 2];
|
|
3151
|
+
optional int32 count = 2 [default = 0];
|
|
3152
|
+
}
|
|
3153
|
+
|
|
3154
|
+
message CMsgFSGetIsFollowing {
|
|
3155
|
+
optional fixed64 steam_id = 1;
|
|
3156
|
+
}
|
|
3157
|
+
|
|
3158
|
+
message CMsgFSGetIsFollowingResponse {
|
|
3159
|
+
optional int32 eresult = 1 [default = 2];
|
|
3160
|
+
optional bool is_following = 2 [default = false];
|
|
3161
|
+
}
|
|
3162
|
+
|
|
3163
|
+
message CMsgGameServerData {
|
|
3164
|
+
optional fixed64 steam_id_gs = 1;
|
|
3165
|
+
optional uint32 deprecated_ip = 2;
|
|
3166
|
+
optional uint32 query_port = 3;
|
|
3167
|
+
optional uint32 game_port = 4;
|
|
3168
|
+
optional uint32 sourcetv_port = 5;
|
|
3169
|
+
optional uint32 app_id = 6;
|
|
3170
|
+
optional string gamedir = 7;
|
|
3171
|
+
optional string version = 8;
|
|
3172
|
+
optional string product = 9;
|
|
3173
|
+
optional string region = 10;
|
|
3174
|
+
repeated .CMsgGameServerData_Player players = 11;
|
|
3175
|
+
optional uint32 max_players = 12;
|
|
3176
|
+
optional uint32 bot_count = 13;
|
|
3177
|
+
optional bool password = 14;
|
|
3178
|
+
optional bool secure = 15;
|
|
3179
|
+
optional bool dedicated = 16;
|
|
3180
|
+
optional string os = 17;
|
|
3181
|
+
optional string game_data = 18;
|
|
3182
|
+
optional uint32 game_data_version = 19;
|
|
3183
|
+
optional string game_type = 20;
|
|
3184
|
+
optional string map = 21;
|
|
3185
|
+
optional string name = 22;
|
|
3186
|
+
optional .CMsgIPAddress game_ip_address = 23;
|
|
3187
|
+
}
|
|
3188
|
+
|
|
3189
|
+
// Used by: common.proto
|
|
3190
|
+
message CMsgGameServerData_Player {
|
|
3191
|
+
optional fixed64 steam_id = 1;
|
|
3192
|
+
}
|
|
3193
|
+
|
|
3194
|
+
message CMsgGameServerOutOfDate {
|
|
3195
|
+
optional fixed64 steam_id_gs = 1;
|
|
3196
|
+
optional bool reject = 2;
|
|
3197
|
+
optional string message = 3;
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3200
|
+
message CMsgGameServerPingSample {
|
|
3201
|
+
optional fixed32 my_ip = 1;
|
|
3202
|
+
optional int32 gs_app_id = 2;
|
|
3203
|
+
repeated .CMsgGameServerPingSample_Sample gs_samples = 3;
|
|
3204
|
+
}
|
|
3205
|
+
|
|
3206
|
+
// Used by: common.proto
|
|
3207
|
+
message CMsgGameServerPingSample_Sample {
|
|
3208
|
+
optional fixed32 ip = 1;
|
|
3209
|
+
optional uint32 avg_ping_ms = 2;
|
|
3210
|
+
optional uint32 stddev_ping_ms_x10 = 3;
|
|
3211
|
+
}
|
|
3212
|
+
|
|
3213
|
+
message CMsgGameServerRemove {
|
|
3214
|
+
optional fixed64 steam_id = 1;
|
|
3215
|
+
optional uint32 deprecated_ip = 2;
|
|
3216
|
+
optional uint32 query_port = 3;
|
|
3217
|
+
optional .CMsgIPAddress ip = 4;
|
|
3218
|
+
}
|
|
3219
|
+
|
|
3220
|
+
message CMsgGCClient {
|
|
3221
|
+
optional uint32 appid = 1;
|
|
3222
|
+
optional uint32 msgtype = 2;
|
|
3223
|
+
optional bytes payload = 3;
|
|
3224
|
+
optional fixed64 steamid = 4;
|
|
3225
|
+
optional string gcname = 5;
|
|
3226
|
+
optional uint32 ip = 6;
|
|
3227
|
+
}
|
|
3228
|
+
|
|
3229
|
+
// Used by: common.proto
|
|
3230
|
+
message CMsgGCRoutingProtoBufHeader {
|
|
3231
|
+
optional uint64 dst_gcid_queue = 1;
|
|
3232
|
+
optional uint32 dst_gc_dir_index = 2;
|
|
3233
|
+
}
|
|
3234
|
+
|
|
3235
|
+
message CMsgGMSClientServerQueryResponse {
|
|
3236
|
+
repeated .CMsgGMSClientServerQueryResponse_Server servers = 1;
|
|
3237
|
+
optional string error = 2;
|
|
3238
|
+
}
|
|
3239
|
+
|
|
3240
|
+
// Used by: common.proto
|
|
3241
|
+
message CMsgGMSClientServerQueryResponse_Server {
|
|
3242
|
+
optional uint32 deprecated_server_ip = 1;
|
|
3243
|
+
optional uint32 server_port = 2;
|
|
3244
|
+
optional uint32 auth_players = 3;
|
|
3245
|
+
optional .CMsgIPAddress server_ip = 4;
|
|
3246
|
+
}
|
|
3247
|
+
|
|
3248
|
+
message CMsgGSApprove {
|
|
3249
|
+
optional fixed64 steam_id = 1;
|
|
3250
|
+
optional fixed64 owner_steam_id = 2;
|
|
3251
|
+
}
|
|
3252
|
+
|
|
3253
|
+
message CMsgGSAssociateWithClan {
|
|
3254
|
+
optional fixed64 steam_id_clan = 1;
|
|
3255
|
+
}
|
|
3256
|
+
|
|
3257
|
+
message CMsgGSAssociateWithClanResponse {
|
|
3258
|
+
optional fixed64 steam_id_clan = 1;
|
|
3259
|
+
optional uint32 eresult = 2 [default = 2];
|
|
3260
|
+
}
|
|
3261
|
+
|
|
3262
|
+
message CMsgGSComputeNewPlayerCompatibility {
|
|
3263
|
+
optional fixed64 steam_id_candidate = 1;
|
|
3264
|
+
}
|
|
3265
|
+
|
|
3266
|
+
message CMsgGSComputeNewPlayerCompatibilityResponse {
|
|
3267
|
+
optional fixed64 steam_id_candidate = 1;
|
|
3268
|
+
optional uint32 eresult = 2 [default = 2];
|
|
3269
|
+
optional bool is_clan_member = 3;
|
|
3270
|
+
optional int32 ct_dont_like_you = 4;
|
|
3271
|
+
optional int32 ct_you_dont_like = 5;
|
|
3272
|
+
optional int32 ct_clanmembers_dont_like_you = 6;
|
|
3273
|
+
}
|
|
3274
|
+
|
|
3275
|
+
message CMsgGSDeny {
|
|
3276
|
+
optional fixed64 steam_id = 1;
|
|
3277
|
+
optional int32 edeny_reason = 2;
|
|
3278
|
+
optional string deny_string = 3;
|
|
3279
|
+
}
|
|
3280
|
+
|
|
3281
|
+
message CMsgGSDisconnectNotice {
|
|
3282
|
+
optional fixed64 steam_id = 1;
|
|
3283
|
+
}
|
|
3284
|
+
|
|
3285
|
+
message CMsgGSKick {
|
|
3286
|
+
optional fixed64 steam_id = 1;
|
|
3287
|
+
optional int32 edeny_reason = 2;
|
|
3288
|
+
}
|
|
3289
|
+
|
|
3290
|
+
message CMsgGSPlayerList {
|
|
3291
|
+
repeated .CMsgGSPlayerList_Player players = 1;
|
|
3292
|
+
}
|
|
3293
|
+
|
|
3294
|
+
// Used by: common.proto
|
|
3295
|
+
message CMsgGSPlayerList_Player {
|
|
3296
|
+
optional uint64 steam_id = 1;
|
|
3297
|
+
optional uint32 deprecated_public_ip = 2;
|
|
3298
|
+
optional bytes token = 3;
|
|
3299
|
+
optional .CMsgIPAddress public_ip = 4;
|
|
3300
|
+
}
|
|
3301
|
+
|
|
3302
|
+
message CMsgGSServerType {
|
|
3303
|
+
optional uint32 app_id_served = 1;
|
|
3304
|
+
optional uint32 flags = 2;
|
|
3305
|
+
optional uint32 deprecated_game_ip_address = 3;
|
|
3306
|
+
optional uint32 game_port = 4;
|
|
3307
|
+
optional string game_dir = 5;
|
|
3308
|
+
optional string game_version = 6;
|
|
3309
|
+
optional uint32 game_query_port = 7;
|
|
3310
|
+
}
|
|
3311
|
+
|
|
3312
|
+
message CMsgGSStatusReply {
|
|
3313
|
+
optional bool is_secure = 1;
|
|
3314
|
+
}
|
|
3315
|
+
|
|
3316
|
+
message CMsgGSUserPlaying {
|
|
3317
|
+
optional fixed64 steam_id = 1;
|
|
3318
|
+
optional uint32 deprecated_public_ip = 2;
|
|
3319
|
+
optional bytes token = 3;
|
|
3320
|
+
optional .CMsgIPAddress public_ip = 4;
|
|
3321
|
+
}
|
|
3322
|
+
|
|
3323
|
+
// Used by: Authentication, AuthenticationSupport, Community, common.proto
|
|
3324
|
+
message CMsgIPAddress {
|
|
3325
|
+
optional fixed32 v4 = 1;
|
|
3326
|
+
optional bytes v6 = 2;
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3329
|
+
message CMsgIPAddressBucket {
|
|
3330
|
+
optional .CMsgIPAddress original_ip_address = 1;
|
|
3331
|
+
optional fixed64 bucket = 2;
|
|
3332
|
+
}
|
|
3333
|
+
|
|
3334
|
+
message CMsgMobileChatFriendMessage {
|
|
3335
|
+
optional fixed64 steamid_friend = 1;
|
|
3336
|
+
optional bool local_echo = 2;
|
|
3337
|
+
optional int32 chat_entry_type = 3;
|
|
3338
|
+
optional string message = 4;
|
|
3339
|
+
optional fixed32 current_message_timestamp = 5;
|
|
3340
|
+
optional fixed32 current_message_ordinal = 6;
|
|
3341
|
+
optional fixed32 previous_message_timestamp = 7;
|
|
3342
|
+
optional fixed32 previous_message_ordinal = 8;
|
|
3343
|
+
optional string client_message_id = 9;
|
|
3344
|
+
}
|
|
3345
|
+
|
|
3346
|
+
message CMsgMulti {
|
|
3347
|
+
optional uint32 size_unzipped = 1;
|
|
3348
|
+
optional bytes message_body = 2;
|
|
3349
|
+
}
|
|
3350
|
+
|
|
3351
|
+
message CMsgPersonaChangeResponse {
|
|
3352
|
+
optional uint32 result = 1;
|
|
3353
|
+
optional string player_name = 2;
|
|
3354
|
+
}
|
|
3355
|
+
|
|
3356
|
+
message CMsgProtoBufHeader {
|
|
3357
|
+
optional fixed64 steamid = 1;
|
|
3358
|
+
optional int32 client_sessionid = 2;
|
|
3359
|
+
optional uint32 routing_appid = 3;
|
|
3360
|
+
optional fixed64 jobid_source = 10 [default = 18446744073709551615];
|
|
3361
|
+
optional fixed64 jobid_target = 11 [default = 18446744073709551615];
|
|
3362
|
+
optional string target_job_name = 12;
|
|
3363
|
+
optional int32 eresult = 13 [default = 2];
|
|
3364
|
+
optional string error_message = 14;
|
|
3365
|
+
optional uint32 ip = 15;
|
|
3366
|
+
optional uint32 auth_account_flags = 16;
|
|
3367
|
+
optional int32 transport_error = 17 [default = 1];
|
|
3368
|
+
optional uint64 messageid = 18 [default = 18446744073709551615];
|
|
3369
|
+
optional uint32 publisher_group_id = 19;
|
|
3370
|
+
optional uint32 sysid = 20;
|
|
3371
|
+
optional uint64 trace_tag = 21;
|
|
3372
|
+
optional uint32 token_source = 22;
|
|
3373
|
+
optional bool admin_spoofing_user = 23;
|
|
3374
|
+
optional int32 seq_num = 24;
|
|
3375
|
+
optional uint32 webapi_key_id = 25;
|
|
3376
|
+
optional bool is_from_external_source = 26;
|
|
3377
|
+
repeated uint32 forward_to_sysid = 27;
|
|
3378
|
+
optional uint32 cm_sysid = 28;
|
|
3379
|
+
optional bytes ip_v6 = 29;
|
|
3380
|
+
optional string wg_token = 30;
|
|
3381
|
+
optional uint32 launcher_type = 31 [default = 0];
|
|
3382
|
+
optional uint32 realm = 32 [default = 0];
|
|
3383
|
+
optional int32 timeout_ms = 33 [default = -1];
|
|
3384
|
+
optional string debug_source = 34;
|
|
3385
|
+
optional uint32 debug_source_string_index = 35;
|
|
3386
|
+
optional uint64 token_id = 36;
|
|
3387
|
+
optional .CMsgGCRoutingProtoBufHeader routing_gc = 37;
|
|
3388
|
+
optional int32 session_disposition = 38 [(.description) = "enum"];
|
|
3389
|
+
optional string wg_token__field_39 = 39;
|
|
3390
|
+
optional string webui_auth_key = 40;
|
|
3391
|
+
repeated int32 exclude_client_sessionids = 41;
|
|
3392
|
+
}
|
|
3393
|
+
|
|
3394
|
+
message CMsgProtobufWrapped {
|
|
3395
|
+
optional bytes message_body = 1;
|
|
3396
|
+
}
|
|
3397
|
+
|
|
3398
|
+
message CMsgTrading_CancelTradeRequest {
|
|
3399
|
+
optional uint64 other_steamid = 1;
|
|
3400
|
+
}
|
|
3401
|
+
|
|
3402
|
+
message CMsgTrading_InitiateTradeRequest {
|
|
3403
|
+
optional uint32 trade_request_id = 1;
|
|
3404
|
+
optional uint64 other_steamid = 2;
|
|
3405
|
+
optional string other_name = 3;
|
|
3406
|
+
}
|
|
3407
|
+
|
|
3408
|
+
message CMsgTrading_InitiateTradeResponse {
|
|
3409
|
+
optional uint32 response = 1;
|
|
3410
|
+
optional uint32 trade_request_id = 2;
|
|
3411
|
+
optional uint64 other_steamid = 3;
|
|
3412
|
+
optional uint32 steamguard_required_days = 4;
|
|
3413
|
+
optional uint32 new_device_cooldown_days = 5;
|
|
3414
|
+
optional uint32 default_password_reset_probation_days = 6;
|
|
3415
|
+
optional uint32 password_reset_probation_days = 7;
|
|
3416
|
+
optional uint32 default_email_change_probation_days = 8;
|
|
3417
|
+
optional uint32 email_change_probation_days = 9;
|
|
3418
|
+
}
|
|
3419
|
+
|
|
3420
|
+
message CMsgTrading_StartSession {
|
|
3421
|
+
optional uint64 other_steamid = 1;
|
|
3422
|
+
}
|
|
3423
|
+
|
|
3424
|
+
message CProductImpressionsFromClient_Notification {
|
|
3425
|
+
repeated .CProductImpressionsFromClient_Notification_Impression impressions = 1;
|
|
3426
|
+
}
|
|
3427
|
+
|
|
3428
|
+
// Used by: common.proto
|
|
3429
|
+
message CProductImpressionsFromClient_Notification_Impression {
|
|
3430
|
+
optional int32 type = 1 [(.description) = "enum"];
|
|
3431
|
+
optional uint32 appid = 2;
|
|
3432
|
+
optional uint32 num_impressions = 3;
|
|
3433
|
+
}
|
|
3434
|
+
|
|
3435
|
+
message CSteamNotification_HideNotification_Notification {
|
|
3436
|
+
repeated uint64 notification_ids = 1;
|
|
3437
|
+
}
|
|
3438
|
+
|
|
3439
|
+
message CSteamNotification_MarkNotificationsRead_Notification {
|
|
3440
|
+
optional uint32 timestamp = 1;
|
|
3441
|
+
optional int32 notification_type = 2 [(.description) = "enum"];
|
|
3442
|
+
repeated uint64 notification_ids = 3;
|
|
3443
|
+
optional bool mark_all_read = 4;
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3446
|
+
message CSteamNotification_MarkNotificationsViewed_Notification {
|
|
3447
|
+
}
|
|
3448
|
+
|
|
3449
|
+
message CSteamVR_Header {
|
|
3450
|
+
optional int32 type = 1 [(.description) = "enum"];
|
|
3451
|
+
optional uint32 id = 2;
|
|
3452
|
+
}
|
|
3453
|
+
|
|
3454
|
+
message CSteamVR_VoiceChat_Active_Notification {
|
|
3455
|
+
}
|
|
3456
|
+
|
|
3457
|
+
message CSteamVR_VoiceChat_ConfigureVideo_Request {
|
|
3458
|
+
optional bool send = 1;
|
|
3459
|
+
optional bool receive = 2;
|
|
3460
|
+
}
|
|
3461
|
+
|
|
3462
|
+
message CSteamVR_VoiceChat_ConfigureVideo_Response {
|
|
3463
|
+
}
|
|
3464
|
+
|
|
3465
|
+
message CSteamVR_VoiceChat_ExitRoomChat_Request {
|
|
3466
|
+
optional uint64 chat_group_id = 1;
|
|
3467
|
+
optional uint64 chat_room_id = 2;
|
|
3468
|
+
}
|
|
3469
|
+
|
|
3470
|
+
message CSteamVR_VoiceChat_ExitRoomChat_Response {
|
|
3471
|
+
}
|
|
3472
|
+
|
|
3473
|
+
message CSteamVR_VoiceChat_GetAvatarUrl_Request {
|
|
3474
|
+
optional fixed64 profile_steamid = 1;
|
|
3475
|
+
optional int32 avatar_type = 2 [(.description) = "enum"];
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3478
|
+
message CSteamVR_VoiceChat_GetAvatarUrl_Response {
|
|
3479
|
+
optional string profile_avatar_url = 1;
|
|
3480
|
+
}
|
|
3481
|
+
|
|
3482
|
+
message CSteamVR_VoiceChat_GroupName_Notification {
|
|
3483
|
+
optional string name = 1;
|
|
3484
|
+
}
|
|
3485
|
+
|
|
3486
|
+
message CSteamVR_VoiceChat_Inactive_Notification {
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3489
|
+
message CSteamVR_VoiceChat_InitiateRoomChat_Request {
|
|
3490
|
+
optional uint64 chat_group_id = 1;
|
|
3491
|
+
optional uint64 chat_room_id = 2;
|
|
3492
|
+
}
|
|
3493
|
+
|
|
3494
|
+
message CSteamVR_VoiceChat_InitiateRoomChat_Response {
|
|
3495
|
+
}
|
|
3496
|
+
|
|
3497
|
+
message CSteamVR_VoiceChat_NewGroupChatMsgAdded_Notification {
|
|
3498
|
+
optional uint64 chat_group_id = 1;
|
|
3499
|
+
optional uint64 chat_room_id = 2;
|
|
3500
|
+
optional uint32 sender_accountid = 3;
|
|
3501
|
+
optional uint32 timestamp = 4;
|
|
3502
|
+
optional uint32 ordinal = 5;
|
|
3503
|
+
optional string message = 6;
|
|
3504
|
+
}
|
|
3505
|
+
|
|
3506
|
+
message CSteamVR_VoiceChat_PerUserGainValue_Notification {
|
|
3507
|
+
optional uint32 accountid = 1;
|
|
3508
|
+
optional bool muted = 2;
|
|
3509
|
+
optional float gain = 3;
|
|
3510
|
+
}
|
|
3511
|
+
|
|
3512
|
+
message CSteamVR_VoiceChat_PerUserVoiceStatus_Notification {
|
|
3513
|
+
optional uint32 accountid = 1;
|
|
3514
|
+
optional bool mic_muted_locally = 2;
|
|
3515
|
+
optional bool output_muted_locally = 3;
|
|
3516
|
+
}
|
|
3517
|
+
|
|
3518
|
+
message CSteamVR_VoiceChat_SendGroupChatMessage_Request {
|
|
3519
|
+
optional string message_with_bbcode = 1;
|
|
3520
|
+
}
|
|
3521
|
+
|
|
3522
|
+
message CSteamVR_VoiceChat_SendGroupChatMessage_Response {
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3525
|
+
message CSteamVR_VoiceChat_SetDefaultSession_Notification {
|
|
3526
|
+
optional uint64 chat_group_id = 1;
|
|
3527
|
+
optional uint64 chat_room_id = 2;
|
|
3528
|
+
}
|
|
3529
|
+
|
|
3530
|
+
message CSteamVR_VoiceChat_SetPerUserMuting_Request {
|
|
3531
|
+
optional uint32 accountid = 1;
|
|
3532
|
+
optional bool muted = 2;
|
|
3533
|
+
}
|
|
3534
|
+
|
|
3535
|
+
message CSteamVR_VoiceChat_SetPerUserMuting_Response {
|
|
3536
|
+
}
|
|
3537
|
+
|
|
3538
|
+
message CSteamVR_WebRTC_Active_Notification {
|
|
3539
|
+
}
|
|
3540
|
+
|
|
3541
|
+
message CSteamVR_WebRTC_CloseDataChannel_Request {
|
|
3542
|
+
optional uint32 channel_id = 1;
|
|
3543
|
+
}
|
|
3544
|
+
|
|
3545
|
+
message CSteamVR_WebRTC_CloseDataChannel_Response {
|
|
3546
|
+
}
|
|
3547
|
+
|
|
3548
|
+
message CSteamVR_WebRTC_CreateDataChannel_Request {
|
|
3549
|
+
optional string label = 1;
|
|
3550
|
+
optional bool ordered = 2;
|
|
3551
|
+
optional uint32 max_retransmits = 3;
|
|
3552
|
+
optional uint32 max_packet_life_time = 4;
|
|
3553
|
+
}
|
|
3554
|
+
|
|
3555
|
+
message CSteamVR_WebRTC_CreateDataChannel_Response {
|
|
3556
|
+
optional uint32 channel_id = 1;
|
|
3557
|
+
}
|
|
3558
|
+
|
|
3559
|
+
message CSteamVR_WebRTC_DataChannel_Close_Notification {
|
|
3560
|
+
optional uint32 channel_id = 1;
|
|
3561
|
+
}
|
|
3562
|
+
|
|
3563
|
+
message CSteamVR_WebRTC_DataChannel_Error_Notification {
|
|
3564
|
+
optional uint32 channel_id = 1;
|
|
3565
|
+
optional string reason = 2;
|
|
3566
|
+
}
|
|
3567
|
+
|
|
3568
|
+
message CSteamVR_WebRTC_DataChannel_Message_Notification {
|
|
3569
|
+
optional uint32 channel_id = 1;
|
|
3570
|
+
optional bytes data = 2;
|
|
3571
|
+
}
|
|
3572
|
+
|
|
3573
|
+
message CSteamVR_WebRTC_DataChannel_Open_Notification {
|
|
3574
|
+
optional uint32 channel_id = 1;
|
|
3575
|
+
}
|
|
3576
|
+
|
|
3577
|
+
message CSteamVR_WebRTC_Inactive_Notification {
|
|
3578
|
+
}
|
|
3579
|
+
|
|
3580
|
+
message CSteamVR_WebRTC_OnDataChannel_Notification {
|
|
3581
|
+
optional fixed64 source_steamid = 1;
|
|
3582
|
+
optional uint32 channel_id = 2;
|
|
3583
|
+
optional string label = 3;
|
|
3584
|
+
}
|
|
3585
|
+
|
|
3586
|
+
message CStore_MigratePartnerLinkTracking_Notification {
|
|
3587
|
+
optional uint32 accountid = 1;
|
|
3588
|
+
optional uint64 browserid = 2;
|
|
3589
|
+
optional int32 backfill_source = 3 [(.description) = "enum"];
|
|
3590
|
+
}
|
|
3591
|
+
|
|
3592
|
+
message CStore_ReloadAllReservationPositionMessages_Notification {
|
|
3593
|
+
}
|
|
3594
|
+
|
|
3595
|
+
// Used by: PartnerStoreBrowse, StoreBrowse
|
|
3596
|
+
message CStoreBrowse_GetItems_Request {
|
|
3597
|
+
repeated .StoreItemID ids = 1;
|
|
3598
|
+
optional .StoreBrowseContext context = 2;
|
|
3599
|
+
optional .StoreBrowseItemDataRequest data_request = 3;
|
|
3600
|
+
}
|
|
3601
|
+
|
|
3602
|
+
// Used by: PartnerStoreBrowse, StoreBrowse
|
|
3603
|
+
message CStoreBrowse_GetItems_Response {
|
|
3604
|
+
repeated .StoreItem store_items = 1;
|
|
3605
|
+
}
|
|
3606
|
+
|
|
3607
|
+
// Used by: Store, StoreBrowse, StoreQuery
|
|
3608
|
+
message CStorePageFilter {
|
|
3609
|
+
optional .CStorePageFilter_SalePageFilter sale_filter = 1;
|
|
3610
|
+
optional .CStorePageFilter_ContentHubFilter content_hub_filter = 2;
|
|
3611
|
+
repeated .CStorePageFilter_StoreFilter store_filters = 3;
|
|
3612
|
+
}
|
|
3613
|
+
|
|
3614
|
+
// Used by: Store, StoreBrowse, StoreQuery
|
|
3615
|
+
message CStorePageFilter_ContentHubFilter {
|
|
3616
|
+
optional string hub_type = 1;
|
|
3617
|
+
optional string hub_category = 2;
|
|
3618
|
+
optional uint32 hub_tagid = 3;
|
|
3619
|
+
optional int32 discount_filter = 4 [(.description) = "enum"];
|
|
3620
|
+
optional .CStorePageFilter_ContentHubFilter_OptInInfo optin = 5;
|
|
3621
|
+
}
|
|
3622
|
+
|
|
3623
|
+
// Used by: Store, StoreBrowse, StoreQuery
|
|
3624
|
+
message CStorePageFilter_ContentHubFilter_OptInInfo {
|
|
3625
|
+
optional string name = 1;
|
|
3626
|
+
optional uint32 optin_tagid = 2;
|
|
3627
|
+
optional uint32 prune_tagid = 3;
|
|
3628
|
+
optional bool optin_only = 4;
|
|
3629
|
+
}
|
|
3630
|
+
|
|
3631
|
+
// Used by: Store, StoreBrowse, StoreQuery
|
|
3632
|
+
message CStorePageFilter_SalePageFilter {
|
|
3633
|
+
optional uint32 sale_tagid = 1;
|
|
3634
|
+
}
|
|
3635
|
+
|
|
3636
|
+
// Used by: Store, StoreBrowse, StoreQuery
|
|
3637
|
+
message CStorePageFilter_StoreFilter {
|
|
3638
|
+
optional string filter_json = 1;
|
|
3639
|
+
optional string cache_key = 2;
|
|
3640
|
+
}
|
|
3641
|
+
|
|
3642
|
+
// Used by: common.proto
|
|
3643
|
+
message EncryptedAppTicket {
|
|
3644
|
+
optional uint32 ticket_version_no = 1;
|
|
3645
|
+
optional uint32 crc_encryptedticket = 2;
|
|
3646
|
+
optional uint32 cb_encrypteduserdata = 3;
|
|
3647
|
+
optional uint32 cb_encrypted_appownershipticket = 4;
|
|
3648
|
+
optional bytes encrypted_ticket = 5;
|
|
3649
|
+
}
|
|
3650
|
+
|
|
3651
|
+
// Used by: LoyaltyRewards, SaleItemRewards
|
|
3652
|
+
message LoyaltyRewardDefinition {
|
|
3653
|
+
optional uint32 appid = 1;
|
|
3654
|
+
optional uint32 defid = 2;
|
|
3655
|
+
optional int32 type = 3 [(.description) = "enum"];
|
|
3656
|
+
optional int32 community_item_class = 4;
|
|
3657
|
+
optional uint32 community_item_type = 5;
|
|
3658
|
+
optional int64 point_cost = 6;
|
|
3659
|
+
optional uint32 timestamp_created = 7;
|
|
3660
|
+
optional uint32 timestamp_updated = 8;
|
|
3661
|
+
optional uint32 timestamp_available = 9;
|
|
3662
|
+
optional int64 quantity = 10;
|
|
3663
|
+
optional string internal_description = 11;
|
|
3664
|
+
optional bool active = 12;
|
|
3665
|
+
optional .LoyaltyRewardDefinition_CommunityItemData community_item_data = 13;
|
|
3666
|
+
optional uint32 timestamp_available_end = 14;
|
|
3667
|
+
repeated uint32 bundle_defids = 15;
|
|
3668
|
+
optional uint32 usable_duration = 16;
|
|
3669
|
+
optional uint32 bundle_discount = 17;
|
|
3670
|
+
}
|
|
3671
|
+
|
|
3672
|
+
// Used by: LoyaltyRewards, SaleItemRewards
|
|
3673
|
+
message LoyaltyRewardDefinition_BadgeData {
|
|
3674
|
+
optional int32 level = 1;
|
|
3675
|
+
optional string image = 2;
|
|
3676
|
+
}
|
|
3677
|
+
|
|
3678
|
+
// Used by: LoyaltyRewards, SaleItemRewards
|
|
3679
|
+
message LoyaltyRewardDefinition_CommunityItemData {
|
|
3680
|
+
optional string item_name = 1;
|
|
3681
|
+
optional string item_title = 2;
|
|
3682
|
+
optional string item_description = 3;
|
|
3683
|
+
optional string item_image_small = 4;
|
|
3684
|
+
optional string item_image_large = 5;
|
|
3685
|
+
optional string item_movie_webm = 6;
|
|
3686
|
+
optional string item_movie_mp4 = 7;
|
|
3687
|
+
optional bool animated = 8;
|
|
3688
|
+
repeated .LoyaltyRewardDefinition_BadgeData badge_data = 9;
|
|
3689
|
+
optional string item_movie_webm_small = 10;
|
|
3690
|
+
optional string item_movie_mp4_small = 11;
|
|
3691
|
+
optional string profile_theme_id = 12;
|
|
3692
|
+
}
|
|
3693
|
+
|
|
3694
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3695
|
+
message StoreBrowseContext {
|
|
3696
|
+
optional string language = 1;
|
|
3697
|
+
optional int32 elanguage = 2;
|
|
3698
|
+
optional string country_code = 3;
|
|
3699
|
+
optional int32 steam_realm = 4;
|
|
3700
|
+
}
|
|
3701
|
+
|
|
3702
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3703
|
+
message StoreBrowseItemDataRequest {
|
|
3704
|
+
optional bool include_assets = 1;
|
|
3705
|
+
optional bool include_release = 2;
|
|
3706
|
+
optional bool include_platforms = 3;
|
|
3707
|
+
optional bool include_all_purchase_options = 4;
|
|
3708
|
+
optional bool include_screenshots = 5;
|
|
3709
|
+
optional bool include_trailers = 6;
|
|
3710
|
+
optional bool include_ratings = 7;
|
|
3711
|
+
optional int32 include_tag_count = 8;
|
|
3712
|
+
optional bool include_reviews = 9;
|
|
3713
|
+
optional bool include_basic_info = 10;
|
|
3714
|
+
optional bool include_supported_languages = 11;
|
|
3715
|
+
optional bool include_full_description = 12;
|
|
3716
|
+
optional bool include_included_items = 13;
|
|
3717
|
+
optional .StoreBrowseItemDataRequest included_item_data_request = 14;
|
|
3718
|
+
optional bool include_assets_without_overrides = 15;
|
|
3719
|
+
}
|
|
3720
|
+
|
|
3721
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3722
|
+
message StoreGameRating {
|
|
3723
|
+
optional string type = 1;
|
|
3724
|
+
optional string rating = 2;
|
|
3725
|
+
repeated string descriptors = 3;
|
|
3726
|
+
optional string interactive_elements = 4;
|
|
3727
|
+
optional int32 required_age = 10;
|
|
3728
|
+
optional bool use_age_gate = 11;
|
|
3729
|
+
optional string image_url = 20;
|
|
3730
|
+
optional string image_target = 21;
|
|
3731
|
+
}
|
|
3732
|
+
|
|
3733
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3734
|
+
message StoreItem {
|
|
3735
|
+
optional int32 item_type = 1 [(.description) = "enum"];
|
|
3736
|
+
optional uint32 id = 2;
|
|
3737
|
+
optional uint32 success = 3;
|
|
3738
|
+
optional bool visible = 4;
|
|
3739
|
+
optional bool unvailable_for_country_restriction = 5;
|
|
3740
|
+
optional string name = 6;
|
|
3741
|
+
optional string store_url_path = 7;
|
|
3742
|
+
optional uint32 appid = 9;
|
|
3743
|
+
optional int32 type = 10 [(.description) = "enum"];
|
|
3744
|
+
repeated int32 included_types = 11 [(.description) = "enum"];
|
|
3745
|
+
repeated uint32 included_appids = 12;
|
|
3746
|
+
optional bool is_free = 13;
|
|
3747
|
+
optional bool is_early_access = 14;
|
|
3748
|
+
optional .StoreItem_RelatedItems related_items = 15;
|
|
3749
|
+
optional .StoreItem_IncludedItems included_items = 16;
|
|
3750
|
+
repeated int32 content_descriptorids = 20 [(.description) = "enum"];
|
|
3751
|
+
repeated uint32 tagids = 21;
|
|
3752
|
+
optional .StoreItem_Categories categories = 22;
|
|
3753
|
+
optional .StoreItem_Reviews reviews = 23;
|
|
3754
|
+
optional .StoreItem_BasicInfo basic_info = 24;
|
|
3755
|
+
repeated .StoreItem_Tag tags = 25;
|
|
3756
|
+
optional .StoreItem_Assets assets = 30;
|
|
3757
|
+
optional .StoreItem_ReleaseInfo release = 31;
|
|
3758
|
+
optional .StoreItem_Platforms platforms = 32;
|
|
3759
|
+
optional .StoreGameRating game_rating = 33;
|
|
3760
|
+
optional .StoreItem_PurchaseOption best_purchase_option = 40;
|
|
3761
|
+
repeated .StoreItem_PurchaseOption purchase_options = 41;
|
|
3762
|
+
repeated .StoreItem_PurchaseOption accessories = 42;
|
|
3763
|
+
optional .StoreItem_Screenshots screenshots = 50;
|
|
3764
|
+
optional .StoreItem_Trailers trailers = 51;
|
|
3765
|
+
repeated .StoreItem_SupportedLanguage supported_languages = 52;
|
|
3766
|
+
optional string store_url_path_override = 53;
|
|
3767
|
+
optional .StoreItem_FreeWeekend free_weekend = 54;
|
|
3768
|
+
optional bool unlisted = 55;
|
|
3769
|
+
optional uint32 game_count = 56;
|
|
3770
|
+
optional string internal_name = 57;
|
|
3771
|
+
optional string full_description = 58;
|
|
3772
|
+
optional bool is_free_temporarily = 59;
|
|
3773
|
+
optional .StoreItem_Assets assets_without_overrides = 60;
|
|
3774
|
+
}
|
|
3775
|
+
|
|
3776
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3777
|
+
message StoreItem_Assets {
|
|
3778
|
+
optional string asset_url_format = 1;
|
|
3779
|
+
optional string main_capsule = 2;
|
|
3780
|
+
optional string small_capsule = 3;
|
|
3781
|
+
optional string header = 4;
|
|
3782
|
+
optional string package_header = 5;
|
|
3783
|
+
optional string page_background = 6;
|
|
3784
|
+
optional string hero_capsule = 7;
|
|
3785
|
+
optional string hero_capsule_2x = 8;
|
|
3786
|
+
optional string library_capsule = 9;
|
|
3787
|
+
optional string library_capsule_2x = 10;
|
|
3788
|
+
optional string library_hero = 11;
|
|
3789
|
+
optional string library_hero_2x = 12;
|
|
3790
|
+
optional string community_icon = 13;
|
|
3791
|
+
optional string clan_avatar = 14;
|
|
3792
|
+
}
|
|
3793
|
+
|
|
3794
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3795
|
+
message StoreItem_BasicInfo {
|
|
3796
|
+
optional string short_description = 1;
|
|
3797
|
+
repeated .StoreItem_BasicInfo_CreatorHomeLink publishers = 2;
|
|
3798
|
+
//repeated string publishers = 2;
|
|
3799
|
+
repeated .StoreItem_BasicInfo_CreatorHomeLink developers = 3;
|
|
3800
|
+
//repeated string developers = 3;
|
|
3801
|
+
repeated .StoreItem_BasicInfo_CreatorHomeLink franchises = 4;
|
|
3802
|
+
//repeated string franchises = 4;
|
|
3803
|
+
optional string capsule_headline = 5;
|
|
3804
|
+
}
|
|
3805
|
+
|
|
3806
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3807
|
+
message StoreItem_BasicInfo_CreatorHomeLink {
|
|
3808
|
+
optional string name = 1;
|
|
3809
|
+
optional uint32 creator_clan_account_id = 2;
|
|
3810
|
+
}
|
|
3811
|
+
|
|
3812
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3813
|
+
message StoreItem_Categories {
|
|
3814
|
+
repeated uint32 supported_player_categoryids = 2;
|
|
3815
|
+
repeated uint32 feature_categoryids = 3;
|
|
3816
|
+
repeated uint32 controller_categoryids = 4;
|
|
3817
|
+
}
|
|
3818
|
+
|
|
3819
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3820
|
+
message StoreItem_FreeWeekend {
|
|
3821
|
+
optional uint32 start_time = 1;
|
|
3822
|
+
optional uint32 end_time = 2;
|
|
3823
|
+
optional string text = 3;
|
|
3824
|
+
}
|
|
3825
|
+
|
|
3826
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3827
|
+
message StoreItem_IncludedItems {
|
|
3828
|
+
repeated .StoreItem included_apps = 1;
|
|
3829
|
+
repeated .StoreItem included_packages = 2;
|
|
3830
|
+
}
|
|
3831
|
+
|
|
3832
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3833
|
+
message StoreItem_Platforms {
|
|
3834
|
+
optional bool windows = 1;
|
|
3835
|
+
optional bool mac = 2;
|
|
3836
|
+
optional bool linux = 3;
|
|
3837
|
+
//optional bool steamos_linux = 3;
|
|
3838
|
+
optional .StoreItem_Platforms_VRSupport vr_support = 10;
|
|
3839
|
+
optional int32 steam_deck_compat_category = 11 [(.description) = "enum"];
|
|
3840
|
+
}
|
|
3841
|
+
|
|
3842
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3843
|
+
message StoreItem_Platforms_VRSupport {
|
|
3844
|
+
optional bool vrhmd = 1;
|
|
3845
|
+
optional bool vrhmd_only = 2;
|
|
3846
|
+
optional bool htc_vive = 40;
|
|
3847
|
+
optional bool oculus_rift = 41;
|
|
3848
|
+
optional bool windows_mr = 42;
|
|
3849
|
+
optional bool valve_index = 43;
|
|
3850
|
+
}
|
|
3851
|
+
|
|
3852
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3853
|
+
message StoreItem_PurchaseOption {
|
|
3854
|
+
optional int32 packageid = 1;
|
|
3855
|
+
optional int32 bundleid = 2;
|
|
3856
|
+
optional string purchase_option_name = 3;
|
|
3857
|
+
optional int64 final_price_in_cents = 5;
|
|
3858
|
+
optional int64 original_price_in_cents = 6;
|
|
3859
|
+
optional int64 user_final_price_in_cents = 7;
|
|
3860
|
+
optional string formatted_final_price = 8;
|
|
3861
|
+
optional string formatted_original_price = 9;
|
|
3862
|
+
optional int32 discount_pct = 10;
|
|
3863
|
+
optional int32 user_discount_pct = 11;
|
|
3864
|
+
optional int32 bundle_discount_pct = 12;
|
|
3865
|
+
repeated .StoreItem_PurchaseOption_Discount active_discounts = 20;
|
|
3866
|
+
repeated .StoreItem_PurchaseOption_Discount user_active_discounts = 21;
|
|
3867
|
+
repeated .StoreItem_PurchaseOption_Discount inactive_discounts = 22;
|
|
3868
|
+
optional bool user_can_purchase = 30;
|
|
3869
|
+
optional bool user_can_purchase_as_gift = 31;
|
|
3870
|
+
optional bool is_commercial_license = 40;
|
|
3871
|
+
optional bool should_suppress_discount_pct = 41;
|
|
3872
|
+
optional bool hide_discount_pct_for_compliance = 42 [default = false];
|
|
3873
|
+
optional int32 included_game_count = 43;
|
|
3874
|
+
optional int64 lowest_recent_price_in_cents = 44;
|
|
3875
|
+
optional bool requires_shipping = 45;
|
|
3876
|
+
optional .StoreItem_PurchaseOption_RecurrenceInfo recurrence_info = 46;
|
|
3877
|
+
}
|
|
3878
|
+
|
|
3879
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3880
|
+
message StoreItem_PurchaseOption_Discount {
|
|
3881
|
+
optional int64 discount_amount = 1;
|
|
3882
|
+
optional string discount_description = 2;
|
|
3883
|
+
optional uint32 discount_end_date = 3;
|
|
3884
|
+
}
|
|
3885
|
+
|
|
3886
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3887
|
+
message StoreItem_PurchaseOption_RecurrenceInfo {
|
|
3888
|
+
optional int32 packageid = 1;
|
|
3889
|
+
optional int32 billing_agreement_type = 2;
|
|
3890
|
+
optional int32 renewal_time_unit = 3;
|
|
3891
|
+
optional int32 renewal_time_period = 4;
|
|
3892
|
+
}
|
|
3893
|
+
|
|
3894
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3895
|
+
message StoreItem_RelatedItems {
|
|
3896
|
+
optional uint32 parent_appid = 1;
|
|
3897
|
+
}
|
|
3898
|
+
|
|
3899
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3900
|
+
message StoreItem_ReleaseInfo {
|
|
3901
|
+
optional uint32 steam_release_date = 1;
|
|
3902
|
+
optional uint32 original_release_date = 2;
|
|
3903
|
+
optional uint32 original_steam_release_date = 3;
|
|
3904
|
+
optional bool is_coming_soon = 4;
|
|
3905
|
+
optional bool is_preload = 5;
|
|
3906
|
+
optional string custom_release_date_message = 6;
|
|
3907
|
+
optional bool is_abridged_release_date = 7;
|
|
3908
|
+
optional string coming_soon_display = 8;
|
|
3909
|
+
optional bool is_early_access = 10;
|
|
3910
|
+
optional uint32 mac_release_date = 20;
|
|
3911
|
+
optional uint32 linux_release_date = 21;
|
|
3912
|
+
}
|
|
3913
|
+
|
|
3914
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3915
|
+
message StoreItem_Reviews {
|
|
3916
|
+
optional .StoreItem_Reviews_StoreReviewSummary summary_filtered = 1;
|
|
3917
|
+
optional .StoreItem_Reviews_StoreReviewSummary summary_unfiltered = 2;
|
|
3918
|
+
}
|
|
3919
|
+
|
|
3920
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3921
|
+
message StoreItem_Reviews_StoreReviewSummary {
|
|
3922
|
+
optional uint32 review_count = 1;
|
|
3923
|
+
optional int32 percent_positive = 2;
|
|
3924
|
+
optional int32 review_score = 3 [(.description) = "enum"];
|
|
3925
|
+
optional string review_score_label = 4;
|
|
3926
|
+
}
|
|
3927
|
+
|
|
3928
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3929
|
+
message StoreItem_Screenshots {
|
|
3930
|
+
repeated .StoreItem_Screenshots_Screenshot all_ages_screenshots = 2;
|
|
3931
|
+
repeated .StoreItem_Screenshots_Screenshot mature_content_screenshots = 3;
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3935
|
+
message StoreItem_Screenshots_Screenshot {
|
|
3936
|
+
optional string filename = 1;
|
|
3937
|
+
optional int32 ordinal = 2;
|
|
3938
|
+
}
|
|
3939
|
+
|
|
3940
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3941
|
+
message StoreItem_SupportedLanguage {
|
|
3942
|
+
optional int32 elanguage = 1;
|
|
3943
|
+
optional bool supported = 2;
|
|
3944
|
+
optional bool full_audio = 3;
|
|
3945
|
+
optional bool subtitles = 4;
|
|
3946
|
+
}
|
|
3947
|
+
|
|
3948
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3949
|
+
message StoreItem_Tag {
|
|
3950
|
+
optional uint32 tagid = 1;
|
|
3951
|
+
optional uint32 weight = 2;
|
|
3952
|
+
}
|
|
3953
|
+
|
|
3954
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3955
|
+
message StoreItem_Trailers {
|
|
3956
|
+
repeated .StoreItem_Trailers_Trailer highlights = 1;
|
|
3957
|
+
repeated .StoreItem_Trailers_Trailer other_trailers = 2;
|
|
3958
|
+
}
|
|
3959
|
+
|
|
3960
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3961
|
+
message StoreItem_Trailers_Trailer {
|
|
3962
|
+
optional string trailer_name = 1;
|
|
3963
|
+
optional string trailer_url_format = 2;
|
|
3964
|
+
repeated .StoreItem_Trailers_VideoSource trailer_480p = 3;
|
|
3965
|
+
repeated .StoreItem_Trailers_VideoSource trailer_max = 4;
|
|
3966
|
+
repeated .StoreItem_Trailers_VideoSource microtrailer = 5;
|
|
3967
|
+
optional string screenshot_medium = 10;
|
|
3968
|
+
optional string screenshot_full = 11;
|
|
3969
|
+
optional int32 trailer_base_id = 12;
|
|
3970
|
+
}
|
|
3971
|
+
|
|
3972
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery, StoreTopSellers
|
|
3973
|
+
message StoreItem_Trailers_VideoSource {
|
|
3974
|
+
optional string filename = 1;
|
|
3975
|
+
optional string type = 2;
|
|
3976
|
+
}
|
|
3977
|
+
|
|
3978
|
+
// Used by: Checkout, MarketingMessages, PartnerStoreBrowse, SteamCharts, StoreAppSimilarity, StoreBrowse, StoreMarketing, StoreQuery
|
|
3979
|
+
message StoreItemID {
|
|
3980
|
+
optional uint32 appid = 1;
|
|
3981
|
+
optional uint32 packageid = 2;
|
|
3982
|
+
optional uint32 bundleid = 3;
|
|
3983
|
+
optional uint32 tagid = 4;
|
|
3984
|
+
optional uint32 creatorid = 5;
|
|
3985
|
+
optional uint32 hubcategoryid = 6;
|
|
3986
|
+
}
|
|
3987
|
+
|
|
3988
|
+
// Used by: Player, PlayerClient, Store, StoreClient
|
|
3989
|
+
message UserContentDescriptorPreferences {
|
|
3990
|
+
repeated .UserContentDescriptorPreferences_ContentDescriptor content_descriptors_to_exclude = 1;
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
// Used by: Player, PlayerClient, Store, StoreClient
|
|
3994
|
+
message UserContentDescriptorPreferences_ContentDescriptor {
|
|
3995
|
+
optional uint32 content_descriptorid = 1;
|
|
3996
|
+
optional uint32 timestamp_added = 2;
|
|
3997
|
+
}
|
|
3998
|
+
|