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,368 @@
|
|
|
1
|
+
import "steammessages.proto";
|
|
2
|
+
|
|
3
|
+
option optimize_for = SPEED;
|
|
4
|
+
option cc_generic_services = false;
|
|
5
|
+
|
|
6
|
+
enum EGCItemMsg {
|
|
7
|
+
k_EMsgGCBase = 1000;
|
|
8
|
+
k_EMsgGCSetSingleItemPosition = 1001;
|
|
9
|
+
k_EMsgGCCraft = 1002;
|
|
10
|
+
k_EMsgGCCraftResponse = 1003;
|
|
11
|
+
k_EMsgGCDelete = 1004;
|
|
12
|
+
k_EMsgGCVerifyCacheSubscription = 1005;
|
|
13
|
+
k_EMsgGCNameItem = 1006;
|
|
14
|
+
k_EMsgGCUnlockCrate = 1007;
|
|
15
|
+
k_EMsgGCUnlockCrateResponse = 1008;
|
|
16
|
+
k_EMsgGCPaintItem = 1009;
|
|
17
|
+
k_EMsgGCPaintItemResponse = 1010;
|
|
18
|
+
k_EMsgGCGoldenWrenchBroadcast = 1011;
|
|
19
|
+
k_EMsgGCMOTDRequest = 1012;
|
|
20
|
+
k_EMsgGCMOTDRequestResponse = 1013;
|
|
21
|
+
k_EMsgGCNameBaseItem = 1019;
|
|
22
|
+
k_EMsgGCNameBaseItemResponse = 1020;
|
|
23
|
+
k_EMsgGCRemoveSocketItem_DEPRECATED = 1021;
|
|
24
|
+
k_EMsgGCRemoveSocketItemResponse_DEPRECATED = 1022;
|
|
25
|
+
k_EMsgGCCustomizeItemTexture = 1023;
|
|
26
|
+
k_EMsgGCCustomizeItemTextureResponse = 1024;
|
|
27
|
+
k_EMsgGCUseItemRequest = 1025;
|
|
28
|
+
k_EMsgGCUseItemResponse = 1026;
|
|
29
|
+
k_EMsgGCRespawnPostLoadoutChange = 1029;
|
|
30
|
+
k_EMsgGCRemoveItemName = 1030;
|
|
31
|
+
k_EMsgGCRemoveItemPaint = 1031;
|
|
32
|
+
k_EMsgGCGiftWrapItem = 1032;
|
|
33
|
+
k_EMsgGCGiftWrapItemResponse = 1033;
|
|
34
|
+
k_EMsgGCDeliverGift = 1034;
|
|
35
|
+
k_EMsgGCDeliverGiftResponseReceiver = 1036;
|
|
36
|
+
k_EMsgGCUnwrapGiftRequest = 1037;
|
|
37
|
+
k_EMsgGCUnwrapGiftResponse = 1038;
|
|
38
|
+
k_EMsgGCSetItemStyle = 1039;
|
|
39
|
+
k_EMsgGCUsedClaimCodeItem = 1040;
|
|
40
|
+
k_EMsgGCSortItems = 1041;
|
|
41
|
+
k_EMsgGC_RevolvingLootList_DEPRECATED = 1042;
|
|
42
|
+
k_EMsgGCLookupAccount = 1043;
|
|
43
|
+
k_EMsgGCLookupAccountResponse = 1044;
|
|
44
|
+
k_EMsgGCLookupAccountName = 1045;
|
|
45
|
+
k_EMsgGCLookupAccountNameResponse = 1046;
|
|
46
|
+
k_EMsgGCUpdateItemSchema = 1049;
|
|
47
|
+
k_EMsgGCRequestInventoryRefresh = 1050;
|
|
48
|
+
k_EMsgGCRemoveCustomTexture = 1051;
|
|
49
|
+
k_EMsgGCRemoveCustomTextureResponse = 1052;
|
|
50
|
+
k_EMsgGCRemoveMakersMark = 1053;
|
|
51
|
+
k_EMsgGCRemoveMakersMarkResponse = 1054;
|
|
52
|
+
k_EMsgGCRemoveUniqueCraftIndex = 1055;
|
|
53
|
+
k_EMsgGCRemoveUniqueCraftIndexResponse = 1056;
|
|
54
|
+
k_EMsgGCSaxxyBroadcast = 1057;
|
|
55
|
+
k_EMsgGCBackpackSortFinished = 1058;
|
|
56
|
+
k_EMsgGCAdjustItemEquippedState = 1059;
|
|
57
|
+
k_EMsgGCCollectItem = 1061;
|
|
58
|
+
k_EMsgGCItemAcknowledged = 1062;
|
|
59
|
+
k_EMsgGCPresets_SelectPresetForClass = 1063;
|
|
60
|
+
k_EMsgGCPresets_SetItemPosition = 1064;
|
|
61
|
+
k_EMsgGC_ReportAbuse = 1065;
|
|
62
|
+
k_EMsgGC_ReportAbuseResponse = 1066;
|
|
63
|
+
k_EMsgGCPresets_SelectPresetForClassReply = 1067;
|
|
64
|
+
k_EMsgGCNameItemNotification = 1068;
|
|
65
|
+
k_EMsgGCClientDisplayNotification = 1069;
|
|
66
|
+
k_EMsgGCApplyStrangePart = 1070;
|
|
67
|
+
k_EMsgGC_IncrementKillCountAttribute = 1071;
|
|
68
|
+
k_EMsgGC_IncrementKillCountResponse = 1072;
|
|
69
|
+
k_EMsgGCRemoveStrangePart = 1073;
|
|
70
|
+
k_EMsgGCResetStrangeScores = 1074;
|
|
71
|
+
k_EMsgGCGiftedItems = 1075;
|
|
72
|
+
k_EMsgGCApplyUpgradeCard = 1077;
|
|
73
|
+
k_EMsgGCRemoveUpgradeCard = 1078;
|
|
74
|
+
k_EMsgGCApplyStrangeRestriction = 1079;
|
|
75
|
+
k_EMsgGCClientRequestMarketData = 1080;
|
|
76
|
+
k_EMsgGCClientRequestMarketDataResponse = 1081;
|
|
77
|
+
k_EMsgGCApplyXifier = 1082;
|
|
78
|
+
k_EMsgGCApplyXifierResponse = 1083;
|
|
79
|
+
k_EMsgGC_TrackUniquePlayerPairEvent = 1084;
|
|
80
|
+
k_EMsgGCFulfillDynamicRecipeComponent = 1085;
|
|
81
|
+
k_EMsgGCFulfillDynamicRecipeComponentResponse = 1086;
|
|
82
|
+
k_EMsgGCSetItemEffectVerticalOffset = 1087;
|
|
83
|
+
k_EMsgGCSetHatEffectUseHeadOrigin = 1088;
|
|
84
|
+
k_EMsgGCItemEaterRecharger = 1089;
|
|
85
|
+
k_EMsgGCItemEaterRechargerResponse = 1090;
|
|
86
|
+
k_EMsgGCApplyBaseItemXifier = 1091;
|
|
87
|
+
k_EMsgGCApplyClassTransmogrifier = 1092;
|
|
88
|
+
k_EMsgGCApplyHalloweenSpellbookPage = 1093;
|
|
89
|
+
k_EMsgGCRemoveKillStreak = 1094;
|
|
90
|
+
k_EMsgGCRemoveKillStreakResponse = 1095;
|
|
91
|
+
k_EMsgGCTFSpecificItemBroadcast = 1096;
|
|
92
|
+
k_EMsgGC_IncrementKillCountAttribute_Multiple = 1097;
|
|
93
|
+
k_EMsgGCDeliverGiftResponseGiver = 1098;
|
|
94
|
+
k_EMsgGCSetItemPositions = 1100;
|
|
95
|
+
k_EMsgGCLookupMultipleAccountNames = 1101;
|
|
96
|
+
k_EMsgGCLookupMultipleAccountNamesResponse = 1102;
|
|
97
|
+
k_EMsgGCTradingBase = 1500;
|
|
98
|
+
k_EMsgGCTrading_InitiateTradeRequest = 1501;
|
|
99
|
+
k_EMsgGCTrading_InitiateTradeResponse = 1502;
|
|
100
|
+
k_EMsgGCTrading_StartSession = 1503;
|
|
101
|
+
k_EMsgGCTrading_SessionClosed = 1509;
|
|
102
|
+
k_EMsgGCTrading_CancelSession = 1510;
|
|
103
|
+
k_EMsgGCTrading_InitiateTradeRequestResponse = 1514;
|
|
104
|
+
k_EMsgGCServerBrowser_FavoriteServer = 1601;
|
|
105
|
+
k_EMsgGCServerBrowser_BlacklistServer = 1602;
|
|
106
|
+
k_EMsgGCServerRentalsBase = 1700;
|
|
107
|
+
k_EMsgGCItemPreviewCheckStatus = 1701;
|
|
108
|
+
k_EMsgGCItemPreviewStatusResponse = 1702;
|
|
109
|
+
k_EMsgGCItemPreviewRequest = 1703;
|
|
110
|
+
k_EMsgGCItemPreviewRequestResponse = 1704;
|
|
111
|
+
k_EMsgGCItemPreviewExpire = 1705;
|
|
112
|
+
k_EMsgGCItemPreviewExpireNotification = 1706;
|
|
113
|
+
k_EMsgGCItemPreviewItemBoughtNotification = 1708;
|
|
114
|
+
k_EMsgGCDev_NewItemRequest = 2001;
|
|
115
|
+
k_EMsgGCDev_NewItemRequestResponse = 2002;
|
|
116
|
+
k_EMsgGCDev_DebugRollLootRequest = 2003;
|
|
117
|
+
k_EMsgGCStoreGetUserData = 2500;
|
|
118
|
+
k_EMsgGCStoreGetUserDataResponse = 2501;
|
|
119
|
+
k_EMsgGCStorePurchaseInit_DEPRECATED = 2502;
|
|
120
|
+
k_EMsgGCStorePurchaseInitResponse_DEPRECATED = 2503;
|
|
121
|
+
k_EMsgGCStorePurchaseFinalize = 2512;
|
|
122
|
+
k_EMsgGCStorePurchaseFinalizeResponse = 2513;
|
|
123
|
+
k_EMsgGCStorePurchaseCancel = 2514;
|
|
124
|
+
k_EMsgGCStorePurchaseCancelResponse = 2515;
|
|
125
|
+
k_EMsgGCStorePurchaseQueryTxn = 2508;
|
|
126
|
+
k_EMsgGCStorePurchaseQueryTxnResponse = 2509;
|
|
127
|
+
k_EMsgGCStorePurchaseInit = 2510;
|
|
128
|
+
k_EMsgGCStorePurchaseInitResponse = 2511;
|
|
129
|
+
k_EMsgGCToGCDirtySDOCache = 2516;
|
|
130
|
+
k_EMsgGCToGCDirtyMultipleSDOCache = 2517;
|
|
131
|
+
k_EMsgGCToGCUpdateSQLKeyValue = 2518;
|
|
132
|
+
k_EMsgGCToGCBroadcastConsoleCommand = 2521;
|
|
133
|
+
k_EMsgGCServerVersionUpdated = 2522;
|
|
134
|
+
k_EMsgGCApplyAutograph = 2523;
|
|
135
|
+
k_EMsgGCToGCWebAPIAccountChanged = 2524;
|
|
136
|
+
k_EMsgGCRequestAnnouncements = 2525;
|
|
137
|
+
k_EMsgGCRequestAnnouncementsResponse = 2526;
|
|
138
|
+
k_EMsgGCRequestPassportItemGrant = 2527;
|
|
139
|
+
k_EMsgGCClientVersionUpdated = 2528;
|
|
140
|
+
k_EMsgGCItemPurgatory_FinalizePurchase = 2531;
|
|
141
|
+
k_EMsgGCItemPurgatory_FinalizePurchaseResponse = 2532;
|
|
142
|
+
k_EMsgGCItemPurgatory_RefundPurchase = 2533;
|
|
143
|
+
k_EMsgGCItemPurgatory_RefundPurchaseResponse = 2534;
|
|
144
|
+
k_EMsgGCToGCPlayerStrangeCountAdjustments = 2535;
|
|
145
|
+
k_EMsgGCRequestStoreSalesData = 2536;
|
|
146
|
+
k_EMsgGCRequestStoreSalesDataResponse = 2537;
|
|
147
|
+
k_EMsgGCRequestStoreSalesDataUpToDateResponse = 2538;
|
|
148
|
+
k_EMsgGCToGCPingRequest = 2539;
|
|
149
|
+
k_EMsgGCToGCPingResponse = 2540;
|
|
150
|
+
k_EMsgGCToGCGetUserSessionServer = 2541;
|
|
151
|
+
k_EMsgGCToGCGetUserSessionServerResponse = 2542;
|
|
152
|
+
k_EMsgGCToGCGetUserServerMembers = 2543;
|
|
153
|
+
k_EMsgGCToGCGetUserServerMembersResponse = 2544;
|
|
154
|
+
k_EMsgGCToGCGrantSelfMadeItemToAccount = 2555;
|
|
155
|
+
k_EMsgGCToGCThankedByNewUser = 2556;
|
|
156
|
+
k_EMsgGCShuffleCrateContents = 2557;
|
|
157
|
+
k_EMsgGCQuestObjective_Progress = 2558;
|
|
158
|
+
k_EMsgGCQuestCompleted = 2559;
|
|
159
|
+
k_EMsgGCApplyDuckToken = 2560;
|
|
160
|
+
k_EMsgGCQuestObjective_PointsChange = 2562;
|
|
161
|
+
k_EMsgGCQuestObjective_RequestLoanerItems = 2564;
|
|
162
|
+
k_EMsgGCQuestObjective_RequestLoanerResponse = 2565;
|
|
163
|
+
k_EMsgGCApplyStrangeCountTransfer = 2566;
|
|
164
|
+
k_EMsgGCCraftCollectionUpgrade = 2567;
|
|
165
|
+
k_EMsgGCCraftHalloweenOffering = 2568;
|
|
166
|
+
k_EMsgGCQuestDiscard_Request = 2569;
|
|
167
|
+
k_EMsgGCRemoveGiftedBy = 2570;
|
|
168
|
+
k_EMsgGCRemoveGiftedByResponse = 2571;
|
|
169
|
+
k_EMsgGCRemoveFestivizer = 2572;
|
|
170
|
+
k_EMsgGCRemoveFestivizerResponse = 2573;
|
|
171
|
+
k_EMsgGCCraftCommonStatClock = 2574;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
enum EGCMsgResponse {
|
|
175
|
+
k_EGCMsgResponseOK = 0;
|
|
176
|
+
k_EGCMsgResponseDenied = 1;
|
|
177
|
+
k_EGCMsgResponseServerError = 2;
|
|
178
|
+
k_EGCMsgResponseTimeout = 3;
|
|
179
|
+
k_EGCMsgResponseInvalid = 4;
|
|
180
|
+
k_EGCMsgResponseNoMatch = 5;
|
|
181
|
+
k_EGCMsgResponseUnknownError = 6;
|
|
182
|
+
k_EGCMsgResponseNotLoggedOn = 7;
|
|
183
|
+
k_EGCMsgFailedToCreate = 8;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
enum EUnlockStyle {
|
|
187
|
+
k_UnlockStyle_Succeeded = 0;
|
|
188
|
+
k_UnlockStyle_Failed_PreReq = 1;
|
|
189
|
+
k_UnlockStyle_Failed_CantAfford = 2;
|
|
190
|
+
k_UnlockStyle_Failed_CantCommit = 3;
|
|
191
|
+
k_UnlockStyle_Failed_CantLockCache = 4;
|
|
192
|
+
k_UnlockStyle_Failed_CantAffordAttrib = 5;
|
|
193
|
+
k_UnlockStyle_Failed_CantAffordGem = 6;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
enum EItemPurgatoryResponse_Finalize {
|
|
197
|
+
k_ItemPurgatoryResponse_Finalize_Succeeded = 0;
|
|
198
|
+
k_ItemPurgatoryResponse_Finalize_Failed_Incomplete = 1;
|
|
199
|
+
k_ItemPurgatoryResponse_Finalize_Failed_ItemsNotInPurgatory = 2;
|
|
200
|
+
k_ItemPurgatoryResponse_Finalize_Failed_CouldNotFindItems = 3;
|
|
201
|
+
k_ItemPurgatoryResponse_Finalize_Failed_NoSOCache = 4;
|
|
202
|
+
k_ItemPurgatoryResponse_Finalize_BackpackFull = 5;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
enum EItemPurgatoryResponse_Refund {
|
|
206
|
+
k_ItemPurgatoryResponse_Refund_Succeeded = 0;
|
|
207
|
+
k_ItemPurgatoryResponse_Refund_Failed_ItemNotInPurgatory = 1;
|
|
208
|
+
k_ItemPurgatoryResponse_Refund_Failed_CouldNotFindItem = 2;
|
|
209
|
+
k_ItemPurgatoryResponse_Refund_Failed_NoSOCache = 3;
|
|
210
|
+
k_ItemPurgatoryResponse_Refund_Failed_NoDetail = 4;
|
|
211
|
+
k_ItemPurgatoryResponse_Refund_Failed_NexonWebAPI = 5;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
message CMsgApplyAutograph {
|
|
215
|
+
optional uint64 autograph_item_id = 1;
|
|
216
|
+
optional uint64 item_item_id = 2;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
message CMsgEconPlayerStrangeCountAdjustment {
|
|
220
|
+
message CStrangeCountAdjustment {
|
|
221
|
+
optional uint32 event_type = 1;
|
|
222
|
+
optional uint64 item_id = 2;
|
|
223
|
+
optional uint32 adjustment = 3;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
optional uint32 account_id = 1;
|
|
227
|
+
repeated .CMsgEconPlayerStrangeCountAdjustment.CStrangeCountAdjustment strange_count_adjustments = 2;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
message CMsgRequestItemPurgatory_FinalizePurchase {
|
|
231
|
+
repeated uint64 item_ids = 1;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
message CMsgRequestItemPurgatory_FinalizePurchaseResponse {
|
|
235
|
+
optional uint32 result = 1;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
message CMsgRequestItemPurgatory_RefundPurchase {
|
|
239
|
+
optional uint64 item_id = 1;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
message CMsgRequestItemPurgatory_RefundPurchaseResponse {
|
|
243
|
+
optional uint32 result = 1;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
message CMsgCraftingResponse {
|
|
247
|
+
repeated uint64 item_ids = 1;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
message CMsgGCRequestStoreSalesData {
|
|
251
|
+
optional uint32 version = 1;
|
|
252
|
+
optional uint32 currency = 2;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
message CMsgGCRequestStoreSalesDataResponse {
|
|
256
|
+
message Price {
|
|
257
|
+
optional uint32 item_def = 1;
|
|
258
|
+
optional uint32 price = 2;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
repeated .CMsgGCRequestStoreSalesDataResponse.Price sale_price = 1;
|
|
262
|
+
optional uint32 version = 2;
|
|
263
|
+
optional uint32 expiration_time = 3;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
message CMsgGCRequestStoreSalesDataUpToDateResponse {
|
|
267
|
+
optional uint32 version = 1;
|
|
268
|
+
optional uint32 expiration_time = 2;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
message CMsgGCToGCPingRequest {
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
message CMsgGCToGCPingResponse {
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
message CMsgGCToGCGetUserSessionServer {
|
|
278
|
+
optional uint32 account_id = 1;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
message CMsgGCToGCGetUserSessionServerResponse {
|
|
282
|
+
optional fixed64 server_steam_id = 1;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
message CMsgGCToGCGetUserServerMembers {
|
|
286
|
+
optional uint32 account_id = 1;
|
|
287
|
+
optional uint32 max_spectators = 2;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
message CMsgGCToGCGetUserServerMembersResponse {
|
|
291
|
+
repeated uint32 member_account_id = 1;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
message CMsgLookupMultipleAccountNames {
|
|
295
|
+
repeated uint32 accountids = 1 [packed = true];
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
message CMsgLookupMultipleAccountNamesResponse {
|
|
299
|
+
message Account {
|
|
300
|
+
optional uint32 accountid = 1;
|
|
301
|
+
optional string persona = 2;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
repeated .CMsgLookupMultipleAccountNamesResponse.Account accounts = 1;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
message CMsgGCToGCGrantSelfMadeItemToAccount {
|
|
308
|
+
optional uint32 item_def_index = 1;
|
|
309
|
+
optional uint32 accountid = 2;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
message CMsgGCToGCThankedByNewUser {
|
|
313
|
+
optional uint32 new_user_accountid = 1;
|
|
314
|
+
optional uint32 thanked_user_accountid = 2;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
message CMsgGCShuffleCrateContents {
|
|
318
|
+
optional uint64 crate_item_id = 1;
|
|
319
|
+
optional string user_code_string = 2;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
message CMsgGCQuestObjective_Progress {
|
|
323
|
+
optional uint64 quest_id = 1;
|
|
324
|
+
optional uint32 quest_attrib_index = 2;
|
|
325
|
+
optional uint32 delta = 3;
|
|
326
|
+
optional fixed64 owner_steamid = 4;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
message CMsgGCQuestObjective_PointsChange {
|
|
330
|
+
optional uint64 quest_id = 1;
|
|
331
|
+
optional fixed64 owner_steamid = 4;
|
|
332
|
+
optional bool update_base_points = 5 [default = false];
|
|
333
|
+
optional uint32 points_0 = 6;
|
|
334
|
+
optional uint32 points_1 = 7;
|
|
335
|
+
optional uint32 points_2 = 8;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
message CMsgGCQuestComplete_Request {
|
|
339
|
+
optional uint64 quest_id = 1;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
message CMsgGCQuestCompleted {
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
message CMsgGCQuestObjective_RequestLoanerItems {
|
|
346
|
+
optional uint64 quest_id = 1;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
message CMsgGCQuestObjective_RequestLoanerResponse {
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
message CMsgCraftCollectionUpgrade {
|
|
353
|
+
repeated uint64 item_id = 1;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
message CMsgCraftHalloweenOffering {
|
|
357
|
+
optional uint64 tool_id = 1;
|
|
358
|
+
repeated uint64 item_id = 2;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
message CMsgCraftCommonStatClock {
|
|
362
|
+
optional uint64 tool_id = 1;
|
|
363
|
+
repeated uint64 item_id = 2;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
message CMsgGCQuestDiscard_Request {
|
|
367
|
+
optional uint64 quest_id = 1;
|
|
368
|
+
}
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
import "steammessages.proto";
|
|
2
|
+
|
|
3
|
+
option optimize_for = SPEED;
|
|
4
|
+
option cc_generic_services = false;
|
|
5
|
+
|
|
6
|
+
enum PartnerAccountType {
|
|
7
|
+
PARTNER_NONE = 0;
|
|
8
|
+
PARTNER_PERFECT_WORLD = 1;
|
|
9
|
+
PARTNER_NEXON = 2;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
enum GCConnectionStatus {
|
|
13
|
+
GCConnectionStatus_HAVE_SESSION = 0;
|
|
14
|
+
GCConnectionStatus_GC_GOING_DOWN = 1;
|
|
15
|
+
GCConnectionStatus_NO_SESSION = 2;
|
|
16
|
+
GCConnectionStatus_NO_SESSION_IN_LOGON_QUEUE = 3;
|
|
17
|
+
GCConnectionStatus_NO_STEAM = 4;
|
|
18
|
+
GCConnectionStatus_SUSPENDED = 5;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
message CMsgSOIDOwner {
|
|
22
|
+
optional uint32 type = 1;
|
|
23
|
+
optional uint64 id = 2;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
message CMsgSOSingleObject {
|
|
27
|
+
optional fixed64 owner = 1;
|
|
28
|
+
optional int32 type_id = 2;
|
|
29
|
+
optional bytes object_data = 3;
|
|
30
|
+
optional fixed64 version = 4;
|
|
31
|
+
optional .CMsgSOIDOwner owner_soid = 5;
|
|
32
|
+
optional uint32 service_id = 6;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
message CMsgSOMultipleObjects {
|
|
36
|
+
message SingleObject {
|
|
37
|
+
optional int32 type_id = 1;
|
|
38
|
+
optional bytes object_data = 2;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
optional fixed64 owner = 1;
|
|
42
|
+
repeated .CMsgSOMultipleObjects.SingleObject objects = 2;
|
|
43
|
+
optional fixed64 version = 3;
|
|
44
|
+
optional .CMsgSOIDOwner owner_soid = 6;
|
|
45
|
+
optional uint32 service_id = 7;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
message CMsgSOCacheSubscribed {
|
|
49
|
+
message SubscribedType {
|
|
50
|
+
optional int32 type_id = 1;
|
|
51
|
+
repeated bytes object_data = 2;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
optional fixed64 owner = 1;
|
|
55
|
+
repeated .CMsgSOCacheSubscribed.SubscribedType objects = 2;
|
|
56
|
+
optional fixed64 version = 3;
|
|
57
|
+
optional .CMsgSOIDOwner owner_soid = 4;
|
|
58
|
+
optional uint32 service_id = 5;
|
|
59
|
+
repeated uint32 service_list = 6;
|
|
60
|
+
optional fixed64 sync_version = 7;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
message CMsgSOCacheSubscribedUpToDate {
|
|
64
|
+
optional fixed64 version = 1;
|
|
65
|
+
optional .CMsgSOIDOwner owner_soid = 2;
|
|
66
|
+
optional uint32 service_id = 3;
|
|
67
|
+
repeated uint32 service_list = 4;
|
|
68
|
+
optional fixed64 sync_version = 5;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
message CMsgSOCacheUnsubscribed {
|
|
72
|
+
optional fixed64 owner = 1;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
message CMsgSOCacheSubscriptionCheck {
|
|
76
|
+
optional fixed64 owner = 1;
|
|
77
|
+
optional fixed64 version = 2;
|
|
78
|
+
optional .CMsgSOIDOwner owner_soid = 3;
|
|
79
|
+
optional uint32 service_id = 4;
|
|
80
|
+
repeated uint32 service_list = 5;
|
|
81
|
+
optional fixed64 sync_version = 6;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
message CMsgSOCacheSubscriptionRefresh {
|
|
85
|
+
optional fixed64 owner = 1;
|
|
86
|
+
optional .CMsgSOIDOwner owner_soid = 2;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
message CMsgSOCacheVersion {
|
|
90
|
+
optional fixed64 version = 1;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
message CMsgGCMultiplexMessage {
|
|
94
|
+
optional uint32 msgtype = 1;
|
|
95
|
+
optional bytes payload = 2;
|
|
96
|
+
repeated fixed64 steamids = 3;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
message CGCToGCMsgMasterAck {
|
|
100
|
+
optional uint32 dir_index = 1;
|
|
101
|
+
optional string machine_name = 3;
|
|
102
|
+
optional string process_name = 4;
|
|
103
|
+
repeated uint32 type_instances = 5;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
message CGCToGCMsgMasterAck_Response {
|
|
107
|
+
optional int32 eresult = 1 [default = 2];
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
message CGCToGCMsgMasterStartupComplete {
|
|
111
|
+
message GCInfo {
|
|
112
|
+
optional uint32 dir_index = 1;
|
|
113
|
+
optional string machine_name = 2;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
repeated .CGCToGCMsgMasterStartupComplete.GCInfo gc_info = 1;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
message CGCToGCMsgRouted {
|
|
120
|
+
optional uint32 msg_type = 1;
|
|
121
|
+
optional fixed64 sender_id = 2;
|
|
122
|
+
optional bytes net_message = 3;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
message CGCToGCMsgRoutedReply {
|
|
126
|
+
optional uint32 msg_type = 1;
|
|
127
|
+
optional bytes net_message = 2;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
message CMsgGCUpdateSubGCSessionInfo {
|
|
131
|
+
message CMsgUpdate {
|
|
132
|
+
optional fixed64 steamid = 1;
|
|
133
|
+
optional fixed32 ip = 2;
|
|
134
|
+
optional bool trusted = 3;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
repeated .CMsgGCUpdateSubGCSessionInfo.CMsgUpdate updates = 1;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
message CMsgGCRequestSubGCSessionInfo {
|
|
141
|
+
optional fixed64 steamid = 1;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
message CMsgGCRequestSubGCSessionInfoResponse {
|
|
145
|
+
optional fixed32 ip = 1;
|
|
146
|
+
optional bool trusted = 2;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
message CMsgGCToGCIncrementRecruitmentLevel {
|
|
150
|
+
optional fixed64 steamid = 1;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
message CMsgSOCacheHaveVersion {
|
|
154
|
+
optional .CMsgSOIDOwner soid = 1;
|
|
155
|
+
optional fixed64 version = 2;
|
|
156
|
+
optional uint32 service_id = 3;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
message CMsgConnectionStatus {
|
|
160
|
+
optional .GCConnectionStatus status = 1 [default = GCConnectionStatus_HAVE_SESSION];
|
|
161
|
+
optional uint32 client_session_need = 2;
|
|
162
|
+
optional int32 queue_position = 3;
|
|
163
|
+
optional int32 queue_size = 4;
|
|
164
|
+
optional int32 wait_seconds = 5;
|
|
165
|
+
optional int32 estimated_wait_seconds_remaining = 6;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
message CMsgGCToGCSOCacheSubscribe {
|
|
169
|
+
message CMsgHaveVersions {
|
|
170
|
+
optional uint32 service_id = 1;
|
|
171
|
+
optional uint64 version = 2;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
optional fixed64 subscriber = 1;
|
|
175
|
+
optional fixed64 subscribe_to = 2;
|
|
176
|
+
optional fixed64 sync_version = 3;
|
|
177
|
+
repeated .CMsgGCToGCSOCacheSubscribe.CMsgHaveVersions have_versions = 4;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
message CMsgGCToGCSOCacheUnsubscribe {
|
|
181
|
+
optional fixed64 subscriber = 1;
|
|
182
|
+
optional fixed64 unsubscribe_from = 2;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
message CMsgGCClientPing {
|
|
186
|
+
}
|