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,389 @@
|
|
|
1
|
+
import "steammessages_base.proto";
|
|
2
|
+
import "steammessages_unified_base.steamclient.proto";
|
|
3
|
+
|
|
4
|
+
option cc_generic_services = true;
|
|
5
|
+
|
|
6
|
+
enum EFamilyGroupRole {
|
|
7
|
+
k_EFamilyGroupRole_None = 0;
|
|
8
|
+
k_EFamilyGroupRole_Adult = 1;
|
|
9
|
+
k_EFamilyGroupRole_Child = 2;
|
|
10
|
+
k_EFamilyGroupRole_MAX = 3;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
enum EFamilyGroupsTwoFactorMethod {
|
|
14
|
+
k_EFamilyGroupsTwoFactorMethodNone = 0;
|
|
15
|
+
k_EFamilyGroupsTwoFactorMethodMobile = 1;
|
|
16
|
+
k_EFamilyGroupsTwoFactorMethodEmail = 2;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
enum EPurchaseRequestAction {
|
|
20
|
+
k_EPurchaseRequestAction_None = 0;
|
|
21
|
+
k_EPurchaseRequestAction_Decline = 1;
|
|
22
|
+
k_EPurchaseRequestAction_Purchased = 2;
|
|
23
|
+
k_EPurchaseRequestAction_Abandoned = 3;
|
|
24
|
+
k_EPurchaseRequestAction_Cancel = 4;
|
|
25
|
+
k_EPurchaseRequestAction_MAX = 5;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
enum EFamilyGroupChangeLogType {
|
|
29
|
+
k_InvalidChangeType = 0;
|
|
30
|
+
k_FamilyGroupCreated = 1;
|
|
31
|
+
k_FamilyGroupModified = 2;
|
|
32
|
+
k_FamilyGroupDeleted = 3;
|
|
33
|
+
k_AccountInvited = 4;
|
|
34
|
+
k_InviteDeniedByGroupSize = 5;
|
|
35
|
+
k_JoinedFamilyGroup = 6;
|
|
36
|
+
k_JoinDeniedByRegionMismatch = 7;
|
|
37
|
+
k_JoinDeniedByMissingIpAddress = 8;
|
|
38
|
+
k_JoinDeniedByFamilyCooldown = 9;
|
|
39
|
+
k_JoinDeniedByUserCooldown = 10;
|
|
40
|
+
k_JoinDeniedByOtherGroup = 11;
|
|
41
|
+
k_AccountRemoved = 12;
|
|
42
|
+
k_InviteCanceled = 13;
|
|
43
|
+
k_PurchaseRequested = 14;
|
|
44
|
+
k_ParentalSettingsEnabled = 15;
|
|
45
|
+
k_ParentalSettingsDisabled = 16;
|
|
46
|
+
k_ParentalSettingsChanged = 17;
|
|
47
|
+
k_FamilyCooldownOverridesChanged = 18;
|
|
48
|
+
k_PurchaseRequestCanceled = 19;
|
|
49
|
+
k_PurchaseRequestApproved = 20;
|
|
50
|
+
k_PurchaseRequestDeclined = 21;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
enum ESharedLibraryExcludeReason {
|
|
54
|
+
k_ESharedLibrary_Included = 0;
|
|
55
|
+
k_ESharedLibrary_AppExcluded = 1;
|
|
56
|
+
k_ESharedLibrary_LicenseExcluded = 2;
|
|
57
|
+
k_ESharedLibrary_FreeGame = 3;
|
|
58
|
+
k_ESharedLibrary_LicensePrivate = 4;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
message CFamilyGroups_CreateFamilyGroup_Request {
|
|
62
|
+
optional string name = 1;
|
|
63
|
+
optional fixed64 steamid = 2;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
message CFamilyGroups_CreateFamilyGroup_Response {
|
|
67
|
+
optional uint64 family_groupid = 1;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
message CFamilyGroups_GetFamilyGroup_Request {
|
|
71
|
+
optional uint64 family_groupid = 1;
|
|
72
|
+
optional bool send_running_apps = 2;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
message FamilyGroupMember {
|
|
76
|
+
optional fixed64 steamid = 1;
|
|
77
|
+
optional .EFamilyGroupRole role = 2 [default = k_EFamilyGroupRole_None];
|
|
78
|
+
optional uint32 time_joined = 3;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
message FamilyGroupPendingInvite {
|
|
82
|
+
optional fixed64 steamid = 1;
|
|
83
|
+
optional .EFamilyGroupRole role = 2 [default = k_EFamilyGroupRole_None];
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
message FamilyGroupFormerMember {
|
|
87
|
+
optional fixed64 steamid = 1;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
message CFamilyGroups_GetFamilyGroup_Response {
|
|
91
|
+
optional string name = 1;
|
|
92
|
+
repeated .FamilyGroupMember members = 2;
|
|
93
|
+
repeated .FamilyGroupPendingInvite pending_invites = 3;
|
|
94
|
+
optional uint32 free_spots = 4;
|
|
95
|
+
optional string country = 5;
|
|
96
|
+
optional uint32 slot_cooldown_remaining_seconds = 6;
|
|
97
|
+
repeated .FamilyGroupFormerMember former_members = 7;
|
|
98
|
+
optional uint32 slot_cooldown_overrides = 8;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
message CFamilyGroups_GetFamilyGroupForUser_Request {
|
|
102
|
+
optional uint64 steamid = 1;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
message FamilyGroupPendingInviteForUser {
|
|
106
|
+
optional uint64 family_groupid = 1;
|
|
107
|
+
optional .EFamilyGroupRole role = 2 [default = k_EFamilyGroupRole_None];
|
|
108
|
+
optional fixed64 inviter_steamid = 3;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
message CFamilyGroups_GetFamilyGroupForUser_Response {
|
|
112
|
+
optional uint64 family_groupid = 1;
|
|
113
|
+
optional bool is_not_member_of_any_group = 2;
|
|
114
|
+
optional uint32 latest_time_joined = 3;
|
|
115
|
+
optional uint64 latest_joined_family_groupid = 4;
|
|
116
|
+
repeated .FamilyGroupPendingInviteForUser pending_group_invites = 5;
|
|
117
|
+
optional uint32 role = 6;
|
|
118
|
+
optional uint32 cooldown_seconds_remaining = 7;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
message CFamilyGroups_ModifyFamilyGroupDetails_Request {
|
|
122
|
+
optional uint64 family_groupid = 1;
|
|
123
|
+
optional string name = 2;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
message CFamilyGroups_ModifyFamilyGroupDetails_Response {
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
message CFamilyGroups_InviteToFamilyGroup_Request {
|
|
130
|
+
optional uint64 family_groupid = 1;
|
|
131
|
+
optional fixed64 receiver_steamid = 2;
|
|
132
|
+
optional .EFamilyGroupRole receiver_role = 3 [default = k_EFamilyGroupRole_None];
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
message CFamilyGroups_InviteToFamilyGroup_Response {
|
|
136
|
+
optional uint64 invite_id = 1;
|
|
137
|
+
optional .EFamilyGroupsTwoFactorMethod two_factor_method = 2 [default = k_EFamilyGroupsTwoFactorMethodNone];
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
message CFamilyGroups_ConfirmInviteToFamilyGroup_Request {
|
|
141
|
+
optional uint64 family_groupid = 1;
|
|
142
|
+
optional uint64 invite_id = 2;
|
|
143
|
+
optional uint64 nonce = 3;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
message CFamilyGroups_ConfirmInviteToFamilyGroup_Response {
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
message CFamilyGroups_ResendInvitationToFamilyGroup_Request {
|
|
150
|
+
optional uint64 family_groupid = 1;
|
|
151
|
+
optional uint64 steamid = 2;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
message CFamilyGroups_ResendInvitationToFamilyGroup_Response {
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
message CFamilyGroups_JoinFamilyGroup_Request {
|
|
158
|
+
optional uint64 family_groupid = 1;
|
|
159
|
+
optional uint64 nonce = 2;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
message CFamilyGroups_JoinFamilyGroup_Response {
|
|
163
|
+
optional .EFamilyGroupsTwoFactorMethod two_factor_method = 2 [default = k_EFamilyGroupsTwoFactorMethodNone];
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
message CFamilyGroups_ConfirmJoinFamilyGroup_Request {
|
|
167
|
+
optional uint64 family_groupid = 1;
|
|
168
|
+
optional uint64 invite_id = 2;
|
|
169
|
+
optional uint64 nonce = 3;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
message CFamilyGroups_ConfirmJoinFamilyGroup_Response {
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
message CFamilyGroups_RemoveFromFamilyGroup_Request {
|
|
176
|
+
optional uint64 family_groupid = 1;
|
|
177
|
+
optional fixed64 steamid_to_remove = 2;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
message CFamilyGroups_RemoveFromFamilyGroup_Response {
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
message CFamilyGroups_CancelFamilyGroupInvite_Request {
|
|
184
|
+
optional uint64 family_groupid = 1;
|
|
185
|
+
optional fixed64 steamid_to_cancel = 2;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
message CFamilyGroups_CancelFamilyGroupInvite_Response {
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
message CFamilyGroups_GetUsersSharingDevice_Request {
|
|
192
|
+
optional uint64 family_groupid = 1;
|
|
193
|
+
optional uint64 client_instance_id = 2;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
message CFamilyGroups_GetUsersSharingDevice_Response {
|
|
197
|
+
repeated fixed64 users = 1;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
message CFamilyGroups_DeleteFamilyGroup_Request {
|
|
201
|
+
optional uint64 family_groupid = 1;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
message CFamilyGroups_DeleteFamilyGroup_Response {
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
message CFamilyGroups_GetPlaytimeSummary_Request {
|
|
208
|
+
optional fixed64 family_groupid = 1;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
message CFamilyGroups_PlaytimeEntry {
|
|
212
|
+
optional fixed64 steamid = 1;
|
|
213
|
+
optional uint32 appid = 2;
|
|
214
|
+
optional uint32 first_played = 3;
|
|
215
|
+
optional uint32 latest_played = 4;
|
|
216
|
+
optional uint32 seconds_played = 5;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
message CFamilyGroups_GetPlaytimeSummary_Response {
|
|
220
|
+
repeated .CFamilyGroups_PlaytimeEntry entries = 1;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
message CFamilyGroups_RequestPurchase_Request {
|
|
224
|
+
optional uint64 family_groupid = 1;
|
|
225
|
+
optional uint64 gidshoppingcart = 2;
|
|
226
|
+
optional string store_country_code = 3;
|
|
227
|
+
optional bool use_account_cart = 4;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
message CFamilyGroups_RequestPurchase_Response {
|
|
231
|
+
optional uint64 gidshoppingcart = 1;
|
|
232
|
+
optional uint64 request_id = 2;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
message CFamilyGroups_GetPurchaseRequests_Request {
|
|
236
|
+
optional uint64 family_groupid = 1;
|
|
237
|
+
optional bool include_completed = 2;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
message PurchaseRequest {
|
|
241
|
+
optional fixed64 requester_steamid = 1;
|
|
242
|
+
optional uint64 gidshoppingcart = 2;
|
|
243
|
+
optional uint32 time_requested = 3;
|
|
244
|
+
optional uint32 time_responded = 4;
|
|
245
|
+
optional fixed64 responder_steamid = 5;
|
|
246
|
+
optional .EPurchaseRequestAction response_action = 6 [default = k_EPurchaseRequestAction_None];
|
|
247
|
+
optional bool is_completed = 7;
|
|
248
|
+
optional uint64 request_id = 8;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
message CFamilyGroups_GetPurchaseRequests_Response {
|
|
252
|
+
repeated .PurchaseRequest requests = 1;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
message CFamilyGroups_RespondToRequestedPurchase_Request {
|
|
256
|
+
optional uint64 family_groupid = 1;
|
|
257
|
+
optional fixed64 purchase_requester_steamid = 2;
|
|
258
|
+
optional .EPurchaseRequestAction action = 3 [default = k_EPurchaseRequestAction_None];
|
|
259
|
+
optional uint64 request_id = 4;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
message CFamilyGroups_RespondToRequestedPurchase_Response {
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
message CFamilyGroups_GetChangeLog_Request {
|
|
266
|
+
optional uint64 family_groupid = 1;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
message CFamilyGroups_GetChangeLog_Response {
|
|
270
|
+
message Change {
|
|
271
|
+
optional fixed64 timestamp = 1;
|
|
272
|
+
optional fixed64 actor_steamid = 2;
|
|
273
|
+
optional .EFamilyGroupChangeLogType type = 3 [default = k_InvalidChangeType];
|
|
274
|
+
optional string body = 4;
|
|
275
|
+
optional bool by_support = 5;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
repeated .CFamilyGroups_GetChangeLog_Response.Change changes = 1;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
message CFamilyGroups_SetFamilyCooldownOverrides_Request {
|
|
282
|
+
optional uint64 family_groupid = 1;
|
|
283
|
+
optional uint32 cooldown_count = 2;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
message CFamilyGroups_SetFamilyCooldownOverrides_Response {
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
message CFamilyGroups_GetSharedLibraryApps_Request {
|
|
290
|
+
optional fixed64 family_groupid = 1;
|
|
291
|
+
optional bool include_own = 2;
|
|
292
|
+
optional bool include_excluded = 3;
|
|
293
|
+
optional bool include_free = 4;
|
|
294
|
+
optional string language = 5;
|
|
295
|
+
optional uint32 max_apps = 6;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
message CFamilyGroups_GetSharedLibraryApps_Response {
|
|
299
|
+
message SharedApp {
|
|
300
|
+
optional uint32 appid = 1;
|
|
301
|
+
repeated fixed64 owner_steamids = 2;
|
|
302
|
+
optional bool free_app = 5;
|
|
303
|
+
optional string name = 6;
|
|
304
|
+
optional string sort_as = 7;
|
|
305
|
+
optional string capsule_filename = 8;
|
|
306
|
+
optional string img_icon_url = 9;
|
|
307
|
+
optional .ESharedLibraryExcludeReason exclude_reason = 10 [default = k_ESharedLibrary_Included];
|
|
308
|
+
optional uint32 rt_time_acquired = 11;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
repeated .CFamilyGroups_GetSharedLibraryApps_Response.SharedApp apps = 1;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
message CFamilyGroups_SetPreferredLender_Request {
|
|
315
|
+
optional uint64 family_groupid = 1;
|
|
316
|
+
optional uint32 appid = 2;
|
|
317
|
+
optional fixed64 lender_steamid = 3;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
message CFamilyGroups_SetPreferredLender_Response {
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
message CFamilyGroups_GetPreferredLenders_Request {
|
|
324
|
+
optional uint64 family_groupid = 1;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
message CFamilyGroups_GetPreferredLenders_Response {
|
|
328
|
+
message FamilyMember {
|
|
329
|
+
optional fixed64 steamid = 1;
|
|
330
|
+
repeated uint32 preferred_appids = 2;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
repeated .CFamilyGroups_GetPreferredLenders_Response.FamilyMember members = 1;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
message CFamilyGroupsClient_NotifyRunningApps_Notification {
|
|
337
|
+
message PlayingMember {
|
|
338
|
+
optional fixed64 member_steamid = 1;
|
|
339
|
+
optional fixed64 owner_steamid = 2;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
message RunningApp {
|
|
343
|
+
optional uint32 appid = 1;
|
|
344
|
+
repeated .CFamilyGroupsClient_NotifyRunningApps_Notification.PlayingMember playing_members = 3;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
optional uint64 family_groupid = 1;
|
|
348
|
+
repeated .CFamilyGroupsClient_NotifyRunningApps_Notification.RunningApp running_apps = 2;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
message CFamilyGroupsClient_InviteStatus_Notification {
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
message CFamilyGroupsClient_GroupChanged_Notification {
|
|
355
|
+
optional uint64 family_groupid = 1;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
service FamilyGroups {
|
|
359
|
+
rpc CreateFamilyGroup (.CFamilyGroups_CreateFamilyGroup_Request) returns (.CFamilyGroups_CreateFamilyGroup_Response);
|
|
360
|
+
rpc GetFamilyGroup (.CFamilyGroups_GetFamilyGroup_Request) returns (.CFamilyGroups_GetFamilyGroup_Response);
|
|
361
|
+
rpc GetFamilyGroupForUser (.CFamilyGroups_GetFamilyGroupForUser_Request) returns (.CFamilyGroups_GetFamilyGroupForUser_Response);
|
|
362
|
+
rpc ModifyFamilyGroupDetails (.CFamilyGroups_ModifyFamilyGroupDetails_Request) returns (.CFamilyGroups_ModifyFamilyGroupDetails_Response);
|
|
363
|
+
rpc InviteToFamilyGroup (.CFamilyGroups_InviteToFamilyGroup_Request) returns (.CFamilyGroups_InviteToFamilyGroup_Response);
|
|
364
|
+
rpc ConfirmInviteToFamilyGroup (.CFamilyGroups_ConfirmInviteToFamilyGroup_Request) returns (.CFamilyGroups_ConfirmInviteToFamilyGroup_Response);
|
|
365
|
+
rpc ResendInvitationToFamilyGroup (.CFamilyGroups_ResendInvitationToFamilyGroup_Request) returns (.CFamilyGroups_ResendInvitationToFamilyGroup_Response);
|
|
366
|
+
rpc JoinFamilyGroup (.CFamilyGroups_JoinFamilyGroup_Request) returns (.CFamilyGroups_JoinFamilyGroup_Response);
|
|
367
|
+
rpc ConfirmJoinFamilyGroup (.CFamilyGroups_ConfirmJoinFamilyGroup_Request) returns (.CFamilyGroups_ConfirmJoinFamilyGroup_Response);
|
|
368
|
+
rpc RemoveFromFamilyGroup (.CFamilyGroups_RemoveFromFamilyGroup_Request) returns (.CFamilyGroups_RemoveFromFamilyGroup_Response);
|
|
369
|
+
rpc CancelFamilyGroupInvite (.CFamilyGroups_CancelFamilyGroupInvite_Request) returns (.CFamilyGroups_CancelFamilyGroupInvite_Response);
|
|
370
|
+
rpc GetUsersSharingDevice (.CFamilyGroups_GetUsersSharingDevice_Request) returns (.CFamilyGroups_GetUsersSharingDevice_Response);
|
|
371
|
+
rpc DeleteFamilyGroup (.CFamilyGroups_DeleteFamilyGroup_Request) returns (.CFamilyGroups_DeleteFamilyGroup_Response);
|
|
372
|
+
rpc GetPlaytimeSummary (.CFamilyGroups_GetPlaytimeSummary_Request) returns (.CFamilyGroups_GetPlaytimeSummary_Response);
|
|
373
|
+
rpc RequestPurchase (.CFamilyGroups_RequestPurchase_Request) returns (.CFamilyGroups_RequestPurchase_Response);
|
|
374
|
+
rpc GetPurchaseRequests (.CFamilyGroups_GetPurchaseRequests_Request) returns (.CFamilyGroups_GetPurchaseRequests_Response);
|
|
375
|
+
rpc RespondToRequestedPurchase (.CFamilyGroups_RespondToRequestedPurchase_Request) returns (.CFamilyGroups_RespondToRequestedPurchase_Response);
|
|
376
|
+
rpc GetChangeLog (.CFamilyGroups_GetChangeLog_Request) returns (.CFamilyGroups_GetChangeLog_Response);
|
|
377
|
+
rpc SetFamilyCooldownOverrides (.CFamilyGroups_SetFamilyCooldownOverrides_Request) returns (.CFamilyGroups_SetFamilyCooldownOverrides_Response);
|
|
378
|
+
rpc GetSharedLibraryApps (.CFamilyGroups_GetSharedLibraryApps_Request) returns (.CFamilyGroups_GetSharedLibraryApps_Response);
|
|
379
|
+
rpc SetPreferredLender (.CFamilyGroups_SetPreferredLender_Request) returns (.CFamilyGroups_SetPreferredLender_Response);
|
|
380
|
+
rpc GetPreferredLenders (.CFamilyGroups_GetPreferredLenders_Request) returns (.CFamilyGroups_GetPreferredLenders_Response);
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
service FamilyGroupsClient {
|
|
384
|
+
option (service_execution_site) = k_EProtoExecutionSiteSteamClient;
|
|
385
|
+
|
|
386
|
+
rpc NotifyRunningApps (.CFamilyGroupsClient_NotifyRunningApps_Notification) returns (.NoResponse);
|
|
387
|
+
rpc NotifyInviteStatus (.CFamilyGroupsClient_InviteStatus_Notification) returns (.NoResponse);
|
|
388
|
+
rpc NotifyGroupChanged (.CFamilyGroupsClient_GroupChanged_Notification) returns (.NoResponse);
|
|
389
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import "steammessages_base.proto";
|
|
2
|
+
import "steammessages_unified_base.steamclient.proto";
|
|
3
|
+
|
|
4
|
+
option cc_generic_services = true;
|
|
5
|
+
|
|
6
|
+
enum EMessageReactionType {
|
|
7
|
+
k_EMessageReactionType_Invalid = 0;
|
|
8
|
+
k_EMessageReactionType_Emoticon = 1;
|
|
9
|
+
k_EMessageReactionType_Sticker = 2;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
message CFriendMessages_GetRecentMessages_Request {
|
|
13
|
+
optional fixed64 steamid1 = 1;
|
|
14
|
+
optional fixed64 steamid2 = 2;
|
|
15
|
+
optional uint32 count = 3;
|
|
16
|
+
optional bool most_recent_conversation = 4;
|
|
17
|
+
optional fixed32 rtime32_start_time = 5;
|
|
18
|
+
optional bool bbcode_format = 6;
|
|
19
|
+
optional uint32 start_ordinal = 7;
|
|
20
|
+
optional uint32 time_last = 8;
|
|
21
|
+
optional uint32 ordinal_last = 9;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
message CFriendMessages_GetRecentMessages_Response {
|
|
25
|
+
message FriendMessage {
|
|
26
|
+
message MessageReaction {
|
|
27
|
+
optional .EMessageReactionType reaction_type = 1 [default = k_EMessageReactionType_Invalid];
|
|
28
|
+
optional string reaction = 2;
|
|
29
|
+
repeated uint32 reactors = 3;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
optional uint32 accountid = 1;
|
|
33
|
+
optional uint32 timestamp = 2;
|
|
34
|
+
optional string message = 3;
|
|
35
|
+
optional uint32 ordinal = 4;
|
|
36
|
+
repeated .CFriendMessages_GetRecentMessages_Response.FriendMessage.MessageReaction reactions = 5;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
repeated .CFriendMessages_GetRecentMessages_Response.FriendMessage messages = 1;
|
|
40
|
+
optional bool more_available = 4;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
message CFriendsMessages_GetActiveMessageSessions_Request {
|
|
44
|
+
optional uint32 lastmessage_since = 1;
|
|
45
|
+
optional bool only_sessions_with_messages = 2;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
message CFriendsMessages_GetActiveMessageSessions_Response {
|
|
49
|
+
message FriendMessageSession {
|
|
50
|
+
optional uint32 accountid_friend = 1;
|
|
51
|
+
optional uint32 last_message = 2;
|
|
52
|
+
optional uint32 last_view = 3;
|
|
53
|
+
optional uint32 unread_message_count = 4;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
repeated .CFriendsMessages_GetActiveMessageSessions_Response.FriendMessageSession message_sessions = 1;
|
|
57
|
+
optional uint32 timestamp = 2;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
message CFriendMessages_SendMessage_Request {
|
|
61
|
+
optional fixed64 steamid = 1;
|
|
62
|
+
optional int32 chat_entry_type = 2;
|
|
63
|
+
optional string message = 3;
|
|
64
|
+
optional bool contains_bbcode = 4;
|
|
65
|
+
optional bool echo_to_sender = 5;
|
|
66
|
+
optional bool low_priority = 6;
|
|
67
|
+
optional string client_message_id = 8;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
message CFriendMessages_SendMessage_Response {
|
|
71
|
+
optional string modified_message = 1;
|
|
72
|
+
optional uint32 server_timestamp = 2;
|
|
73
|
+
optional uint32 ordinal = 3;
|
|
74
|
+
optional string message_without_bb_code = 4;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
message CFriendMessages_AckMessage_Notification {
|
|
78
|
+
optional fixed64 steamid_partner = 1;
|
|
79
|
+
optional uint32 timestamp = 2;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
message CFriendMessages_IsInFriendsUIBeta_Request {
|
|
83
|
+
optional fixed64 steamid = 1;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
message CFriendMessages_IsInFriendsUIBeta_Response {
|
|
87
|
+
optional bool online_in_friendsui = 1;
|
|
88
|
+
optional bool has_used_friendsui = 2;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
message CFriendMessages_UpdateMessageReaction_Request {
|
|
92
|
+
optional fixed64 steamid = 1;
|
|
93
|
+
optional uint32 server_timestamp = 2;
|
|
94
|
+
optional uint32 ordinal = 3;
|
|
95
|
+
optional .EMessageReactionType reaction_type = 4 [default = k_EMessageReactionType_Invalid];
|
|
96
|
+
optional string reaction = 5;
|
|
97
|
+
optional bool is_add = 6;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
message CFriendMessages_UpdateMessageReaction_Response {
|
|
101
|
+
repeated uint32 reactors = 1;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
message CFriendMessages_IncomingMessage_Notification {
|
|
105
|
+
optional fixed64 steamid_friend = 1;
|
|
106
|
+
optional int32 chat_entry_type = 2;
|
|
107
|
+
optional bool from_limited_account = 3;
|
|
108
|
+
optional string message = 4;
|
|
109
|
+
optional fixed32 rtime32_server_timestamp = 5;
|
|
110
|
+
optional uint32 ordinal = 6;
|
|
111
|
+
optional bool local_echo = 7;
|
|
112
|
+
optional string message_no_bbcode = 8;
|
|
113
|
+
optional bool low_priority = 9;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
message CFriendMessages_MessageReaction_Notification {
|
|
117
|
+
optional fixed64 steamid_friend = 1;
|
|
118
|
+
optional uint32 server_timestamp = 2;
|
|
119
|
+
optional uint32 ordinal = 3;
|
|
120
|
+
optional fixed64 reactor = 4;
|
|
121
|
+
optional .EMessageReactionType reaction_type = 5 [default = k_EMessageReactionType_Invalid];
|
|
122
|
+
optional string reaction = 6;
|
|
123
|
+
optional bool is_add = 7;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
service FriendMessages {
|
|
127
|
+
rpc GetRecentMessages (.CFriendMessages_GetRecentMessages_Request) returns (.CFriendMessages_GetRecentMessages_Response);
|
|
128
|
+
rpc GetActiveMessageSessions (.CFriendsMessages_GetActiveMessageSessions_Request) returns (.CFriendsMessages_GetActiveMessageSessions_Response);
|
|
129
|
+
rpc SendMessage (.CFriendMessages_SendMessage_Request) returns (.CFriendMessages_SendMessage_Response);
|
|
130
|
+
rpc AckMessage (.CFriendMessages_AckMessage_Notification) returns (.NoResponse);
|
|
131
|
+
rpc IsInFriendsUIBeta (.CFriendMessages_IsInFriendsUIBeta_Request) returns (.CFriendMessages_IsInFriendsUIBeta_Response);
|
|
132
|
+
rpc UpdateMessageReaction (.CFriendMessages_UpdateMessageReaction_Request) returns (.CFriendMessages_UpdateMessageReaction_Response);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
service FriendMessagesClient {
|
|
136
|
+
option (service_execution_site) = k_EProtoExecutionSiteSteamClient;
|
|
137
|
+
|
|
138
|
+
rpc IncomingMessage (.CFriendMessages_IncomingMessage_Notification) returns (.NoResponse);
|
|
139
|
+
rpc NotifyAckMessageEcho (.CFriendMessages_AckMessage_Notification) returns (.NoResponse);
|
|
140
|
+
rpc MessageReaction (.CFriendMessages_MessageReaction_Notification) returns (.NoResponse);
|
|
141
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import "steammessages_base.proto";
|
|
2
|
+
import "steammessages_unified_base.steamclient.proto";
|
|
3
|
+
|
|
4
|
+
option cc_generic_services = true;
|
|
5
|
+
|
|
6
|
+
message CGameNetworking_AllocateFakeIP_Request {
|
|
7
|
+
optional uint32 app_id = 1;
|
|
8
|
+
optional uint32 num_fake_ports = 2;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
message CGameNetworking_AllocateFakeIP_Response {
|
|
12
|
+
optional fixed32 fake_ip = 1;
|
|
13
|
+
repeated uint32 fake_ports = 2;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
message CGameNetworking_ReleaseFakeIP_Notification {
|
|
17
|
+
optional uint32 app_id = 1;
|
|
18
|
+
optional fixed32 fake_ip = 2;
|
|
19
|
+
repeated uint32 fake_ports = 3;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
service GameNetworking {
|
|
23
|
+
rpc AllocateFakeIP (.CGameNetworking_AllocateFakeIP_Request) returns (.CGameNetworking_AllocateFakeIP_Response);
|
|
24
|
+
rpc NotifyReleaseFakeIP (.CGameNetworking_ReleaseFakeIP_Notification) returns (.NoResponse);
|
|
25
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import "steamnetworkingsockets_messages.proto";
|
|
2
|
+
import "steamdatagram_messages_sdr.proto";
|
|
3
|
+
|
|
4
|
+
option optimize_for = SPEED;
|
|
5
|
+
option cc_generic_services = true;
|
|
6
|
+
|
|
7
|
+
message CGameNetworkingUI_GlobalState {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
message CGameNetworkingUI_ConnectionState {
|
|
11
|
+
optional string connection_key = 1;
|
|
12
|
+
optional uint32 appid = 2;
|
|
13
|
+
optional fixed32 connection_id_local = 3;
|
|
14
|
+
optional string identity_local = 4;
|
|
15
|
+
optional string identity_remote = 5;
|
|
16
|
+
optional uint32 connection_state = 10;
|
|
17
|
+
optional uint32 start_time = 12;
|
|
18
|
+
optional uint32 close_time = 13;
|
|
19
|
+
optional uint32 close_reason = 14;
|
|
20
|
+
optional string close_message = 15;
|
|
21
|
+
optional string status_loc_token = 16;
|
|
22
|
+
optional uint32 transport_kind = 20;
|
|
23
|
+
optional string sdrpopid_local = 21;
|
|
24
|
+
optional string sdrpopid_remote = 22;
|
|
25
|
+
optional string address_remote = 23;
|
|
26
|
+
optional .CMsgSteamDatagramP2PRoutingSummary p2p_routing = 24;
|
|
27
|
+
optional uint32 ping_interior = 25;
|
|
28
|
+
optional uint32 ping_remote_front = 26;
|
|
29
|
+
optional uint32 ping_default_internet_route = 27;
|
|
30
|
+
optional .CMsgSteamDatagramConnectionQuality e2e_quality_local = 30;
|
|
31
|
+
optional .CMsgSteamDatagramConnectionQuality e2e_quality_remote = 31;
|
|
32
|
+
optional uint64 e2e_quality_remote_instantaneous_time = 32;
|
|
33
|
+
optional uint64 e2e_quality_remote_lifetime_time = 33;
|
|
34
|
+
optional .CMsgSteamDatagramConnectionQuality front_quality_local = 40;
|
|
35
|
+
optional .CMsgSteamDatagramConnectionQuality front_quality_remote = 41;
|
|
36
|
+
optional uint64 front_quality_remote_instantaneous_time = 42;
|
|
37
|
+
optional uint64 front_quality_remote_lifetime_time = 43;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
message CGameNetworkingUI_Message {
|
|
41
|
+
repeated .CGameNetworkingUI_ConnectionState connection_state = 1;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
message CGameNetworkingUI_ConnectionSummary {
|
|
45
|
+
optional uint32 transport_kind = 1;
|
|
46
|
+
optional uint32 connection_state = 8;
|
|
47
|
+
optional string sdrpop_local = 2;
|
|
48
|
+
optional string sdrpop_remote = 3;
|
|
49
|
+
optional uint32 ping_ms = 4;
|
|
50
|
+
optional float packet_loss = 5;
|
|
51
|
+
optional uint32 ping_default_internet_route = 6;
|
|
52
|
+
optional bool ip_was_shared = 7;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
message CGameNetworkingUI_AppSummary {
|
|
56
|
+
optional uint32 appid = 1;
|
|
57
|
+
optional bool ip_was_shared_with_friend = 10;
|
|
58
|
+
optional bool ip_was_shared_with_nonfriend = 11;
|
|
59
|
+
optional uint32 active_connections = 20;
|
|
60
|
+
optional .CGameNetworkingUI_ConnectionSummary main_cxn = 30;
|
|
61
|
+
}
|