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,192 @@
|
|
|
1
|
+
import "steammessages_base.proto";
|
|
2
|
+
import "steammessages_unified_base.steamclient.proto";
|
|
3
|
+
import "clientmetrics.proto";
|
|
4
|
+
|
|
5
|
+
option cc_generic_services = true;
|
|
6
|
+
|
|
7
|
+
enum ESteamPipeWorkType {
|
|
8
|
+
k_ESteamPipeClientWorkType_Invalid = 0;
|
|
9
|
+
k_ESteamPipeClientWorkType_StageFromChunkStores = 1;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
enum ESteamPipeOperationType {
|
|
13
|
+
k_ESteamPipeOperationType_Invalid = 0;
|
|
14
|
+
k_ESteamPipeOperationType_DecryptCPU = 1;
|
|
15
|
+
k_ESteamPipeOperationType_DiskRead = 2;
|
|
16
|
+
k_ESteamPipeOperationType_DiskWrite = 3;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
message CClientMetrics_AppInterfaceCreation {
|
|
20
|
+
optional string raw_version = 1;
|
|
21
|
+
optional string requested_interface_type = 2;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
message CClientMetrics_AppInterfaceMethodCounts {
|
|
25
|
+
optional string interface_name = 1;
|
|
26
|
+
optional string method_name = 2;
|
|
27
|
+
optional uint32 call_count = 3;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
message CClientMetrics_AppInterfaceStats_Notification {
|
|
31
|
+
optional uint64 game_id = 1;
|
|
32
|
+
repeated .CClientMetrics_AppInterfaceCreation interfaces_created = 2;
|
|
33
|
+
repeated .CClientMetrics_AppInterfaceMethodCounts methods_called = 3;
|
|
34
|
+
optional uint32 session_length_seconds = 4;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
message CClientMetrics_IPv6Connectivity_Result {
|
|
38
|
+
optional uint32 protocol_tested = 1;
|
|
39
|
+
optional uint32 connectivity_state = 2;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
message CClientMetrics_IPv6Connectivity_Notification {
|
|
43
|
+
optional uint32 cell_id = 1;
|
|
44
|
+
repeated .CClientMetrics_IPv6Connectivity_Result results = 2;
|
|
45
|
+
optional bool private_ip_is_rfc6598 = 3;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
message CClientMetrics_SteamPipeWorkStats_Operation {
|
|
49
|
+
optional .ESteamPipeOperationType type = 1 [default = k_ESteamPipeOperationType_Invalid];
|
|
50
|
+
optional uint32 num_ops = 2;
|
|
51
|
+
optional uint64 num_bytes = 3;
|
|
52
|
+
optional uint64 busy_time_ms = 4;
|
|
53
|
+
optional uint64 idle_time_ms = 5;
|
|
54
|
+
optional uint64 sum_run_time_ms = 6;
|
|
55
|
+
optional uint64 sum_wait_time_ms = 7;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
message CClientMetrics_SteamPipeWorkStats_Notification {
|
|
59
|
+
optional uint32 appid = 1;
|
|
60
|
+
optional uint32 depotid = 2;
|
|
61
|
+
optional .ESteamPipeWorkType work_type = 3 [default = k_ESteamPipeClientWorkType_Invalid];
|
|
62
|
+
repeated .CClientMetrics_SteamPipeWorkStats_Operation operations = 4;
|
|
63
|
+
optional uint32 hardware_type = 5;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
message CClientMetrics_ReportReactUsage_Notification {
|
|
67
|
+
message RouteData {
|
|
68
|
+
optional string route = 1;
|
|
69
|
+
optional uint32 count = 2;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
message ComponentData {
|
|
73
|
+
optional string component = 1;
|
|
74
|
+
optional uint32 count = 2;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
message ActionData {
|
|
78
|
+
optional string action = 1;
|
|
79
|
+
optional uint32 count = 2;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
optional string product = 1;
|
|
83
|
+
optional string version = 2;
|
|
84
|
+
repeated .CClientMetrics_ReportReactUsage_Notification.RouteData routes = 3;
|
|
85
|
+
repeated .CClientMetrics_ReportReactUsage_Notification.ComponentData components = 4;
|
|
86
|
+
repeated .CClientMetrics_ReportReactUsage_Notification.ActionData actions = 5;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
message CClientMetrics_ReportClientError_Notification {
|
|
90
|
+
message Error {
|
|
91
|
+
optional string identifier = 1;
|
|
92
|
+
optional string message = 2;
|
|
93
|
+
optional uint32 count = 3;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
optional string product = 1;
|
|
97
|
+
optional string version = 2;
|
|
98
|
+
repeated .CClientMetrics_ReportClientError_Notification.Error errors = 3;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
message CClientMetrics_ClientBootstrap_Notification {
|
|
102
|
+
optional .CClientMetrics_ClientBootstrap_Summary summary = 1;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
message CClientMetrics_DownloadRates_Notification {
|
|
106
|
+
message StatsInfo {
|
|
107
|
+
optional uint32 source_type = 1;
|
|
108
|
+
optional uint32 source_id = 2;
|
|
109
|
+
optional uint64 bytes = 3;
|
|
110
|
+
optional string host_name = 4;
|
|
111
|
+
optional uint64 microseconds = 5;
|
|
112
|
+
optional bool used_ipv6 = 6;
|
|
113
|
+
optional bool proxied = 7;
|
|
114
|
+
optional bool used_http2 = 8;
|
|
115
|
+
optional uint32 cache_hits = 9;
|
|
116
|
+
optional uint32 cache_misses = 10;
|
|
117
|
+
optional uint64 hit_bytes = 11;
|
|
118
|
+
optional uint64 miss_bytes = 12;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
optional uint32 cell_id = 1;
|
|
122
|
+
repeated .CClientMetrics_DownloadRates_Notification.StatsInfo stats = 2;
|
|
123
|
+
optional uint32 throttling_kbps = 3;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
message CClientMetrics_ContentValidation_Notification {
|
|
127
|
+
optional int32 validation_result = 1;
|
|
128
|
+
optional uint32 app_id = 2;
|
|
129
|
+
optional bool staged_files = 3;
|
|
130
|
+
optional bool user_initiated = 4;
|
|
131
|
+
optional bool early_out = 5;
|
|
132
|
+
optional uint32 chunks_scanned = 6;
|
|
133
|
+
optional uint32 chunks_corrupt = 7;
|
|
134
|
+
optional uint64 bytes_scanned = 8;
|
|
135
|
+
optional uint64 chunk_bytes_corrupt = 9;
|
|
136
|
+
optional uint64 total_file_size_corrupt = 10;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
message CClientMetrics_CloudAppSyncStats_Notification {
|
|
140
|
+
optional uint32 app_id = 1;
|
|
141
|
+
optional uint32 platform_type = 2;
|
|
142
|
+
optional bool preload = 3;
|
|
143
|
+
optional bool blocking_app_launch = 4;
|
|
144
|
+
optional uint32 files_uploaded = 5;
|
|
145
|
+
optional uint32 files_downloaded = 6;
|
|
146
|
+
optional uint32 files_deleted = 7;
|
|
147
|
+
optional uint64 bytes_uploaded = 8;
|
|
148
|
+
optional uint64 bytes_downloaded = 9;
|
|
149
|
+
optional uint64 microsec_total = 10;
|
|
150
|
+
optional uint64 microsec_init_caches = 11;
|
|
151
|
+
optional uint64 microsec_validate_state = 12;
|
|
152
|
+
optional uint64 microsec_ac_launch = 13;
|
|
153
|
+
optional uint64 microsec_ac_prep_user_files = 14;
|
|
154
|
+
optional uint64 microsec_ac_exit = 15;
|
|
155
|
+
optional uint64 microsec_build_sync_list = 16;
|
|
156
|
+
optional uint64 microsec_delete_files = 17;
|
|
157
|
+
optional uint64 microsec_download_files = 18;
|
|
158
|
+
optional uint64 microsec_upload_files = 19;
|
|
159
|
+
optional uint32 hardware_type = 20;
|
|
160
|
+
optional uint32 files_managed = 21;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
message CClientMetrics_ContentDownloadResponse_Counts_Notification {
|
|
164
|
+
optional uint32 cell_id = 1;
|
|
165
|
+
optional .CClientMetrics_ContentDownloadResponse_Hosts data = 2;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
message CClientMetrics_ReportClientArgs_Notification {
|
|
169
|
+
repeated string client_args = 1;
|
|
170
|
+
optional bool gpu_webview_regkey_disabled = 2;
|
|
171
|
+
optional bool suppress_gpu_chrome = 3;
|
|
172
|
+
optional bool browser_not_supported = 4;
|
|
173
|
+
optional bool hw_accel_video_regkey_disabled = 5;
|
|
174
|
+
optional bool mini_mode_enabled = 6;
|
|
175
|
+
optional bool fps_counter_enabled = 7;
|
|
176
|
+
optional bool library_low_bandwidth_mode_enabled = 8;
|
|
177
|
+
optional bool library_low_perf_mode_enabled = 9;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
service ClientMetrics {
|
|
181
|
+
rpc ClientAppInterfaceStatsReport (.CClientMetrics_AppInterfaceStats_Notification) returns (.NoResponse);
|
|
182
|
+
rpc ClientIPv6ConnectivityReport (.CClientMetrics_IPv6Connectivity_Notification) returns (.NoResponse);
|
|
183
|
+
rpc SteamPipeWorkStatsReport (.CClientMetrics_SteamPipeWorkStats_Notification) returns (.NoResponse);
|
|
184
|
+
rpc ReportReactUsage (.CClientMetrics_ReportReactUsage_Notification) returns (.NoResponse);
|
|
185
|
+
rpc ReportClientError (.CClientMetrics_ReportClientError_Notification) returns (.NoResponse);
|
|
186
|
+
rpc ClientBootstrapReport (.CClientMetrics_ClientBootstrap_Notification) returns (.NoResponse);
|
|
187
|
+
rpc ClientDownloadRatesReport (.CClientMetrics_DownloadRates_Notification) returns (.NoResponse);
|
|
188
|
+
rpc ClientContentValidationReport (.CClientMetrics_ContentValidation_Notification) returns (.NoResponse);
|
|
189
|
+
rpc ClientCloudAppSyncStats (.CClientMetrics_CloudAppSyncStats_Notification) returns (.NoResponse);
|
|
190
|
+
rpc ClientDownloadResponseCodeCounts (.CClientMetrics_ContentDownloadResponse_Counts_Notification) returns (.NoResponse);
|
|
191
|
+
rpc ReportClientArgs (.CClientMetrics_ReportClientArgs_Notification) returns (.NoResponse);
|
|
192
|
+
}
|
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
option optimize_for = SPEED;
|
|
2
|
+
option cc_generic_services = true;
|
|
3
|
+
|
|
4
|
+
enum EClientNotificationType {
|
|
5
|
+
k_EClientNotificationType_Invalid = 0;
|
|
6
|
+
k_EClientNotificationType_DownloadCompleted = 1;
|
|
7
|
+
k_EClientNotificationType_FriendInvite = 2;
|
|
8
|
+
k_EClientNotificationType_FriendInGame = 3;
|
|
9
|
+
k_EClientNotificationType_FriendOnline = 4;
|
|
10
|
+
k_EClientNotificationType_Achievement = 5;
|
|
11
|
+
k_EClientNotificationType_LowBattery = 6;
|
|
12
|
+
k_EClientNotificationType_SystemUpdate = 7;
|
|
13
|
+
k_EClientNotificationType_FriendMessage = 8;
|
|
14
|
+
k_EClientNotificationType_GroupChatMessage = 9;
|
|
15
|
+
k_EClientNotificationType_FriendInviteRollup = 10;
|
|
16
|
+
k_EClientNotificationType_FamilySharingDeviceAuthorizationChanged = 11;
|
|
17
|
+
k_EClientNotificationType_FamilySharingStopPlaying = 12;
|
|
18
|
+
k_EClientNotificationType_FamilySharingLibraryAvailable = 13;
|
|
19
|
+
k_EClientNotificationType_Screenshot = 14;
|
|
20
|
+
k_EClientNotificationType_CloudSyncFailure = 15;
|
|
21
|
+
k_EClientNotificationType_CloudSyncConflict = 16;
|
|
22
|
+
k_EClientNotificationType_IncomingVoiceChat = 17;
|
|
23
|
+
k_EClientNotificationType_ClaimSteamDeckRewards = 18;
|
|
24
|
+
k_EClientNotificationType_GiftReceived = 19;
|
|
25
|
+
k_EClientNotificationType_ItemAnnouncement = 20;
|
|
26
|
+
k_EClientNotificationType_HardwareSurvey = 21;
|
|
27
|
+
k_EClientNotificationType_LowDiskSpace = 22;
|
|
28
|
+
k_EClientNotificationType_BatteryTemperature = 23;
|
|
29
|
+
k_EClientNotificationType_DockUnsupportedFirmware = 24;
|
|
30
|
+
k_EClientNotificationType_PeerContentUpload = 25;
|
|
31
|
+
k_EClientNotificationType_CannotReadControllerGuideButton = 26;
|
|
32
|
+
k_EClientNotificationType_Comment = 27;
|
|
33
|
+
k_EClientNotificationType_Wishlist = 28;
|
|
34
|
+
k_EClientNotificationType_TradeOffer = 29;
|
|
35
|
+
k_EClientNotificationType_AsyncGame = 30;
|
|
36
|
+
k_EClientNotificationType_General = 31;
|
|
37
|
+
k_EClientNotificationType_HelpRequest = 32;
|
|
38
|
+
k_EClientNotificationType_OverlaySplashScreen = 33;
|
|
39
|
+
k_EClientNotificationType_BroadcastAvailableToWatch = 34;
|
|
40
|
+
k_EClientNotificationType_TimedTrialRemaining = 35;
|
|
41
|
+
k_EClientNotificationType_LoginRefresh = 36;
|
|
42
|
+
k_EClientNotificationType_MajorSale = 37;
|
|
43
|
+
k_EClientNotificationType_TimerExpired = 38;
|
|
44
|
+
k_EClientNotificationType_ModeratorMsg = 39;
|
|
45
|
+
k_EClientNotificationType_SteamInputActionSetChanged = 40;
|
|
46
|
+
k_EClientNotificationType_RemoteClientConnection = 41;
|
|
47
|
+
k_EClientNotificationType_RemoteClientStartStream = 42;
|
|
48
|
+
k_EClientNotificationType_StreamingClientConnection = 43;
|
|
49
|
+
k_EClientNotificationType_FamilyInvite = 44;
|
|
50
|
+
k_EClientNotificationType_PlaytimeWarning = 45;
|
|
51
|
+
k_EClientNotificationType_FamilyPurchaseRequest = 46;
|
|
52
|
+
k_EClientNotificationType_FamilyPurchaseRequestResponse = 47;
|
|
53
|
+
k_EClientNotificationType_ParentalFeatureRequest = 48;
|
|
54
|
+
k_EClientNotificationType_ParentalPlaytimeRequest = 49;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
enum ESystemUpdateNotificationType {
|
|
58
|
+
k_ESystemUpdateNotificationType_Invalid = 0;
|
|
59
|
+
k_ESystemUpdateNotificationType_Available = 1;
|
|
60
|
+
k_ESystemUpdateNotificationType_NeedsRestart = 2;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
message CClientNotificationCloudSyncFailure {
|
|
64
|
+
optional uint32 appid = 1;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
message CClientNotificationCloudSyncConflict {
|
|
68
|
+
optional uint32 appid = 1;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
message CClientNotificationScreenshot {
|
|
72
|
+
optional string screenshot_handle = 1;
|
|
73
|
+
optional string description = 2;
|
|
74
|
+
optional string local_url = 3;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
message CClientNotificationDownloadCompleted {
|
|
78
|
+
optional uint32 appid = 1;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
message CClientNotificationFriendInvite {
|
|
82
|
+
optional fixed64 steamid = 1;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
message CClientNotificationFriendInviteRollup {
|
|
86
|
+
optional uint32 new_invite_count = 1;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
message CClientNotificationFriendInGame {
|
|
90
|
+
optional fixed64 steamid = 1;
|
|
91
|
+
optional string game_name = 2;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
message CClientNotificationFriendOnline {
|
|
95
|
+
optional fixed64 steamid = 1;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
message CClientNotificationAchievement {
|
|
99
|
+
optional string achievement_id = 1;
|
|
100
|
+
optional uint32 appid = 2;
|
|
101
|
+
optional string name = 3;
|
|
102
|
+
optional string description = 4;
|
|
103
|
+
optional string image_url = 5;
|
|
104
|
+
optional bool achieved = 6;
|
|
105
|
+
optional uint32 rtime_unlocked = 7;
|
|
106
|
+
optional float min_progress = 8;
|
|
107
|
+
optional float current_progress = 9;
|
|
108
|
+
optional float max_progress = 10;
|
|
109
|
+
optional float global_achieved_pct = 11;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
message CClientNotificationLowBattery {
|
|
113
|
+
optional float pct_remaining = 1;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
message CClientNotificationSystemUpdate {
|
|
117
|
+
optional .ESystemUpdateNotificationType type = 1 [default = k_ESystemUpdateNotificationType_Invalid];
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
message CClientNotificationFriendMessage {
|
|
121
|
+
optional string tag = 1;
|
|
122
|
+
optional string steamid = 2;
|
|
123
|
+
optional string title = 3;
|
|
124
|
+
optional string body = 4;
|
|
125
|
+
optional string icon = 5;
|
|
126
|
+
optional uint32 notificationid = 6;
|
|
127
|
+
optional string response_steamurl = 7;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
message CClientNotificationGroupChatMessage {
|
|
131
|
+
optional string tag = 1;
|
|
132
|
+
optional string steamid_sender = 2;
|
|
133
|
+
optional string chat_group_id = 3;
|
|
134
|
+
optional string chat_id = 4;
|
|
135
|
+
optional string title = 5;
|
|
136
|
+
optional string body = 6;
|
|
137
|
+
optional string rawbody = 7;
|
|
138
|
+
optional string icon = 8;
|
|
139
|
+
optional uint32 notificationid = 9;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
message CClientNotificationFamilySharingDeviceAuthorizationChanged {
|
|
143
|
+
optional uint32 accountid_owner = 1;
|
|
144
|
+
optional bool authorized = 2;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
message CClientNotificationFamilySharingStopPlaying {
|
|
148
|
+
optional uint32 accountid_owner = 1;
|
|
149
|
+
optional uint32 seconds_remaining = 2;
|
|
150
|
+
optional uint32 appid = 3;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
message CClientNotificationFamilySharingLibraryAvailable {
|
|
154
|
+
optional uint32 accountid_owner = 1;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
message CClientNotificationIncomingVoiceChat {
|
|
158
|
+
optional fixed64 steamid = 1;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
message CClientNotificationClaimSteamDeckRewards {
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
message CClientNotificationGiftReceived {
|
|
165
|
+
optional string sender_name = 1;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
message CClientNotificationItemAnnouncement {
|
|
169
|
+
optional uint32 new_item_count = 1;
|
|
170
|
+
optional bool new_backpack_items = 2;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
message CClientNotificationHardwareSurveyPending {
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
message CClientNotificationLowDiskSpace {
|
|
177
|
+
optional uint32 folder_index = 1;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
message CClientNotificationBatteryTemperature {
|
|
181
|
+
optional uint32 temperature = 1;
|
|
182
|
+
optional string notification_type = 2;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
message CClientNotificationDockUnsupportedFirmware {
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
message CClientNotificationPeerContentUpload {
|
|
189
|
+
optional uint32 appid = 1;
|
|
190
|
+
optional string peer_name = 2;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
message CClientNotificationCannotReadControllerGuideButton {
|
|
194
|
+
optional int32 controller_index = 1;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
message CClientNotificationOverlaySplashScreen {
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
message CClientNotificationBroadcastAvailableToWatch {
|
|
201
|
+
optional int32 broadcast_permission = 1;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
message CClientNotificationTimedTrialRemaining {
|
|
205
|
+
optional uint32 appid = 1;
|
|
206
|
+
optional string icon = 2;
|
|
207
|
+
optional bool offline = 3;
|
|
208
|
+
optional uint32 allowed_seconds = 4;
|
|
209
|
+
optional uint32 played_seconds = 5;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
message CClientNotificationLoginRefresh {
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
message CClientNotificationTimerExpired {
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
message CClientNotificationSteamInputActionSetChanged {
|
|
219
|
+
optional int32 controller_index = 1;
|
|
220
|
+
optional string action_set_name = 2;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
message CClientNotificationRemoteClientConnection {
|
|
224
|
+
optional string machine = 1;
|
|
225
|
+
optional bool connected = 2;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
message CClientNotificationRemoteClientStartStream {
|
|
229
|
+
optional string machine = 1;
|
|
230
|
+
optional string game_name = 2;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
message CClientNotificationStreamingClientConnection {
|
|
234
|
+
optional string hostname = 1;
|
|
235
|
+
optional string machine = 2;
|
|
236
|
+
optional bool connected = 3;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
message CClientNotificationPlaytimeWarning {
|
|
240
|
+
optional string type = 1;
|
|
241
|
+
optional uint32 playtime_remaining = 2;
|
|
242
|
+
}
|