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,375 @@
|
|
|
1
|
+
import "steammessages_base.proto";
|
|
2
|
+
import "steammessages_unified_base.steamclient.proto";
|
|
3
|
+
import "enums.proto";
|
|
4
|
+
|
|
5
|
+
option cc_generic_services = true;
|
|
6
|
+
|
|
7
|
+
enum EAuthTokenPlatformType {
|
|
8
|
+
k_EAuthTokenPlatformType_Unknown = 0;
|
|
9
|
+
k_EAuthTokenPlatformType_SteamClient = 1;
|
|
10
|
+
k_EAuthTokenPlatformType_WebBrowser = 2;
|
|
11
|
+
k_EAuthTokenPlatformType_MobileApp = 3;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
enum EAuthSessionGuardType {
|
|
15
|
+
k_EAuthSessionGuardType_Unknown = 0;
|
|
16
|
+
k_EAuthSessionGuardType_None = 1;
|
|
17
|
+
k_EAuthSessionGuardType_EmailCode = 2;
|
|
18
|
+
k_EAuthSessionGuardType_DeviceCode = 3;
|
|
19
|
+
k_EAuthSessionGuardType_DeviceConfirmation = 4;
|
|
20
|
+
k_EAuthSessionGuardType_EmailConfirmation = 5;
|
|
21
|
+
k_EAuthSessionGuardType_MachineToken = 6;
|
|
22
|
+
k_EAuthSessionGuardType_LegacyMachineAuth = 7;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
enum EAuthSessionSecurityHistory {
|
|
26
|
+
k_EAuthSessionSecurityHistory_Invalid = 0;
|
|
27
|
+
k_EAuthSessionSecurityHistory_UsedPreviously = 1;
|
|
28
|
+
k_EAuthSessionSecurityHistory_NoPriorHistory = 2;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
enum ETokenRenewalType {
|
|
32
|
+
k_ETokenRenewalType_None = 0;
|
|
33
|
+
k_ETokenRenewalType_Allow = 1;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
enum EAuthTokenRevokeAction {
|
|
37
|
+
k_EAuthTokenRevokeLogout = 0;
|
|
38
|
+
k_EAuthTokenRevokePermanent = 1;
|
|
39
|
+
k_EAuthTokenRevokeReplaced = 2;
|
|
40
|
+
k_EAuthTokenRevokeSupport = 3;
|
|
41
|
+
k_EAuthTokenRevokeConsume = 4;
|
|
42
|
+
k_EAuthTokenRevokeNonRememberedLogout = 5;
|
|
43
|
+
k_EAuthTokenRevokeNonRememberedPermanent = 6;
|
|
44
|
+
k_EAuthTokenRevokeAutomatic = 7;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
enum EAuthTokenState {
|
|
48
|
+
k_EAuthTokenState_Invalid = 0;
|
|
49
|
+
k_EAuthTokenState_New = 1;
|
|
50
|
+
k_EAuthTokenState_Confirmed = 2;
|
|
51
|
+
k_EAuthTokenState_Issued = 3;
|
|
52
|
+
k_EAuthTokenState_Denied = 4;
|
|
53
|
+
k_EAuthTokenState_LoggedOut = 5;
|
|
54
|
+
k_EAuthTokenState_Consumed = 6;
|
|
55
|
+
k_EAuthTokenState_Revoked = 99;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
message CAuthentication_GetPasswordRSAPublicKey_Request {
|
|
59
|
+
optional string account_name = 1;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
message CAuthentication_GetPasswordRSAPublicKey_Response {
|
|
63
|
+
optional string publickey_mod = 1;
|
|
64
|
+
optional string publickey_exp = 2;
|
|
65
|
+
optional uint64 timestamp = 3;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
message CAuthentication_DeviceDetails {
|
|
69
|
+
optional string device_friendly_name = 1;
|
|
70
|
+
optional .EAuthTokenPlatformType platform_type = 2 [default = k_EAuthTokenPlatformType_Unknown];
|
|
71
|
+
optional int32 os_type = 3;
|
|
72
|
+
optional uint32 gaming_device_type = 4;
|
|
73
|
+
optional uint32 client_count = 5;
|
|
74
|
+
optional bytes machine_id = 6;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
message CAuthentication_BeginAuthSessionViaQR_Request {
|
|
78
|
+
optional string device_friendly_name = 1;
|
|
79
|
+
optional .EAuthTokenPlatformType platform_type = 2 [default = k_EAuthTokenPlatformType_Unknown];
|
|
80
|
+
optional .CAuthentication_DeviceDetails device_details = 3;
|
|
81
|
+
optional string website_id = 4 [default = "Unknown"];
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
message CAuthentication_AllowedConfirmation {
|
|
85
|
+
optional .EAuthSessionGuardType confirmation_type = 1 [default = k_EAuthSessionGuardType_Unknown];
|
|
86
|
+
optional string associated_message = 2;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
message CAuthentication_BeginAuthSessionViaQR_Response {
|
|
90
|
+
optional uint64 client_id = 1;
|
|
91
|
+
optional string challenge_url = 2;
|
|
92
|
+
optional bytes request_id = 3;
|
|
93
|
+
optional float interval = 4;
|
|
94
|
+
repeated .CAuthentication_AllowedConfirmation allowed_confirmations = 5;
|
|
95
|
+
optional int32 version = 6;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
message CAuthentication_BeginAuthSessionViaCredentials_Request {
|
|
99
|
+
optional string device_friendly_name = 1;
|
|
100
|
+
optional string account_name = 2;
|
|
101
|
+
optional string encrypted_password = 3;
|
|
102
|
+
optional uint64 encryption_timestamp = 4;
|
|
103
|
+
optional bool remember_login = 5;
|
|
104
|
+
optional .EAuthTokenPlatformType platform_type = 6 [default = k_EAuthTokenPlatformType_Unknown];
|
|
105
|
+
optional .ESessionPersistence persistence = 7 [default = k_ESessionPersistence_Persistent];
|
|
106
|
+
optional string website_id = 8 [default = "Unknown"];
|
|
107
|
+
optional .CAuthentication_DeviceDetails device_details = 9;
|
|
108
|
+
optional string guard_data = 10;
|
|
109
|
+
optional uint32 language = 11;
|
|
110
|
+
optional int32 qos_level = 12 [default = 2];
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
message CAuthentication_BeginAuthSessionViaCredentials_Response {
|
|
114
|
+
optional uint64 client_id = 1;
|
|
115
|
+
optional bytes request_id = 2;
|
|
116
|
+
optional float interval = 3;
|
|
117
|
+
repeated .CAuthentication_AllowedConfirmation allowed_confirmations = 4;
|
|
118
|
+
optional uint64 steamid = 5;
|
|
119
|
+
optional string weak_token = 6;
|
|
120
|
+
optional string agreement_session_url = 7;
|
|
121
|
+
optional string extended_error_message = 8;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
message CAuthentication_PollAuthSessionStatus_Request {
|
|
125
|
+
optional uint64 client_id = 1;
|
|
126
|
+
optional bytes request_id = 2;
|
|
127
|
+
optional fixed64 token_to_revoke = 3;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
message CAuthentication_PollAuthSessionStatus_Response {
|
|
131
|
+
optional uint64 new_client_id = 1;
|
|
132
|
+
optional string new_challenge_url = 2;
|
|
133
|
+
optional string refresh_token = 3;
|
|
134
|
+
optional string access_token = 4;
|
|
135
|
+
optional bool had_remote_interaction = 5;
|
|
136
|
+
optional string account_name = 6;
|
|
137
|
+
optional string new_guard_data = 7;
|
|
138
|
+
optional string agreement_session_url = 8;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
message CAuthentication_GetAuthSessionInfo_Request {
|
|
142
|
+
optional uint64 client_id = 1;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
message CAuthentication_GetAuthSessionInfo_Response {
|
|
146
|
+
optional string ip = 1;
|
|
147
|
+
optional string geoloc = 2;
|
|
148
|
+
optional string city = 3;
|
|
149
|
+
optional string state = 4;
|
|
150
|
+
optional string country = 5;
|
|
151
|
+
optional .EAuthTokenPlatformType platform_type = 6 [default = k_EAuthTokenPlatformType_Unknown];
|
|
152
|
+
optional string device_friendly_name = 7;
|
|
153
|
+
optional int32 version = 8;
|
|
154
|
+
optional .EAuthSessionSecurityHistory login_history = 9 [default = k_EAuthSessionSecurityHistory_Invalid];
|
|
155
|
+
optional bool requestor_location_mismatch = 10;
|
|
156
|
+
optional bool high_usage_login = 11;
|
|
157
|
+
optional .ESessionPersistence requested_persistence = 12 [default = k_ESessionPersistence_Invalid];
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
message CAuthentication_UpdateAuthSessionWithMobileConfirmation_Request {
|
|
161
|
+
optional int32 version = 1;
|
|
162
|
+
optional uint64 client_id = 2;
|
|
163
|
+
optional fixed64 steamid = 3;
|
|
164
|
+
optional bytes signature = 4;
|
|
165
|
+
optional bool confirm = 5 [default = false];
|
|
166
|
+
optional .ESessionPersistence persistence = 6 [default = k_ESessionPersistence_Persistent];
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
message CAuthentication_UpdateAuthSessionWithMobileConfirmation_Response {
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
message CAuthentication_UpdateAuthSessionWithSteamGuardCode_Request {
|
|
173
|
+
optional uint64 client_id = 1;
|
|
174
|
+
optional fixed64 steamid = 2;
|
|
175
|
+
optional string code = 3;
|
|
176
|
+
optional .EAuthSessionGuardType code_type = 4 [default = k_EAuthSessionGuardType_Unknown];
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
message CAuthentication_UpdateAuthSessionWithSteamGuardCode_Response {
|
|
180
|
+
optional string agreement_session_url = 7;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
message CAuthentication_AccessToken_GenerateForApp_Request {
|
|
184
|
+
optional string refresh_token = 1;
|
|
185
|
+
optional fixed64 steamid = 2;
|
|
186
|
+
optional .ETokenRenewalType renewal_type = 3 [default = k_ETokenRenewalType_None];
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
message CAuthentication_AccessToken_GenerateForApp_Response {
|
|
190
|
+
optional string access_token = 1;
|
|
191
|
+
optional string refresh_token = 2;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
message CAuthentication_RefreshToken_Enumerate_Request {
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
message CAuthentication_RefreshToken_Enumerate_Response {
|
|
198
|
+
message TokenUsageEvent {
|
|
199
|
+
optional uint32 time = 1;
|
|
200
|
+
optional .CMsgIPAddress ip = 2;
|
|
201
|
+
optional string locale = 3;
|
|
202
|
+
optional string country = 4;
|
|
203
|
+
optional string state = 5;
|
|
204
|
+
optional string city = 6;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
message RefreshTokenDescription {
|
|
208
|
+
optional fixed64 token_id = 1;
|
|
209
|
+
optional string token_description = 2;
|
|
210
|
+
optional uint32 time_updated = 3;
|
|
211
|
+
optional .EAuthTokenPlatformType platform_type = 4 [default = k_EAuthTokenPlatformType_Unknown];
|
|
212
|
+
optional bool logged_in = 5;
|
|
213
|
+
optional uint32 os_platform = 6;
|
|
214
|
+
optional uint32 auth_type = 7;
|
|
215
|
+
optional uint32 gaming_device_type = 8;
|
|
216
|
+
optional .CAuthentication_RefreshToken_Enumerate_Response.TokenUsageEvent first_seen = 9;
|
|
217
|
+
optional .CAuthentication_RefreshToken_Enumerate_Response.TokenUsageEvent last_seen = 10;
|
|
218
|
+
optional int32 os_type = 11;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
repeated .CAuthentication_RefreshToken_Enumerate_Response.RefreshTokenDescription refresh_tokens = 1;
|
|
222
|
+
optional fixed64 requesting_token = 2;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
message CAuthentication_GetAuthSessionsForAccount_Request {
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
message CAuthentication_GetAuthSessionsForAccount_Response {
|
|
229
|
+
repeated uint64 client_ids = 1;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
message CAuthentication_MigrateMobileSession_Request {
|
|
233
|
+
optional fixed64 steamid = 1;
|
|
234
|
+
optional string token = 2;
|
|
235
|
+
optional string signature = 3;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
message CAuthentication_MigrateMobileSession_Response {
|
|
239
|
+
optional string refresh_token = 1;
|
|
240
|
+
optional string access_token = 2;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
message CAuthentication_Token_Revoke_Request {
|
|
244
|
+
optional string token = 1;
|
|
245
|
+
optional .EAuthTokenRevokeAction revoke_action = 2 [default = k_EAuthTokenRevokePermanent];
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
message CAuthentication_Token_Revoke_Response {
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
message CAuthentication_RefreshToken_Revoke_Request {
|
|
252
|
+
optional fixed64 token_id = 1;
|
|
253
|
+
optional fixed64 steamid = 2;
|
|
254
|
+
optional .EAuthTokenRevokeAction revoke_action = 3 [default = k_EAuthTokenRevokePermanent];
|
|
255
|
+
optional bytes signature = 4;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
message CAuthentication_RefreshToken_Revoke_Response {
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
message CAuthenticationSupport_QueryRefreshTokensByAccount_Request {
|
|
262
|
+
optional fixed64 steamid = 1;
|
|
263
|
+
optional bool include_revoked_tokens = 2;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
message CSupportRefreshTokenDescription {
|
|
267
|
+
message TokenUsageEvent {
|
|
268
|
+
optional uint32 time = 1;
|
|
269
|
+
optional .CMsgIPAddress ip = 2;
|
|
270
|
+
optional string country = 3;
|
|
271
|
+
optional string state = 4;
|
|
272
|
+
optional string city = 5;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
optional fixed64 token_id = 1;
|
|
276
|
+
optional string token_description = 2;
|
|
277
|
+
optional uint32 time_updated = 3;
|
|
278
|
+
optional .EAuthTokenPlatformType platform_type = 4 [default = k_EAuthTokenPlatformType_Unknown];
|
|
279
|
+
optional .EAuthTokenState token_state = 5 [default = k_EAuthTokenState_Invalid];
|
|
280
|
+
optional fixed64 owner_steamid = 6;
|
|
281
|
+
optional uint32 os_platform = 7;
|
|
282
|
+
optional int32 os_type = 8;
|
|
283
|
+
optional uint32 auth_type = 9;
|
|
284
|
+
optional uint32 gaming_device_type = 10;
|
|
285
|
+
optional .CSupportRefreshTokenDescription.TokenUsageEvent first_seen = 11;
|
|
286
|
+
optional .CSupportRefreshTokenDescription.TokenUsageEvent last_seen = 12;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
message CAuthenticationSupport_QueryRefreshTokensByAccount_Response {
|
|
290
|
+
repeated .CSupportRefreshTokenDescription refresh_tokens = 1;
|
|
291
|
+
optional int32 last_token_reset = 2;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
message CAuthenticationSupport_QueryRefreshTokenByID_Request {
|
|
295
|
+
optional fixed64 token_id = 1;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
message CAuthenticationSupport_QueryRefreshTokenByID_Response {
|
|
299
|
+
repeated .CSupportRefreshTokenDescription refresh_tokens = 1;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
message CAuthenticationSupport_RevokeToken_Request {
|
|
303
|
+
optional fixed64 token_id = 1;
|
|
304
|
+
optional fixed64 steamid = 2;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
message CAuthenticationSupport_RevokeToken_Response {
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
message CAuthenticationSupport_GetTokenHistory_Request {
|
|
311
|
+
optional fixed64 token_id = 1;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
message CSupportRefreshTokenAudit {
|
|
315
|
+
optional int32 action = 1;
|
|
316
|
+
optional uint32 time = 2;
|
|
317
|
+
optional .CMsgIPAddress ip = 3;
|
|
318
|
+
optional fixed64 actor = 4;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
message CAuthenticationSupport_GetTokenHistory_Response {
|
|
322
|
+
repeated .CSupportRefreshTokenAudit history = 1;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
message CCloudGaming_CreateNonce_Request {
|
|
326
|
+
optional string platform = 1;
|
|
327
|
+
optional uint32 appid = 2;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
message CCloudGaming_CreateNonce_Response {
|
|
331
|
+
optional string nonce = 1;
|
|
332
|
+
optional uint32 expiry = 2;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
message CCloudGaming_GetTimeRemaining_Request {
|
|
336
|
+
optional string platform = 1;
|
|
337
|
+
repeated uint32 appid_list = 2;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
message CCloudGaming_TimeRemaining {
|
|
341
|
+
optional uint32 appid = 1;
|
|
342
|
+
optional uint32 minutes_remaining = 2;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
message CCloudGaming_GetTimeRemaining_Response {
|
|
346
|
+
repeated .CCloudGaming_TimeRemaining entries = 2;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
service Authentication {
|
|
350
|
+
rpc GetPasswordRSAPublicKey (.CAuthentication_GetPasswordRSAPublicKey_Request) returns (.CAuthentication_GetPasswordRSAPublicKey_Response);
|
|
351
|
+
rpc BeginAuthSessionViaQR (.CAuthentication_BeginAuthSessionViaQR_Request) returns (.CAuthentication_BeginAuthSessionViaQR_Response);
|
|
352
|
+
rpc BeginAuthSessionViaCredentials (.CAuthentication_BeginAuthSessionViaCredentials_Request) returns (.CAuthentication_BeginAuthSessionViaCredentials_Response);
|
|
353
|
+
rpc PollAuthSessionStatus (.CAuthentication_PollAuthSessionStatus_Request) returns (.CAuthentication_PollAuthSessionStatus_Response);
|
|
354
|
+
rpc GetAuthSessionInfo (.CAuthentication_GetAuthSessionInfo_Request) returns (.CAuthentication_GetAuthSessionInfo_Response);
|
|
355
|
+
rpc UpdateAuthSessionWithMobileConfirmation (.CAuthentication_UpdateAuthSessionWithMobileConfirmation_Request) returns (.CAuthentication_UpdateAuthSessionWithMobileConfirmation_Response);
|
|
356
|
+
rpc UpdateAuthSessionWithSteamGuardCode (.CAuthentication_UpdateAuthSessionWithSteamGuardCode_Request) returns (.CAuthentication_UpdateAuthSessionWithSteamGuardCode_Response);
|
|
357
|
+
rpc GenerateAccessTokenForApp (.CAuthentication_AccessToken_GenerateForApp_Request) returns (.CAuthentication_AccessToken_GenerateForApp_Response);
|
|
358
|
+
rpc EnumerateTokens (.CAuthentication_RefreshToken_Enumerate_Request) returns (.CAuthentication_RefreshToken_Enumerate_Response);
|
|
359
|
+
rpc GetAuthSessionsForAccount (.CAuthentication_GetAuthSessionsForAccount_Request) returns (.CAuthentication_GetAuthSessionsForAccount_Response);
|
|
360
|
+
rpc MigrateMobileSession (.CAuthentication_MigrateMobileSession_Request) returns (.CAuthentication_MigrateMobileSession_Response);
|
|
361
|
+
rpc RevokeToken (.CAuthentication_Token_Revoke_Request) returns (.CAuthentication_Token_Revoke_Response);
|
|
362
|
+
rpc RevokeRefreshToken (.CAuthentication_RefreshToken_Revoke_Request) returns (.CAuthentication_RefreshToken_Revoke_Response);
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
service AuthenticationSupport {
|
|
366
|
+
rpc QueryRefreshTokensByAccount (.CAuthenticationSupport_QueryRefreshTokensByAccount_Request) returns (.CAuthenticationSupport_QueryRefreshTokensByAccount_Response);
|
|
367
|
+
rpc QueryRefreshTokenByID (.CAuthenticationSupport_QueryRefreshTokenByID_Request) returns (.CAuthenticationSupport_QueryRefreshTokenByID_Response);
|
|
368
|
+
rpc RevokeToken (.CAuthenticationSupport_RevokeToken_Request) returns (.CAuthenticationSupport_RevokeToken_Response);
|
|
369
|
+
rpc GetTokenHistory (.CAuthenticationSupport_GetTokenHistory_Request) returns (.CAuthenticationSupport_GetTokenHistory_Response);
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
service CloudGaming {
|
|
373
|
+
rpc CreateNonce (.CCloudGaming_CreateNonce_Request) returns (.CCloudGaming_CreateNonce_Response);
|
|
374
|
+
rpc GetTimeRemaining (.CCloudGaming_GetTimeRemaining_Request) returns (.CCloudGaming_GetTimeRemaining_Response);
|
|
375
|
+
}
|
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
import "google/protobuf/descriptor.proto";
|
|
2
|
+
|
|
3
|
+
option optimize_for = SPEED;
|
|
4
|
+
option cc_generic_services = true;
|
|
5
|
+
option (force_php_generation) = true;
|
|
6
|
+
|
|
7
|
+
extend .google.protobuf.MessageOptions {
|
|
8
|
+
optional int32 msgpool_soft_limit = 50000 [default = 32];
|
|
9
|
+
optional int32 msgpool_hard_limit = 50001 [default = 384];
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
extend .google.protobuf.FileOptions {
|
|
13
|
+
optional bool force_php_generation = 50000 [default = false];
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
extend .google.protobuf.FieldOptions {
|
|
17
|
+
optional bool php_output_always_number = 50020 [default = false];
|
|
18
|
+
optional bool allow_field_named_steam_id = 50024 [default = false];
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
enum EBanContentCheckResult {
|
|
22
|
+
k_EBanContentCheckResult_NotScanned = 0;
|
|
23
|
+
k_EBanContentCheckResult_Reset = 1;
|
|
24
|
+
k_EBanContentCheckResult_NeedsChecking = 2;
|
|
25
|
+
k_EBanContentCheckResult_VeryUnlikely = 5;
|
|
26
|
+
k_EBanContentCheckResult_Unlikely = 30;
|
|
27
|
+
k_EBanContentCheckResult_Possible = 50;
|
|
28
|
+
k_EBanContentCheckResult_Likely = 75;
|
|
29
|
+
k_EBanContentCheckResult_VeryLikely = 100;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
enum EProtoClanEventType {
|
|
33
|
+
k_EClanOtherEvent = 1;
|
|
34
|
+
k_EClanGameEvent = 2;
|
|
35
|
+
k_EClanPartyEvent = 3;
|
|
36
|
+
k_EClanMeetingEvent = 4;
|
|
37
|
+
k_EClanSpecialCauseEvent = 5;
|
|
38
|
+
k_EClanMusicAndArtsEvent = 6;
|
|
39
|
+
k_EClanSportsEvent = 7;
|
|
40
|
+
k_EClanTripEvent = 8;
|
|
41
|
+
k_EClanChatEvent = 9;
|
|
42
|
+
k_EClanGameReleaseEvent = 10;
|
|
43
|
+
k_EClanBroadcastEvent = 11;
|
|
44
|
+
k_EClanSmallUpdateEvent = 12;
|
|
45
|
+
k_EClanPreAnnounceMajorUpdateEvent = 13;
|
|
46
|
+
k_EClanMajorUpdateEvent = 14;
|
|
47
|
+
k_EClanDLCReleaseEvent = 15;
|
|
48
|
+
k_EClanFutureReleaseEvent = 16;
|
|
49
|
+
k_EClanESportTournamentStreamEvent = 17;
|
|
50
|
+
k_EClanDevStreamEvent = 18;
|
|
51
|
+
k_EClanFamousStreamEvent = 19;
|
|
52
|
+
k_EClanGameSalesEvent = 20;
|
|
53
|
+
k_EClanGameItemSalesEvent = 21;
|
|
54
|
+
k_EClanInGameBonusXPEvent = 22;
|
|
55
|
+
k_EClanInGameLootEvent = 23;
|
|
56
|
+
k_EClanInGamePerksEvent = 24;
|
|
57
|
+
k_EClanInGameChallengeEvent = 25;
|
|
58
|
+
k_EClanInGameContestEvent = 26;
|
|
59
|
+
k_EClanIRLEvent = 27;
|
|
60
|
+
k_EClanNewsEvent = 28;
|
|
61
|
+
k_EClanBetaReleaseEvent = 29;
|
|
62
|
+
k_EClanInGameContentReleaseEvent = 30;
|
|
63
|
+
k_EClanFreeTrial = 31;
|
|
64
|
+
k_EClanSeasonRelease = 32;
|
|
65
|
+
k_EClanSeasonUpdate = 33;
|
|
66
|
+
k_EClanCrosspostEvent = 34;
|
|
67
|
+
k_EClanInGameEventGeneral = 35;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
enum PartnerEventNotificationType {
|
|
71
|
+
k_EEventStart = 0;
|
|
72
|
+
k_EEventBroadcastStart = 1;
|
|
73
|
+
k_EEventMatchStart = 2;
|
|
74
|
+
k_EEventPartnerMaxType = 3;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
message CMsgIPAddress {
|
|
78
|
+
oneof ip {
|
|
79
|
+
fixed32 v4 = 1;
|
|
80
|
+
bytes v6 = 2;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
message CMsgIPAddressBucket {
|
|
85
|
+
optional .CMsgIPAddress original_ip_address = 1;
|
|
86
|
+
optional fixed64 bucket = 2;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
message CMsgGCRoutingProtoBufHeader {
|
|
90
|
+
optional uint64 dst_gcid_queue = 1;
|
|
91
|
+
optional uint32 dst_gc_dir_index = 2;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
message CMsgProtoBufHeader {
|
|
95
|
+
enum ESessionDisposition {
|
|
96
|
+
k_ESessionDispositionNormal = 0;
|
|
97
|
+
k_ESessionDispositionDisconnect = 1;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
optional fixed64 steamid = 1;
|
|
101
|
+
optional int32 client_sessionid = 2;
|
|
102
|
+
optional uint32 routing_appid = 3;
|
|
103
|
+
optional fixed64 jobid_source = 10 [default = 18446744073709551615];
|
|
104
|
+
optional fixed64 jobid_target = 11 [default = 18446744073709551615];
|
|
105
|
+
optional string target_job_name = 12;
|
|
106
|
+
optional int32 seq_num = 24;
|
|
107
|
+
optional int32 eresult = 13 [default = 2];
|
|
108
|
+
optional string error_message = 14;
|
|
109
|
+
optional uint32 auth_account_flags = 16;
|
|
110
|
+
optional uint32 token_source = 22;
|
|
111
|
+
optional bool admin_spoofing_user = 23;
|
|
112
|
+
optional int32 transport_error = 17 [default = 1];
|
|
113
|
+
optional uint64 messageid = 18 [default = 18446744073709551615];
|
|
114
|
+
optional uint32 publisher_group_id = 19;
|
|
115
|
+
optional uint32 sysid = 20;
|
|
116
|
+
optional uint64 trace_tag = 21;
|
|
117
|
+
optional uint32 webapi_key_id = 25;
|
|
118
|
+
optional bool is_from_external_source = 26;
|
|
119
|
+
repeated uint32 forward_to_sysid = 27;
|
|
120
|
+
optional uint32 cm_sysid = 28;
|
|
121
|
+
optional uint32 launcher_type = 31 [default = 0];
|
|
122
|
+
optional uint32 realm = 32 [default = 0];
|
|
123
|
+
optional int32 timeout_ms = 33 [default = -1];
|
|
124
|
+
optional string debug_source = 34;
|
|
125
|
+
optional uint32 debug_source_string_index = 35;
|
|
126
|
+
optional uint64 token_id = 36;
|
|
127
|
+
optional .CMsgGCRoutingProtoBufHeader routing_gc = 37;
|
|
128
|
+
optional .CMsgProtoBufHeader.ESessionDisposition session_disposition = 38 [default = k_ESessionDispositionNormal];
|
|
129
|
+
optional string wg_token = 39;
|
|
130
|
+
optional string webui_auth_key = 40;
|
|
131
|
+
repeated int32 exclude_client_sessionids = 41;
|
|
132
|
+
|
|
133
|
+
oneof ip_addr {
|
|
134
|
+
uint32 ip = 15;
|
|
135
|
+
bytes ip_v6 = 29;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
message CMsgMulti {
|
|
140
|
+
optional uint32 size_unzipped = 1;
|
|
141
|
+
optional bytes message_body = 2;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
message CMsgProtobufWrapped {
|
|
145
|
+
optional bytes message_body = 1;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
message CMsgAuthTicket {
|
|
149
|
+
optional uint32 estate = 1;
|
|
150
|
+
optional uint32 eresult = 2 [default = 2];
|
|
151
|
+
optional fixed64 steamid = 3;
|
|
152
|
+
optional fixed64 gameid = 4;
|
|
153
|
+
optional uint32 h_steam_pipe = 5;
|
|
154
|
+
optional uint32 ticket_crc = 6;
|
|
155
|
+
optional bytes ticket = 7;
|
|
156
|
+
optional bytes server_secret = 8;
|
|
157
|
+
optional uint32 ticket_type = 9;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
message CCDDBAppDetailCommon {
|
|
161
|
+
optional uint32 appid = 1;
|
|
162
|
+
optional string name = 2;
|
|
163
|
+
optional string icon = 3;
|
|
164
|
+
optional bool tool = 6;
|
|
165
|
+
optional bool demo = 7;
|
|
166
|
+
optional bool media = 8;
|
|
167
|
+
optional bool community_visible_stats = 9;
|
|
168
|
+
optional string friendly_name = 10;
|
|
169
|
+
optional string propagation = 11;
|
|
170
|
+
optional bool has_adult_content = 12;
|
|
171
|
+
optional bool is_visible_in_steam_china = 13;
|
|
172
|
+
optional uint32 app_type = 14;
|
|
173
|
+
optional bool has_adult_content_sex = 15;
|
|
174
|
+
optional bool has_adult_content_violence = 16;
|
|
175
|
+
repeated uint32 content_descriptorids = 17;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
message CMsgAppRights {
|
|
179
|
+
optional bool edit_info = 1;
|
|
180
|
+
optional bool publish = 2;
|
|
181
|
+
optional bool view_error_data = 3;
|
|
182
|
+
optional bool download = 4;
|
|
183
|
+
optional bool upload_cdkeys = 5;
|
|
184
|
+
optional bool generate_cdkeys = 6;
|
|
185
|
+
optional bool view_financials = 7;
|
|
186
|
+
optional bool manage_ceg = 8;
|
|
187
|
+
optional bool manage_signing = 9;
|
|
188
|
+
optional bool manage_cdkeys = 10;
|
|
189
|
+
optional bool edit_marketing = 11;
|
|
190
|
+
optional bool economy_support = 12;
|
|
191
|
+
optional bool economy_support_supervisor = 13;
|
|
192
|
+
optional bool manage_pricing = 14;
|
|
193
|
+
optional bool broadcast_live = 15;
|
|
194
|
+
optional bool view_marketing_traffic = 16;
|
|
195
|
+
optional bool edit_store_display_content = 17;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
message CCuratorPreferences {
|
|
199
|
+
optional uint32 supported_languages = 1;
|
|
200
|
+
optional bool platform_windows = 2;
|
|
201
|
+
optional bool platform_mac = 3;
|
|
202
|
+
optional bool platform_linux = 4;
|
|
203
|
+
optional bool vr_content = 5;
|
|
204
|
+
optional bool adult_content_violence = 6;
|
|
205
|
+
optional bool adult_content_sex = 7;
|
|
206
|
+
optional uint32 timestamp_updated = 8;
|
|
207
|
+
repeated uint32 tagids_curated = 9;
|
|
208
|
+
repeated uint32 tagids_filtered = 10;
|
|
209
|
+
optional string website_title = 11;
|
|
210
|
+
optional string website_url = 12;
|
|
211
|
+
optional string discussion_url = 13;
|
|
212
|
+
optional bool show_broadcast = 14;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
message CLocalizationToken {
|
|
216
|
+
optional uint32 language = 1;
|
|
217
|
+
optional string localized_string = 2;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
message CClanEventUserNewsTuple {
|
|
221
|
+
optional uint32 clanid = 1;
|
|
222
|
+
optional fixed64 event_gid = 2;
|
|
223
|
+
optional fixed64 announcement_gid = 3;
|
|
224
|
+
optional uint32 rtime_start = 4;
|
|
225
|
+
optional uint32 rtime_end = 5;
|
|
226
|
+
optional uint32 priority_score = 6;
|
|
227
|
+
optional uint32 type = 7;
|
|
228
|
+
optional uint32 clamp_range_slot = 8;
|
|
229
|
+
optional uint32 appid = 9;
|
|
230
|
+
optional uint32 rtime32_last_modified = 10;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
message CClanMatchEventByRange {
|
|
234
|
+
optional uint32 rtime_before = 1;
|
|
235
|
+
optional uint32 rtime_after = 2;
|
|
236
|
+
optional uint32 qualified = 3;
|
|
237
|
+
repeated .CClanEventUserNewsTuple events = 4;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
message CCommunity_ClanAnnouncementInfo {
|
|
241
|
+
optional uint64 gid = 1;
|
|
242
|
+
optional uint64 clanid = 2;
|
|
243
|
+
optional uint64 posterid = 3;
|
|
244
|
+
optional string headline = 4;
|
|
245
|
+
optional uint32 posttime = 5;
|
|
246
|
+
optional uint32 updatetime = 6;
|
|
247
|
+
optional string body = 7;
|
|
248
|
+
optional int32 commentcount = 8;
|
|
249
|
+
repeated string tags = 9;
|
|
250
|
+
optional int32 language = 10;
|
|
251
|
+
optional bool hidden = 11;
|
|
252
|
+
optional fixed64 forum_topic_id = 12;
|
|
253
|
+
optional fixed64 event_gid = 13;
|
|
254
|
+
optional int32 voteupcount = 14;
|
|
255
|
+
optional int32 votedowncount = 15;
|
|
256
|
+
optional .EBanContentCheckResult ban_check_result = 16 [default = k_EBanContentCheckResult_NotScanned];
|
|
257
|
+
optional bool banned = 17;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
message CClanEventData {
|
|
261
|
+
optional fixed64 gid = 1;
|
|
262
|
+
optional fixed64 clan_steamid = 2;
|
|
263
|
+
optional string event_name = 3;
|
|
264
|
+
optional .EProtoClanEventType event_type = 4 [default = k_EClanOtherEvent];
|
|
265
|
+
optional uint32 appid = 5;
|
|
266
|
+
optional string server_address = 6;
|
|
267
|
+
optional string server_password = 7;
|
|
268
|
+
optional uint32 rtime32_start_time = 8;
|
|
269
|
+
optional uint32 rtime32_end_time = 9;
|
|
270
|
+
optional int32 comment_count = 10;
|
|
271
|
+
optional fixed64 creator_steamid = 11;
|
|
272
|
+
optional fixed64 last_update_steamid = 12;
|
|
273
|
+
optional string event_notes = 13;
|
|
274
|
+
optional string jsondata = 14;
|
|
275
|
+
optional .CCommunity_ClanAnnouncementInfo announcement_body = 15;
|
|
276
|
+
optional bool published = 16;
|
|
277
|
+
optional bool hidden = 17;
|
|
278
|
+
optional uint32 rtime32_visibility_start = 18;
|
|
279
|
+
optional uint32 rtime32_visibility_end = 19;
|
|
280
|
+
optional uint32 broadcaster_accountid = 20;
|
|
281
|
+
optional uint32 follower_count = 21;
|
|
282
|
+
optional uint32 ignore_count = 22;
|
|
283
|
+
optional fixed64 forum_topic_id = 23;
|
|
284
|
+
optional uint32 rtime32_last_modified = 24;
|
|
285
|
+
optional fixed64 news_post_gid = 25;
|
|
286
|
+
optional uint32 rtime_mod_reviewed = 26;
|
|
287
|
+
optional uint32 featured_app_tagid = 27;
|
|
288
|
+
repeated uint32 referenced_appids = 28;
|
|
289
|
+
optional uint32 build_id = 29;
|
|
290
|
+
optional string build_branch = 30;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
message CBilling_Address {
|
|
294
|
+
optional string first_name = 1;
|
|
295
|
+
optional string last_name = 2;
|
|
296
|
+
optional string address1 = 3;
|
|
297
|
+
optional string address2 = 4;
|
|
298
|
+
optional string city = 5;
|
|
299
|
+
optional string us_state = 6;
|
|
300
|
+
optional string country_code = 7;
|
|
301
|
+
optional string postcode = 8;
|
|
302
|
+
optional int32 zip_plus4 = 9;
|
|
303
|
+
optional string phone = 10;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
message CPackageReservationStatus {
|
|
307
|
+
optional uint32 packageid = 1;
|
|
308
|
+
optional int32 reservation_state = 2;
|
|
309
|
+
optional int32 queue_position = 3;
|
|
310
|
+
optional int32 total_queue_size = 4;
|
|
311
|
+
optional string reservation_country_code = 5;
|
|
312
|
+
optional bool expired = 6;
|
|
313
|
+
optional uint32 time_expires = 7;
|
|
314
|
+
optional uint32 time_reserved = 8;
|
|
315
|
+
optional uint32 rtime_estimated_notification = 9;
|
|
316
|
+
optional string notificaton_token = 10;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
message CMsgKeyValuePair {
|
|
320
|
+
optional string name = 1;
|
|
321
|
+
optional string value = 2;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
message CMsgKeyValueSet {
|
|
325
|
+
repeated .CMsgKeyValuePair pairs = 1;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
message UserContentDescriptorPreferences {
|
|
329
|
+
message ContentDescriptor {
|
|
330
|
+
optional uint32 content_descriptorid = 1;
|
|
331
|
+
optional uint32 timestamp_added = 2;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
repeated .UserContentDescriptorPreferences.ContentDescriptor content_descriptors_to_exclude = 1;
|
|
335
|
+
}
|