steamutils 1.2.51 → 1.2.53

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.
Files changed (226) hide show
  1. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  2. package/.idea/steamutils.iml +1 -1
  3. package/.idea/vcs.xml +1 -1
  4. package/SteamClient.js +18 -12
  5. package/example.js +1 -0
  6. package/helpers/protos.js +21 -0
  7. package/package.json +6 -6
  8. package/protos/{base_gcmessages.proto → csgo/base_gcmessages_csgo.proto} +547 -533
  9. package/protos/csgo/c_peer2peer_netmessages.proto +55 -0
  10. package/protos/csgo/clientmessages.proto +48 -0
  11. package/protos/csgo/connectionless_netmessages.proto +19 -0
  12. package/protos/csgo/cs_gameevents.proto +34 -0
  13. package/protos/csgo/cs_usercmd.proto +34 -0
  14. package/protos/{cstrike15_gcmessages.proto → csgo/cstrike15_gcmessages.proto} +1402 -1344
  15. package/protos/{cstrike15_usermessages.proto → csgo/cstrike15_usermessages.proto} +596 -597
  16. package/protos/csgo/demo.proto +160 -0
  17. package/protos/{econ_gcmessages.proto → csgo/econ_gcmessages.proto} +228 -225
  18. package/protos/{engine_gcmessages.proto → csgo/engine_gcmessages.proto} +14 -16
  19. package/protos/{enums_clientserver.proto → csgo/enums_clientserver.proto} +1529 -1534
  20. package/protos/{fatdemo.proto → csgo/fatdemo.proto} +125 -125
  21. package/protos/csgo/gameevents.proto +120 -0
  22. package/protos/{gcsdk_gcmessages.proto → csgo/gcsdk_gcmessages.proto} +323 -302
  23. package/protos/{gcsystemmsgs.proto → csgo/gcsystemmsgs.proto} +242 -246
  24. package/protos/csgo/netmessages.proto +604 -0
  25. package/protos/csgo/network_connection.proto +126 -0
  26. package/protos/csgo/networkbasetypes.proto +244 -0
  27. package/protos/csgo/networksystem_protomessages.proto +17 -0
  28. package/protos/{steamdatagram_messages_auth.proto → csgo/steamdatagram_messages_auth.proto} +65 -65
  29. package/protos/csgo/steamdatagram_messages_sdr.proto +534 -0
  30. package/protos/{steammessages.proto → csgo/steammessages.proto} +597 -601
  31. package/protos/{steammessages_base.proto → csgo/steammessages_base.proto} +301 -288
  32. package/protos/csgo/steammessages_cloud.steamworkssdk.proto +68 -0
  33. package/protos/{steammessages_gamenetworkingui.proto → csgo/steammessages_gamenetworkingui.proto} +61 -42
  34. package/protos/csgo/steammessages_helprequest.steamworkssdk.proto +22 -0
  35. package/protos/csgo/steammessages_oauth.steamworkssdk.proto +18 -0
  36. package/protos/csgo/steammessages_player.steamworkssdk.proto +254 -0
  37. package/protos/csgo/steammessages_publishedfile.steamworkssdk.proto +233 -0
  38. package/protos/csgo/steammessages_steamlearn.steamworkssdk.proto +357 -0
  39. package/protos/csgo/steammessages_unified_base.steamworkssdk.proto +30 -0
  40. package/protos/{steamnetworkingsockets_messages.proto → csgo/steamnetworkingsockets_messages.proto} +205 -204
  41. package/protos/{steamnetworkingsockets_messages_certs.proto → csgo/steamnetworkingsockets_messages_certs.proto} +39 -38
  42. package/protos/{steamnetworkingsockets_messages_udp.proto → csgo/steamnetworkingsockets_messages_udp.proto} +75 -75
  43. package/protos/csgo/te.proto +259 -0
  44. package/protos/{uifontfile_format.proto → csgo/uifontfile_format.proto} +13 -16
  45. package/protos/csgo/usercmd.proto +38 -0
  46. package/protos/csgo/usermessages.proto +721 -0
  47. package/protos/csgo/valveextensions.proto +17 -0
  48. package/protos/google/protobuf/descriptor.proto +281 -0
  49. package/protos/{clientmetrics.proto → steam/clientmetrics.proto} +45 -45
  50. package/protos/{content_manifest.proto → steam/content_manifest.proto} +62 -62
  51. package/protos/steam/contenthubs.proto +41 -0
  52. package/protos/{encrypted_app_ticket.proto → steam/encrypted_app_ticket.proto} +10 -10
  53. package/protos/{enums.proto → steam/enums.proto} +444 -285
  54. package/protos/steam/enums_clientserver.proto +1539 -0
  55. package/protos/steam/enums_productinfo.proto +13 -0
  56. package/protos/{htmlmessages.proto → steam/htmlmessages.proto} +1027 -993
  57. package/protos/steam/offline_ticket.proto +8 -0
  58. package/protos/{renderer → steam/renderer}/rendermessages.proto +893 -893
  59. package/protos/steam/steamdatagram_messages_auth.proto +65 -0
  60. package/protos/{steamdatagram_messages_sdr.proto → steam/steamdatagram_messages_sdr.proto} +533 -518
  61. package/protos/{steammessages_accounthardware.steamclient.proto → steam/steammessages_accounthardware.steamclient.proto} +201 -188
  62. package/protos/{steammessages_appoverview.proto → steam/steammessages_appoverview.proto} +187 -185
  63. package/protos/steam/steammessages_auth.steamclient.proto +435 -0
  64. package/protos/steam/steammessages_base.proto +332 -0
  65. package/protos/{steammessages_broadcast.steamclient.proto → steam/steammessages_broadcast.steamclient.proto} +759 -756
  66. package/protos/{steammessages_chat.steamclient.proto → steam/steammessages_chat.steamclient.proto} +1281 -1281
  67. package/protos/steam/steammessages_client_objects.proto +645 -0
  68. package/protos/{steammessages_clientlanp2p.proto → steam/steammessages_clientlanp2p.proto} +42 -26
  69. package/protos/{steammessages_clientmetrics.steamclient.proto → steam/steammessages_clientmetrics.steamclient.proto} +194 -176
  70. package/protos/{steammessages_clientnotificationtypes.proto → steam/steammessages_clientnotificationtypes.proto} +231 -129
  71. package/protos/{steammessages_clientserver.proto → steam/steammessages_clientserver.proto} +392 -384
  72. package/protos/{steammessages_clientserver_2.proto → steam/steammessages_clientserver_2.proto} +760 -776
  73. package/protos/{steammessages_clientserver_appinfo.proto → steam/steammessages_clientserver_appinfo.proto} +131 -166
  74. package/protos/{steammessages_clientserver_friends.proto → steam/steammessages_clientserver_friends.proto} +260 -260
  75. package/protos/{steammessages_clientserver_gameservers.proto → steam/steammessages_clientserver_gameservers.proto} +159 -159
  76. package/protos/{steammessages_clientserver_lbs.proto → steam/steammessages_clientserver_lbs.proto} +70 -70
  77. package/protos/{steammessages_clientserver_login.proto → steam/steammessages_clientserver_login.proto} +167 -159
  78. package/protos/{steammessages_clientserver_mms.proto → steam/steammessages_clientserver_mms.proto} +228 -235
  79. package/protos/{steammessages_clientserver_ucm.proto → steam/steammessages_clientserver_ucm.proto} +205 -202
  80. package/protos/{steammessages_clientserver_uds.proto → steam/steammessages_clientserver_uds.proto} +124 -104
  81. package/protos/{steammessages_clientserver_ufs.proto → steam/steammessages_clientserver_ufs.proto} +172 -172
  82. package/protos/{steammessages_clientserver_userstats.proto → steam/steammessages_clientserver_userstats.proto} +80 -80
  83. package/protos/steam/steammessages_clientsettings.proto +168 -0
  84. package/protos/{steammessages_cloud.steamclient.proto → steam/steammessages_cloud.steamclient.proto} +513 -512
  85. package/protos/{steammessages_contentsystem.steamclient.proto → steam/steammessages_contentsystem.steamclient.proto} +115 -77
  86. package/protos/{steammessages_credentials.steamclient.proto → steam/steammessages_credentials.steamclient.proto} +115 -141
  87. package/protos/steam/steammessages_datapublisher.steamclient.proto +116 -0
  88. package/protos/{steammessages_depotbuilder.steamclient.proto → steam/steammessages_depotbuilder.steamclient.proto} +118 -118
  89. package/protos/{steammessages_deviceauth.steamclient.proto → steam/steammessages_deviceauth.steamclient.proto} +203 -200
  90. package/protos/{steammessages_econ.steamclient.proto → steam/steammessages_econ.steamclient.proto} +150 -105
  91. package/protos/{steammessages_friendmessages.steamclient.proto → steam/steammessages_friendmessages.steamclient.proto} +168 -168
  92. package/protos/{steammessages_gamenetworking.steamclient.proto → steam/steammessages_gamenetworking.steamclient.proto} +32 -32
  93. package/protos/steam/steammessages_gamenetworkingui.proto +61 -0
  94. package/protos/{steammessages_gamenotifications.steamclient.proto → steam/steammessages_gamenotifications.steamclient.proto} +156 -156
  95. package/protos/{steammessages_gameservers.steamclient.proto → steam/steammessages_gameservers.steamclient.proto} +152 -152
  96. package/protos/{steammessages_hiddevices.proto → steam/steammessages_hiddevices.proto} +157 -156
  97. package/protos/{steammessages_inventory.steamclient.proto → steam/steammessages_inventory.steamclient.proto} +224 -224
  98. package/protos/{steammessages_linkfilter.steamclient.proto → steam/steammessages_linkfilter.steamclient.proto} +49 -49
  99. package/protos/{steammessages_lobbymatchmaking.steamclient.proto → steam/steammessages_lobbymatchmaking.steamclient.proto} +33 -33
  100. package/protos/{steammessages_market.steamclient.proto → steam/steammessages_market.steamclient.proto} +26 -26
  101. package/protos/steam/steammessages_marketingmessages.steamclient.proto +274 -0
  102. package/protos/{steammessages_offline.steamclient.proto → steam/steammessages_offline.steamclient.proto} +40 -37
  103. package/protos/{steammessages_parental.steamclient.proto → steam/steammessages_parental.steamclient.proto} +228 -186
  104. package/protos/{steammessages_parties.steamclient.proto → steam/steammessages_parties.steamclient.proto} +94 -94
  105. package/protos/{steammessages_partnerapps.steamclient.proto → steam/steammessages_partnerapps.steamclient.proto} +138 -136
  106. package/protos/{steammessages_player.steamclient.proto → steam/steammessages_player.steamclient.proto} +1060 -912
  107. package/protos/{steammessages_publishedfile.steamclient.proto → steam/steammessages_publishedfile.steamclient.proto} +813 -711
  108. package/protos/{steammessages_qms.steamclient.proto → steam/steammessages_qms.steamclient.proto} +125 -125
  109. package/protos/{steammessages_remoteclient.proto → steam/steammessages_remoteclient.proto} +99 -99
  110. package/protos/{steammessages_remoteclient_discovery.proto → steam/steammessages_remoteclient_discovery.proto} +235 -228
  111. package/protos/{steammessages_remoteclient_service.steamclient.proto → steam/steammessages_remoteclient_service.steamclient.proto} +86 -90
  112. package/protos/{steammessages_remoteclient_service_messages.proto → steam/steammessages_remoteclient_service_messages.proto} +217 -196
  113. package/protos/{steammessages_remoteplay.proto → steam/steammessages_remoteplay.proto} +976 -871
  114. package/protos/{steammessages_secrets.steamclient.proto → steam/steammessages_secrets.steamclient.proto} +39 -39
  115. package/protos/{steammessages_shader.steamclient.proto → steam/steammessages_shader.steamclient.proto} +108 -96
  116. package/protos/{steammessages_site_license.steamclient.proto → steam/steammessages_site_license.steamclient.proto} +128 -128
  117. package/protos/{steammessages_sitelicenseclient.proto → steam/steammessages_sitelicenseclient.proto} +38 -38
  118. package/protos/{steammessages_siteserverui.proto → steam/steammessages_siteserverui.proto} +130 -130
  119. package/protos/{steammessages_star.steamclient.proto → steam/steammessages_star.steamclient.proto} +64 -64
  120. package/protos/{steammessages_steamtv.steamclient.proto → steam/steammessages_steamtv.steamclient.proto} +630 -630
  121. package/protos/{steammessages_store.steamclient.proto → steam/steammessages_store.steamclient.proto} +371 -262
  122. package/protos/steam/steammessages_storebrowse.steamclient.proto +402 -0
  123. package/protos/{steammessages_timedtrial.steamclient.proto → steam/steammessages_timedtrial.steamclient.proto} +50 -50
  124. package/protos/{steammessages_twofactor.steamclient.proto → steam/steammessages_twofactor.steamclient.proto} +186 -154
  125. package/protos/{steammessages_unified_base.steamclient.proto → steam/steammessages_unified_base.steamclient.proto} +33 -33
  126. package/protos/{steammessages_unified_test.steamclient.proto → steam/steammessages_unified_test.steamclient.proto} +61 -50
  127. package/protos/{steammessages_useraccount.steamclient.proto → steam/steammessages_useraccount.steamclient.proto} +249 -210
  128. package/protos/{steammessages_vac.steamclient.proto → steam/steammessages_vac.steamclient.proto} +44 -44
  129. package/protos/steam/steammessages_video.steamclient.proto +171 -0
  130. package/protos/{steammessages_virtualcontroller.proto → steam/steammessages_virtualcontroller.proto} +138 -138
  131. package/protos/{steammessages_workshop.steamclient.proto → steam/steammessages_workshop.steamclient.proto} +23 -23
  132. package/protos/steam/steamnetworkingsockets_messages.proto +205 -0
  133. package/protos/steam/steamnetworkingsockets_messages_certs.proto +39 -0
  134. package/protos/steam/steamnetworkingsockets_messages_udp.proto +75 -0
  135. package/protos/steam/webuimessages_base.proto +24 -0
  136. package/protos/steam/webuimessages_gamenotes.proto +21 -0
  137. package/protos/steam/webuimessages_steamengine.proto +32 -0
  138. package/protos/steam/webuimessages_storagedevicemanager.proto +110 -0
  139. package/protos/steam/webuimessages_systemmanager.proto +17 -0
  140. package/protos/steam/webuimessages_transport.proto +18 -0
  141. package/protos/steam/webuimessages_transportvalidation.proto +97 -0
  142. package/protos/webui/common.proto +5508 -0
  143. package/protos/webui/common_base.proto +27 -0
  144. package/protos/webui/service_accountlinking.proto +27 -0
  145. package/protos/webui/service_accountprivacy.proto +42 -0
  146. package/protos/webui/service_auction.proto +97 -0
  147. package/protos/webui/service_authentication.proto +222 -0
  148. package/protos/webui/service_authenticationsupport.proto +74 -0
  149. package/protos/webui/service_broadcast.proto +562 -0
  150. package/protos/webui/service_chat.proto +11 -0
  151. package/protos/webui/service_chatroom.proto +810 -0
  152. package/protos/webui/service_chatusability.proto +107 -0
  153. package/protos/webui/service_clan.proto +41 -0
  154. package/protos/webui/service_clanchatrooms.proto +25 -0
  155. package/protos/webui/service_clanfaqs.proto +202 -0
  156. package/protos/webui/service_clientcomm.proto +150 -0
  157. package/protos/webui/service_clientmetrics.proto +63 -0
  158. package/protos/webui/service_cloud.proto +222 -0
  159. package/protos/webui/service_cloudconfigstore.proto +51 -0
  160. package/protos/webui/service_cloudgaming.proto +30 -0
  161. package/protos/webui/service_community.proto +365 -0
  162. package/protos/webui/service_econ.proto +134 -0
  163. package/protos/webui/service_embedded.proto +24 -0
  164. package/protos/webui/service_experimentservice.proto +6 -0
  165. package/protos/webui/service_fovasvideo.proto +15 -0
  166. package/protos/webui/service_friendmessages.proto +133 -0
  167. package/protos/webui/service_friendslist.proto +70 -0
  168. package/protos/webui/service_gamenotes.proto +15 -0
  169. package/protos/webui/service_helprequestlogs.proto +26 -0
  170. package/protos/webui/service_loyaltyrewards.proto +252 -0
  171. package/protos/webui/service_marketingmessages.proto +184 -0
  172. package/protos/webui/service_mobileapp.proto +18 -0
  173. package/protos/webui/service_mobileauth.proto +24 -0
  174. package/protos/webui/service_mobiledevice.proto +26 -0
  175. package/protos/webui/service_mobileperaccount.proto +31 -0
  176. package/protos/webui/service_news.proto +101 -0
  177. package/protos/webui/service_parental.proto +178 -0
  178. package/protos/webui/service_partnermembershipinvite.proto +29 -0
  179. package/protos/webui/service_partnerstorebrowse.proto +6 -0
  180. package/protos/webui/service_phone.proto +51 -0
  181. package/protos/webui/service_physicalgoods.proto +15 -0
  182. package/protos/webui/service_player.proto +885 -0
  183. package/protos/webui/service_promotioneventinvites.proto +50 -0
  184. package/protos/webui/service_promotionplanning.proto +72 -0
  185. package/protos/webui/service_publishedfile.proto +687 -0
  186. package/protos/webui/service_publishing.proto +119 -0
  187. package/protos/webui/service_quest.proto +127 -0
  188. package/protos/webui/service_salefeature.proto +315 -0
  189. package/protos/webui/service_saleitemrewards.proto +54 -0
  190. package/protos/webui/service_shoppingcart.proto +108 -0
  191. package/protos/webui/service_steamawards.proto +19 -0
  192. package/protos/webui/service_steamcharts.proto +75 -0
  193. package/protos/webui/service_steamengine.proto +36 -0
  194. package/protos/webui/service_steamlearn.proto +727 -0
  195. package/protos/webui/service_steamnotification.proto +84 -0
  196. package/protos/webui/service_steamtv.proto +495 -0
  197. package/protos/webui/service_steamvrvoicechat.proto +67 -0
  198. package/protos/webui/service_steamvrwebrtc.proto +48 -0
  199. package/protos/webui/service_storagedevicemanager.proto +104 -0
  200. package/protos/webui/service_store.proto +289 -0
  201. package/protos/webui/service_storeappsimilarity.proto +76 -0
  202. package/protos/webui/service_storebrowse.proto +73 -0
  203. package/protos/webui/service_storequery.proto +97 -0
  204. package/protos/webui/service_storesales.proto +15 -0
  205. package/protos/webui/service_storetopsellers.proto +44 -0
  206. package/protos/webui/service_systemmanager.proto +11 -0
  207. package/protos/webui/service_test_transporterror.proto +6 -0
  208. package/protos/webui/service_transportauth.proto +12 -0
  209. package/protos/webui/service_transportvalidation.proto +69 -0
  210. package/protos/webui/service_twofactor.proto +181 -0
  211. package/protos/webui/service_useraccount.proto +138 -0
  212. package/protos/webui/service_usergameactivity.proto +34 -0
  213. package/protos/webui/service_usergamenotes.proto +53 -0
  214. package/protos/webui/service_usernews.proto +68 -0
  215. package/protos/webui/service_userreviews.proto +96 -0
  216. package/protos/webui/service_video.proto +128 -0
  217. package/protos/webui/service_voicechat.proto +139 -0
  218. package/protos/webui/service_webrtc.proto +52 -0
  219. package/.idea/deployment.xml +0 -21
  220. package/protos/netmessages.proto +0 -491
  221. package/protos/network_connection.proto +0 -70
  222. package/protos/steamdatagram_messages.proto +0 -205
  223. package/protos/steammessages_auth.steamclient.proto +0 -192
  224. package/protos/steammessages_client_objects.proto +0 -336
  225. package/protos/steammessages_datapublisher.steamclient.proto +0 -67
  226. package/protos/steammessages_video.steamclient.proto +0 -84
@@ -1,77 +1,115 @@
1
- import "steammessages_base.proto";
2
- import "steammessages_unified_base.steamclient.proto";
3
-
4
- option cc_generic_services = true;
5
-
6
- message CContentServerDirectory_GetServersForSteamPipe_Request {
7
- optional uint32 cell_id = 1 [(description) = "client Cell ID"];
8
- optional uint32 max_servers = 2 [default = 20, (description) = "max servers in response list"];
9
- optional string ip_override = 3 [(description) = "client IP address"];
10
- optional int32 launcher_type = 4 [default = 0, (description) = "launcher type"];
11
- optional string ipv6_public = 5 [(description) = "client public ipv6 address if it knows it"];
12
- }
13
-
14
- message CContentServerDirectory_ServerInfo {
15
- optional string type = 1;
16
- optional int32 source_id = 2;
17
- optional int32 cell_id = 3;
18
- optional int32 load = 4;
19
- optional float weighted_load = 5;
20
- optional int32 num_entries_in_client_list = 6;
21
- optional bool steam_china_only = 7;
22
- optional string host = 8;
23
- optional string vhost = 9;
24
- optional bool use_as_proxy = 10;
25
- optional string proxy_request_path_template = 11;
26
- optional string https_support = 12;
27
- repeated uint32 allowed_app_ids = 13;
28
- optional bool preferred_server = 14;
29
- }
30
-
31
- message CContentServerDirectory_GetServersForSteamPipe_Response {
32
- repeated .CContentServerDirectory_ServerInfo servers = 1;
33
- }
34
-
35
- message CContentServerDirectory_GetDepotPatchInfo_Request {
36
- optional uint32 appid = 1;
37
- optional uint32 depotid = 2;
38
- optional uint64 source_manifestid = 3;
39
- optional uint64 target_manifestid = 4;
40
- }
41
-
42
- message CContentServerDirectory_GetDepotPatchInfo_Response {
43
- optional bool is_available = 1;
44
- optional uint64 patch_size = 2;
45
- optional uint64 patched_chunks_size = 3;
46
- }
47
-
48
- message CContentServerDirectory_GetClientUpdateHosts_Request {
49
- optional string cached_signature = 1;
50
- }
51
-
52
- message CContentServerDirectory_GetClientUpdateHosts_Response {
53
- optional string hosts_kv = 1;
54
- optional uint64 valid_until_time = 2;
55
- optional string ip_country = 3;
56
- }
57
-
58
- message CContentServerDirectory_GetManifestRequestCode_Request {
59
- optional uint32 app_id = 1;
60
- optional uint32 depot_id = 2;
61
- optional uint64 manifest_id = 3;
62
- optional string app_branch = 4;
63
- optional string branch_password_hash = 5;
64
- }
65
-
66
- message CContentServerDirectory_GetManifestRequestCode_Response {
67
- optional uint64 manifest_request_code = 1;
68
- }
69
-
70
- service ContentServerDirectory {
71
- option (service_description) = "Content Server and CDN directory";
72
-
73
- rpc GetServersForSteamPipe (.CContentServerDirectory_GetServersForSteamPipe_Request) returns (.CContentServerDirectory_GetServersForSteamPipe_Response);
74
- rpc GetDepotPatchInfo (.CContentServerDirectory_GetDepotPatchInfo_Request) returns (.CContentServerDirectory_GetDepotPatchInfo_Response);
75
- rpc GetClientUpdateHosts (.CContentServerDirectory_GetClientUpdateHosts_Request) returns (.CContentServerDirectory_GetClientUpdateHosts_Response);
76
- rpc GetManifestRequestCode (.CContentServerDirectory_GetManifestRequestCode_Request) returns (.CContentServerDirectory_GetManifestRequestCode_Response);
77
- }
1
+ import "steammessages_base.proto";
2
+ import "steammessages_unified_base.steamclient.proto";
3
+
4
+ option cc_generic_services = true;
5
+
6
+ message CContentServerDirectory_GetServersForSteamPipe_Request {
7
+ optional uint32 cell_id = 1 [(description) = "client Cell ID"];
8
+ optional uint32 max_servers = 2 [default = 20, (description) = "max servers in response list"];
9
+ optional string ip_override = 3 [(description) = "client IP address"];
10
+ optional int32 launcher_type = 4 [default = 0, (description) = "launcher type"];
11
+ optional string ipv6_public = 5 [(description) = "client public ipv6 address if it knows it"];
12
+ }
13
+
14
+ message CContentServerDirectory_ServerInfo {
15
+ optional string type = 1;
16
+ optional int32 source_id = 2;
17
+ optional int32 cell_id = 3;
18
+ optional int32 load = 4;
19
+ optional float weighted_load = 5;
20
+ optional int32 num_entries_in_client_list = 6;
21
+ optional bool steam_china_only = 7;
22
+ optional string host = 8;
23
+ optional string vhost = 9;
24
+ optional bool use_as_proxy = 10;
25
+ optional string proxy_request_path_template = 11;
26
+ optional string https_support = 12;
27
+ repeated uint32 allowed_app_ids = 13;
28
+ optional bool preferred_server = 14;
29
+ }
30
+
31
+ message CContentServerDirectory_GetServersForSteamPipe_Response {
32
+ repeated .CContentServerDirectory_ServerInfo servers = 1;
33
+ }
34
+
35
+ message CContentServerDirectory_GetDepotPatchInfo_Request {
36
+ optional uint32 appid = 1;
37
+ optional uint32 depotid = 2;
38
+ optional uint64 source_manifestid = 3;
39
+ optional uint64 target_manifestid = 4;
40
+ }
41
+
42
+ message CContentServerDirectory_GetDepotPatchInfo_Response {
43
+ optional bool is_available = 1;
44
+ optional uint64 patch_size = 2;
45
+ optional uint64 patched_chunks_size = 3;
46
+ }
47
+
48
+ message CContentServerDirectory_GetClientUpdateHosts_Request {
49
+ optional string cached_signature = 1;
50
+ }
51
+
52
+ message CContentServerDirectory_GetClientUpdateHosts_Response {
53
+ optional string hosts_kv = 1;
54
+ optional uint64 valid_until_time = 2;
55
+ optional string ip_country = 3;
56
+ }
57
+
58
+ message CContentServerDirectory_GetManifestRequestCode_Request {
59
+ optional uint32 app_id = 1;
60
+ optional uint32 depot_id = 2;
61
+ optional uint64 manifest_id = 3;
62
+ optional string app_branch = 4;
63
+ optional string branch_password_hash = 5;
64
+ }
65
+
66
+ message CContentServerDirectory_GetManifestRequestCode_Response {
67
+ optional uint64 manifest_request_code = 1;
68
+ }
69
+
70
+ message CContentServerDirectory_GetCDNAuthToken_Request {
71
+ optional uint32 depot_id = 1;
72
+ optional string host_name = 2;
73
+ optional uint32 app_id = 3;
74
+ }
75
+
76
+ message CContentServerDirectory_GetCDNAuthToken_Response {
77
+ optional string token = 1;
78
+ optional uint32 expiration_time = 2;
79
+ }
80
+
81
+ message CContentServerDirectory_RequestPeerContentServer_Request {
82
+ optional uint64 remote_client_id = 1;
83
+ optional uint64 steamid = 2;
84
+ optional uint64 server_remote_client_id = 3;
85
+ optional uint32 app_id = 4;
86
+ optional uint32 current_build_id = 5;
87
+ }
88
+
89
+ message CContentServerDirectory_RequestPeerContentServer_Response {
90
+ optional uint32 server_port = 1;
91
+ repeated uint32 installed_depots = 2;
92
+ }
93
+
94
+ message CContentServerDirectory_GetPeerContentInfo_Request {
95
+ optional uint64 remote_client_id = 1;
96
+ optional uint64 steamid = 2;
97
+ optional uint64 server_remote_client_id = 3;
98
+ }
99
+
100
+ message CContentServerDirectory_GetPeerContentInfo_Response {
101
+ repeated uint32 appids = 1;
102
+ optional string ip_public = 2;
103
+ }
104
+
105
+ service ContentServerDirectory {
106
+ option (service_description) = "Content Server and CDN directory";
107
+
108
+ rpc GetServersForSteamPipe (.CContentServerDirectory_GetServersForSteamPipe_Request) returns (.CContentServerDirectory_GetServersForSteamPipe_Response);
109
+ rpc GetDepotPatchInfo (.CContentServerDirectory_GetDepotPatchInfo_Request) returns (.CContentServerDirectory_GetDepotPatchInfo_Response);
110
+ rpc GetClientUpdateHosts (.CContentServerDirectory_GetClientUpdateHosts_Request) returns (.CContentServerDirectory_GetClientUpdateHosts_Response);
111
+ rpc GetManifestRequestCode (.CContentServerDirectory_GetManifestRequestCode_Request) returns (.CContentServerDirectory_GetManifestRequestCode_Response);
112
+ rpc GetCDNAuthToken (.CContentServerDirectory_GetCDNAuthToken_Request) returns (.CContentServerDirectory_GetCDNAuthToken_Response);
113
+ rpc RequestPeerContentServer (.CContentServerDirectory_RequestPeerContentServer_Request) returns (.CContentServerDirectory_RequestPeerContentServer_Response);
114
+ rpc GetPeerContentInfo (.CContentServerDirectory_GetPeerContentInfo_Request) returns (.CContentServerDirectory_GetPeerContentInfo_Response);
115
+ }
@@ -1,141 +1,115 @@
1
- import "steammessages_base.proto";
2
- import "steammessages_unified_base.steamclient.proto";
3
-
4
- option cc_generic_services = true;
5
-
6
- message CCredentials_TestAvailablePassword_Request {
7
- optional string password = 1;
8
- optional bytes sha_digest_password = 2;
9
- optional string account_name = 3;
10
- }
11
-
12
- message CCredentials_TestAvailablePassword_Response {
13
- optional bool is_valid = 3;
14
- }
15
-
16
- message CCredentials_GetSteamGuardDetails_Request {
17
- optional bool include_new_authentications = 1 [default = true, (description) = "Whether or not to populate the newauthentication field in the response"];
18
- optional string webcookie = 2 [(description) = "The user's Steam Guard machine auth cookie. If present, it'll be used to get the user's machine ID instead of the AM session."];
19
- optional fixed32 timestamp_minimum_wanted = 3;
20
- optional int32 deprecated_ipaddress = 4;
21
- optional .CMsgIPAddress ip_address = 5;
22
- }
23
-
24
- message CCredentials_GetSteamGuardDetails_Response {
25
- message NewAuthentication {
26
- optional fixed32 timestamp_steamguard_enabled = 1;
27
- optional bool is_web_cookie = 2;
28
- optional int32 deprecated_ipaddress = 3;
29
- optional string geoloc_info = 4;
30
- optional bool is_remembered = 5;
31
- optional string machine_name_user_supplied = 6;
32
- optional int32 status = 7;
33
- optional .CMsgIPAddress ip_address = 8;
34
- }
35
-
36
- message SessionData {
37
- optional uint64 machine_id = 1;
38
- optional string machine_name_userchosen = 2;
39
- optional fixed32 timestamp_machine_steamguard_enabled = 3;
40
- optional bool authentication_exists_from_geoloc_before_mintime = 4;
41
- repeated .CCredentials_GetSteamGuardDetails_Response.NewAuthentication newauthentication = 5;
42
- optional bool authentication_exists_from_same_ip_before_mintime = 6;
43
- optional uint32 public_ipv4 = 7;
44
- optional string public_ip_address = 8;
45
- }
46
-
47
- optional bool is_steamguard_enabled = 1;
48
- optional fixed32 timestamp_steamguard_enabled = 2;
49
- repeated .CCredentials_GetSteamGuardDetails_Response.NewAuthentication deprecated_newauthentication = 3;
50
- optional string deprecated_machine_name_userchosen = 4;
51
- optional fixed32 deprecated_timestamp_machine_steamguard_enabled = 5;
52
- optional bool deprecated_authentication_exists_from_geoloc_before_mintime = 6;
53
- optional uint64 deprecated_machine_id = 7;
54
- repeated .CCredentials_GetSteamGuardDetails_Response.SessionData session_data = 8;
55
- optional bool is_twofactor_enabled = 9;
56
- optional fixed32 timestamp_twofactor_enabled = 10;
57
- optional bool is_phone_verified = 11;
58
- }
59
-
60
- message CCredentials_NewMachineNotificationDialog_Request {
61
- optional bool is_approved = 1;
62
- optional bool is_wizard_complete = 2;
63
- }
64
-
65
- message CCredentials_NewMachineNotificationDialog_Response {
66
- }
67
-
68
- message CCredentials_ValidateEmailAddress_Request {
69
- optional string stoken = 1;
70
- }
71
-
72
- message CCredentials_ValidateEmailAddress_Response {
73
- optional bool was_validated = 1;
74
- }
75
-
76
- message CCredentials_SteamGuardPhishingReport_Request {
77
- optional string param_string = 1;
78
- optional string ipaddress_actual = 2;
79
- }
80
-
81
- message CCredentials_SteamGuardPhishingReport_Response {
82
- optional string ipaddress_loginattempt = 1;
83
- optional string countryname_loginattempt = 2;
84
- optional string statename_loginattempt = 3;
85
- optional string cityname_loginattempt = 4;
86
- optional string ipaddress_actual = 5;
87
- optional string countryname_actual = 6;
88
- optional string statename_actual = 7;
89
- optional string cityname_actual = 8;
90
- optional string steamguard_code = 9;
91
- }
92
-
93
- message CCredentials_LastCredentialChangeTime_Request {
94
- optional bool user_changes_only = 1;
95
- }
96
-
97
- message CCredentials_LastCredentialChangeTime_Response {
98
- optional fixed32 timestamp_last_password_change = 1;
99
- optional fixed32 timestamp_last_email_change = 2;
100
- optional fixed32 timestamp_last_password_reset = 3;
101
- }
102
-
103
- message CCredentials_GetAccountAuthSecret_Request {
104
- }
105
-
106
- message CCredentials_GetAccountAuthSecret_Response {
107
- optional int32 secret_id = 1;
108
- optional bytes secret = 2;
109
- }
110
-
111
- service Credentials {
112
- option (service_description) = "Credentials service";
113
-
114
- rpc TestAvailablePassword (.CCredentials_TestAvailablePassword_Request) returns (.CCredentials_TestAvailablePassword_Response) {
115
- option (method_description) = "TestAvailablePassword.";
116
- }
117
-
118
- rpc GetSteamGuardDetails (.CCredentials_GetSteamGuardDetails_Request) returns (.CCredentials_GetSteamGuardDetails_Response) {
119
- option (method_description) = "GetSteamGuardDetails.";
120
- }
121
-
122
- rpc NewMachineNotificationDialogResult (.CCredentials_NewMachineNotificationDialog_Request) returns (.CCredentials_NewMachineNotificationDialog_Response) {
123
- option (method_description) = "NewMachineNotificationDialogResult.";
124
- }
125
-
126
- rpc ValidateEmailAddress (.CCredentials_ValidateEmailAddress_Request) returns (.CCredentials_ValidateEmailAddress_Response) {
127
- option (method_description) = "Validate an email address given a token";
128
- }
129
-
130
- rpc SteamGuardPhishingReport (.CCredentials_SteamGuardPhishingReport_Request) returns (.CCredentials_SteamGuardPhishingReport_Response) {
131
- option (method_description) = "SteamGuardPhishingReport";
132
- }
133
-
134
- rpc GetCredentialChangeTimeDetails (.CCredentials_LastCredentialChangeTime_Request) returns (.CCredentials_LastCredentialChangeTime_Response) {
135
- option (method_description) = "GetCredentialChangeTimeDetails.";
136
- }
137
-
138
- rpc GetAccountAuthSecret (.CCredentials_GetAccountAuthSecret_Request) returns (.CCredentials_GetAccountAuthSecret_Response) {
139
- option (method_description) = "GetAccountAuthSecret";
140
- }
141
- }
1
+ import "steammessages_base.proto";
2
+ import "steammessages_unified_base.steamclient.proto";
3
+
4
+ option cc_generic_services = true;
5
+
6
+ message CCredentials_TestAvailablePassword_Request {
7
+ optional string password = 1;
8
+ optional bytes sha_digest_password = 2;
9
+ optional string account_name = 3;
10
+ }
11
+
12
+ message CCredentials_TestAvailablePassword_Response {
13
+ optional bool is_valid = 3;
14
+ }
15
+
16
+ message CCredentials_GetSteamGuardDetails_Request {
17
+ optional string webcookie = 2 [(description) = "The user's Steam Guard machine auth cookie. If present, it'll be used to get the user's machine ID instead of the AM session."];
18
+ optional fixed32 timestamp_minimum_wanted = 3;
19
+ optional int32 deprecated_ipaddress = 4;
20
+ optional .CMsgIPAddress ip_address = 5;
21
+ }
22
+
23
+ message CCredentials_GetSteamGuardDetails_Response {
24
+ message SessionData {
25
+ optional uint64 machine_id = 1;
26
+ optional string machine_name_userchosen = 2;
27
+ optional fixed32 timestamp_machine_steamguard_enabled = 3;
28
+ optional bool authentication_exists_from_geoloc_before_mintime = 4;
29
+ optional bool authentication_exists_from_same_ip_before_mintime = 6;
30
+ optional uint32 public_ipv4 = 7;
31
+ optional string public_ip_address = 8;
32
+ }
33
+
34
+ optional bool is_steamguard_enabled = 1;
35
+ optional fixed32 timestamp_steamguard_enabled = 2;
36
+ optional string deprecated_machine_name_userchosen = 4;
37
+ optional fixed32 deprecated_timestamp_machine_steamguard_enabled = 5;
38
+ optional bool deprecated_authentication_exists_from_geoloc_before_mintime = 6;
39
+ optional uint64 deprecated_machine_id = 7;
40
+ repeated .CCredentials_GetSteamGuardDetails_Response.SessionData session_data = 8;
41
+ optional bool is_twofactor_enabled = 9;
42
+ optional fixed32 timestamp_twofactor_enabled = 10;
43
+ optional bool is_phone_verified = 11;
44
+ }
45
+
46
+ message CCredentials_ValidateEmailAddress_Request {
47
+ optional string stoken = 1;
48
+ }
49
+
50
+ message CCredentials_ValidateEmailAddress_Response {
51
+ optional bool was_validated = 1;
52
+ }
53
+
54
+ message CCredentials_SteamGuardPhishingReport_Request {
55
+ optional string param_string = 1;
56
+ optional string ipaddress_actual = 2;
57
+ }
58
+
59
+ message CCredentials_SteamGuardPhishingReport_Response {
60
+ optional string ipaddress_loginattempt = 1;
61
+ optional string countryname_loginattempt = 2;
62
+ optional string statename_loginattempt = 3;
63
+ optional string cityname_loginattempt = 4;
64
+ optional string ipaddress_actual = 5;
65
+ optional string countryname_actual = 6;
66
+ optional string statename_actual = 7;
67
+ optional string cityname_actual = 8;
68
+ optional string steamguard_code = 9;
69
+ }
70
+
71
+ message CCredentials_LastCredentialChangeTime_Request {
72
+ optional bool user_changes_only = 1;
73
+ }
74
+
75
+ message CCredentials_LastCredentialChangeTime_Response {
76
+ optional fixed32 timestamp_last_password_change = 1;
77
+ optional fixed32 timestamp_last_email_change = 2;
78
+ optional fixed32 timestamp_last_password_reset = 3;
79
+ }
80
+
81
+ message CCredentials_GetAccountAuthSecret_Request {
82
+ }
83
+
84
+ message CCredentials_GetAccountAuthSecret_Response {
85
+ optional int32 secret_id = 1;
86
+ optional bytes secret = 2;
87
+ }
88
+
89
+ service Credentials {
90
+ option (service_description) = "Credentials service";
91
+
92
+ rpc TestAvailablePassword (.CCredentials_TestAvailablePassword_Request) returns (.CCredentials_TestAvailablePassword_Response) {
93
+ option (method_description) = "TestAvailablePassword.";
94
+ }
95
+
96
+ rpc GetSteamGuardDetails (.CCredentials_GetSteamGuardDetails_Request) returns (.CCredentials_GetSteamGuardDetails_Response) {
97
+ option (method_description) = "GetSteamGuardDetails.";
98
+ }
99
+
100
+ rpc ValidateEmailAddress (.CCredentials_ValidateEmailAddress_Request) returns (.CCredentials_ValidateEmailAddress_Response) {
101
+ option (method_description) = "Validate an email address given a token";
102
+ }
103
+
104
+ rpc SteamGuardPhishingReport (.CCredentials_SteamGuardPhishingReport_Request) returns (.CCredentials_SteamGuardPhishingReport_Response) {
105
+ option (method_description) = "SteamGuardPhishingReport";
106
+ }
107
+
108
+ rpc GetCredentialChangeTimeDetails (.CCredentials_LastCredentialChangeTime_Request) returns (.CCredentials_LastCredentialChangeTime_Response) {
109
+ option (method_description) = "GetCredentialChangeTimeDetails.";
110
+ }
111
+
112
+ rpc GetAccountAuthSecret (.CCredentials_GetAccountAuthSecret_Request) returns (.CCredentials_GetAccountAuthSecret_Response) {
113
+ option (method_description) = "GetAccountAuthSecret";
114
+ }
115
+ }
@@ -0,0 +1,116 @@
1
+ import "steammessages_base.proto";
2
+ import "steammessages_unified_base.steamclient.proto";
3
+
4
+ option cc_generic_services = true;
5
+
6
+ message CDataPublisher_ClientContentCorruptionReport_Notification {
7
+ optional uint32 appid = 1;
8
+ optional uint32 depotid = 2;
9
+ optional string download_source = 3 [(description) = "host name of download source"];
10
+ optional string objectid = 4 [(description) = "Chunk SHA or Manifest ID"];
11
+ optional uint32 cellid = 5 [(description) = "Client Cell ID"];
12
+ optional bool is_manifest = 6 [(description) = "The object is a manifest, not a chunk"];
13
+ optional uint64 object_size = 7 [(description) = "object size in bytes"];
14
+ optional uint32 corruption_type = 8 [(description) = "See EContentCorruptionType"];
15
+ optional bool used_https = 9 [(description) = "the request was HTTPS"];
16
+ optional bool oc_proxy_detected = 10 [(description) = "detected an OpenCache proxy"];
17
+ }
18
+
19
+ message CDataPublisher_ClientUpdateAppJob_Notification {
20
+ optional uint32 app_id = 1;
21
+ repeated uint32 depot_ids = 2;
22
+ optional uint32 app_state = 3;
23
+ optional uint32 job_app_error = 4;
24
+ optional string error_details = 5;
25
+ optional uint32 job_duration = 6;
26
+ optional uint32 files_validation_failed = 7;
27
+ optional uint64 job_bytes_downloaded = 8;
28
+ optional uint64 job_bytes_staged = 9;
29
+ optional uint64 bytes_comitted = 10;
30
+ optional uint32 start_app_state = 11;
31
+ optional fixed64 stats_machine_id = 12;
32
+ optional string branch_name = 13;
33
+ optional uint64 total_bytes_downloaded = 14;
34
+ optional uint64 total_bytes_staged = 15;
35
+ optional uint64 total_bytes_restored = 16;
36
+ optional bool is_borrowed = 17;
37
+ optional bool is_free_weekend = 18;
38
+ optional uint64 total_bytes_patched = 20;
39
+ optional uint64 total_bytes_saved = 21;
40
+ optional uint32 cell_id = 22;
41
+ }
42
+
43
+ message CDataPublisher_GetVRDeviceInfo_Request {
44
+ optional uint32 month_count = 1 [(description) = "Number of months for which to generate a report"];
45
+ }
46
+
47
+ message CDataPublisher_GetVRDeviceInfo_Response {
48
+ message Device {
49
+ optional string name = 1 [(description) = "Name to show for this device"];
50
+ optional uint32 ref = 2 [(description) = "Reference number for this device"];
51
+ optional uint32 aggregation_ref = 3 [(description) = "Reference number to aggregate this device under"];
52
+ optional uint32 total = 4 [(description) = "Sum of all the counts"];
53
+ optional string driver = 5 [(description) = "driver name reported by the user"];
54
+ optional int32 device_class = 6 [(description) = "Class of the device. HMD=1, controller=2, tracker=3, base=4"];
55
+ }
56
+
57
+ repeated .CDataPublisher_GetVRDeviceInfo_Response.Device device = 1 [(description) = "Result devices"];
58
+ }
59
+
60
+ message CDataPublisher_SetVRDeviceInfoAggregationReference_Request {
61
+ optional uint32 ref = 1 [(description) = "Reference number in the VRDeviceInfo table for the entry to set"];
62
+ optional uint32 aggregation_ref = 2 [(description) = "Aggregation to set the entry to"];
63
+ }
64
+
65
+ message CDataPublisher_SetVRDeviceInfoAggregationReference_Response {
66
+ optional uint32 result = 1 [(description) = "k_EResultOK, etc."];
67
+ }
68
+
69
+ message CDataPublisher_AddVRDeviceInfo_Request {
70
+ optional string manufacturer = 1 [(description) = "Manufacturer for the new device"];
71
+ optional string model = 2 [(description) = "Model for the new device"];
72
+ optional string driver = 3 [(description) = "driver name (not including driver_). e.g. lighthouse, oculus, holographic"];
73
+ optional string controller_type = 4 [(description) = "controller type for the device. Can be an empty string for devices with no inputs"];
74
+ optional int32 device_class = 5 [(description) = "Class of the device. HMD=1, controller=2, tracker=3, base=4"];
75
+ }
76
+
77
+ message CDataPublisher_AddVRDeviceInfo_Response {
78
+ optional uint32 result = 1 [(description) = "k_EResultOK, etc."];
79
+ optional uint32 ref = 2 [(description) = "The reference number of the inserted device"];
80
+ }
81
+
82
+ message CValveHWSurvey_GetSurveySchedule_Request {
83
+ optional string surveydatetoken = 1;
84
+ optional fixed64 surveydatetokenversion = 2;
85
+ }
86
+
87
+ message CValveHWSurvey_GetSurveySchedule_Response {
88
+ optional uint32 surveydatetoken = 1;
89
+ optional fixed64 surveydatetokenversion = 2;
90
+ }
91
+
92
+ service DataPublisher {
93
+ option (service_description) = "Data Publisher (DP) server services";
94
+
95
+ rpc ClientContentCorruptionReport (.CDataPublisher_ClientContentCorruptionReport_Notification) returns (.NoResponse);
96
+ rpc ClientUpdateAppJobReport (.CDataPublisher_ClientUpdateAppJob_Notification) returns (.NoResponse);
97
+ rpc GetVRDeviceInfo (.CDataPublisher_GetVRDeviceInfo_Request) returns (.CDataPublisher_GetVRDeviceInfo_Response) {
98
+ option (method_description) = "Generate a debug report of what devices are in the survey";
99
+ }
100
+
101
+ rpc SetVRDeviceInfoAggregationReference (.CDataPublisher_SetVRDeviceInfoAggregationReference_Request) returns (.CDataPublisher_SetVRDeviceInfoAggregationReference_Response) {
102
+ option (method_description) = "Set the rollup reference of a single VR device";
103
+ }
104
+
105
+ rpc AddVRDeviceInfo (.CDataPublisher_AddVRDeviceInfo_Request) returns (.CDataPublisher_AddVRDeviceInfo_Response) {
106
+ option (method_description) = "Adds a device to the VRDeviceInfo table for the hardware survey";
107
+ }
108
+ }
109
+
110
+ service ValveHWSurvey {
111
+ option (service_description) = "ValveHWSurvey";
112
+
113
+ rpc GetSurveySchedule (.CValveHWSurvey_GetSurveySchedule_Request) returns (.CValveHWSurvey_GetSurveySchedule_Response) {
114
+ option (method_description) = "Should I run the survey";
115
+ }
116
+ }