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,131 @@
|
|
|
1
|
+
import "steammessages_base.proto";
|
|
2
|
+
import "steammessages_unified_base.steamclient.proto";
|
|
3
|
+
|
|
4
|
+
option cc_generic_services = true;
|
|
5
|
+
|
|
6
|
+
message CGameNotifications_Variable {
|
|
7
|
+
optional string key = 1;
|
|
8
|
+
optional string value = 2;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
message CGameNotifications_LocalizedText {
|
|
12
|
+
optional string token = 1;
|
|
13
|
+
repeated .CGameNotifications_Variable variables = 2;
|
|
14
|
+
optional string rendered_text = 3;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
message CGameNotifications_UserStatus {
|
|
18
|
+
optional fixed64 steamid = 1;
|
|
19
|
+
optional string state = 2;
|
|
20
|
+
optional .CGameNotifications_LocalizedText title = 3;
|
|
21
|
+
optional .CGameNotifications_LocalizedText message = 4;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
message CGameNotifications_CreateSession_Request {
|
|
25
|
+
optional uint32 appid = 1;
|
|
26
|
+
optional uint64 context = 2;
|
|
27
|
+
optional .CGameNotifications_LocalizedText title = 3;
|
|
28
|
+
repeated .CGameNotifications_UserStatus users = 4;
|
|
29
|
+
optional fixed64 steamid = 5;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
message CGameNotifications_CreateSession_Response {
|
|
33
|
+
optional uint64 sessionid = 1;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
message CGameNotifications_DeleteSession_Request {
|
|
37
|
+
optional uint64 sessionid = 1;
|
|
38
|
+
optional uint32 appid = 2;
|
|
39
|
+
optional fixed64 steamid = 3;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
message CGameNotifications_DeleteSession_Response {
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
message CGameNotifications_UpdateSession_Request {
|
|
46
|
+
optional uint64 sessionid = 1;
|
|
47
|
+
optional uint32 appid = 2;
|
|
48
|
+
optional .CGameNotifications_LocalizedText title = 3;
|
|
49
|
+
repeated .CGameNotifications_UserStatus users = 4;
|
|
50
|
+
optional fixed64 steamid = 6;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
message CGameNotifications_UpdateSession_Response {
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
message CGameNotifications_EnumerateSessions_Request {
|
|
57
|
+
optional uint32 appid = 1;
|
|
58
|
+
optional bool include_all_user_messages = 3;
|
|
59
|
+
optional bool include_auth_user_message = 4;
|
|
60
|
+
optional string language = 5;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
message CGameNotifications_Session {
|
|
64
|
+
optional uint64 sessionid = 1;
|
|
65
|
+
optional uint64 appid = 2;
|
|
66
|
+
optional uint64 context = 3;
|
|
67
|
+
optional .CGameNotifications_LocalizedText title = 4;
|
|
68
|
+
optional uint32 time_created = 5;
|
|
69
|
+
optional uint32 time_updated = 6;
|
|
70
|
+
repeated .CGameNotifications_UserStatus user_status = 7;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
message CGameNotifications_EnumerateSessions_Response {
|
|
74
|
+
repeated .CGameNotifications_Session sessions = 1;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
message CGameNotifications_GetSessionDetails_Request {
|
|
78
|
+
message RequestedSession {
|
|
79
|
+
optional uint64 sessionid = 1;
|
|
80
|
+
optional bool include_auth_user_message = 3;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
repeated .CGameNotifications_GetSessionDetails_Request.RequestedSession sessions = 1;
|
|
84
|
+
optional uint32 appid = 2;
|
|
85
|
+
optional string language = 3;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
message CGameNotifications_GetSessionDetails_Response {
|
|
89
|
+
repeated .CGameNotifications_Session sessions = 1;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
message GameNotificationSettings {
|
|
93
|
+
optional uint32 appid = 1;
|
|
94
|
+
optional bool allow_notifications = 2;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
message CGameNotifications_UpdateNotificationSettings_Request {
|
|
98
|
+
repeated .GameNotificationSettings game_notification_settings = 1;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
message CGameNotifications_UpdateNotificationSettings_Response {
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
message CGameNotifications_OnNotificationsRequested_Notification {
|
|
105
|
+
optional fixed64 steamid = 1;
|
|
106
|
+
optional uint32 appid = 2;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
message CGameNotifications_OnUserStatusChanged_Notification {
|
|
110
|
+
optional fixed64 steamid = 1;
|
|
111
|
+
optional uint64 sessionid = 2;
|
|
112
|
+
optional uint32 appid = 3;
|
|
113
|
+
optional .CGameNotifications_UserStatus status = 4;
|
|
114
|
+
optional bool removed = 5;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
service GameNotifications {
|
|
118
|
+
rpc UserCreateSession (.CGameNotifications_CreateSession_Request) returns (.CGameNotifications_CreateSession_Response);
|
|
119
|
+
rpc UserDeleteSession (.CGameNotifications_DeleteSession_Request) returns (.CGameNotifications_DeleteSession_Response);
|
|
120
|
+
rpc UserUpdateSession (.CGameNotifications_UpdateSession_Request) returns (.CGameNotifications_UpdateSession_Response);
|
|
121
|
+
rpc EnumerateSessions (.CGameNotifications_EnumerateSessions_Request) returns (.CGameNotifications_EnumerateSessions_Response);
|
|
122
|
+
rpc GetSessionDetails (.CGameNotifications_GetSessionDetails_Request) returns (.CGameNotifications_GetSessionDetails_Response);
|
|
123
|
+
rpc UpdateNotificationSettings (.CGameNotifications_UpdateNotificationSettings_Request) returns (.CGameNotifications_UpdateNotificationSettings_Response);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
service GameNotificationsClient {
|
|
127
|
+
option (service_execution_site) = k_EProtoExecutionSiteSteamClient;
|
|
128
|
+
|
|
129
|
+
rpc OnNotificationsRequested (.CGameNotifications_OnNotificationsRequested_Notification) returns (.NoResponse);
|
|
130
|
+
rpc OnUserStatusChanged (.CGameNotifications_OnUserStatusChanged_Notification) returns (.NoResponse);
|
|
131
|
+
}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import "steammessages_base.proto";
|
|
2
|
+
import "steammessages_unified_base.steamclient.proto";
|
|
3
|
+
|
|
4
|
+
option cc_generic_services = true;
|
|
5
|
+
|
|
6
|
+
message CGameServers_GetServerList_Request {
|
|
7
|
+
optional string filter = 1;
|
|
8
|
+
optional uint32 limit = 2 [default = 100];
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
message CGameServers_GetServerList_Response {
|
|
12
|
+
message Server {
|
|
13
|
+
optional string addr = 1;
|
|
14
|
+
optional uint32 gameport = 2;
|
|
15
|
+
optional uint32 specport = 3;
|
|
16
|
+
optional fixed64 steamid = 4;
|
|
17
|
+
optional string name = 5;
|
|
18
|
+
optional uint32 appid = 6;
|
|
19
|
+
optional string gamedir = 7;
|
|
20
|
+
optional string version = 8;
|
|
21
|
+
optional string product = 9;
|
|
22
|
+
optional int32 region = 10;
|
|
23
|
+
optional int32 players = 11;
|
|
24
|
+
optional int32 max_players = 12;
|
|
25
|
+
optional int32 bots = 13;
|
|
26
|
+
optional string map = 14;
|
|
27
|
+
optional bool secure = 15;
|
|
28
|
+
optional bool dedicated = 16;
|
|
29
|
+
optional string os = 17;
|
|
30
|
+
optional string gametype = 18;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
repeated .CGameServers_GetServerList_Response.Server servers = 1;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
message CGameServers_GetServerSteamIDsByIP_Request {
|
|
37
|
+
repeated string server_ips = 1;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
message CGameServers_IPsWithSteamIDs_Response {
|
|
41
|
+
message Server {
|
|
42
|
+
optional string addr = 1;
|
|
43
|
+
optional fixed64 steamid = 2;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
repeated .CGameServers_IPsWithSteamIDs_Response.Server servers = 1;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
message CGameServers_GetServerIPsBySteamID_Request {
|
|
50
|
+
repeated fixed64 server_steamids = 1;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
message CGameServers_QueryByFakeIP_Request {
|
|
54
|
+
enum EQueryType {
|
|
55
|
+
Query_Invalid = 0;
|
|
56
|
+
Query_Ping = 1;
|
|
57
|
+
Query_Players = 2;
|
|
58
|
+
Query_Rules = 3;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
optional uint32 fake_ip = 1;
|
|
62
|
+
optional uint32 fake_port = 2;
|
|
63
|
+
optional uint32 app_id = 3;
|
|
64
|
+
optional .CGameServers_QueryByFakeIP_Request.EQueryType query_type = 4 [default = Query_Invalid];
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
message CMsgGameServerPingQueryData {
|
|
68
|
+
optional .CMsgIPAddress server_ip = 1;
|
|
69
|
+
optional uint32 query_port = 2;
|
|
70
|
+
optional uint32 game_port = 3;
|
|
71
|
+
optional uint32 spectator_port = 4;
|
|
72
|
+
optional string spectator_server_name = 5;
|
|
73
|
+
optional string server_name = 6;
|
|
74
|
+
optional fixed64 steamid = 7;
|
|
75
|
+
optional uint32 app_id = 8;
|
|
76
|
+
optional string gamedir = 9;
|
|
77
|
+
optional string map = 10;
|
|
78
|
+
optional string game_description = 11;
|
|
79
|
+
optional string gametype = 12;
|
|
80
|
+
optional uint32 num_players = 13;
|
|
81
|
+
optional uint32 max_players = 14;
|
|
82
|
+
optional uint32 num_bots = 15;
|
|
83
|
+
optional bool password = 16;
|
|
84
|
+
optional bool secure = 17;
|
|
85
|
+
optional bool dedicated = 18;
|
|
86
|
+
optional string version = 19;
|
|
87
|
+
optional fixed32 sdr_popid = 20;
|
|
88
|
+
optional string sdr_location_string = 21;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
message CMsgGameServerPlayersQueryData {
|
|
92
|
+
message Player {
|
|
93
|
+
optional string name = 1;
|
|
94
|
+
optional uint32 score = 2;
|
|
95
|
+
optional uint32 time_played = 3;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
repeated .CMsgGameServerPlayersQueryData.Player players = 1;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
message CMsgGameServerRulesQueryData {
|
|
102
|
+
message Rule {
|
|
103
|
+
optional string rule = 1;
|
|
104
|
+
optional string value = 2;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
repeated .CMsgGameServerRulesQueryData.Rule rules = 1;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
message CGameServers_GameServerQuery_Response {
|
|
111
|
+
optional .CMsgGameServerPingQueryData ping_data = 1;
|
|
112
|
+
optional .CMsgGameServerPlayersQueryData players_data = 2;
|
|
113
|
+
optional .CMsgGameServerRulesQueryData rules_data = 3;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
message GameServerClient_QueryServerData_Request {
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
message GameServerClient_QueryServerData_Response {
|
|
120
|
+
optional .CMsgGameServerPingQueryData ping_data = 1;
|
|
121
|
+
optional .CMsgGameServerPlayersQueryData players_data = 2;
|
|
122
|
+
optional .CMsgGameServerRulesQueryData rules_data = 3;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
service GameServers {
|
|
126
|
+
rpc GetServerList (.CGameServers_GetServerList_Request) returns (.CGameServers_GetServerList_Response);
|
|
127
|
+
rpc GetServerSteamIDsByIP (.CGameServers_GetServerSteamIDsByIP_Request) returns (.CGameServers_IPsWithSteamIDs_Response);
|
|
128
|
+
rpc GetServerIPsBySteamID (.CGameServers_GetServerIPsBySteamID_Request) returns (.CGameServers_IPsWithSteamIDs_Response);
|
|
129
|
+
rpc QueryByFakeIP (.CGameServers_QueryByFakeIP_Request) returns (.CGameServers_GameServerQuery_Response);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
service GameServerClient {
|
|
133
|
+
option (service_execution_site) = k_EProtoExecutionSiteSteamClient;
|
|
134
|
+
|
|
135
|
+
rpc QueryServerData (.GameServerClient_QueryServerData_Request) returns (.GameServerClient_QueryServerData_Response);
|
|
136
|
+
}
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
option optimize_for = SPEED;
|
|
2
|
+
option cc_generic_services = false;
|
|
3
|
+
|
|
4
|
+
enum EHIDDeviceLocation {
|
|
5
|
+
k_EDeviceLocationLocal = 0;
|
|
6
|
+
k_EDeviceLocationRemote = 2;
|
|
7
|
+
k_EDeviceLocationAny = 3;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
enum EHIDDeviceDisconnectMethod {
|
|
11
|
+
k_EDeviceDisconnectMethodUnknown = 0;
|
|
12
|
+
k_EDeviceDisconnectMethodBluetooth = 1;
|
|
13
|
+
k_EDeviceDisconnectMethodFeatureReport = 2;
|
|
14
|
+
k_EDeviceDisconnectMethodOutputReport = 3;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
message CHIDDeviceInfo {
|
|
18
|
+
optional .EHIDDeviceLocation location = 1 [default = k_EDeviceLocationLocal];
|
|
19
|
+
optional string path = 2;
|
|
20
|
+
optional uint32 vendor_id = 3;
|
|
21
|
+
optional uint32 product_id = 4;
|
|
22
|
+
optional string serial_number = 5;
|
|
23
|
+
optional uint32 release_number = 6;
|
|
24
|
+
optional string manufacturer_string = 7;
|
|
25
|
+
optional string product_string = 8;
|
|
26
|
+
optional uint32 usage_page = 9;
|
|
27
|
+
optional uint32 usage = 10;
|
|
28
|
+
optional int32 interface_number = 11 [default = -1];
|
|
29
|
+
optional int32 ostype = 12 [default = -1];
|
|
30
|
+
optional bool is_generic_gamepad = 13;
|
|
31
|
+
optional bool is_generic_joystick = 14;
|
|
32
|
+
optional uint32 caps_bits = 15;
|
|
33
|
+
optional uint32 session_id = 16;
|
|
34
|
+
optional uint32 eControllerType_OBSOLETE = 17 [default = 0];
|
|
35
|
+
optional bool is_xinput_device_OBSOLETE = 18 [default = false];
|
|
36
|
+
optional uint32 session_remote_play_together_appid = 19;
|
|
37
|
+
optional bool is_steamvr_device = 20 [default = false];
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
message CHIDDeviceInputReport {
|
|
41
|
+
optional bytes full_report = 1;
|
|
42
|
+
optional bytes delta_report = 2;
|
|
43
|
+
optional uint32 delta_report_size = 3;
|
|
44
|
+
optional uint32 delta_report_crc = 4;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
message CHIDMessageToRemote {
|
|
48
|
+
message DeviceOpen {
|
|
49
|
+
optional .CHIDDeviceInfo info = 1;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
message DeviceClose {
|
|
53
|
+
optional uint32 device = 1;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
message DeviceWrite {
|
|
57
|
+
optional uint32 device = 1;
|
|
58
|
+
optional bytes data = 2;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
message DeviceRead {
|
|
62
|
+
optional uint32 device = 1;
|
|
63
|
+
optional uint32 length = 2;
|
|
64
|
+
optional int32 timeout_ms = 3;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
message DeviceSendFeatureReport {
|
|
68
|
+
optional uint32 device = 1;
|
|
69
|
+
optional bytes data = 2;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
message DeviceGetFeatureReport {
|
|
73
|
+
optional uint32 device = 1;
|
|
74
|
+
optional bytes report_number = 2;
|
|
75
|
+
optional uint32 length = 3;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
message DeviceGetVendorString {
|
|
79
|
+
optional uint32 device = 1;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
message DeviceGetProductString {
|
|
83
|
+
optional uint32 device = 1;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
message DeviceGetSerialNumberString {
|
|
87
|
+
optional uint32 device = 1;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
message DeviceStartInputReports {
|
|
91
|
+
optional uint32 device = 1;
|
|
92
|
+
optional uint32 length = 2;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
message DeviceRequestFullReport {
|
|
96
|
+
optional uint32 device = 1;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
message DeviceDisconnect {
|
|
100
|
+
optional uint32 device = 1;
|
|
101
|
+
optional .EHIDDeviceDisconnectMethod disconnectMethod = 2 [default = k_EDeviceDisconnectMethodUnknown];
|
|
102
|
+
optional bytes data = 3;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
optional uint32 request_id = 1;
|
|
106
|
+
|
|
107
|
+
oneof command {
|
|
108
|
+
.CHIDMessageToRemote.DeviceOpen device_open = 2;
|
|
109
|
+
.CHIDMessageToRemote.DeviceClose device_close = 3;
|
|
110
|
+
.CHIDMessageToRemote.DeviceWrite device_write = 4;
|
|
111
|
+
.CHIDMessageToRemote.DeviceRead device_read = 5;
|
|
112
|
+
.CHIDMessageToRemote.DeviceSendFeatureReport device_send_feature_report = 6;
|
|
113
|
+
.CHIDMessageToRemote.DeviceGetFeatureReport device_get_feature_report = 7;
|
|
114
|
+
.CHIDMessageToRemote.DeviceGetVendorString device_get_vendor_string = 8;
|
|
115
|
+
.CHIDMessageToRemote.DeviceGetProductString device_get_product_string = 9;
|
|
116
|
+
.CHIDMessageToRemote.DeviceGetSerialNumberString device_get_serial_number_string = 10;
|
|
117
|
+
.CHIDMessageToRemote.DeviceStartInputReports device_start_input_reports = 11;
|
|
118
|
+
.CHIDMessageToRemote.DeviceRequestFullReport device_request_full_report = 12;
|
|
119
|
+
.CHIDMessageToRemote.DeviceDisconnect device_disconnect = 13;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
message CHIDMessageFromRemote {
|
|
124
|
+
message UpdateDeviceList {
|
|
125
|
+
repeated .CHIDDeviceInfo devices = 1;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
message RequestResponse {
|
|
129
|
+
optional uint32 request_id = 1;
|
|
130
|
+
optional int32 result = 2;
|
|
131
|
+
optional bytes data = 3;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
message DeviceInputReports {
|
|
135
|
+
message DeviceInputReport {
|
|
136
|
+
optional uint32 device = 1;
|
|
137
|
+
repeated .CHIDDeviceInputReport reports = 2;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
repeated .CHIDMessageFromRemote.DeviceInputReports.DeviceInputReport device_reports = 1;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
message CloseDevice {
|
|
144
|
+
optional uint32 device = 1;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
message CloseAllDevices {
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
oneof command {
|
|
151
|
+
.CHIDMessageFromRemote.UpdateDeviceList update_device_list = 1;
|
|
152
|
+
.CHIDMessageFromRemote.RequestResponse response = 2;
|
|
153
|
+
.CHIDMessageFromRemote.DeviceInputReports reports = 3;
|
|
154
|
+
.CHIDMessageFromRemote.CloseDevice close_device = 4;
|
|
155
|
+
.CHIDMessageFromRemote.CloseAllDevices close_all_devices = 5;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
import "steammessages_base.proto";
|
|
2
|
+
import "steammessages_unified_base.steamclient.proto";
|
|
3
|
+
|
|
4
|
+
option cc_generic_services = true;
|
|
5
|
+
|
|
6
|
+
message CInventory_GetInventory_Request {
|
|
7
|
+
optional uint32 appid = 1;
|
|
8
|
+
optional uint64 steamid = 2;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
message CInventory_Response {
|
|
12
|
+
optional string etag = 1;
|
|
13
|
+
repeated uint64 removeditemids = 2;
|
|
14
|
+
optional string item_json = 3;
|
|
15
|
+
optional string itemdef_json = 4;
|
|
16
|
+
optional bytes ticket = 5;
|
|
17
|
+
optional bool replayed = 6;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
message CInventory_ExchangeItem_Request {
|
|
21
|
+
optional uint32 appid = 1;
|
|
22
|
+
optional uint64 steamid = 2;
|
|
23
|
+
repeated uint64 materialsitemid = 3;
|
|
24
|
+
repeated uint32 materialsquantity = 4;
|
|
25
|
+
optional uint64 outputitemdefid = 5;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
message CInventory_GetEligiblePromoItemDefIDs_Request {
|
|
29
|
+
optional uint32 appid = 1;
|
|
30
|
+
optional uint64 steamid = 2;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
message CInventory_GetEligiblePromoItemDefIDs_Response {
|
|
34
|
+
repeated uint64 itemdefids = 1;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
message CInventory_AddItem_Request {
|
|
38
|
+
optional uint32 appid = 1;
|
|
39
|
+
repeated uint64 itemdefid = 2;
|
|
40
|
+
repeated string itempropsjson = 3;
|
|
41
|
+
optional uint64 steamid = 4;
|
|
42
|
+
optional bool notify = 5;
|
|
43
|
+
optional uint64 requestid = 6;
|
|
44
|
+
optional bool trade_restriction = 7;
|
|
45
|
+
optional bool is_purchase = 8 [default = false];
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
message CInventory_ModifyItems_Request {
|
|
49
|
+
message ItemPropertyUpdate {
|
|
50
|
+
optional uint64 itemid = 1;
|
|
51
|
+
optional bool remove_property = 2;
|
|
52
|
+
optional string property_name = 3;
|
|
53
|
+
optional bool property_value_bool = 4;
|
|
54
|
+
optional int64 property_value_int = 5;
|
|
55
|
+
optional string property_value_string = 6;
|
|
56
|
+
optional float property_value_float = 7;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
optional uint32 appid = 1;
|
|
60
|
+
optional uint64 steamid = 2;
|
|
61
|
+
repeated .CInventory_ModifyItems_Request.ItemPropertyUpdate updates = 3;
|
|
62
|
+
optional uint32 timestamp = 4;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
message CInventory_ConsumePlaytime_Request {
|
|
66
|
+
optional uint32 appid = 1;
|
|
67
|
+
optional uint64 itemdefid = 2;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
message CInventory_ConsumeItem_Request {
|
|
71
|
+
optional uint32 appid = 1;
|
|
72
|
+
optional uint64 itemid = 2;
|
|
73
|
+
optional uint32 quantity = 3;
|
|
74
|
+
optional string timestamp = 4;
|
|
75
|
+
optional uint64 steamid = 5;
|
|
76
|
+
optional uint64 requestid = 6;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
message CInventory_DevSetNextDrop_Request {
|
|
80
|
+
optional uint32 appid = 1;
|
|
81
|
+
optional uint64 itemdefid = 2;
|
|
82
|
+
optional string droptime = 3;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
message CInventory_SplitItemStack_Request {
|
|
86
|
+
optional uint32 appid = 1;
|
|
87
|
+
optional uint64 itemid = 2;
|
|
88
|
+
optional uint32 quantity = 3;
|
|
89
|
+
optional uint64 steamid = 5;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
message CInventory_CombineItemStacks_Request {
|
|
93
|
+
optional uint32 appid = 1;
|
|
94
|
+
optional uint64 fromitemid = 2;
|
|
95
|
+
optional uint64 destitemid = 3;
|
|
96
|
+
optional uint32 quantity = 4;
|
|
97
|
+
optional fixed64 steamid = 7;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
message CInventory_GetItemDefMeta_Request {
|
|
101
|
+
optional uint32 appid = 1;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
message CInventory_GetItemDefMeta_Response {
|
|
105
|
+
optional uint32 modified = 1;
|
|
106
|
+
optional string digest = 2;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
message CInventory_GetUserPurchaseInfo_Request {
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
message CInventory_GetUserPurchaseInfo_Response {
|
|
113
|
+
optional int32 ecurrency = 1;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
message CInventory_PurchaseInit_Request {
|
|
117
|
+
message LineItem {
|
|
118
|
+
optional uint64 itemdefid = 1;
|
|
119
|
+
optional uint32 quantity = 2;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
optional uint32 appid = 1;
|
|
123
|
+
optional int32 language = 2;
|
|
124
|
+
repeated .CInventory_PurchaseInit_Request.LineItem line_items = 3;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
message CInventory_PurchaseInit_Response {
|
|
128
|
+
optional uint64 orderid = 1;
|
|
129
|
+
optional uint64 transid = 2;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
message CInventory_PurchaseFinalize_Request {
|
|
133
|
+
optional uint32 appid = 1;
|
|
134
|
+
optional int32 language = 2;
|
|
135
|
+
optional uint64 orderid = 3;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
message CInventory_InspectItem_Request {
|
|
139
|
+
optional uint64 itemdefid = 1;
|
|
140
|
+
optional fixed64 itemid = 2;
|
|
141
|
+
optional string tags = 3;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
message CInventoryClient_NewItems_Notification {
|
|
145
|
+
optional uint32 appid = 1;
|
|
146
|
+
optional .CInventory_Response inventory_response = 2;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
service Inventory {
|
|
150
|
+
rpc GetInventory (.CInventory_GetInventory_Request) returns (.CInventory_Response);
|
|
151
|
+
rpc ExchangeItem (.CInventory_ExchangeItem_Request) returns (.CInventory_Response);
|
|
152
|
+
rpc GetEligiblePromoItemDefIDs (.CInventory_GetEligiblePromoItemDefIDs_Request) returns (.CInventory_GetEligiblePromoItemDefIDs_Response);
|
|
153
|
+
rpc AddPromoItem (.CInventory_AddItem_Request) returns (.CInventory_Response);
|
|
154
|
+
rpc SafeModifyItems (.CInventory_ModifyItems_Request) returns (.CInventory_Response);
|
|
155
|
+
rpc ConsumePlaytime (.CInventory_ConsumePlaytime_Request) returns (.CInventory_Response);
|
|
156
|
+
rpc ConsumeItem (.CInventory_ConsumeItem_Request) returns (.CInventory_Response);
|
|
157
|
+
rpc DevGenerateItem (.CInventory_AddItem_Request) returns (.CInventory_Response);
|
|
158
|
+
rpc DevSetNextDrop (.CInventory_DevSetNextDrop_Request) returns (.CInventory_Response);
|
|
159
|
+
rpc SplitItemStack (.CInventory_SplitItemStack_Request) returns (.CInventory_Response);
|
|
160
|
+
rpc CombineItemStacks (.CInventory_CombineItemStacks_Request) returns (.CInventory_Response);
|
|
161
|
+
rpc GetItemDefMeta (.CInventory_GetItemDefMeta_Request) returns (.CInventory_GetItemDefMeta_Response);
|
|
162
|
+
rpc GetUserPurchaseInfo (.CInventory_GetUserPurchaseInfo_Request) returns (.CInventory_GetUserPurchaseInfo_Response);
|
|
163
|
+
rpc PurchaseInit (.CInventory_PurchaseInit_Request) returns (.CInventory_PurchaseInit_Response);
|
|
164
|
+
rpc PurchaseFinalize (.CInventory_PurchaseFinalize_Request) returns (.CInventory_Response);
|
|
165
|
+
rpc InspectItem (.CInventory_InspectItem_Request) returns (.CInventory_Response);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
service InventoryClient {
|
|
169
|
+
option (service_execution_site) = k_EProtoExecutionSiteSteamClient;
|
|
170
|
+
|
|
171
|
+
rpc NotifyNewItems (.CInventoryClient_NewItems_Notification) returns (.NoResponse);
|
|
172
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import "steammessages_base.proto";
|
|
2
|
+
import "steammessages_unified_base.steamclient.proto";
|
|
3
|
+
|
|
4
|
+
option cc_generic_services = true;
|
|
5
|
+
|
|
6
|
+
message CCommunity_GetLinkFilterHashPrefixes_Request {
|
|
7
|
+
optional uint32 hit_type = 1;
|
|
8
|
+
optional uint32 count = 2;
|
|
9
|
+
optional uint64 start = 3;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
message CCommunity_GetLinkFilterHashPrefixes_Response {
|
|
13
|
+
repeated uint32 hash_prefixes = 1;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
message CCommunity_GetLinkFilterHashes_Request {
|
|
17
|
+
optional uint32 hit_type = 1;
|
|
18
|
+
optional uint32 count = 2;
|
|
19
|
+
optional uint64 start = 3;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
message CCommunity_GetLinkFilterHashes_Response {
|
|
23
|
+
repeated bytes hashes = 1;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
message CCommunity_GetLinkFilterListVersion_Request {
|
|
27
|
+
optional uint32 hit_type = 1;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
message CCommunity_GetLinkFilterListVersion_Response {
|
|
31
|
+
optional string version = 1;
|
|
32
|
+
optional uint64 count = 2;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
service CommunityLinkFilter {
|
|
36
|
+
rpc GetLinkFilterHashPrefixes (.CCommunity_GetLinkFilterHashPrefixes_Request) returns (.CCommunity_GetLinkFilterHashPrefixes_Response);
|
|
37
|
+
rpc GetLinkFilterHashes (.CCommunity_GetLinkFilterHashes_Request) returns (.CCommunity_GetLinkFilterHashes_Response);
|
|
38
|
+
rpc GetLinkFilterListVersion (.CCommunity_GetLinkFilterListVersion_Request) returns (.CCommunity_GetLinkFilterListVersion_Response);
|
|
39
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import "steammessages_base.proto";
|
|
2
|
+
import "steammessages_unified_base.steamclient.proto";
|
|
3
|
+
|
|
4
|
+
option cc_generic_services = true;
|
|
5
|
+
|
|
6
|
+
enum ELobbyStatus {
|
|
7
|
+
k_ELobbyStatusInvalid = 0;
|
|
8
|
+
k_ELobbyStatusExists = 1;
|
|
9
|
+
k_ELobbyStatusDoesNotExist = 2;
|
|
10
|
+
k_ELobbyStatusNotAMember = 3;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
message LobbyMatchmakingLegacy_GetLobbyStatus_Request {
|
|
14
|
+
optional uint32 app_id = 1;
|
|
15
|
+
optional fixed64 steamid_lobby = 2;
|
|
16
|
+
optional bool claim_ownership = 3;
|
|
17
|
+
optional bool claim_membership = 4;
|
|
18
|
+
optional uint32 version_num = 5;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
message LobbyMatchmakingLegacy_GetLobbyStatus_Response {
|
|
22
|
+
optional uint32 app_id = 1;
|
|
23
|
+
optional fixed64 steamid_lobby = 2;
|
|
24
|
+
optional .ELobbyStatus lobby_status = 3 [default = k_ELobbyStatusInvalid];
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
service LobbyMatchmakingLegacy {
|
|
28
|
+
rpc GetLobbyStatus (.LobbyMatchmakingLegacy_GetLobbyStatus_Request) returns (.LobbyMatchmakingLegacy_GetLobbyStatus_Response);
|
|
29
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import "steammessages_base.proto";
|
|
2
|
+
import "steammessages_unified_base.steamclient.proto";
|
|
3
|
+
|
|
4
|
+
option cc_generic_services = true;
|
|
5
|
+
|
|
6
|
+
message CEconMarket_IsMarketplaceAllowed_Request {
|
|
7
|
+
optional string webcookie = 1;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
message CEconMarket_IsMarketplaceAllowed_Response {
|
|
11
|
+
optional bool allowed = 1;
|
|
12
|
+
optional uint32 reason = 2;
|
|
13
|
+
optional uint32 allowed_at_time = 3;
|
|
14
|
+
optional uint32 steamguard_required_days = 4;
|
|
15
|
+
optional bool forms_requested = 7;
|
|
16
|
+
optional bool forms_require_verification = 8;
|
|
17
|
+
optional uint32 new_device_cooldown_days = 9;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
service EconMarket {
|
|
21
|
+
rpc IsMarketplaceAllowed (.CEconMarket_IsMarketplaceAllowed_Request) returns (.CEconMarket_IsMarketplaceAllowed_Response);
|
|
22
|
+
}
|