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,66 @@
|
|
|
1
|
+
import "common_base.proto";
|
|
2
|
+
|
|
3
|
+
message CDailyDeal_CancelDailyDeal_Request {
|
|
4
|
+
optional fixed64 gid = 1;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
message CDailyDeal_CancelDailyDeal_Response {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
message CDailyDeal_CreateDailyDeal_Request {
|
|
11
|
+
optional .CDailyDealDetails daily_deal = 1;
|
|
12
|
+
optional uint32 partnerid = 2;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
message CDailyDeal_CreateDailyDeal_Response {
|
|
16
|
+
optional fixed64 gid = 1;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
message CDailyDeal_DeleteDailyDeal_Request {
|
|
20
|
+
optional fixed64 gid = 1;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
message CDailyDeal_DeleteDailyDeal_Response {
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
message CDailyDeal_GetDailyDealsForApps_Request {
|
|
27
|
+
repeated uint32 appids = 1;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
message CDailyDeal_GetDailyDealsForApps_Response {
|
|
31
|
+
repeated .CDailyDealDetails daily_deals = 1;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
message CDailyDeal_UpdateDailyDeal_Request {
|
|
35
|
+
optional .CDailyDealDetails daily_deal = 1;
|
|
36
|
+
optional fixed64 gid = 2;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
message CDailyDeal_UpdateDailyDeal_Response {
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
message CDailyDealDetails {
|
|
43
|
+
optional fixed64 gid = 1;
|
|
44
|
+
optional int32 store_item_type = 2 [(.description) = "enum"];
|
|
45
|
+
optional uint32 store_item_id = 3;
|
|
46
|
+
optional string store_item_name = 4;
|
|
47
|
+
optional uint32 discount_event_id = 5;
|
|
48
|
+
optional uint32 creator_id = 6;
|
|
49
|
+
optional uint32 rtime32_start_time = 7;
|
|
50
|
+
optional uint32 last_update_time = 8;
|
|
51
|
+
optional string template_json = 9;
|
|
52
|
+
optional string partner_jsondata = 10;
|
|
53
|
+
optional string internal_json = 11;
|
|
54
|
+
optional bool deleted = 12;
|
|
55
|
+
optional bool cancelled = 13;
|
|
56
|
+
optional uint32 rtime32_cancel_time = 14;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
service DailyDeal {
|
|
60
|
+
rpc CancelDailyDeal (.CDailyDeal_CancelDailyDeal_Request) returns (.CDailyDeal_CancelDailyDeal_Response);
|
|
61
|
+
rpc CreateDailyDeal (.CDailyDeal_CreateDailyDeal_Request) returns (.CDailyDeal_CreateDailyDeal_Response);
|
|
62
|
+
rpc DeleteDailyDeal (.CDailyDeal_DeleteDailyDeal_Request) returns (.CDailyDeal_DeleteDailyDeal_Response);
|
|
63
|
+
rpc GetDailyDealsForApps (.CDailyDeal_GetDailyDealsForApps_Request) returns (.CDailyDeal_GetDailyDealsForApps_Response);
|
|
64
|
+
rpc UpdateDailyDeal (.CDailyDeal_UpdateDailyDeal_Request) returns (.CDailyDeal_UpdateDailyDeal_Response);
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
|
|
2
|
+
message CEcon_Asset {
|
|
3
|
+
optional uint32 appid = 1;
|
|
4
|
+
optional uint64 contextid = 2;
|
|
5
|
+
optional uint64 assetid = 3;
|
|
6
|
+
optional uint64 classid = 4;
|
|
7
|
+
optional uint64 instanceid = 5;
|
|
8
|
+
optional uint32 currencyid = 6;
|
|
9
|
+
optional int64 amount = 7;
|
|
10
|
+
optional bool missing = 8;
|
|
11
|
+
optional int64 est_usd = 9;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
message CEcon_ClientGetItemShopOverlayAuthURL_Request {
|
|
15
|
+
optional string return_url = 1;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
message CEcon_ClientGetItemShopOverlayAuthURL_Response {
|
|
19
|
+
optional string url = 1;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
message CEcon_GetAssetClassInfo_Request {
|
|
23
|
+
optional string language = 1;
|
|
24
|
+
optional uint32 appid = 2;
|
|
25
|
+
repeated .CEcon_GetAssetClassInfo_Request_Class classes = 3;
|
|
26
|
+
optional bool high_pri = 4;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
message CEcon_GetAssetClassInfo_Request_Class {
|
|
30
|
+
optional uint64 classid = 1;
|
|
31
|
+
optional uint64 instanceid = 2;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
message CEcon_GetAssetClassInfo_Response {
|
|
35
|
+
repeated .CEconItem_Description descriptions = 1;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
message CEcon_GetInventoryItemsWithDescriptions_Request {
|
|
39
|
+
optional fixed64 steamid = 1;
|
|
40
|
+
optional uint32 appid = 2;
|
|
41
|
+
optional uint64 contextid = 3;
|
|
42
|
+
optional bool get_descriptions = 4;
|
|
43
|
+
optional string language = 5;
|
|
44
|
+
optional .CEcon_GetInventoryItemsWithDescriptions_Request_FilterOptions filters = 6;
|
|
45
|
+
optional uint64 start_assetid = 8;
|
|
46
|
+
optional int32 count = 9;
|
|
47
|
+
optional bool for_trade_offer_verification = 10;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
message CEcon_GetInventoryItemsWithDescriptions_Request_FilterOptions {
|
|
51
|
+
repeated uint64 assetids = 1;
|
|
52
|
+
repeated uint32 currencyids = 2;
|
|
53
|
+
optional bool tradable_only = 3;
|
|
54
|
+
optional bool marketable_only = 4;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
message CEcon_GetInventoryItemsWithDescriptions_Response {
|
|
58
|
+
repeated .CEcon_Asset assets = 1;
|
|
59
|
+
repeated .CEconItem_Description descriptions = 2;
|
|
60
|
+
repeated .CEcon_Asset missing_assets = 3;
|
|
61
|
+
optional bool more_items = 4;
|
|
62
|
+
optional uint64 last_assetid = 5;
|
|
63
|
+
optional uint32 total_inventory_count = 6;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
message CEcon_GetTradeOfferAccessToken_Request {
|
|
67
|
+
optional bool generate_new_token = 1;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
message CEcon_GetTradeOfferAccessToken_Response {
|
|
71
|
+
optional string trade_offer_access_token = 1;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
message CEconItem_Action {
|
|
75
|
+
optional string link = 1;
|
|
76
|
+
optional string name = 2;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
message CEconItem_Description {
|
|
80
|
+
optional int32 appid = 1;
|
|
81
|
+
optional uint64 classid = 2;
|
|
82
|
+
optional uint64 instanceid = 3;
|
|
83
|
+
optional bool currency = 4;
|
|
84
|
+
optional string background_color = 5;
|
|
85
|
+
optional string icon_url = 6;
|
|
86
|
+
optional string icon_url_large = 7;
|
|
87
|
+
repeated .CEconItem_DescriptionLine descriptions = 8;
|
|
88
|
+
optional bool tradable = 9;
|
|
89
|
+
repeated .CEconItem_Action actions = 10;
|
|
90
|
+
repeated .CEconItem_DescriptionLine owner_descriptions = 11;
|
|
91
|
+
repeated .CEconItem_Action owner_actions = 12;
|
|
92
|
+
repeated string fraudwarnings = 13;
|
|
93
|
+
optional string name = 14;
|
|
94
|
+
optional string name_color = 15;
|
|
95
|
+
optional string type = 16;
|
|
96
|
+
optional string market_name = 17;
|
|
97
|
+
optional string market_hash_name = 18;
|
|
98
|
+
optional string market_fee = 19;
|
|
99
|
+
optional .CEconItem_Description contained_item = 20;
|
|
100
|
+
repeated .CEconItem_Action market_actions = 21;
|
|
101
|
+
optional bool commodity = 22;
|
|
102
|
+
optional int32 market_tradable_restriction = 23;
|
|
103
|
+
optional int32 market_marketable_restriction = 24;
|
|
104
|
+
optional bool marketable = 25;
|
|
105
|
+
repeated .CEconItem_Tag tags = 26;
|
|
106
|
+
optional string item_expiration = 27;
|
|
107
|
+
optional int32 market_fee_app = 28;
|
|
108
|
+
optional string market_buy_country_restriction = 30;
|
|
109
|
+
optional string market_sell_country_restriction = 31;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
message CEconItem_DescriptionLine {
|
|
113
|
+
optional string type = 1;
|
|
114
|
+
optional string value = 2;
|
|
115
|
+
optional string color = 3;
|
|
116
|
+
optional string label = 4;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
message CEconItem_Tag {
|
|
120
|
+
optional uint32 appid = 1;
|
|
121
|
+
optional string category = 2;
|
|
122
|
+
optional string internal_name = 3;
|
|
123
|
+
optional string localized_category_name = 4;
|
|
124
|
+
optional string localized_tag_name = 5;
|
|
125
|
+
optional string color = 6;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
service Econ {
|
|
129
|
+
rpc ClientGetItemShopOverlayAuthURL (.CEcon_ClientGetItemShopOverlayAuthURL_Request) returns (.CEcon_ClientGetItemShopOverlayAuthURL_Response);
|
|
130
|
+
rpc GetAssetClassInfo (.CEcon_GetAssetClassInfo_Request) returns (.CEcon_GetAssetClassInfo_Response);
|
|
131
|
+
rpc GetInventoryItemsWithDescriptions (.CEcon_GetInventoryItemsWithDescriptions_Request) returns (.CEcon_GetInventoryItemsWithDescriptions_Response);
|
|
132
|
+
rpc GetTradeOfferAccessToken (.CEcon_GetTradeOfferAccessToken_Request) returns (.CEcon_GetTradeOfferAccessToken_Response);
|
|
133
|
+
}
|
|
134
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
|
|
2
|
+
message CEmbeddedClient_AuthorizeCurrentDevice_Request {
|
|
3
|
+
optional fixed64 steamid = 1;
|
|
4
|
+
optional uint32 appid = 2;
|
|
5
|
+
optional string device_info = 3;
|
|
6
|
+
optional uint32 deviceid = 4;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
message CEmbeddedClient_AuthorizeDevice_Response {
|
|
10
|
+
optional uint32 result = 1;
|
|
11
|
+
optional .CEmbeddedClient_Token token = 2;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
message CEmbeddedClient_Token {
|
|
15
|
+
optional fixed64 steamid = 1;
|
|
16
|
+
optional bytes client_token = 2;
|
|
17
|
+
optional uint32 expiry = 3;
|
|
18
|
+
optional uint32 deviceid = 4;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
service EmbeddedClient {
|
|
22
|
+
rpc AuthorizeCurrentDevice (.CEmbeddedClient_AuthorizeCurrentDevice_Request) returns (.CEmbeddedClient_AuthorizeDevice_Response);
|
|
23
|
+
}
|
|
24
|
+
|
|
@@ -0,0 +1,329 @@
|
|
|
1
|
+
import "common_base.proto";
|
|
2
|
+
|
|
3
|
+
message CFamilyGroups_CancelFamilyGroupInvite_Request {
|
|
4
|
+
optional uint64 family_groupid = 1;
|
|
5
|
+
optional fixed64 steamid_to_cancel = 2;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
message CFamilyGroups_CancelFamilyGroupInvite_Response {
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
message CFamilyGroups_ConfirmInviteToFamilyGroup_Request {
|
|
12
|
+
optional uint64 family_groupid = 1;
|
|
13
|
+
optional uint64 invite_id = 2;
|
|
14
|
+
optional uint64 nonce = 3;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
message CFamilyGroups_ConfirmInviteToFamilyGroup_Response {
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
message CFamilyGroups_ConfirmJoinFamilyGroup_Request {
|
|
21
|
+
optional uint64 family_groupid = 1;
|
|
22
|
+
optional uint64 invite_id = 2;
|
|
23
|
+
optional uint64 nonce = 3;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
message CFamilyGroups_ConfirmJoinFamilyGroup_Response {
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
message CFamilyGroups_CreateFamilyGroup_Request {
|
|
30
|
+
optional string name = 1;
|
|
31
|
+
optional fixed64 steamid = 2;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
message CFamilyGroups_CreateFamilyGroup_Response {
|
|
35
|
+
optional uint64 family_groupid = 1;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
message CFamilyGroups_DeleteFamilyGroup_Request {
|
|
39
|
+
optional uint64 family_groupid = 1;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
message CFamilyGroups_DeleteFamilyGroup_Response {
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
message CFamilyGroups_GetChangeLog_Request {
|
|
46
|
+
optional uint64 family_groupid = 1;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
message CFamilyGroups_GetChangeLog_Response {
|
|
50
|
+
repeated .CFamilyGroups_GetChangeLog_Response_Change changes = 1;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
message CFamilyGroups_GetChangeLog_Response_Change {
|
|
54
|
+
optional fixed64 timestamp = 1;
|
|
55
|
+
optional fixed64 actor_steamid = 2;
|
|
56
|
+
optional int32 type = 3 [(.description) = "enum"];
|
|
57
|
+
optional string body = 4;
|
|
58
|
+
optional bool by_support = 5;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
message CFamilyGroups_GetFamilyGroup_Request {
|
|
62
|
+
optional uint64 family_groupid = 1;
|
|
63
|
+
optional bool send_running_apps = 2;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
message CFamilyGroups_GetFamilyGroup_Response {
|
|
67
|
+
optional string name = 1;
|
|
68
|
+
repeated .FamilyGroupMember members = 2;
|
|
69
|
+
repeated .FamilyGroupPendingInvite pending_invites = 3;
|
|
70
|
+
optional uint32 free_spots = 4;
|
|
71
|
+
optional string country = 5;
|
|
72
|
+
optional uint32 slot_cooldown_remaining_seconds = 6;
|
|
73
|
+
repeated .FamilyGroupFormerMember former_members = 7;
|
|
74
|
+
optional uint32 slot_cooldown_overrides = 8;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
message CFamilyGroups_GetFamilyGroupForUser_Request {
|
|
78
|
+
optional uint64 steamid = 1;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
message CFamilyGroups_GetFamilyGroupForUser_Response {
|
|
82
|
+
optional uint64 family_groupid = 1;
|
|
83
|
+
optional bool is_not_member_of_any_group = 2;
|
|
84
|
+
optional uint32 latest_time_joined = 3;
|
|
85
|
+
optional uint64 latest_joined_family_groupid = 4;
|
|
86
|
+
repeated .FamilyGroupPendingInviteForUser pending_group_invites = 5;
|
|
87
|
+
optional uint32 role = 6;
|
|
88
|
+
optional uint32 cooldown_seconds_remaining = 7;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
message CFamilyGroups_GetPlaytimeSummary_Request {
|
|
92
|
+
optional fixed64 family_groupid = 1;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
message CFamilyGroups_GetPlaytimeSummary_Response {
|
|
96
|
+
repeated .CFamilyGroups_PlaytimeEntry entries = 1;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
message CFamilyGroups_GetPreferredLenders_Request {
|
|
100
|
+
optional uint64 family_groupid = 1;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
message CFamilyGroups_GetPreferredLenders_Response {
|
|
104
|
+
repeated .CFamilyGroups_GetPreferredLenders_Response_FamilyMember members = 1;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
message CFamilyGroups_GetPreferredLenders_Response_FamilyMember {
|
|
108
|
+
optional fixed64 steamid = 1;
|
|
109
|
+
repeated uint32 preferred_appids = 2;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
message CFamilyGroups_GetPurchaseRequests_Request {
|
|
113
|
+
optional uint64 family_groupid = 1;
|
|
114
|
+
optional bool include_completed = 2;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
message CFamilyGroups_GetPurchaseRequests_Response {
|
|
118
|
+
repeated .PurchaseRequest requests = 1;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
message CFamilyGroups_GetSharedLibraryApps_Request {
|
|
122
|
+
optional fixed64 family_groupid = 1;
|
|
123
|
+
optional bool include_own = 2;
|
|
124
|
+
optional bool include_excluded = 3;
|
|
125
|
+
optional string language = 5;
|
|
126
|
+
optional uint32 max_apps = 6;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
message CFamilyGroups_GetSharedLibraryApps_Response {
|
|
130
|
+
repeated .CFamilyGroups_GetSharedLibraryApps_Response_SharedApp apps = 1;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
message CFamilyGroups_GetSharedLibraryApps_Response_SharedApp {
|
|
134
|
+
optional uint32 appid = 1;
|
|
135
|
+
repeated fixed64 owner_steamids = 2;
|
|
136
|
+
optional string name = 6;
|
|
137
|
+
optional string sort_as = 7;
|
|
138
|
+
optional string capsule_filename = 8;
|
|
139
|
+
optional string img_icon_url = 9;
|
|
140
|
+
optional int32 exclude_reason = 10 [default = 0, (.description) = "enum"];
|
|
141
|
+
optional uint32 rt_time_acquired = 11;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
message CFamilyGroups_GetUsersSharingDevice_Request {
|
|
145
|
+
optional uint64 family_groupid = 1;
|
|
146
|
+
optional uint64 client_instance_id = 2;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
message CFamilyGroups_GetUsersSharingDevice_Response {
|
|
150
|
+
repeated fixed64 users = 1;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
message CFamilyGroups_InviteToFamilyGroup_Request {
|
|
154
|
+
optional uint64 family_groupid = 1;
|
|
155
|
+
optional fixed64 receiver_steamid = 2;
|
|
156
|
+
optional int32 receiver_role = 3 [(.description) = "enum"];
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
message CFamilyGroups_InviteToFamilyGroup_Response {
|
|
160
|
+
optional uint64 invite_id = 1;
|
|
161
|
+
optional int32 two_factor_method = 2 [(.description) = "enum"];
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
message CFamilyGroups_JoinFamilyGroup_Request {
|
|
165
|
+
optional uint64 family_groupid = 1;
|
|
166
|
+
optional uint64 nonce = 2;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
message CFamilyGroups_JoinFamilyGroup_Response {
|
|
170
|
+
optional int32 two_factor_method = 2 [(.description) = "enum"];
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
message CFamilyGroups_ModifyFamilyGroupDetails_Request {
|
|
174
|
+
optional uint64 family_groupid = 1;
|
|
175
|
+
optional string name = 2;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
message CFamilyGroups_ModifyFamilyGroupDetails_Response {
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
message CFamilyGroups_PlaytimeEntry {
|
|
182
|
+
optional fixed64 steamid = 1;
|
|
183
|
+
optional uint32 appid = 2;
|
|
184
|
+
optional uint32 first_played = 3;
|
|
185
|
+
optional uint32 latest_played = 4;
|
|
186
|
+
optional uint32 seconds_played = 5;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
message CFamilyGroups_RemoveFromFamilyGroup_Request {
|
|
190
|
+
optional uint64 family_groupid = 1;
|
|
191
|
+
optional fixed64 steamid_to_remove = 2;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
message CFamilyGroups_RemoveFromFamilyGroup_Response {
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
message CFamilyGroups_RequestPurchase_Request {
|
|
198
|
+
optional uint64 family_groupid = 1;
|
|
199
|
+
optional uint64 gidshoppingcart = 2;
|
|
200
|
+
optional string store_country_code = 3;
|
|
201
|
+
optional bool use_account_cart = 4;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
message CFamilyGroups_RequestPurchase_Response {
|
|
205
|
+
optional uint64 gidshoppingcart = 1;
|
|
206
|
+
optional uint64 request_id = 2;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
message CFamilyGroups_ResendInvitationToFamilyGroup_Request {
|
|
210
|
+
optional uint64 family_groupid = 1;
|
|
211
|
+
optional uint64 steamid = 2;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
message CFamilyGroups_ResendInvitationToFamilyGroup_Response {
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
message CFamilyGroups_RespondToRequestedPurchase_Request {
|
|
218
|
+
optional uint64 family_groupid = 1;
|
|
219
|
+
optional fixed64 purchase_requester_steamid = 2;
|
|
220
|
+
optional int32 action = 3 [(.description) = "enum"];
|
|
221
|
+
optional uint64 request_id = 4;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
message CFamilyGroups_RespondToRequestedPurchase_Response {
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
message CFamilyGroups_SetFamilyCooldownOverrides_Request {
|
|
228
|
+
optional uint64 family_groupid = 1;
|
|
229
|
+
optional uint32 cooldown_count = 2;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
message CFamilyGroups_SetFamilyCooldownOverrides_Response {
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
message CFamilyGroups_SetPreferredLender_Request {
|
|
236
|
+
optional uint64 family_groupid = 1;
|
|
237
|
+
optional uint32 appid = 2;
|
|
238
|
+
optional fixed64 lender_steamid = 3;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
message CFamilyGroups_SetPreferredLender_Response {
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
message CFamilyGroupsClient_GroupChanged_Notification {
|
|
245
|
+
optional uint64 family_groupid = 1;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
message CFamilyGroupsClient_InviteStatus_Notification {
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
message CFamilyGroupsClient_NotifyRunningApps_Notification {
|
|
252
|
+
optional uint64 family_groupid = 1;
|
|
253
|
+
repeated .CFamilyGroupsClient_NotifyRunningApps_Notification_RunningApp running_apps = 2;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
message CFamilyGroupsClient_NotifyRunningApps_Notification_PlayingMember {
|
|
257
|
+
optional fixed64 member_steamid = 1;
|
|
258
|
+
optional fixed64 owner_steamid = 2;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
message CFamilyGroupsClient_NotifyRunningApps_Notification_RunningApp {
|
|
262
|
+
optional uint32 appid = 1;
|
|
263
|
+
optional bool is_locked = 2;
|
|
264
|
+
repeated .CFamilyGroupsClient_NotifyRunningApps_Notification_PlayingMember playing_members = 3;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
message FamilyGroupFormerMember {
|
|
268
|
+
optional fixed64 steamid = 1;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
message FamilyGroupMember {
|
|
272
|
+
optional fixed64 steamid = 1;
|
|
273
|
+
optional int32 role = 2 [(.description) = "enum"];
|
|
274
|
+
optional uint32 time_joined = 3;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
message FamilyGroupPendingInvite {
|
|
278
|
+
optional fixed64 steamid = 1;
|
|
279
|
+
optional int32 role = 2 [(.description) = "enum"];
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
message FamilyGroupPendingInviteForUser {
|
|
283
|
+
optional uint64 family_groupid = 1;
|
|
284
|
+
optional int32 role = 2 [(.description) = "enum"];
|
|
285
|
+
optional fixed64 inviter_steamid = 3;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
message PurchaseRequest {
|
|
289
|
+
optional fixed64 requester_steamid = 1;
|
|
290
|
+
optional uint64 gidshoppingcart = 2;
|
|
291
|
+
optional uint32 time_requested = 3;
|
|
292
|
+
optional uint32 time_responded = 4;
|
|
293
|
+
optional fixed64 responder_steamid = 5;
|
|
294
|
+
optional int32 response_action = 6 [(.description) = "enum"];
|
|
295
|
+
optional bool is_completed = 7;
|
|
296
|
+
optional uint64 request_id = 8;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
service FamilyGroups {
|
|
300
|
+
rpc CancelFamilyGroupInvite (.CFamilyGroups_CancelFamilyGroupInvite_Request) returns (.CFamilyGroups_CancelFamilyGroupInvite_Response);
|
|
301
|
+
rpc ConfirmInviteToFamilyGroup (.CFamilyGroups_ConfirmInviteToFamilyGroup_Request) returns (.CFamilyGroups_ConfirmInviteToFamilyGroup_Response);
|
|
302
|
+
rpc ConfirmJoinFamilyGroup (.CFamilyGroups_ConfirmJoinFamilyGroup_Request) returns (.CFamilyGroups_ConfirmJoinFamilyGroup_Response);
|
|
303
|
+
rpc CreateFamilyGroup (.CFamilyGroups_CreateFamilyGroup_Request) returns (.CFamilyGroups_CreateFamilyGroup_Response);
|
|
304
|
+
rpc DeleteFamilyGroup (.CFamilyGroups_DeleteFamilyGroup_Request) returns (.CFamilyGroups_DeleteFamilyGroup_Response);
|
|
305
|
+
rpc GetChangeLog (.CFamilyGroups_GetChangeLog_Request) returns (.CFamilyGroups_GetChangeLog_Response);
|
|
306
|
+
rpc GetFamilyGroup (.CFamilyGroups_GetFamilyGroup_Request) returns (.CFamilyGroups_GetFamilyGroup_Response);
|
|
307
|
+
rpc GetFamilyGroupForUser (.CFamilyGroups_GetFamilyGroupForUser_Request) returns (.CFamilyGroups_GetFamilyGroupForUser_Response);
|
|
308
|
+
rpc GetPlaytimeSummary (.CFamilyGroups_GetPlaytimeSummary_Request) returns (.CFamilyGroups_GetPlaytimeSummary_Response);
|
|
309
|
+
rpc GetPreferredLenders (.CFamilyGroups_GetPreferredLenders_Request) returns (.CFamilyGroups_GetPreferredLenders_Response);
|
|
310
|
+
rpc GetPurchaseRequests (.CFamilyGroups_GetPurchaseRequests_Request) returns (.CFamilyGroups_GetPurchaseRequests_Response);
|
|
311
|
+
rpc GetSharedLibraryApps (.CFamilyGroups_GetSharedLibraryApps_Request) returns (.CFamilyGroups_GetSharedLibraryApps_Response);
|
|
312
|
+
rpc GetUsersSharingDevice (.CFamilyGroups_GetUsersSharingDevice_Request) returns (.CFamilyGroups_GetUsersSharingDevice_Response);
|
|
313
|
+
rpc InviteToFamilyGroup (.CFamilyGroups_InviteToFamilyGroup_Request) returns (.CFamilyGroups_InviteToFamilyGroup_Response);
|
|
314
|
+
rpc JoinFamilyGroup (.CFamilyGroups_JoinFamilyGroup_Request) returns (.CFamilyGroups_JoinFamilyGroup_Response);
|
|
315
|
+
rpc ModifyFamilyGroupDetails (.CFamilyGroups_ModifyFamilyGroupDetails_Request) returns (.CFamilyGroups_ModifyFamilyGroupDetails_Response);
|
|
316
|
+
rpc RemoveFromFamilyGroup (.CFamilyGroups_RemoveFromFamilyGroup_Request) returns (.CFamilyGroups_RemoveFromFamilyGroup_Response);
|
|
317
|
+
rpc RequestPurchase (.CFamilyGroups_RequestPurchase_Request) returns (.CFamilyGroups_RequestPurchase_Response);
|
|
318
|
+
rpc ResendInvitationToFamilyGroup (.CFamilyGroups_ResendInvitationToFamilyGroup_Request) returns (.CFamilyGroups_ResendInvitationToFamilyGroup_Response);
|
|
319
|
+
rpc RespondToRequestedPurchase (.CFamilyGroups_RespondToRequestedPurchase_Request) returns (.CFamilyGroups_RespondToRequestedPurchase_Response);
|
|
320
|
+
rpc SetFamilyCooldownOverrides (.CFamilyGroups_SetFamilyCooldownOverrides_Request) returns (.CFamilyGroups_SetFamilyCooldownOverrides_Response);
|
|
321
|
+
rpc SetPreferredLender (.CFamilyGroups_SetPreferredLender_Request) returns (.CFamilyGroups_SetPreferredLender_Response);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
service FamilyGroupsClient {
|
|
325
|
+
rpc NotifyGroupChanged (.CFamilyGroupsClient_GroupChanged_Notification) returns (.NoResponse);
|
|
326
|
+
rpc NotifyInviteStatus (.CFamilyGroupsClient_InviteStatus_Notification) returns (.NoResponse);
|
|
327
|
+
rpc NotifyRunningApps (.CFamilyGroupsClient_NotifyRunningApps_Notification) returns (.NoResponse);
|
|
328
|
+
}
|
|
329
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
message CFovasVideo_ClientGetOPFSettings_Request {
|
|
3
|
+
optional uint32 app_id = 1;
|
|
4
|
+
optional uint32 client_cellid = 2;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
message CFovasVideo_ClientGetOPFSettings_Response {
|
|
8
|
+
optional uint32 app_id = 1;
|
|
9
|
+
optional string opf_settings = 2;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
service FovasVideo {
|
|
13
|
+
rpc ClientGetOPFSettings (.CFovasVideo_ClientGetOPFSettings_Request) returns (.CFovasVideo_ClientGetOPFSettings_Response);
|
|
14
|
+
}
|
|
15
|
+
|