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,651 @@
|
|
|
1
|
+
import "dota_shared_enums.proto";
|
|
2
|
+
|
|
3
|
+
enum EGuildAuditAction {
|
|
4
|
+
k_EGuildAuditAction_Invalid = 0;
|
|
5
|
+
k_EGuildAuditAction_GuildCreated = 1;
|
|
6
|
+
k_EGuildAuditAction_GuildLanguageChanged = 2;
|
|
7
|
+
k_EGuildAuditAction_GuildFlagsChanged = 3;
|
|
8
|
+
k_EGuildAuditAction_GuildMemberJoined = 5;
|
|
9
|
+
k_EGuildAuditAction_GuildMemberLeft = 6;
|
|
10
|
+
k_EGuildAuditAction_GuildMemberKicked = 7;
|
|
11
|
+
k_EGuildAuditAction_GuildMemberRoleChanged = 8;
|
|
12
|
+
k_EGuildAuditAction_GuildLogoChanged = 9;
|
|
13
|
+
k_EGuildAuditAction_GuildRegionChanged = 10;
|
|
14
|
+
k_EGuildAuditAction_GuildDescriptionChanged = 11;
|
|
15
|
+
k_EGuildAuditAction_GuildPrimaryColorChanged = 12;
|
|
16
|
+
k_EGuildAuditAction_GuildSecondaryColorChanged = 13;
|
|
17
|
+
k_EGuildAuditAction_GuildPatternChanged = 14;
|
|
18
|
+
k_EGuildAuditAction_AdminClearedLogo = 15;
|
|
19
|
+
k_EGuildAuditAction_GuildRequiredRankChanged = 16;
|
|
20
|
+
k_EGuildAuditAction_GuildMotDChanged = 18;
|
|
21
|
+
k_EGuildAuditAction_AdminResetName = 19;
|
|
22
|
+
k_EGuildAuditAction_AdminResetTag = 20;
|
|
23
|
+
k_EGuildAuditAction_AdminLock = 21;
|
|
24
|
+
k_EGuildAuditAction_GuildNameChanged = 22;
|
|
25
|
+
k_EGuildAuditAction_GuildTagChanged = 23;
|
|
26
|
+
k_EGuildAuditAction_AdminPermitted = 24;
|
|
27
|
+
k_EGuildAuditAction_AdminBlocked = 25;
|
|
28
|
+
k_EGuildAuditAction_AdminBannedUser = 26;
|
|
29
|
+
k_EGuildAuditAction_AdminExonerated = 27;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
enum EGuildChatType {
|
|
33
|
+
k_EGuildChatType_Unspecified = 0;
|
|
34
|
+
k_EGuildChatType_SteamChatGroup = 1;
|
|
35
|
+
k_EGuildChatType_GC = 2;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
message CMsgGuildInfo {
|
|
39
|
+
optional string guild_name = 1;
|
|
40
|
+
optional string guild_tag = 2;
|
|
41
|
+
optional uint32 created_timestamp = 3;
|
|
42
|
+
optional uint32 guild_language = 4;
|
|
43
|
+
optional uint32 guild_flags = 5;
|
|
44
|
+
optional uint64 guild_logo = 7;
|
|
45
|
+
optional uint32 guild_region = 8;
|
|
46
|
+
optional uint64 guild_chat_group_id = 9;
|
|
47
|
+
optional string guild_description = 10;
|
|
48
|
+
optional uint64 default_chat_channel_id = 11;
|
|
49
|
+
optional uint32 guild_primary_color = 12;
|
|
50
|
+
optional uint32 guild_secondary_color = 13;
|
|
51
|
+
optional uint32 guild_pattern = 14;
|
|
52
|
+
optional uint32 guild_refresh_time_offset = 15;
|
|
53
|
+
optional uint32 guild_required_rank_tier = 16;
|
|
54
|
+
optional uint32 guild_motd_timestamp = 17;
|
|
55
|
+
optional string guild_motd = 18;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
message CMsgGuildSummary {
|
|
59
|
+
message EventPoints {
|
|
60
|
+
optional uint32 event_id = 1;
|
|
61
|
+
optional uint32 guild_points = 2;
|
|
62
|
+
optional uint32 guild_rank = 3;
|
|
63
|
+
optional uint32 guild_weekly_rank = 4;
|
|
64
|
+
optional uint32 guild_weekly_percentile = 5;
|
|
65
|
+
optional uint32 guild_current_percentile = 6;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
optional .CMsgGuildInfo guild_info = 1;
|
|
69
|
+
optional uint32 member_count = 2;
|
|
70
|
+
repeated .CMsgGuildSummary.EventPoints event_points = 3;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
message CMsgGuildRole {
|
|
74
|
+
optional uint32 role_id = 1;
|
|
75
|
+
optional string role_name = 2;
|
|
76
|
+
optional uint32 role_flags = 3;
|
|
77
|
+
optional uint32 role_order = 4;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
message CMsgGuildMember {
|
|
81
|
+
optional uint32 member_account_id = 1;
|
|
82
|
+
optional uint32 member_role_id = 2;
|
|
83
|
+
optional uint32 member_joined_timestamp = 3;
|
|
84
|
+
optional uint32 member_last_active_timestamp = 4;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
message CMsgGuildInvite {
|
|
88
|
+
optional uint32 requester_account_id = 1;
|
|
89
|
+
optional uint32 target_account_id = 2;
|
|
90
|
+
optional uint32 timestamp_sent = 3;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
message CMsgGuildData {
|
|
94
|
+
optional uint32 guild_id = 1;
|
|
95
|
+
optional .CMsgGuildInfo guild_info = 2;
|
|
96
|
+
repeated .CMsgGuildRole guild_roles = 3;
|
|
97
|
+
repeated .CMsgGuildMember guild_members = 4;
|
|
98
|
+
repeated .CMsgGuildInvite guild_invites = 5;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
message CMsgAccountGuildInvite {
|
|
102
|
+
optional uint32 guild_id = 1;
|
|
103
|
+
optional uint32 requester_account_id = 2;
|
|
104
|
+
optional uint32 timestamp_sent = 3;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
message CMsgAccountGuildMemberships {
|
|
108
|
+
repeated uint32 guild_ids = 1;
|
|
109
|
+
repeated .CMsgAccountGuildInvite guild_invites = 2;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
message CMsgGuildPersonaInfo {
|
|
113
|
+
optional uint32 guild_id = 1;
|
|
114
|
+
optional string guild_tag = 2;
|
|
115
|
+
optional uint32 guild_flags = 3;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
message CMsgAccountGuildsPersonaInfo {
|
|
119
|
+
repeated .CMsgGuildPersonaInfo guild_persona_infos = 1;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
message CMsgGuildFeedEvent {
|
|
123
|
+
optional uint64 feed_event_id = 1;
|
|
124
|
+
optional uint32 timestamp = 2;
|
|
125
|
+
optional uint32 event_type = 3;
|
|
126
|
+
optional uint32 param_uint_1 = 4;
|
|
127
|
+
optional uint32 param_uint_2 = 5;
|
|
128
|
+
optional uint32 param_uint_3 = 6;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
message CMsgClientToGCCreateGuild {
|
|
132
|
+
optional .CMsgGuildInfo guild_info = 1;
|
|
133
|
+
optional .EGuildChatType guild_chat_type = 2 [default = k_EGuildChatType_Unspecified];
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
message CMsgClientToGCCreateGuildResponse {
|
|
137
|
+
enum EResponse {
|
|
138
|
+
k_eInternalError = 0;
|
|
139
|
+
k_eSuccess = 1;
|
|
140
|
+
k_eTooBusy = 2;
|
|
141
|
+
k_eDisabled = 3;
|
|
142
|
+
k_eTimeout = 4;
|
|
143
|
+
k_eInvalidName = 5;
|
|
144
|
+
k_eNameAlreadyUsed = 6;
|
|
145
|
+
k_eInvalidTag = 7;
|
|
146
|
+
k_eTagAlreadyUsed = 8;
|
|
147
|
+
k_eInvalidDescription = 9;
|
|
148
|
+
k_eInvalidRegion = 10;
|
|
149
|
+
k_eInvalidLogo = 11;
|
|
150
|
+
k_eDoesNotOwnEvent = 12;
|
|
151
|
+
k_eGuildLimit = 13;
|
|
152
|
+
k_eInvalidMotD = 14;
|
|
153
|
+
k_eBlocked = 15;
|
|
154
|
+
k_eFreeTrialNotAllowed = 16;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
optional .CMsgClientToGCCreateGuildResponse.EResponse result = 1 [default = k_eInternalError];
|
|
158
|
+
optional uint32 guild_id = 2;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
message CMsgClientToGCSetGuildInfo {
|
|
162
|
+
optional uint32 guild_id = 1;
|
|
163
|
+
optional .CMsgGuildInfo guild_info = 2;
|
|
164
|
+
optional .EGuildChatType guild_chat_type = 3 [default = k_EGuildChatType_Unspecified];
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
message CMsgClientToGCSetGuildInfoResponse {
|
|
168
|
+
enum EResponse {
|
|
169
|
+
k_eInternalError = 0;
|
|
170
|
+
k_eSuccess = 1;
|
|
171
|
+
k_eTooBusy = 2;
|
|
172
|
+
k_eDisabled = 3;
|
|
173
|
+
k_eTimeout = 4;
|
|
174
|
+
k_eInvalidGuild = 5;
|
|
175
|
+
k_eNotMember = 6;
|
|
176
|
+
k_eNoPermission = 7;
|
|
177
|
+
k_eMotDTooLong = 8;
|
|
178
|
+
k_eNameChangeNoPermissions = 9;
|
|
179
|
+
k_eTagChangeNoPermissions = 10;
|
|
180
|
+
k_eNameInvalid = 11;
|
|
181
|
+
k_eTagInvalid = 12;
|
|
182
|
+
k_eDescriptionInvalid = 13;
|
|
183
|
+
k_eBlocked = 14;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
optional .CMsgClientToGCSetGuildInfoResponse.EResponse result = 1 [default = k_eInternalError];
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
message CMsgClientToGCRequestGuildData {
|
|
190
|
+
optional uint32 guild_id = 1;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
message CMsgClientToGCRequestGuildDataResponse {
|
|
194
|
+
enum EResponse {
|
|
195
|
+
k_eInternalError = 0;
|
|
196
|
+
k_eSuccess = 1;
|
|
197
|
+
k_eTooBusy = 2;
|
|
198
|
+
k_eDisabled = 3;
|
|
199
|
+
k_eTimeout = 4;
|
|
200
|
+
k_eInvalidGuild = 5;
|
|
201
|
+
k_eNotMember = 6;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
optional .CMsgClientToGCRequestGuildDataResponse.EResponse result = 1 [default = k_eInternalError];
|
|
205
|
+
optional .CMsgGuildData guild_data = 2;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
message CMsgGCToClientGuildDataUpdated {
|
|
209
|
+
optional .CMsgGuildData guild_data = 1;
|
|
210
|
+
optional uint32 update_flags = 2;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
message CMsgGCToClientGuildMembersDataUpdated {
|
|
214
|
+
optional uint32 guild_id = 1;
|
|
215
|
+
repeated .CMsgGuildMember members_data = 2;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
message CMsgClientToGCRequestGuildMembership {
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
message CMsgClientToGCRequestGuildMembershipResponse {
|
|
222
|
+
enum EResponse {
|
|
223
|
+
k_eInternalError = 0;
|
|
224
|
+
k_eSuccess = 1;
|
|
225
|
+
k_eTooBusy = 2;
|
|
226
|
+
k_eDisabled = 3;
|
|
227
|
+
k_eTimeout = 4;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
optional .CMsgClientToGCRequestGuildMembershipResponse.EResponse result = 1 [default = k_eInternalError];
|
|
231
|
+
optional .CMsgAccountGuildMemberships guild_memberships = 2;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
message CMsgGCToClientGuildMembershipUpdated {
|
|
235
|
+
optional .CMsgAccountGuildMemberships guild_memberships = 1;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
message CMsgClientToGCJoinGuild {
|
|
239
|
+
optional uint32 guild_id = 1;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
message CMsgClientToGCJoinGuildResponse {
|
|
243
|
+
enum EResponse {
|
|
244
|
+
k_eInternalError = 0;
|
|
245
|
+
k_eSuccess = 1;
|
|
246
|
+
k_eTooBusy = 2;
|
|
247
|
+
k_eDisabled = 3;
|
|
248
|
+
k_eTimeout = 4;
|
|
249
|
+
k_eInvalidGuild = 5;
|
|
250
|
+
k_eGuildFull = 6;
|
|
251
|
+
k_eAlreadyMember = 7;
|
|
252
|
+
k_eGuildLimit = 8;
|
|
253
|
+
k_eGuildRequiresInvite = 9;
|
|
254
|
+
k_eGuildRankTooLow = 10;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
optional .CMsgClientToGCJoinGuildResponse.EResponse result = 1 [default = k_eInternalError];
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
message CMsgClientToGCLeaveGuild {
|
|
261
|
+
optional uint32 guild_id = 1;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
message CMsgClientToGCLeaveGuildResponse {
|
|
265
|
+
enum EResponse {
|
|
266
|
+
k_eInternalError = 0;
|
|
267
|
+
k_eSuccess = 1;
|
|
268
|
+
k_eTooBusy = 2;
|
|
269
|
+
k_eDisabled = 3;
|
|
270
|
+
k_eTimeout = 4;
|
|
271
|
+
k_eInvalidGuild = 5;
|
|
272
|
+
k_eNotMember = 6;
|
|
273
|
+
k_eLastAdmin = 7;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
optional .CMsgClientToGCLeaveGuildResponse.EResponse result = 1 [default = k_eInternalError];
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
message CMsgClientToGCKickGuildMember {
|
|
280
|
+
optional uint32 guild_id = 1;
|
|
281
|
+
optional uint32 target_account_id = 2;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
message CMsgClientToGCKickGuildMemberResponse {
|
|
285
|
+
enum EResponse {
|
|
286
|
+
k_eInternalError = 0;
|
|
287
|
+
k_eSuccess = 1;
|
|
288
|
+
k_eTooBusy = 2;
|
|
289
|
+
k_eDisabled = 3;
|
|
290
|
+
k_eTimeout = 4;
|
|
291
|
+
k_eInvalidGuild = 5;
|
|
292
|
+
k_eRequesterNotMember = 6;
|
|
293
|
+
k_eTargetNotMember = 7;
|
|
294
|
+
k_eNoPermission = 8;
|
|
295
|
+
k_eCantKickSelf = 9;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
optional .CMsgClientToGCKickGuildMemberResponse.EResponse result = 1 [default = k_eInternalError];
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
message CMsgClientToGCSetGuildMemberRole {
|
|
302
|
+
optional uint32 guild_id = 1;
|
|
303
|
+
optional uint32 target_account_id = 2;
|
|
304
|
+
optional uint32 target_role_id = 3;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
message CMsgClientToGCSetGuildMemberRoleResponse {
|
|
308
|
+
enum EResponse {
|
|
309
|
+
k_eInternalError = 0;
|
|
310
|
+
k_eSuccess = 1;
|
|
311
|
+
k_eTooBusy = 2;
|
|
312
|
+
k_eDisabled = 3;
|
|
313
|
+
k_eTimeout = 4;
|
|
314
|
+
k_eInvalidGuild = 5;
|
|
315
|
+
k_eRequesterNotMember = 6;
|
|
316
|
+
k_eTargetNotMember = 7;
|
|
317
|
+
k_eNoPermission = 8;
|
|
318
|
+
k_eInvalidRole = 9;
|
|
319
|
+
k_eAdminViolation = 10;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
optional .CMsgClientToGCSetGuildMemberRoleResponse.EResponse result = 1 [default = k_eInternalError];
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
message CMsgClientToGCInviteToGuild {
|
|
326
|
+
optional uint32 guild_id = 1;
|
|
327
|
+
optional uint32 target_account_id = 2;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
message CMsgClientToGCInviteToGuildResponse {
|
|
331
|
+
enum EResponse {
|
|
332
|
+
k_eInternalError = 0;
|
|
333
|
+
k_eSuccess = 1;
|
|
334
|
+
k_eTooBusy = 2;
|
|
335
|
+
k_eDisabled = 3;
|
|
336
|
+
k_eTimeout = 4;
|
|
337
|
+
k_eInvalidGuild = 5;
|
|
338
|
+
k_eGuildFull = 6;
|
|
339
|
+
k_eRequesterNotMember = 7;
|
|
340
|
+
k_eAlreadyAMember = 8;
|
|
341
|
+
k_eAlreadyInvited = 9;
|
|
342
|
+
k_eNoInvitePermissions = 10;
|
|
343
|
+
k_eTooManyInvites = 11;
|
|
344
|
+
k_eInvalidUser = 12;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
optional .CMsgClientToGCInviteToGuildResponse.EResponse result = 1 [default = k_eInternalError];
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
message CMsgClientToGCDeclineInviteToGuild {
|
|
351
|
+
optional uint32 guild_id = 1;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
message CMsgClientToGCDeclineInviteToGuildResponse {
|
|
355
|
+
enum EResponse {
|
|
356
|
+
k_eInternalError = 0;
|
|
357
|
+
k_eSuccess = 1;
|
|
358
|
+
k_eTooBusy = 2;
|
|
359
|
+
k_eDisabled = 3;
|
|
360
|
+
k_eTimeout = 4;
|
|
361
|
+
k_eInvalidGuild = 5;
|
|
362
|
+
k_eNoInviteFound = 6;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
optional .CMsgClientToGCDeclineInviteToGuildResponse.EResponse result = 1 [default = k_eInternalError];
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
message CMsgClientToGCAcceptInviteToGuild {
|
|
369
|
+
optional uint32 guild_id = 1;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
message CMsgClientToGCAcceptInviteToGuildResponse {
|
|
373
|
+
enum EResponse {
|
|
374
|
+
k_eInternalError = 0;
|
|
375
|
+
k_eSuccess = 1;
|
|
376
|
+
k_eTooBusy = 2;
|
|
377
|
+
k_eDisabled = 3;
|
|
378
|
+
k_eTimeout = 4;
|
|
379
|
+
k_eInvalidGuild = 5;
|
|
380
|
+
k_eNoInviteFound = 6;
|
|
381
|
+
k_eGuildFull = 7;
|
|
382
|
+
k_eGuildLimit = 8;
|
|
383
|
+
k_eInvalidInviter = 9;
|
|
384
|
+
k_eAlreadyInGuild = 10;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
optional .CMsgClientToGCAcceptInviteToGuildResponse.EResponse result = 1 [default = k_eInternalError];
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
message CMsgClientToGCCancelInviteToGuild {
|
|
391
|
+
optional uint32 guild_id = 1;
|
|
392
|
+
optional uint32 target_account_id = 2;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
message CMsgClientToGCCancelInviteToGuildResponse {
|
|
396
|
+
enum EResponse {
|
|
397
|
+
k_eInternalError = 0;
|
|
398
|
+
k_eSuccess = 1;
|
|
399
|
+
k_eTooBusy = 2;
|
|
400
|
+
k_eDisabled = 3;
|
|
401
|
+
k_eTimeout = 4;
|
|
402
|
+
k_eInvalidGuild = 5;
|
|
403
|
+
k_eNoInviteFound = 6;
|
|
404
|
+
k_eNoPermissions = 7;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
optional .CMsgClientToGCCancelInviteToGuildResponse.EResponse result = 1 [default = k_eInternalError];
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
message CMsgClientToGCAddGuildRole {
|
|
411
|
+
optional uint32 guild_id = 1;
|
|
412
|
+
optional string role_name = 2;
|
|
413
|
+
optional uint32 role_flags = 3;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
message CMsgClientToGCAddGuildRoleResponse {
|
|
417
|
+
enum EResponse {
|
|
418
|
+
k_eInternalError = 0;
|
|
419
|
+
k_eSuccess = 1;
|
|
420
|
+
k_eTooBusy = 2;
|
|
421
|
+
k_eDisabled = 3;
|
|
422
|
+
k_eTimeout = 4;
|
|
423
|
+
k_eInvalidGuild = 5;
|
|
424
|
+
k_eNameAlreadyUsed = 6;
|
|
425
|
+
k_eNoPermissions = 7;
|
|
426
|
+
k_eInvalidFlags = 8;
|
|
427
|
+
k_eInvalidName = 9;
|
|
428
|
+
k_eAdminViolation = 10;
|
|
429
|
+
k_eTooManyRoles = 11;
|
|
430
|
+
k_eBlocked = 12;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
optional .CMsgClientToGCAddGuildRoleResponse.EResponse result = 1 [default = k_eInternalError];
|
|
434
|
+
optional uint32 role_id = 2;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
message CMsgClientToGCModifyGuildRole {
|
|
438
|
+
optional uint32 guild_id = 1;
|
|
439
|
+
optional uint32 role_id = 2;
|
|
440
|
+
optional string role_name = 3;
|
|
441
|
+
optional uint32 role_flags = 4;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
message CMsgClientToGCModifyGuildRoleResponse {
|
|
445
|
+
enum EResponse {
|
|
446
|
+
k_eInternalError = 0;
|
|
447
|
+
k_eSuccess = 1;
|
|
448
|
+
k_eTooBusy = 2;
|
|
449
|
+
k_eDisabled = 3;
|
|
450
|
+
k_eTimeout = 4;
|
|
451
|
+
k_eInvalidGuild = 5;
|
|
452
|
+
k_eInvalidRole = 6;
|
|
453
|
+
k_eNameAlreadyUsed = 7;
|
|
454
|
+
k_eInvalidFlags = 8;
|
|
455
|
+
k_eInvalidName = 9;
|
|
456
|
+
k_eNoPermissions = 10;
|
|
457
|
+
k_eAdminViolation = 11;
|
|
458
|
+
k_eBlocked = 12;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
optional .CMsgClientToGCModifyGuildRoleResponse.EResponse result = 1 [default = k_eInternalError];
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
message CMsgClientToGCRemoveGuildRole {
|
|
465
|
+
optional uint32 guild_id = 1;
|
|
466
|
+
optional uint32 role_id = 2;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
message CMsgClientToGCRemoveGuildRoleResponse {
|
|
470
|
+
enum EResponse {
|
|
471
|
+
k_eInternalError = 0;
|
|
472
|
+
k_eSuccess = 1;
|
|
473
|
+
k_eTooBusy = 2;
|
|
474
|
+
k_eDisabled = 3;
|
|
475
|
+
k_eTimeout = 4;
|
|
476
|
+
k_eInvalidGuild = 5;
|
|
477
|
+
k_eInvalidRole = 6;
|
|
478
|
+
k_eRoleNotEmpty = 7;
|
|
479
|
+
k_eNoPermissions = 8;
|
|
480
|
+
k_eAdminViolation = 9;
|
|
481
|
+
k_eCantRemoveDefaultRole = 10;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
optional .CMsgClientToGCRemoveGuildRoleResponse.EResponse result = 1 [default = k_eInternalError];
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
message CMsgClientToGCSetGuildRoleOrder {
|
|
488
|
+
optional uint32 guild_id = 1;
|
|
489
|
+
repeated uint32 requested_role_ids = 2;
|
|
490
|
+
repeated uint32 previous_role_ids = 3;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
message CMsgClientToGCSetGuildRoleOrderResponse {
|
|
494
|
+
enum EResponse {
|
|
495
|
+
k_eInternalError = 0;
|
|
496
|
+
k_eSuccess = 1;
|
|
497
|
+
k_eTooBusy = 2;
|
|
498
|
+
k_eDisabled = 3;
|
|
499
|
+
k_eTimeout = 4;
|
|
500
|
+
k_eInvalidGuild = 5;
|
|
501
|
+
k_eInvalidRole = 6;
|
|
502
|
+
k_eInvalidOrder = 7;
|
|
503
|
+
k_eNoPermissions = 8;
|
|
504
|
+
k_eAdminViolation = 9;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
optional .CMsgClientToGCSetGuildRoleOrderResponse.EResponse result = 1 [default = k_eInternalError];
|
|
508
|
+
repeated uint32 confirmed_role_ids = 2;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
message CMsgClientToGCGuildFeedRequest {
|
|
512
|
+
optional uint32 guild_id = 1;
|
|
513
|
+
optional uint64 last_seen_id = 2;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
message CMsgClientToGCRequestGuildFeedResponse {
|
|
517
|
+
enum EResponse {
|
|
518
|
+
k_eInternalError = 0;
|
|
519
|
+
k_eSuccess = 1;
|
|
520
|
+
k_eTooBusy = 2;
|
|
521
|
+
k_eDisabled = 3;
|
|
522
|
+
k_eTimeout = 4;
|
|
523
|
+
k_eInvalidGuild = 5;
|
|
524
|
+
k_eNoPermissions = 6;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
optional .CMsgClientToGCRequestGuildFeedResponse.EResponse result = 1 [default = k_eInternalError];
|
|
528
|
+
optional uint32 guild_id = 2;
|
|
529
|
+
repeated .CMsgGuildFeedEvent feed_events = 3;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
message CMsgGCToClientGuildFeedUpdated {
|
|
533
|
+
optional uint32 guild_id = 1;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
message CMsgClientToGCAddPlayerToGuildChat {
|
|
537
|
+
optional uint32 guild_id = 1;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
message CMsgClientToGCAddPlayerToGuildChatResponse {
|
|
541
|
+
enum EResponse {
|
|
542
|
+
k_eInternalError = 0;
|
|
543
|
+
k_eSuccess = 1;
|
|
544
|
+
k_eTooBusy = 2;
|
|
545
|
+
k_eDisabled = 3;
|
|
546
|
+
k_eTimeout = 4;
|
|
547
|
+
k_eInvalidGuild = 5;
|
|
548
|
+
k_eNotMember = 6;
|
|
549
|
+
k_eSteamChatNotEnabled = 7;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
optional .CMsgClientToGCAddPlayerToGuildChatResponse.EResponse result = 1 [default = k_eInternalError];
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
message CMsgFindGuildByTagResponse {
|
|
556
|
+
enum EResponse {
|
|
557
|
+
k_eInternalError = 0;
|
|
558
|
+
k_eSuccess = 1;
|
|
559
|
+
k_eTooBusy = 2;
|
|
560
|
+
k_eDisabled = 3;
|
|
561
|
+
k_eTimeout = 4;
|
|
562
|
+
k_eInvalidTag = 5;
|
|
563
|
+
k_eGuildNotFound = 6;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
optional .CMsgFindGuildByTagResponse.EResponse result = 1 [default = k_eInternalError];
|
|
567
|
+
optional uint32 guild_id = 2;
|
|
568
|
+
optional .CMsgGuildSummary guild_summary = 3;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
message CMsgSearchForOpenGuildsResponse {
|
|
572
|
+
message SearchResult {
|
|
573
|
+
optional uint32 guild_id = 1;
|
|
574
|
+
optional .CMsgGuildSummary guild_summary = 2;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
enum EResponse {
|
|
578
|
+
k_eInternalError = 0;
|
|
579
|
+
k_eSuccess = 1;
|
|
580
|
+
k_eTooBusy = 2;
|
|
581
|
+
k_eDisabled = 3;
|
|
582
|
+
k_eTimeout = 4;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
optional .CMsgSearchForOpenGuildsResponse.EResponse result = 1 [default = k_eInternalError];
|
|
586
|
+
repeated .CMsgSearchForOpenGuildsResponse.SearchResult search_results = 2;
|
|
587
|
+
optional bool use_whitelist = 3;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
message CMsgClientToGCReportGuildContent {
|
|
591
|
+
enum EContentFlags {
|
|
592
|
+
k_eNone = 0;
|
|
593
|
+
k_eInappropriateName = 1;
|
|
594
|
+
k_eInappropriateTag = 2;
|
|
595
|
+
k_eInappropriateLogo = 4;
|
|
596
|
+
k_eValidFlags = 7;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
optional uint32 guild_id = 1;
|
|
600
|
+
optional uint32 guild_content_flags = 2;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
message CMsgClientToGCReportGuildContentResponse {
|
|
604
|
+
enum EResponse {
|
|
605
|
+
k_eInternalError = 0;
|
|
606
|
+
k_eSuccess = 1;
|
|
607
|
+
k_eTooBusy = 2;
|
|
608
|
+
k_eDisabled = 3;
|
|
609
|
+
k_eTimeout = 4;
|
|
610
|
+
k_eGuildNotFound = 5;
|
|
611
|
+
k_eFlagsInvalid = 6;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
optional .CMsgClientToGCReportGuildContentResponse.EResponse result = 1 [default = k_eInternalError];
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
message CMsgClientToGCRequestAccountGuildPersonaInfo {
|
|
618
|
+
optional uint32 account_id = 1;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
message CMsgClientToGCRequestAccountGuildPersonaInfoResponse {
|
|
622
|
+
enum EResponse {
|
|
623
|
+
k_eInternalError = 0;
|
|
624
|
+
k_eSuccess = 1;
|
|
625
|
+
k_eTooBusy = 2;
|
|
626
|
+
k_eDisabled = 3;
|
|
627
|
+
k_eTimeout = 4;
|
|
628
|
+
k_eInvalidAccount = 5;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
optional .CMsgClientToGCRequestAccountGuildPersonaInfoResponse.EResponse result = 1 [default = k_eInternalError];
|
|
632
|
+
optional .CMsgAccountGuildsPersonaInfo persona_info = 2;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
message CMsgClientToGCRequestAccountGuildPersonaInfoBatch {
|
|
636
|
+
repeated uint32 account_ids = 1;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
message CMsgClientToGCRequestAccountGuildPersonaInfoBatchResponse {
|
|
640
|
+
enum EResponse {
|
|
641
|
+
k_eInternalError = 0;
|
|
642
|
+
k_eSuccess = 1;
|
|
643
|
+
k_eTooBusy = 2;
|
|
644
|
+
k_eDisabled = 3;
|
|
645
|
+
k_eTimeout = 4;
|
|
646
|
+
k_eInvalidRequest = 5;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
optional .CMsgClientToGCRequestAccountGuildPersonaInfoBatchResponse.EResponse result = 1 [default = k_eInternalError];
|
|
650
|
+
repeated .CMsgAccountGuildsPersonaInfo persona_infos = 2;
|
|
651
|
+
}
|