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,376 @@
|
|
|
1
|
+
import "dota_shared_enums.proto";
|
|
2
|
+
import "dota_gcmessages_common_lobby.proto";
|
|
3
|
+
|
|
4
|
+
enum ECoachTeammateRating {
|
|
5
|
+
k_ECoachTeammateRating_None = 0;
|
|
6
|
+
k_ECoachTeammateRating_Positive = 1;
|
|
7
|
+
k_ECoachTeammateRating_Negative = 2;
|
|
8
|
+
k_ECoachTeammateRating_Abusive = 3;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
enum EPrivateCoachingSessionState {
|
|
12
|
+
k_ePrivateCoachingSessionState_Invalid = 0;
|
|
13
|
+
k_ePrivateCoachingSessionState_SearchingForCoach = 1;
|
|
14
|
+
k_ePrivateCoachingSessionState_CoachAssigned = 2;
|
|
15
|
+
k_ePrivateCoachingSessionState_Finished = 3;
|
|
16
|
+
k_ePrivateCoachingSessionState_Expired = 4;
|
|
17
|
+
k_ePrivateCoachingSessionState_Abandoned = 5;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
enum EPrivateCoachingSessionMemberFlag {
|
|
21
|
+
k_EPrivateCoachingSessionMemberFlag_Requester = 1;
|
|
22
|
+
k_EPrivateCoachingSessionMemberFlag_Coach = 2;
|
|
23
|
+
k_EPrivateCoachingSessionMemberFlag_LeftSession = 4;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
enum EPlayerCoachMatchFlag {
|
|
27
|
+
k_EPlayerCoachMatchFlag_EligibleForRewards = 1;
|
|
28
|
+
k_EPlayerCoachMatchFlag_PrivateCoach = 2;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
message CMsgPlayerCoachMatch {
|
|
32
|
+
optional uint64 match_id = 1;
|
|
33
|
+
optional .EMatchOutcome match_outcome = 2 [default = k_EMatchOutcome_Unknown];
|
|
34
|
+
optional uint32 coached_team = 3;
|
|
35
|
+
optional fixed32 start_time = 4;
|
|
36
|
+
optional uint32 duration = 5;
|
|
37
|
+
repeated .ECoachTeammateRating teammate_ratings = 6;
|
|
38
|
+
optional uint32 coach_flags = 7;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
message CMsgPrivateCoachingSessionMember {
|
|
42
|
+
optional uint32 account_id = 1;
|
|
43
|
+
optional uint32 member_flags = 2;
|
|
44
|
+
optional .ECoachTeammateRating member_session_rating = 3 [default = k_ECoachTeammateRating_None];
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
message CMsgPrivateCoachingSession {
|
|
48
|
+
optional uint64 private_coaching_session_id = 1;
|
|
49
|
+
optional fixed32 requested_timestamp = 2;
|
|
50
|
+
optional uint32 requested_language = 3;
|
|
51
|
+
optional .EPrivateCoachingSessionState coaching_session_state = 4 [default = k_ePrivateCoachingSessionState_Invalid];
|
|
52
|
+
repeated .CMsgPrivateCoachingSessionMember session_members = 5;
|
|
53
|
+
optional uint64 current_lobby_id = 6;
|
|
54
|
+
optional uint64 current_server_steam_id = 7;
|
|
55
|
+
optional fixed32 accepted_timestamp = 8;
|
|
56
|
+
optional fixed32 completed_timestamp = 9;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
message CMsgPrivateCoachingSessionStatus {
|
|
60
|
+
optional uint32 requester_competitive_rank_tier = 1;
|
|
61
|
+
optional uint32 requester_games_played = 2;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
message CMsgAvailablePrivateCoachingSession {
|
|
65
|
+
optional .CMsgPrivateCoachingSession coaching_session = 1;
|
|
66
|
+
optional .CMsgPrivateCoachingSessionStatus coaching_session_status = 2;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
message CMsgAvailablePrivateCoachingSessionList {
|
|
70
|
+
repeated .CMsgAvailablePrivateCoachingSession available_coaching_sessions = 1;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
message CMsgAvailablePrivateCoachingSessionSummary {
|
|
74
|
+
optional uint32 coaching_session_count = 1;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
message CMsgClientToGCRequestPlayerCoachMatches {
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
message CMsgClientToGCRequestPlayerCoachMatchesResponse {
|
|
81
|
+
enum EResponse {
|
|
82
|
+
k_eInternalError = 0;
|
|
83
|
+
k_eSuccess = 1;
|
|
84
|
+
k_eTooBusy = 2;
|
|
85
|
+
k_eDisabled = 3;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
optional .CMsgClientToGCRequestPlayerCoachMatchesResponse.EResponse result = 1 [default = k_eInternalError];
|
|
89
|
+
repeated .CMsgPlayerCoachMatch coach_matches = 2;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
message CMsgClientToGCRequestPlayerCoachMatch {
|
|
93
|
+
optional uint64 match_id = 1;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
message CMsgClientToGCRequestPlayerCoachMatchResponse {
|
|
97
|
+
enum EResponse {
|
|
98
|
+
k_eInternalError = 0;
|
|
99
|
+
k_eSuccess = 1;
|
|
100
|
+
k_eTooBusy = 2;
|
|
101
|
+
k_eDisabled = 3;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
optional .CMsgClientToGCRequestPlayerCoachMatchResponse.EResponse result = 1 [default = k_eInternalError];
|
|
105
|
+
optional .CMsgPlayerCoachMatch coach_match = 2;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
message CMsgClientToGCSubmitCoachTeammateRating {
|
|
109
|
+
optional uint64 match_id = 1;
|
|
110
|
+
optional uint32 coach_account_id = 2;
|
|
111
|
+
optional .ECoachTeammateRating rating = 3 [default = k_ECoachTeammateRating_None];
|
|
112
|
+
optional string reason = 4;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
message CMsgClientToGCSubmitCoachTeammateRatingResponse {
|
|
116
|
+
enum EResponse {
|
|
117
|
+
k_eInternalError = 0;
|
|
118
|
+
k_eSuccess = 1;
|
|
119
|
+
k_eTooBusy = 2;
|
|
120
|
+
k_eDisabled = 3;
|
|
121
|
+
k_eInvalidInput = 4;
|
|
122
|
+
k_eAlreadySubmitted = 5;
|
|
123
|
+
k_eVotingFinished = 6;
|
|
124
|
+
k_ePlayerNotInMatch = 7;
|
|
125
|
+
k_eCoachNotInMatch = 8;
|
|
126
|
+
k_ePlayerNotOnCoachTeam = 9;
|
|
127
|
+
k_ePlayerInSamePartyAsCoach = 10;
|
|
128
|
+
k_eMatchNotEligible = 11;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
optional .CMsgClientToGCSubmitCoachTeammateRatingResponse.EResponse result = 1 [default = k_eInternalError];
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
message CMsgGCToClientCoachTeammateRatingsChanged {
|
|
135
|
+
optional .CMsgPlayerCoachMatch coach_match = 1;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
message CMsgClientToGCRequestPrivateCoachingSession {
|
|
139
|
+
optional uint32 language = 1;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
message CMsgClientToGCRequestPrivateCoachingSessionResponse {
|
|
143
|
+
enum EResponse {
|
|
144
|
+
k_eInternalError = 0;
|
|
145
|
+
k_eSuccess = 1;
|
|
146
|
+
k_eTooBusy = 2;
|
|
147
|
+
k_eDisabled = 3;
|
|
148
|
+
k_eTimeout = 4;
|
|
149
|
+
k_eAlreadyInSession = 5;
|
|
150
|
+
k_eBehaviorScoreTooLow = 6;
|
|
151
|
+
k_eInvalidLobbyType = 7;
|
|
152
|
+
k_eLowPriorityPlayer = 8;
|
|
153
|
+
k_eLowPriorityLobby = 9;
|
|
154
|
+
k_eLowPriorityParty = 10;
|
|
155
|
+
k_eTextChatBan = 11;
|
|
156
|
+
k_eVoiceChatBan = 12;
|
|
157
|
+
k_eMatchBan = 13;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
optional .CMsgClientToGCRequestPrivateCoachingSessionResponse.EResponse result = 1 [default = k_eInternalError];
|
|
161
|
+
optional .CMsgPrivateCoachingSession coaching_session = 2;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
message CMsgClientToGCAcceptPrivateCoachingSession {
|
|
165
|
+
optional uint64 coaching_session_id = 1;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
message CMsgClientToGCAcceptPrivateCoachingSessionResponse {
|
|
169
|
+
enum EResponse {
|
|
170
|
+
k_eInternalError = 0;
|
|
171
|
+
k_eSuccess = 1;
|
|
172
|
+
k_eTooBusy = 2;
|
|
173
|
+
k_eDisabled = 3;
|
|
174
|
+
k_eTimeout = 4;
|
|
175
|
+
k_eUnknownSession = 5;
|
|
176
|
+
k_eAlreadyHasCoach = 6;
|
|
177
|
+
k_eAlreadyHasSession = 7;
|
|
178
|
+
k_eInvalidUser = 8;
|
|
179
|
+
k_eAlreadyFinished = 9;
|
|
180
|
+
k_eInvalidLobbyType = 10;
|
|
181
|
+
k_eAlreadyInLobby = 11;
|
|
182
|
+
k_eLobbyIsLan = 12;
|
|
183
|
+
k_eLobbyIsLeague = 13;
|
|
184
|
+
k_eInvalidLobbyState = 14;
|
|
185
|
+
k_eRequesterIsNotPlayer = 15;
|
|
186
|
+
k_eTooManyCoaches = 16;
|
|
187
|
+
k_eCoachWasPlayer = 17;
|
|
188
|
+
k_eCoachBehaviorScoreTooLow = 18;
|
|
189
|
+
k_eCoachRankNotCalibrated = 19;
|
|
190
|
+
k_eCoachRankNotEligible = 20;
|
|
191
|
+
k_eCoachRankTooLow = 21;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
optional .CMsgClientToGCAcceptPrivateCoachingSessionResponse.EResponse result = 1 [default = k_eInternalError];
|
|
195
|
+
optional .CMsgPrivateCoachingSession coaching_session = 2;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
message CMsgClientToGCLeavePrivateCoachingSession {
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
message CMsgClientToGCLeavePrivateCoachingSessionResponse {
|
|
202
|
+
enum EResponse {
|
|
203
|
+
k_eInternalError = 0;
|
|
204
|
+
k_eSuccess = 1;
|
|
205
|
+
k_eTooBusy = 2;
|
|
206
|
+
k_eDisabled = 3;
|
|
207
|
+
k_eTimeout = 4;
|
|
208
|
+
k_eNoSession = 5;
|
|
209
|
+
k_eAlreadyLeft = 6;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
optional .CMsgClientToGCLeavePrivateCoachingSessionResponse.EResponse result = 1 [default = k_eInternalError];
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
message CMsgClientToGCGetCurrentPrivateCoachingSession {
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
message CMsgClientToGCGetCurrentPrivateCoachingSessionResponse {
|
|
219
|
+
enum EResponse {
|
|
220
|
+
k_eInternalError = 0;
|
|
221
|
+
k_eSuccess = 1;
|
|
222
|
+
k_eTooBusy = 2;
|
|
223
|
+
k_eDisabled = 3;
|
|
224
|
+
k_eTimeout = 4;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
optional .CMsgClientToGCGetCurrentPrivateCoachingSessionResponse.EResponse result = 1 [default = k_eInternalError];
|
|
228
|
+
optional .CMsgPrivateCoachingSession current_session = 2;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
message CMsgGCToClientPrivateCoachingSessionUpdated {
|
|
232
|
+
optional .CMsgPrivateCoachingSession coaching_session = 1;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
message CMsgClientToGCSubmitPrivateCoachingSessionRating {
|
|
236
|
+
optional uint64 coaching_session_id = 1;
|
|
237
|
+
optional .ECoachTeammateRating session_rating = 2 [default = k_ECoachTeammateRating_None];
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
message CMsgClientToGCSubmitPrivateCoachingSessionRatingResponse {
|
|
241
|
+
enum EResponse {
|
|
242
|
+
k_eInternalError = 0;
|
|
243
|
+
k_eSuccess = 1;
|
|
244
|
+
k_eTooBusy = 2;
|
|
245
|
+
k_eDisabled = 3;
|
|
246
|
+
k_eTimeout = 4;
|
|
247
|
+
k_eUnknownSession = 5;
|
|
248
|
+
k_eNotMember = 6;
|
|
249
|
+
k_eAlreadySubmitted = 7;
|
|
250
|
+
k_eSessionActive = 8;
|
|
251
|
+
k_eSessionTooShort = 9;
|
|
252
|
+
k_eNoCoach = 10;
|
|
253
|
+
k_eInvalidRating = 11;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
optional .CMsgClientToGCSubmitPrivateCoachingSessionRatingResponse.EResponse result = 1 [default = k_eInternalError];
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
message CMsgClientToGCGetAvailablePrivateCoachingSessions {
|
|
260
|
+
optional uint32 language = 1;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
message CMsgClientToGCGetAvailablePrivateCoachingSessionsResponse {
|
|
264
|
+
enum EResponse {
|
|
265
|
+
k_eInternalError = 0;
|
|
266
|
+
k_eSuccess = 1;
|
|
267
|
+
k_eTooBusy = 2;
|
|
268
|
+
k_eDisabled = 3;
|
|
269
|
+
k_eTimeout = 4;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
optional .CMsgClientToGCGetAvailablePrivateCoachingSessionsResponse.EResponse result = 1 [default = k_eInternalError];
|
|
273
|
+
optional .CMsgAvailablePrivateCoachingSessionList available_sessions_list = 2;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
message CMsgClientToGCGetAvailablePrivateCoachingSessionsSummary {
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
message CMsgClientToGCGetAvailablePrivateCoachingSessionsSummaryResponse {
|
|
280
|
+
enum EResponse {
|
|
281
|
+
k_eInternalError = 0;
|
|
282
|
+
k_eSuccess = 1;
|
|
283
|
+
k_eTooBusy = 2;
|
|
284
|
+
k_eDisabled = 3;
|
|
285
|
+
k_eTimeout = 4;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
optional .CMsgClientToGCGetAvailablePrivateCoachingSessionsSummaryResponse.EResponse result = 1 [default = k_eInternalError];
|
|
289
|
+
optional .CMsgAvailablePrivateCoachingSessionSummary coaching_session_summary = 2;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
message CMsgClientToGCJoinPrivateCoachingSessionLobby {
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
message CMsgClientToGCJoinPrivateCoachingSessionLobbyResponse {
|
|
296
|
+
enum EResponse {
|
|
297
|
+
k_eInternalError = 0;
|
|
298
|
+
k_eSuccess = 1;
|
|
299
|
+
k_eTooBusy = 2;
|
|
300
|
+
k_eDisabled = 3;
|
|
301
|
+
k_eTimeout = 4;
|
|
302
|
+
k_eNoSession = 5;
|
|
303
|
+
k_eSessionFinished = 6;
|
|
304
|
+
k_eAlreadyLeft = 7;
|
|
305
|
+
k_eNotACoach = 8;
|
|
306
|
+
k_eNoLobby = 9;
|
|
307
|
+
k_eCoachInThisLobby = 10;
|
|
308
|
+
k_eCoachInALobby = 11;
|
|
309
|
+
k_eLobbyIsLan = 12;
|
|
310
|
+
k_eLobbyIsLeague = 13;
|
|
311
|
+
k_eInvalidLobbyType = 14;
|
|
312
|
+
k_eInvalidLobbyState = 15;
|
|
313
|
+
k_eRequesterIsNotPlayer = 16;
|
|
314
|
+
k_eTooManyCoaches = 17;
|
|
315
|
+
k_eCoachWasPlayer = 18;
|
|
316
|
+
k_eJoinFailed = 19;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
optional .CMsgClientToGCJoinPrivateCoachingSessionLobbyResponse.EResponse result = 1 [default = k_eInternalError];
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
message CMsgClientToGCCoachFriend {
|
|
323
|
+
optional uint32 target_account_id = 1;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
message CMsgClientToGCCoachFriendResponse {
|
|
327
|
+
enum EResponse {
|
|
328
|
+
k_eInternalError = 0;
|
|
329
|
+
k_eSuccess = 1;
|
|
330
|
+
k_eTooBusy = 2;
|
|
331
|
+
k_eDisabled = 3;
|
|
332
|
+
k_eTimeout = 4;
|
|
333
|
+
k_eCoachNotSubscriber = 5;
|
|
334
|
+
k_eLobbyNotFound = 6;
|
|
335
|
+
k_eFriendsOnBothSides = 7;
|
|
336
|
+
k_eNotFriends = 8;
|
|
337
|
+
k_eCoachInThisLobby = 9;
|
|
338
|
+
k_eCoachInALobby = 10;
|
|
339
|
+
k_eLobbyIsLan = 11;
|
|
340
|
+
k_eInvalidLobbyType = 12;
|
|
341
|
+
k_eInvalidLobbyState = 13;
|
|
342
|
+
k_eFriendIsNotAPlayer = 14;
|
|
343
|
+
k_eTooManyCoaches = 15;
|
|
344
|
+
k_eCoachSwitchedTeams = 16;
|
|
345
|
+
k_eLobbyIsLeague = 17;
|
|
346
|
+
k_eCoachWasPlayer = 18;
|
|
347
|
+
k_eRequestRejected = 19;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
optional .CMsgClientToGCCoachFriendResponse.EResponse result = 1 [default = k_eInternalError];
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
message CMsgClientToGCRespondToCoachFriendRequest {
|
|
354
|
+
optional uint32 coach_account_id = 1;
|
|
355
|
+
optional .ELobbyMemberCoachRequestState response = 2 [default = k_eLobbyMemberCoachRequestState_None];
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
message CMsgClientToGCRespondToCoachFriendRequestResponse {
|
|
359
|
+
enum EResponse {
|
|
360
|
+
k_eInternalError = 0;
|
|
361
|
+
k_eSuccess = 1;
|
|
362
|
+
k_eTooBusy = 2;
|
|
363
|
+
k_eDisabled = 3;
|
|
364
|
+
k_eTimeout = 4;
|
|
365
|
+
k_eLobbyNotFound = 5;
|
|
366
|
+
k_eInvalidLobbyState = 6;
|
|
367
|
+
k_eCoachNotInLobby = 7;
|
|
368
|
+
k_ePlayerInvalidTeam = 8;
|
|
369
|
+
k_eCoachInvalidTeam = 9;
|
|
370
|
+
k_eNoRequest = 10;
|
|
371
|
+
k_eInvalidResponse = 11;
|
|
372
|
+
k_eAlreadyResponded = 12;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
optional .CMsgClientToGCRespondToCoachFriendRequestResponse.EResponse result = 1 [default = k_eInternalError];
|
|
376
|
+
}
|