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,167 @@
|
|
|
1
|
+
import "steammessages_base.proto";
|
|
2
|
+
import "steammessages_unified_base.steamclient.proto";
|
|
3
|
+
|
|
4
|
+
option cc_generic_services = true;
|
|
5
|
+
|
|
6
|
+
enum EValveIndexComponent {
|
|
7
|
+
k_EValveIndexComponentUnknown = 0;
|
|
8
|
+
k_EValveIndexComponentHMD = 1;
|
|
9
|
+
k_EValveIndexComponentLeftKnuckle = 2;
|
|
10
|
+
k_EValveIndexComponentRightKnuckle = 3;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
message CAccountHardware_RegisterSteamController_Request {
|
|
14
|
+
optional string serial_number = 1;
|
|
15
|
+
optional string controller_code = 2;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
message CAccountHardware_RegisterSteamController_Response {
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
message CAccountHardware_CompleteSteamControllerRegistration_Request {
|
|
22
|
+
optional string serial_number = 1;
|
|
23
|
+
optional string controller_code = 2;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
message CAccountHardware_CompleteSteamControllerRegistration_Response {
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
message CAccountHardware_QueryAccountsRegisteredToSerial_Request {
|
|
30
|
+
optional string serial_number = 1;
|
|
31
|
+
optional string controller_code = 2;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
message CAccountHardware_QueryAccountsRegisteredToSerial_Accounts {
|
|
35
|
+
optional uint32 accountid = 1;
|
|
36
|
+
optional bool registration_complete = 2;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
message CAccountHardware_QueryAccountsRegisteredToSerial_Response {
|
|
40
|
+
repeated .CAccountHardware_QueryAccountsRegisteredToSerial_Accounts accounts = 1;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
message CAccountHardware_SteamControllerSetConfig_ControllerConfig {
|
|
44
|
+
optional string appidorname = 1;
|
|
45
|
+
optional uint64 publishedfileid = 2;
|
|
46
|
+
optional string templatename = 3;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
message CAccountHardware_SteamControllerSetConfig_Request {
|
|
50
|
+
optional string serial_number = 1;
|
|
51
|
+
optional string controller_code = 2;
|
|
52
|
+
optional uint32 accountid = 3;
|
|
53
|
+
repeated .CAccountHardware_SteamControllerSetConfig_ControllerConfig configurations = 4;
|
|
54
|
+
optional int32 controller_type = 5 [default = 2];
|
|
55
|
+
optional bool only_for_this_serial = 6 [default = false];
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
message CAccountHardware_SteamControllerSetConfig_Response {
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
message CAccountHardware_SteamControllerGetConfig_Request {
|
|
62
|
+
optional string serial_number = 1;
|
|
63
|
+
optional string controller_code = 2;
|
|
64
|
+
optional uint32 accountid = 3;
|
|
65
|
+
optional string appidorname = 4;
|
|
66
|
+
optional int32 controller_type = 5 [default = 2];
|
|
67
|
+
optional bool only_for_this_serial = 6 [default = false];
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
message CAccountHardware_SteamControllerGetConfig_ControllerConfig {
|
|
71
|
+
optional string appidorname = 1;
|
|
72
|
+
optional uint64 publishedfileid = 2;
|
|
73
|
+
optional string templatename = 3;
|
|
74
|
+
optional string serial_number = 4;
|
|
75
|
+
optional bool autosave = 5 [default = false];
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
message CAccountHardware_SteamControllerGetConfig_Response {
|
|
79
|
+
repeated .CAccountHardware_SteamControllerGetConfig_ControllerConfig configurations = 1;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
message CAccountHardware_DeRegisterSteamController_Request {
|
|
83
|
+
optional string serial_number = 1;
|
|
84
|
+
optional string controller_code = 2;
|
|
85
|
+
optional uint32 accountid = 3;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
message CAccountHardware_DeRegisterSteamController_Response {
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
message CAccountHardware_SetPersonalizationFile_Request {
|
|
92
|
+
optional string serial_number = 1;
|
|
93
|
+
optional uint64 publishedfileid = 2;
|
|
94
|
+
optional uint32 accountid = 3;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
message CAccountHardware_SetPersonalizationFile_Response {
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
message CAccountHardware_GetPersonalizationFile_Request {
|
|
101
|
+
optional string serial_number = 1;
|
|
102
|
+
optional uint32 accountid = 2;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
message CAccountHardware_GetPersonalizationFile_Response {
|
|
106
|
+
optional uint64 publishedfileid = 1;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
message CAccountHardware_VRCompatibilityCheck_Request {
|
|
110
|
+
message Pair {
|
|
111
|
+
optional string key = 1;
|
|
112
|
+
optional string value = 2;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
optional string product_name = 1;
|
|
116
|
+
repeated .CAccountHardware_VRCompatibilityCheck_Request.Pair values = 2;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
message CAccountHardware_VRCompatibilityCheck_Response {
|
|
120
|
+
message Pair {
|
|
121
|
+
optional string key = 1;
|
|
122
|
+
optional string value = 2;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
message ComponentDisplay {
|
|
126
|
+
optional string name = 1;
|
|
127
|
+
optional string image = 2;
|
|
128
|
+
optional string value = 3;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
repeated .CAccountHardware_VRCompatibilityCheck_Response.Pair values = 1;
|
|
132
|
+
repeated .CAccountHardware_VRCompatibilityCheck_Response.ComponentDisplay components = 2;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
message CAccountHardware_RegisterValveIndexComponent_Request {
|
|
136
|
+
optional string serial_number = 1;
|
|
137
|
+
optional string manufacturer_serial_number = 2;
|
|
138
|
+
optional string component_code = 3;
|
|
139
|
+
optional .EValveIndexComponent component_type = 4 [default = k_EValveIndexComponentUnknown];
|
|
140
|
+
optional int32 estimated_time_registered = 5;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
message CAccountHardware_RegisterValveIndexComponent_Response {
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
message CAccountHardware_GetSteamDeckComponents_Request {
|
|
147
|
+
optional string serial_number = 1;
|
|
148
|
+
optional string controller_code = 2;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
message CAccountHardware_GetSteamDeckComponents_Response {
|
|
152
|
+
optional string json_components = 1;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
service AccountHardware {
|
|
156
|
+
rpc RegisterSteamController (.CAccountHardware_RegisterSteamController_Request) returns (.CAccountHardware_RegisterSteamController_Response);
|
|
157
|
+
rpc CompleteSteamControllerRegistration (.CAccountHardware_CompleteSteamControllerRegistration_Request) returns (.CAccountHardware_CompleteSteamControllerRegistration_Response);
|
|
158
|
+
rpc QueryAccountsRegisteredToController (.CAccountHardware_QueryAccountsRegisteredToSerial_Request) returns (.CAccountHardware_QueryAccountsRegisteredToSerial_Response);
|
|
159
|
+
rpc SetDesiredControllerConfigForApp (.CAccountHardware_SteamControllerSetConfig_Request) returns (.CAccountHardware_SteamControllerSetConfig_Response);
|
|
160
|
+
rpc GetDesiredControllerConfigForApp (.CAccountHardware_SteamControllerGetConfig_Request) returns (.CAccountHardware_SteamControllerGetConfig_Response);
|
|
161
|
+
rpc DeRegisterSteamController (.CAccountHardware_DeRegisterSteamController_Request) returns (.CAccountHardware_DeRegisterSteamController_Response);
|
|
162
|
+
rpc SetControllerPersonalizationFile (.CAccountHardware_SetPersonalizationFile_Request) returns (.CAccountHardware_SetPersonalizationFile_Response);
|
|
163
|
+
rpc GetControllerPersonalizationFile (.CAccountHardware_GetPersonalizationFile_Request) returns (.CAccountHardware_GetPersonalizationFile_Response);
|
|
164
|
+
rpc VRCompatibilityCheck (.CAccountHardware_VRCompatibilityCheck_Request) returns (.CAccountHardware_VRCompatibilityCheck_Response);
|
|
165
|
+
rpc RegisterValveIndexComponent (.CAccountHardware_RegisterValveIndexComponent_Request) returns (.CAccountHardware_RegisterValveIndexComponent_Response);
|
|
166
|
+
rpc GetSteamDeckComponents (.CAccountHardware_GetSteamDeckComponents_Request) returns (.CAccountHardware_GetSteamDeckComponents_Response);
|
|
167
|
+
}
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
import "enums.proto";
|
|
2
|
+
|
|
3
|
+
option optimize_for = SPEED;
|
|
4
|
+
option cc_generic_services = true;
|
|
5
|
+
|
|
6
|
+
enum EDisplayStatus {
|
|
7
|
+
k_EDisplayStatusInvalid = 0;
|
|
8
|
+
k_EDisplayStatusLaunching = 1;
|
|
9
|
+
k_EDisplayStatusUninstalling = 2;
|
|
10
|
+
k_EDisplayStatusInstalling = 3;
|
|
11
|
+
k_EDisplayStatusRunning = 4;
|
|
12
|
+
k_EDisplayStatusValidating = 5;
|
|
13
|
+
k_EDisplayStatusUpdating = 6;
|
|
14
|
+
k_EDisplayStatusDownloading = 7;
|
|
15
|
+
k_EDisplayStatusSynchronizing = 8;
|
|
16
|
+
k_EDisplayStatusReadyToInstall = 9;
|
|
17
|
+
k_EDisplayStatusReadyToPreload = 10;
|
|
18
|
+
k_EDisplayStatusReadyToLaunch = 11;
|
|
19
|
+
k_EDisplayStatusRegionRestricted = 12;
|
|
20
|
+
k_EDisplayStatusPresaleOnly = 13;
|
|
21
|
+
k_EDisplayStatusInvalidPlatform = 14;
|
|
22
|
+
k_EDisplayStatusPreloadComplete = 16;
|
|
23
|
+
k_EDisplayStatusBorrowerLocked = 17;
|
|
24
|
+
k_EDisplayStatusUpdatePaused = 18;
|
|
25
|
+
k_EDisplayStatusUpdateQueued = 19;
|
|
26
|
+
k_EDisplayStatusUpdateRequired = 20;
|
|
27
|
+
k_EDisplayStatusUpdateDisabled = 21;
|
|
28
|
+
k_EDisplayStatusDownloadPaused = 22;
|
|
29
|
+
k_EDisplayStatusDownloadQueued = 23;
|
|
30
|
+
k_EDisplayStatusDownloadRequired = 24;
|
|
31
|
+
k_EDisplayStatusDownloadDisabled = 25;
|
|
32
|
+
k_EDisplayStatusLicensePending = 26;
|
|
33
|
+
k_EDisplayStatusLicenseExpired = 27;
|
|
34
|
+
k_EDisplayStatusAvailForFree = 28;
|
|
35
|
+
k_EDisplayStatusAvailToBorrow = 29;
|
|
36
|
+
k_EDisplayStatusAvailGuestPass = 30;
|
|
37
|
+
k_EDisplayStatusPurchase = 31;
|
|
38
|
+
k_EDisplayStatusUnavailable = 32;
|
|
39
|
+
k_EDisplayStatusNotLaunchable = 33;
|
|
40
|
+
k_EDisplayStatusCloudError = 34;
|
|
41
|
+
k_EDisplayStatusCloudOutOfDate = 35;
|
|
42
|
+
k_EDisplayStatusTerminating = 36;
|
|
43
|
+
k_EDisplayStatusOwnerLocked = 37;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
enum EAppCloudStatus {
|
|
47
|
+
k_EAppCloudStatusInvalid = 0;
|
|
48
|
+
k_EAppCloudStatusDisabled = 1;
|
|
49
|
+
k_EAppCloudStatusUnknown = 2;
|
|
50
|
+
k_EAppCloudStatusSynchronized = 3;
|
|
51
|
+
k_EAppCloudStatusChecking = 4;
|
|
52
|
+
k_EAppCloudStatusOutOfSync = 5;
|
|
53
|
+
k_EAppCloudStatusUploading = 6;
|
|
54
|
+
k_EAppCloudStatusDownloading = 7;
|
|
55
|
+
k_EAppCloudStatusSyncFailed = 8;
|
|
56
|
+
k_EAppCloudStatusConflict = 9;
|
|
57
|
+
k_EAppCloudStatusPendingElsewhere = 10;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
enum EProtoAppType {
|
|
61
|
+
k_EAppTypeInvalid = 0;
|
|
62
|
+
k_EAppTypeGame = 1;
|
|
63
|
+
k_EAppTypeApplication = 2;
|
|
64
|
+
k_EAppTypeTool = 4;
|
|
65
|
+
k_EAppTypeDemo = 8;
|
|
66
|
+
k_EAppTypeDeprected = 16;
|
|
67
|
+
k_EAppTypeDLC = 32;
|
|
68
|
+
k_EAppTypeGuide = 64;
|
|
69
|
+
k_EAppTypeDriver = 128;
|
|
70
|
+
k_EAppTypeConfig = 256;
|
|
71
|
+
k_EAppTypeHardware = 512;
|
|
72
|
+
k_EAppTypeFranchise = 1024;
|
|
73
|
+
k_EAppTypeVideo = 2048;
|
|
74
|
+
k_EAppTypePlugin = 4096;
|
|
75
|
+
k_EAppTypeMusicAlbum = 8192;
|
|
76
|
+
k_EAppTypeSeries = 16384;
|
|
77
|
+
k_EAppTypeComic = 32768;
|
|
78
|
+
k_EAppTypeBeta = 65536;
|
|
79
|
+
k_EAppTypeShortcut = 1073741824;
|
|
80
|
+
k_EAppTypeDepotOnly = -2147483648;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
enum EAppAssociationType {
|
|
84
|
+
k_EAppAssociationTypeInvalid = 0;
|
|
85
|
+
k_EAppAssociationTypePublisher = 1;
|
|
86
|
+
k_EAppAssociationTypeDeveloper = 2;
|
|
87
|
+
k_EAppAssociationTypeFranchise = 3;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
enum EAppControllerSupportLevel {
|
|
91
|
+
k_EAppControllerSupportLevelNone = 0;
|
|
92
|
+
k_EAppControllerSupportLevelPartial = 1;
|
|
93
|
+
k_EAppControllerSupportLevelFull = 2;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
enum EAppGamepadGyroTrackpadSupportLevel {
|
|
97
|
+
k_EAppGamepadGyroTrackpadSupportLevelUnknown = -1;
|
|
98
|
+
k_EAppGamepadGyroTrackpadSupportLevelNoGamepad = 0;
|
|
99
|
+
k_EAppGamepadGyroTrackpadSupportLevelGamepad = 1;
|
|
100
|
+
k_EAppGamepadGyroTrackpadSupportLevelSimultaneous = 2;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
enum EAppHDRSupport {
|
|
104
|
+
k_EHDRSupport_Unknown = 0;
|
|
105
|
+
k_EHDRSupport_SDR = 1;
|
|
106
|
+
k_EHDRSupport_HDR = 2;
|
|
107
|
+
k_EHDRSupport_HDR_Broken = 3;
|
|
108
|
+
k_EHDRSupport_HDR_RequiresUserAction = 4;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
message CAppOverview_AppAssociation {
|
|
112
|
+
optional .EAppAssociationType type = 1 [default = k_EAppAssociationTypeInvalid];
|
|
113
|
+
optional string name = 2;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
message CAppOverview_PerClientData {
|
|
117
|
+
optional uint64 clientid = 1;
|
|
118
|
+
optional string client_name = 2;
|
|
119
|
+
optional .EDisplayStatus display_status = 3 [default = k_EDisplayStatusInvalid];
|
|
120
|
+
optional uint32 status_percentage = 4 [default = 0];
|
|
121
|
+
optional string active_beta = 5;
|
|
122
|
+
optional bool installed = 6;
|
|
123
|
+
optional uint64 bytes_downloaded = 7 [default = 0];
|
|
124
|
+
optional uint64 bytes_total = 8 [default = 0];
|
|
125
|
+
optional bool streaming_to_local_client = 9;
|
|
126
|
+
optional bool is_available_on_current_platform = 10;
|
|
127
|
+
optional bool is_invalid_os_type = 11;
|
|
128
|
+
optional uint32 playtime_left = 12;
|
|
129
|
+
optional .EAppCloudStatus cloud_status = 13 [default = k_EAppCloudStatusInvalid];
|
|
130
|
+
optional bool update_available_but_disabled_by_app = 14;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
message CAppOverview {
|
|
134
|
+
optional uint32 appid = 1;
|
|
135
|
+
optional string display_name = 2;
|
|
136
|
+
optional bool visible_in_game_list = 4;
|
|
137
|
+
optional bool subscribed_to = 5;
|
|
138
|
+
optional string sort_as = 6;
|
|
139
|
+
optional .EProtoAppType app_type = 7 [default = k_EAppTypeInvalid];
|
|
140
|
+
optional uint32 mru_index = 13;
|
|
141
|
+
optional uint32 rt_recent_activity_time = 14 [default = 0];
|
|
142
|
+
optional uint32 minutes_playtime_forever = 16 [default = 0];
|
|
143
|
+
optional uint32 minutes_playtime_last_two_weeks = 17 [default = 0];
|
|
144
|
+
optional uint32 rt_last_time_played = 18 [default = 0];
|
|
145
|
+
repeated uint32 store_tag = 19;
|
|
146
|
+
repeated .CAppOverview_AppAssociation association = 20;
|
|
147
|
+
repeated uint32 store_category = 23;
|
|
148
|
+
optional uint32 rt_original_release_date = 25 [default = 0];
|
|
149
|
+
optional uint32 rt_steam_release_date = 26 [default = 0];
|
|
150
|
+
optional string icon_hash = 27;
|
|
151
|
+
optional .EAppControllerSupportLevel xbox_controller_support = 31 [default = k_EAppControllerSupportLevelNone];
|
|
152
|
+
optional bool vr_supported = 32;
|
|
153
|
+
optional uint32 metacritic_score = 36;
|
|
154
|
+
optional uint64 size_on_disk = 37;
|
|
155
|
+
optional bool third_party_mod = 38;
|
|
156
|
+
optional string icon_data = 39;
|
|
157
|
+
optional string icon_data_format = 40;
|
|
158
|
+
optional string gameid = 41;
|
|
159
|
+
optional string library_capsule_filename = 42;
|
|
160
|
+
repeated .CAppOverview_PerClientData per_client_data = 43;
|
|
161
|
+
optional uint64 most_available_clientid = 44;
|
|
162
|
+
optional uint64 selected_clientid = 45;
|
|
163
|
+
optional uint32 rt_store_asset_mtime = 46;
|
|
164
|
+
optional uint32 rt_custom_image_mtime = 47;
|
|
165
|
+
optional uint32 optional_parent_app_id = 48;
|
|
166
|
+
optional uint32 owner_account_id = 49;
|
|
167
|
+
optional uint32 review_score_with_bombs = 53;
|
|
168
|
+
optional uint32 review_percentage_with_bombs = 54;
|
|
169
|
+
optional uint32 review_score_without_bombs = 55;
|
|
170
|
+
optional uint32 review_percentage_without_bombs = 56;
|
|
171
|
+
optional string library_id = 57;
|
|
172
|
+
optional bool vr_only = 58;
|
|
173
|
+
optional uint32 mastersub_appid = 59;
|
|
174
|
+
optional string mastersub_includedwith_logo = 60;
|
|
175
|
+
optional string site_license_site_name = 62;
|
|
176
|
+
optional uint32 shortcut_override_appid = 63;
|
|
177
|
+
optional .ESteamDeckCompatibilityCategory steam_deck_compat_category = 64 [default = k_ESteamDeckCompatibilityCategory_Unknown];
|
|
178
|
+
optional uint32 rt_last_time_locally_played = 65;
|
|
179
|
+
optional uint32 rt_purchased_time = 66;
|
|
180
|
+
optional string header_filename = 67;
|
|
181
|
+
optional uint32 local_cache_version = 68;
|
|
182
|
+
optional .EAppControllerSupportLevel ps4_controller_support = 69 [default = k_EAppControllerSupportLevelNone];
|
|
183
|
+
optional .EAppControllerSupportLevel ps5_controller_support = 70 [default = k_EAppControllerSupportLevelNone];
|
|
184
|
+
optional bool gamepad_preferred = 71;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
message CAppOverview_Change {
|
|
188
|
+
repeated .CAppOverview app_overview = 1;
|
|
189
|
+
repeated uint32 removed_appid = 2;
|
|
190
|
+
optional bool full_update = 3;
|
|
191
|
+
optional bool update_complete = 4;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
message CAppBootstrapData {
|
|
195
|
+
optional uint32 appid = 1;
|
|
196
|
+
optional bool hidden = 2;
|
|
197
|
+
repeated string user_tag = 3;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
message CLibraryBootstrapData {
|
|
201
|
+
repeated .CAppBootstrapData app_data = 1;
|
|
202
|
+
}
|