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,103 @@
|
|
|
1
|
+
import "common.proto";
|
|
2
|
+
import "common_base.proto";
|
|
3
|
+
|
|
4
|
+
message CStoreQuery_Query_Request {
|
|
5
|
+
optional string query_name = 1;
|
|
6
|
+
optional .CStoreQueryParams query = 2;
|
|
7
|
+
optional .StoreBrowseContext context = 3;
|
|
8
|
+
optional .StoreBrowseItemDataRequest data_request = 4;
|
|
9
|
+
optional string override_country_code = 5;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
message CStoreQuery_Query_Response {
|
|
13
|
+
optional .CStoreQueryResultMetadata metadata = 1;
|
|
14
|
+
repeated .StoreItemID ids = 2;
|
|
15
|
+
repeated .StoreItem store_items = 3;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
message CStoreQuery_SearchSuggestions_Request {
|
|
19
|
+
optional string query_name = 1;
|
|
20
|
+
optional .StoreBrowseContext context = 2;
|
|
21
|
+
optional string search_term = 3;
|
|
22
|
+
optional uint32 max_results = 4;
|
|
23
|
+
optional .CStoreQueryFilters filters = 5;
|
|
24
|
+
optional .StoreBrowseItemDataRequest data_request = 6;
|
|
25
|
+
optional bool use_spellcheck = 7;
|
|
26
|
+
optional bool search_tags = 8;
|
|
27
|
+
optional bool search_creators = 9;
|
|
28
|
+
optional bool prefilter_creators = 10;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
message CStoreQuery_SearchSuggestions_Response {
|
|
32
|
+
optional .CStoreQueryResultMetadata metadata = 1;
|
|
33
|
+
repeated .StoreItemID ids = 2;
|
|
34
|
+
repeated .StoreItem store_items = 3;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
message CStoreQueryFilters {
|
|
38
|
+
optional bool released_only = 1;
|
|
39
|
+
optional bool coming_soon_only = 2;
|
|
40
|
+
optional .CStoreQueryFilters_TypeFilters type_filters = 3;
|
|
41
|
+
repeated .CStoreQueryFilters_TagFilter tagids_must_match = 10;
|
|
42
|
+
repeated int32 tagids_exclude = 11;
|
|
43
|
+
optional .CStoreQueryFilters_PriceFilters price_filters = 12;
|
|
44
|
+
repeated int32 content_descriptors_must_match = 15 [(.description) = "enum"];
|
|
45
|
+
repeated int32 content_descriptors_excluded = 16 [(.description) = "enum"];
|
|
46
|
+
optional int32 regional_top_n_sellers = 40;
|
|
47
|
+
optional int32 global_top_n_sellers = 41;
|
|
48
|
+
optional int32 regional_long_term_top_n_sellers = 42;
|
|
49
|
+
optional int32 global_long_term_top_n_sellers = 43;
|
|
50
|
+
optional .CStorePageFilter store_page_filter = 44;
|
|
51
|
+
repeated uint32 parent_appids = 45;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
message CStoreQueryFilters_PriceFilters {
|
|
55
|
+
optional bool only_free_items = 1;
|
|
56
|
+
optional bool exclude_free_items = 2;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
message CStoreQueryFilters_TagFilter {
|
|
60
|
+
repeated int32 tagids = 1;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
message CStoreQueryFilters_TypeFilters {
|
|
64
|
+
optional bool include_apps = 1;
|
|
65
|
+
optional bool include_packages = 2;
|
|
66
|
+
optional bool include_bundles = 3;
|
|
67
|
+
optional bool include_games = 10;
|
|
68
|
+
optional bool include_demos = 11;
|
|
69
|
+
optional bool include_mods = 12;
|
|
70
|
+
optional bool include_dlc = 13;
|
|
71
|
+
optional bool include_software = 14;
|
|
72
|
+
optional bool include_video = 15;
|
|
73
|
+
optional bool include_hardware = 16;
|
|
74
|
+
optional bool include_series = 17;
|
|
75
|
+
optional bool include_music = 18;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
message CStoreQueryParams {
|
|
79
|
+
optional int32 start = 1 [default = 0];
|
|
80
|
+
optional int32 count = 2 [default = 10];
|
|
81
|
+
optional int32 sort = 10 [default = 0, (.description) = "enum"];
|
|
82
|
+
optional .CStoreQueryFilters filters = 20;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
message CStoreQueryPerResultMetadata {
|
|
86
|
+
optional .StoreItemID id = 1;
|
|
87
|
+
optional double score = 2;
|
|
88
|
+
optional bool spellcheck_generated_result = 3;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
message CStoreQueryResultMetadata {
|
|
92
|
+
optional int32 total_matching_records = 1;
|
|
93
|
+
optional int32 start = 2;
|
|
94
|
+
optional int32 count = 3;
|
|
95
|
+
repeated .CStoreQueryPerResultMetadata per_result_metadata = 4;
|
|
96
|
+
repeated string spellcheck_suggestions = 5;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
service StoreQuery {
|
|
100
|
+
rpc Query (.CStoreQuery_Query_Request) returns (.CStoreQuery_Query_Response);
|
|
101
|
+
rpc SearchSuggestions (.CStoreQuery_SearchSuggestions_Request) returns (.CStoreQuery_SearchSuggestions_Response);
|
|
102
|
+
}
|
|
103
|
+
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import "common_base.proto";
|
|
2
|
+
|
|
3
|
+
message CStore_GetUserVotes_Request {
|
|
4
|
+
optional uint32 sale_appid = 1;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
message CStore_GetUserVotes_Response {
|
|
8
|
+
repeated .SteamAwardsUserVote user_votes = 1;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
message CStore_GetVoteDefinitions_Request {
|
|
12
|
+
optional string language = 1;
|
|
13
|
+
optional uint32 sale_appid = 2;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
message CStore_GetVoteDefinitions_Response {
|
|
17
|
+
repeated .CStore_VoteDefinition votes = 1;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
message CStore_GetVoteDefinitionsForEvents_Response {
|
|
21
|
+
repeated .CStore_GetVoteDefinitionsForEvents_Response_Vote_Defintion definitions = 1;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
message CStore_GetVoteDefinitionsForEvents_Response_Vote_Defintion {
|
|
25
|
+
optional int32 voteid = 1;
|
|
26
|
+
optional uint32 appid = 2;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
message CStore_SetVote_Request {
|
|
30
|
+
optional int32 voteid = 1;
|
|
31
|
+
optional uint32 appid = 2;
|
|
32
|
+
optional uint32 sale_appid = 3;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
message CStore_SetVote_Response {
|
|
36
|
+
repeated .SteamAwardsUserVote user_votes = 1;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
message CStore_VoteDefinition {
|
|
40
|
+
optional int32 voteid = 1;
|
|
41
|
+
optional bool active = 2;
|
|
42
|
+
optional uint32 start_time = 3;
|
|
43
|
+
optional uint32 end_time = 4;
|
|
44
|
+
repeated .CStore_VoteDefinition_AppDefinition app_discounts = 5;
|
|
45
|
+
optional uint32 grouped_vote_options = 6;
|
|
46
|
+
repeated .CStore_VoteDefinition_GroupDefinition groups = 7;
|
|
47
|
+
optional string internal_name = 8;
|
|
48
|
+
optional .CStore_VoteDefinition_Localization localization = 9;
|
|
49
|
+
optional uint32 reveal_time = 10;
|
|
50
|
+
optional uint32 release_date_min = 11;
|
|
51
|
+
optional uint32 winner_appid = 12;
|
|
52
|
+
optional int32 flag = 13 [(.description) = "enum"];
|
|
53
|
+
optional uint32 release_date_max = 14;
|
|
54
|
+
optional uint32 item_type = 15;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
message CStore_VoteDefinition_AppDefinition {
|
|
58
|
+
optional uint32 appid = 1;
|
|
59
|
+
optional uint32 discount = 2;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
message CStore_VoteDefinition_GroupDefinition {
|
|
63
|
+
optional uint32 groupid = 1;
|
|
64
|
+
optional string group_name = 2;
|
|
65
|
+
repeated .CStore_VoteDefinition_AppDefinition app_discounts = 3;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
message CStore_VoteDefinition_Localization {
|
|
69
|
+
optional string title = 1;
|
|
70
|
+
optional string title_linebreak = 2;
|
|
71
|
+
optional string title_award = 3;
|
|
72
|
+
optional string award_description = 4;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
message SteamAwardsUserVote {
|
|
76
|
+
optional uint32 voteid = 1;
|
|
77
|
+
optional uint32 appid = 2;
|
|
78
|
+
optional uint64 communityitemid = 3;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
service StoreSales {
|
|
82
|
+
rpc GetUserVotes (.CStore_GetUserVotes_Request) returns (.CStore_GetUserVotes_Response);
|
|
83
|
+
rpc GetVoteDefinitions (.CStore_GetVoteDefinitions_Request) returns (.CStore_GetVoteDefinitions_Response);
|
|
84
|
+
rpc GetVoteDefinitionsForEvents (.NotImplemented) returns (.CStore_GetVoteDefinitionsForEvents_Response);
|
|
85
|
+
rpc SetVote (.CStore_SetVote_Request) returns (.CStore_SetVote_Response);
|
|
86
|
+
}
|
|
87
|
+
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import "common.proto";
|
|
2
|
+
|
|
3
|
+
message CStoreTopSellers_GetCountryList_Request {
|
|
4
|
+
optional string language = 1;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
message CStoreTopSellers_GetCountryList_Response {
|
|
8
|
+
repeated .CStoreTopSellers_GetCountryList_Response_Country countries = 1;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
message CStoreTopSellers_GetCountryList_Response_Country {
|
|
12
|
+
optional string country_code = 1;
|
|
13
|
+
optional string name = 2;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
message CStoreTopSellers_GetWeeklyTopSellers_Request {
|
|
17
|
+
optional string country_code = 1;
|
|
18
|
+
optional .StoreBrowseContext context = 2;
|
|
19
|
+
optional .StoreBrowseItemDataRequest data_request = 3;
|
|
20
|
+
optional uint32 start_date = 4;
|
|
21
|
+
optional int32 page_start = 5;
|
|
22
|
+
optional int32 page_count = 6 [default = 20];
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
message CStoreTopSellers_GetWeeklyTopSellers_Response {
|
|
26
|
+
optional uint32 start_date = 1;
|
|
27
|
+
repeated .CStoreTopSellers_GetWeeklyTopSellers_Response_TopSellersRank ranks = 2;
|
|
28
|
+
optional int32 next_page_start = 3;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
message CStoreTopSellers_GetWeeklyTopSellers_Response_TopSellersRank {
|
|
32
|
+
optional int32 rank = 1;
|
|
33
|
+
optional int32 appid = 2;
|
|
34
|
+
optional .StoreItem item = 3;
|
|
35
|
+
optional int32 last_week_rank = 4;
|
|
36
|
+
optional int32 consecutive_weeks = 5;
|
|
37
|
+
optional bool first_top100 = 6;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
service StoreTopSellers {
|
|
41
|
+
rpc GetCountryList (.CStoreTopSellers_GetCountryList_Request) returns (.CStoreTopSellers_GetCountryList_Response);
|
|
42
|
+
rpc GetWeeklyTopSellers (.CStoreTopSellers_GetWeeklyTopSellers_Request) returns (.CStoreTopSellers_GetWeeklyTopSellers_Response);
|
|
43
|
+
}
|
|
44
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
|
|
2
|
+
message CTransportAuth_Authenticate_Request {
|
|
3
|
+
optional string auth_key = 1;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
message CTransportAuth_Authenticate_Response {
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
service TransportAuth {
|
|
10
|
+
rpc Authenticate (.CTransportAuth_Authenticate_Request) returns (.CTransportAuth_Authenticate_Response);
|
|
11
|
+
}
|
|
12
|
+
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import "common.proto";
|
|
2
|
+
import "common_base.proto";
|
|
3
|
+
|
|
4
|
+
message CTransportValidation_AddNumbers_Request {
|
|
5
|
+
repeated int32 numbers = 1;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
message CTransportValidation_AddNumbers_Response {
|
|
9
|
+
optional int32 accumulated = 1;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
message CTransportValidation_CountOrderedBytes_Request {
|
|
13
|
+
optional bytes ordered_bytes = 1;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
message CTransportValidation_CountOrderedBytes_Response {
|
|
17
|
+
optional int32 byte_count = 1;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
message CTransportValidation_GetLastNotifyNumber_Request {
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
message CTransportValidation_GetLastNotifyNumber_Response {
|
|
24
|
+
optional int32 last_notify_number = 1;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
message CTransportValidation_NotifyNumber_Notification {
|
|
28
|
+
optional int32 number = 1;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
message CTransportValidation_NotifySyntheticEvent_Notification {
|
|
32
|
+
optional int32 sequence = 1;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
message CTransportValidation_NotifyText_Notification {
|
|
36
|
+
optional string text = 1;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
message CTransportValidation_TriggerSyntheticEvents_Request {
|
|
40
|
+
optional int32 count = 1;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
message CTransportValidation_TriggerSyntheticEvents_Response {
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
message CTransportValidationClient_AddNumbers_Request {
|
|
47
|
+
repeated int32 numbers = 1;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
message CTransportValidationClient_AddNumbers_Response {
|
|
51
|
+
optional int32 accumulated = 1;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
service TransportValidation {
|
|
55
|
+
rpc AddNumbers (.CTransportValidation_AddNumbers_Request) returns (.CTransportValidation_AddNumbers_Response);
|
|
56
|
+
rpc AddNumbersStatic (.CTransportValidation_AddNumbers_Request) returns (.CTransportValidation_AddNumbers_Response);
|
|
57
|
+
rpc AppendToString (.CTransportValidation_AppendToString_Request) returns (.CTransportValidation_AppendToString_Response);
|
|
58
|
+
rpc CountOrderedBytes (.CTransportValidation_CountOrderedBytes_Request) returns (.CTransportValidation_CountOrderedBytes_Response);
|
|
59
|
+
rpc GetLastNotifyNumber (.CTransportValidation_GetLastNotifyNumber_Request) returns (.CTransportValidation_GetLastNotifyNumber_Response);
|
|
60
|
+
rpc NotifyNumber (.CTransportValidation_NotifyNumber_Notification) returns (.NoResponse);
|
|
61
|
+
rpc NotifySyntheticEvent (.CTransportValidation_NotifySyntheticEvent_Notification) returns (.NoResponse);
|
|
62
|
+
rpc NotifyText (.CTransportValidation_NotifyText_Notification) returns (.NoResponse);
|
|
63
|
+
rpc TriggerSyntheticEvents (.CTransportValidation_TriggerSyntheticEvents_Request) returns (.CTransportValidation_TriggerSyntheticEvents_Response);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
service TransportValidationClient {
|
|
67
|
+
rpc AddNumbers (.CTransportValidationClient_AddNumbers_Request) returns (.CTransportValidationClient_AddNumbers_Response);
|
|
68
|
+
}
|
|
69
|
+
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
import "common_base.proto";
|
|
2
|
+
|
|
3
|
+
message CRemoveAuthenticatorViaChallengeContinue_Replacement_Token {
|
|
4
|
+
optional bytes shared_secret = 1;
|
|
5
|
+
optional fixed64 serial_number = 2;
|
|
6
|
+
optional string revocation_code = 3;
|
|
7
|
+
optional string uri = 4;
|
|
8
|
+
optional uint64 server_time = 5;
|
|
9
|
+
optional string account_name = 6;
|
|
10
|
+
optional string token_gid = 7;
|
|
11
|
+
optional bytes identity_secret = 8;
|
|
12
|
+
optional bytes secret_1 = 9;
|
|
13
|
+
optional int32 status = 10;
|
|
14
|
+
optional uint32 steamguard_scheme = 11;
|
|
15
|
+
optional fixed64 steamid = 12;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
message CTwoFactor_AddAuthenticator_Request {
|
|
19
|
+
optional fixed64 steamid = 1;
|
|
20
|
+
optional uint64 authenticator_time = 2;
|
|
21
|
+
optional fixed64 serial_number = 3;
|
|
22
|
+
optional uint32 authenticator_type = 4;
|
|
23
|
+
optional string device_identifier = 5;
|
|
24
|
+
repeated string http_headers = 7;
|
|
25
|
+
optional uint32 version = 8 [default = 1];
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
message CTwoFactor_AddAuthenticator_Response {
|
|
29
|
+
optional bytes shared_secret = 1;
|
|
30
|
+
optional fixed64 serial_number = 2;
|
|
31
|
+
optional string revocation_code = 3;
|
|
32
|
+
optional string uri = 4;
|
|
33
|
+
optional uint64 server_time = 5;
|
|
34
|
+
optional string account_name = 6;
|
|
35
|
+
optional string token_gid = 7;
|
|
36
|
+
optional bytes identity_secret = 8;
|
|
37
|
+
optional bytes secret_1 = 9;
|
|
38
|
+
optional int32 status = 10;
|
|
39
|
+
optional string phone_number_hint = 11;
|
|
40
|
+
optional int32 confirm_type = 12;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
message CTwoFactor_CreateEmergencyCodes_Response {
|
|
44
|
+
repeated string codes = 1;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
message CTwoFactor_DestroyEmergencyCodes_Response {
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
message CTwoFactor_FinalizeAddAuthenticator_Request {
|
|
51
|
+
optional fixed64 steamid = 1;
|
|
52
|
+
optional string authenticator_code = 2;
|
|
53
|
+
optional uint64 authenticator_time = 3;
|
|
54
|
+
optional string activation_code = 4;
|
|
55
|
+
repeated string http_headers = 5;
|
|
56
|
+
optional bool validate_sms_code = 6;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
message CTwoFactor_FinalizeAddAuthenticator_Response {
|
|
60
|
+
optional bool success = 1;
|
|
61
|
+
optional bool want_more = 2;
|
|
62
|
+
optional uint64 server_time = 3;
|
|
63
|
+
optional int32 status = 4;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
message CTwoFactor_RemoveAuthenticator_Request {
|
|
67
|
+
optional string revocation_code = 2;
|
|
68
|
+
optional uint32 revocation_reason = 5;
|
|
69
|
+
optional uint32 steamguard_scheme = 6;
|
|
70
|
+
optional bool remove_all_steamguard_cookies = 7;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
message CTwoFactor_RemoveAuthenticator_Response {
|
|
74
|
+
optional bool success = 1;
|
|
75
|
+
optional uint64 server_time = 3;
|
|
76
|
+
optional uint32 revocation_attempts_remaining = 5;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
message CTwoFactor_RemoveAuthenticatorViaChallengeContinue_Request {
|
|
80
|
+
optional string sms_code = 1;
|
|
81
|
+
optional bool generate_new_token = 2;
|
|
82
|
+
optional uint32 version = 3 [default = 1];
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
message CTwoFactor_RemoveAuthenticatorViaChallengeContinue_Response {
|
|
86
|
+
optional bool success = 1;
|
|
87
|
+
optional .CRemoveAuthenticatorViaChallengeContinue_Replacement_Token replacement_token = 2;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
message CTwoFactor_RemoveAuthenticatorViaChallengeStart_Request {
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
message CTwoFactor_RemoveAuthenticatorViaChallengeStart_Response {
|
|
94
|
+
optional bool success = 1;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
message CTwoFactor_SendEmail_Request {
|
|
98
|
+
optional fixed64 steamid = 1;
|
|
99
|
+
optional uint32 email_type = 2;
|
|
100
|
+
optional bool include_activation_code = 3;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
message CTwoFactor_SendEmail_Response {
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
message CTwoFactor_Status_Request {
|
|
107
|
+
optional fixed64 steamid = 1;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
message CTwoFactor_Status_Response {
|
|
111
|
+
optional uint32 state = 1;
|
|
112
|
+
optional uint32 inactivation_reason = 2;
|
|
113
|
+
optional uint32 authenticator_type = 3;
|
|
114
|
+
optional bool authenticator_allowed = 4;
|
|
115
|
+
optional uint32 steamguard_scheme = 5;
|
|
116
|
+
optional string token_gid = 6;
|
|
117
|
+
optional bool email_validated = 7;
|
|
118
|
+
optional string device_identifier = 8;
|
|
119
|
+
optional uint32 time_created = 9;
|
|
120
|
+
optional uint32 revocation_attempts_remaining = 10;
|
|
121
|
+
optional string classified_agent = 11;
|
|
122
|
+
optional bool allow_external_authenticator = 12;
|
|
123
|
+
optional uint32 time_transferred = 13;
|
|
124
|
+
optional uint32 version = 14;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
message CTwoFactor_Time_Request {
|
|
128
|
+
optional uint64 sender_time = 1;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
message CTwoFactor_Time_Response {
|
|
132
|
+
optional uint64 server_time = 1;
|
|
133
|
+
optional uint64 skew_tolerance_seconds = 2;
|
|
134
|
+
optional uint64 large_time_jink = 3;
|
|
135
|
+
optional uint32 probe_frequency_seconds = 4;
|
|
136
|
+
optional uint32 adjusted_time_probe_frequency_seconds = 5;
|
|
137
|
+
optional uint32 hint_probe_frequency_seconds = 6;
|
|
138
|
+
optional uint32 sync_timeout = 7;
|
|
139
|
+
optional uint32 try_again_seconds = 8;
|
|
140
|
+
optional uint32 max_attempts = 9;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
message CTwoFactor_UpdateTokenVersion_Request {
|
|
144
|
+
optional fixed64 steamid = 1;
|
|
145
|
+
optional uint32 version = 2;
|
|
146
|
+
optional bytes signature = 3;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
message CTwoFactor_UpdateTokenVersion_Response {
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
message CTwoFactor_ValidateToken_Response {
|
|
153
|
+
optional bool valid = 1;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
service TwoFactor {
|
|
157
|
+
rpc AddAuthenticator (.CTwoFactor_AddAuthenticator_Request) returns (.CTwoFactor_AddAuthenticator_Response);
|
|
158
|
+
rpc CreateEmergencyCodes (.NotImplemented) returns (.CTwoFactor_CreateEmergencyCodes_Response);
|
|
159
|
+
rpc DestroyEmergencyCodes (.NotImplemented) returns (.CTwoFactor_DestroyEmergencyCodes_Response);
|
|
160
|
+
rpc FinalizeAddAuthenticator (.CTwoFactor_FinalizeAddAuthenticator_Request) returns (.CTwoFactor_FinalizeAddAuthenticator_Response);
|
|
161
|
+
rpc QueryStatus (.CTwoFactor_Status_Request) returns (.CTwoFactor_Status_Response);
|
|
162
|
+
rpc QueryTime (.CTwoFactor_Time_Request) returns (.CTwoFactor_Time_Response);
|
|
163
|
+
rpc RemoveAuthenticator (.CTwoFactor_RemoveAuthenticator_Request) returns (.CTwoFactor_RemoveAuthenticator_Response);
|
|
164
|
+
rpc RemoveAuthenticatorViaChallengeContinue (.CTwoFactor_RemoveAuthenticatorViaChallengeContinue_Request) returns (.CTwoFactor_RemoveAuthenticatorViaChallengeContinue_Response);
|
|
165
|
+
rpc RemoveAuthenticatorViaChallengeStart (.CTwoFactor_RemoveAuthenticatorViaChallengeStart_Request) returns (.CTwoFactor_RemoveAuthenticatorViaChallengeStart_Response);
|
|
166
|
+
rpc SendEmail (.CTwoFactor_SendEmail_Request) returns (.CTwoFactor_SendEmail_Response);
|
|
167
|
+
rpc UpdateTokenVersion (.CTwoFactor_UpdateTokenVersion_Request) returns (.CTwoFactor_UpdateTokenVersion_Response);
|
|
168
|
+
rpc ValidateToken (.NotImplemented) returns (.CTwoFactor_ValidateToken_Response);
|
|
169
|
+
}
|
|
170
|
+
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
|
|
2
|
+
message CUserAccount_CancelLicenseForApp_Request {
|
|
3
|
+
optional uint32 appid = 1;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
message CUserAccount_CancelLicenseForApp_Response {
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
message CUserAccount_CreateFriendInviteToken_Request {
|
|
10
|
+
optional uint32 invite_limit = 1;
|
|
11
|
+
optional uint32 invite_duration = 2;
|
|
12
|
+
optional string invite_note = 3;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
message CUserAccount_CreateFriendInviteToken_Response {
|
|
16
|
+
optional string invite_token = 1;
|
|
17
|
+
optional uint64 invite_limit = 2;
|
|
18
|
+
optional uint64 invite_duration = 3;
|
|
19
|
+
optional fixed32 time_created = 4;
|
|
20
|
+
optional bool valid = 5;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
message CUserAccount_GetAccountLinkStatus_Request {
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
message CUserAccount_GetAccountLinkStatus_Response {
|
|
27
|
+
optional uint32 pwid = 1;
|
|
28
|
+
optional uint32 identity_verification = 2;
|
|
29
|
+
optional bool performed_age_verification = 3;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
message CUserAccount_GetAvailableValveDiscountPromotions_Request {
|
|
33
|
+
optional string country_code = 1;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
message CUserAccount_GetAvailableValveDiscountPromotions_Response {
|
|
37
|
+
repeated .CUserAccount_GetAvailableValveDiscountPromotions_Response_ValveDiscountPromotionDetails promotions = 1;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
message CUserAccount_GetAvailableValveDiscountPromotions_Response_ValveDiscountPromotionDetails {
|
|
41
|
+
optional uint32 promotionid = 1;
|
|
42
|
+
optional string promotion_description = 2;
|
|
43
|
+
optional int64 minimum_cart_amount = 3;
|
|
44
|
+
optional int64 minimum_cart_amount_for_display = 4;
|
|
45
|
+
optional int64 discount_amount = 5;
|
|
46
|
+
optional int32 currency_code = 6;
|
|
47
|
+
optional int32 available_use_count = 7;
|
|
48
|
+
optional int32 promotional_discount_type = 8;
|
|
49
|
+
optional int32 loyalty_reward_id = 9;
|
|
50
|
+
optional string localized_name_token = 10;
|
|
51
|
+
optional int32 max_use_count = 11;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
message CUserAccount_GetClientWalletDetails_Request {
|
|
55
|
+
optional bool include_balance_in_usd = 1;
|
|
56
|
+
optional int32 wallet_region = 2 [default = 1];
|
|
57
|
+
optional bool include_formatted_balance = 3;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
message CUserAccount_GetFriendInviteTokens_Request {
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
message CUserAccount_GetFriendInviteTokens_Response {
|
|
64
|
+
repeated .CUserAccount_CreateFriendInviteToken_Response tokens = 1;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
message CUserAccount_GetUserCountry_Request {
|
|
68
|
+
optional fixed64 steamid = 1;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
message CUserAccount_GetUserCountry_Response {
|
|
72
|
+
optional string country = 1;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
message CUserAccount_GetWalletDetails_Response {
|
|
76
|
+
optional bool has_wallet = 1;
|
|
77
|
+
optional string user_country_code = 2;
|
|
78
|
+
optional string wallet_country_code = 3;
|
|
79
|
+
optional string wallet_state = 4;
|
|
80
|
+
optional int64 balance = 5;
|
|
81
|
+
optional int64 delayed_balance = 6;
|
|
82
|
+
optional int32 currency_code = 7;
|
|
83
|
+
optional uint32 time_most_recent_txn = 8;
|
|
84
|
+
optional uint64 most_recent_txnid = 9;
|
|
85
|
+
optional int64 balance_in_usd = 10;
|
|
86
|
+
optional int64 delayed_balance_in_usd = 11;
|
|
87
|
+
optional bool has_wallet_in_other_regions = 12;
|
|
88
|
+
repeated int32 other_regions = 13;
|
|
89
|
+
optional string formatted_balance = 14;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
message CUserAccount_RedeemFriendInviteToken_Request {
|
|
93
|
+
optional fixed64 steamid = 1;
|
|
94
|
+
optional string invite_token = 2;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
message CUserAccount_RedeemFriendInviteToken_Response {
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
message CUserAccount_RegisterCompatTool_Request {
|
|
101
|
+
optional uint32 compat_tool = 1;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
message CUserAccount_RegisterCompatTool_Response {
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
message CUserAccount_RevokeFriendInviteToken_Request {
|
|
108
|
+
optional string invite_token = 1;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
message CUserAccount_RevokeFriendInviteToken_Response {
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
message CUserAccount_ViewFriendInviteToken_Request {
|
|
115
|
+
optional fixed64 steamid = 1;
|
|
116
|
+
optional string invite_token = 2;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
message CUserAccount_ViewFriendInviteToken_Response {
|
|
120
|
+
optional bool valid = 1;
|
|
121
|
+
optional uint64 steamid = 2;
|
|
122
|
+
optional uint64 invite_duration = 3;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
service UserAccount {
|
|
126
|
+
rpc CancelLicenseForApp (.CUserAccount_CancelLicenseForApp_Request) returns (.CUserAccount_CancelLicenseForApp_Response);
|
|
127
|
+
rpc CreateFriendInviteToken (.CUserAccount_CreateFriendInviteToken_Request) returns (.CUserAccount_CreateFriendInviteToken_Response);
|
|
128
|
+
rpc GetAccountLinkStatus (.CUserAccount_GetAccountLinkStatus_Request) returns (.CUserAccount_GetAccountLinkStatus_Response);
|
|
129
|
+
rpc GetAvailableValveDiscountPromotions (.CUserAccount_GetAvailableValveDiscountPromotions_Request) returns (.CUserAccount_GetAvailableValveDiscountPromotions_Response);
|
|
130
|
+
rpc GetClientWalletDetails (.CUserAccount_GetClientWalletDetails_Request) returns (.CUserAccount_GetWalletDetails_Response);
|
|
131
|
+
rpc GetFriendInviteTokens (.CUserAccount_GetFriendInviteTokens_Request) returns (.CUserAccount_GetFriendInviteTokens_Response);
|
|
132
|
+
rpc GetUserCountry (.CUserAccount_GetUserCountry_Request) returns (.CUserAccount_GetUserCountry_Response);
|
|
133
|
+
rpc RedeemFriendInviteToken (.CUserAccount_RedeemFriendInviteToken_Request) returns (.CUserAccount_RedeemFriendInviteToken_Response);
|
|
134
|
+
rpc RegisterCompatTool (.CUserAccount_RegisterCompatTool_Request) returns (.CUserAccount_RegisterCompatTool_Response);
|
|
135
|
+
rpc RevokeFriendInviteToken (.CUserAccount_RevokeFriendInviteToken_Request) returns (.CUserAccount_RevokeFriendInviteToken_Response);
|
|
136
|
+
rpc ViewFriendInviteToken (.CUserAccount_ViewFriendInviteToken_Request) returns (.CUserAccount_ViewFriendInviteToken_Response);
|
|
137
|
+
}
|
|
138
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import "common_base.proto";
|
|
2
|
+
|
|
3
|
+
message CUserGameActivity_Event {
|
|
4
|
+
optional uint32 timestamp = 2;
|
|
5
|
+
optional int32 event_type = 3 [(.description) = "enum"];
|
|
6
|
+
optional uint32 event_sub_type = 4;
|
|
7
|
+
optional int64 data1 = 5;
|
|
8
|
+
optional int64 data2 = 6;
|
|
9
|
+
optional int64 data3 = 7;
|
|
10
|
+
optional int64 data4 = 8;
|
|
11
|
+
optional uint32 item_appid = 10;
|
|
12
|
+
optional uint64 item_contextid = 11;
|
|
13
|
+
optional uint64 item_assetid = 12;
|
|
14
|
+
optional bytes proto_data = 13;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
message CUserGameActivity_GetActivity_Request {
|
|
18
|
+
optional fixed64 steamid = 1;
|
|
19
|
+
optional uint32 appid = 2;
|
|
20
|
+
optional int32 count = 3;
|
|
21
|
+
optional uint32 starttime = 4;
|
|
22
|
+
optional uint32 endtime = 5;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
message CUserGameActivity_GetActivity_Response {
|
|
26
|
+
optional fixed64 steamid = 1;
|
|
27
|
+
optional uint32 appid = 2;
|
|
28
|
+
repeated .CUserGameActivity_Event events = 3;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
service UserGameActivity {
|
|
32
|
+
rpc GetActivity (.CUserGameActivity_GetActivity_Request) returns (.CUserGameActivity_GetActivity_Response);
|
|
33
|
+
}
|
|
34
|
+
|