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,288 +1,301 @@
1
- import "google/protobuf/descriptor.proto";
2
-
3
- option optimize_for = SPEED;
4
- option cc_generic_services = true;
5
- option (force_php_generation) = true;
6
-
7
- extend .google.protobuf.MessageOptions {
8
- optional int32 msgpool_soft_limit = 50000 [default = 32];
9
- optional int32 msgpool_hard_limit = 50001 [default = 384];
10
- }
11
-
12
- extend .google.protobuf.FileOptions {
13
- optional bool force_php_generation = 50000 [default = false];
14
- }
15
-
16
- extend .google.protobuf.FieldOptions {
17
- optional bool php_output_always_number = 50020 [default = false];
18
- optional bool allow_field_named_steam_id = 50024 [default = false];
19
- }
20
-
21
- enum EProtoClanEventType {
22
- k_EClanOtherEvent = 1;
23
- k_EClanGameEvent = 2;
24
- k_EClanPartyEvent = 3;
25
- k_EClanMeetingEvent = 4;
26
- k_EClanSpecialCauseEvent = 5;
27
- k_EClanMusicAndArtsEvent = 6;
28
- k_EClanSportsEvent = 7;
29
- k_EClanTripEvent = 8;
30
- k_EClanChatEvent = 9;
31
- k_EClanGameReleaseEvent = 10;
32
- k_EClanBroadcastEvent = 11;
33
- k_EClanSmallUpdateEvent = 12;
34
- k_EClanPreAnnounceMajorUpdateEvent = 13;
35
- k_EClanMajorUpdateEvent = 14;
36
- k_EClanDLCReleaseEvent = 15;
37
- k_EClanFutureReleaseEvent = 16;
38
- k_EClanESportTournamentStreamEvent = 17;
39
- k_EClanDevStreamEvent = 18;
40
- k_EClanFamousStreamEvent = 19;
41
- k_EClanGameSalesEvent = 20;
42
- k_EClanGameItemSalesEvent = 21;
43
- k_EClanInGameBonusXPEvent = 22;
44
- k_EClanInGameLootEvent = 23;
45
- k_EClanInGamePerksEvent = 24;
46
- k_EClanInGameChallengeEvent = 25;
47
- k_EClanInGameContestEvent = 26;
48
- k_EClanIRLEvent = 27;
49
- k_EClanNewsEvent = 28;
50
- k_EClanBetaReleaseEvent = 29;
51
- k_EClanInGameContentReleaseEvent = 30;
52
- k_EClanFreeTrial = 31;
53
- k_EClanSeasonRelease = 32;
54
- k_EClanSeasonUpdate = 33;
55
- k_EClanCrosspostEvent = 34;
56
- k_EClanInGameEventGeneral = 35;
57
- }
58
-
59
- enum PartnerEventNotificationType {
60
- k_EEventStart = 0;
61
- k_EEventBroadcastStart = 1;
62
- k_EEventMatchStart = 2;
63
- k_EEventPartnerMaxType = 3;
64
- }
65
-
66
- message CMsgIPAddress {
67
- oneof ip {
68
- fixed32 v4 = 1;
69
- bytes v6 = 2;
70
- }
71
- }
72
-
73
- message CMsgIPAddressBucket {
74
- optional .CMsgIPAddress original_ip_address = 1;
75
- optional fixed64 bucket = 2;
76
- }
77
-
78
- message CMsgProtoBufHeader {
79
- optional fixed64 steamid = 1;
80
- optional int32 client_sessionid = 2;
81
- optional uint32 routing_appid = 3;
82
- optional fixed64 jobid_source = 10 [default = 18446744073709551615];
83
- optional fixed64 jobid_target = 11 [default = 18446744073709551615];
84
- optional string target_job_name = 12;
85
- optional int32 seq_num = 24;
86
- optional int32 eresult = 13 [default = 2];
87
- optional string error_message = 14;
88
- optional uint32 auth_account_flags = 16;
89
- optional uint32 token_source = 22;
90
- optional bool admin_spoofing_user = 23;
91
- optional int32 transport_error = 17 [default = 1];
92
- optional uint64 messageid = 18 [default = 18446744073709551615];
93
- optional uint32 publisher_group_id = 19;
94
- optional uint32 sysid = 20;
95
- optional uint64 trace_tag = 21;
96
- optional uint32 webapi_key_id = 25;
97
- optional bool is_from_external_source = 26;
98
- repeated uint32 forward_to_sysid = 27;
99
- optional uint32 cm_sysid = 28;
100
- optional uint32 launcher_type = 31 [default = 0];
101
- optional uint32 realm = 32 [default = 0];
102
- optional int32 timeout_ms = 33 [default = -1];
103
-
104
- oneof ip_addr {
105
- uint32 ip = 15;
106
- bytes ip_v6 = 29;
107
- }
108
- }
109
-
110
- message CMsgMulti {
111
- optional uint32 size_unzipped = 1;
112
- optional bytes message_body = 2;
113
- }
114
-
115
- message CMsgProtobufWrapped {
116
- optional bytes message_body = 1;
117
- }
118
-
119
- message CMsgAuthTicket {
120
- optional uint32 estate = 1;
121
- optional uint32 eresult = 2 [default = 2];
122
- optional fixed64 steamid = 3;
123
- optional fixed64 gameid = 4;
124
- optional uint32 h_steam_pipe = 5;
125
- optional uint32 ticket_crc = 6;
126
- optional bytes ticket = 7;
127
- }
128
-
129
- message CCDDBAppDetailCommon {
130
- optional uint32 appid = 1;
131
- optional string name = 2;
132
- optional string icon = 3;
133
- optional bool tool = 6;
134
- optional bool demo = 7;
135
- optional bool media = 8;
136
- optional bool community_visible_stats = 9;
137
- optional string friendly_name = 10;
138
- optional string propagation = 11;
139
- optional bool has_adult_content = 12;
140
- optional bool is_visible_in_steam_china = 13;
141
- optional uint32 app_type = 14;
142
- }
143
-
144
- message CMsgAppRights {
145
- optional bool edit_info = 1;
146
- optional bool publish = 2;
147
- optional bool view_error_data = 3;
148
- optional bool download = 4;
149
- optional bool upload_cdkeys = 5;
150
- optional bool generate_cdkeys = 6;
151
- optional bool view_financials = 7;
152
- optional bool manage_ceg = 8;
153
- optional bool manage_signing = 9;
154
- optional bool manage_cdkeys = 10;
155
- optional bool edit_marketing = 11;
156
- optional bool economy_support = 12;
157
- optional bool economy_support_supervisor = 13;
158
- optional bool manage_pricing = 14;
159
- optional bool broadcast_live = 15;
160
- optional bool view_marketing_traffic = 16;
161
- optional bool edit_store_display_content = 17;
162
- }
163
-
164
- message CCuratorPreferences {
165
- optional uint32 supported_languages = 1;
166
- optional bool platform_windows = 2;
167
- optional bool platform_mac = 3;
168
- optional bool platform_linux = 4;
169
- optional bool vr_content = 5;
170
- optional bool adult_content_violence = 6;
171
- optional bool adult_content_sex = 7;
172
- optional uint32 timestamp_updated = 8;
173
- repeated uint32 tagids_curated = 9;
174
- repeated uint32 tagids_filtered = 10;
175
- optional string website_title = 11;
176
- optional string website_url = 12;
177
- optional string discussion_url = 13;
178
- optional bool show_broadcast = 14;
179
- }
180
-
181
- message CLocalizationToken {
182
- optional uint32 language = 1;
183
- optional string localized_string = 2;
184
- }
185
-
186
- message CClanEventUserNewsTuple {
187
- optional uint32 clanid = 1;
188
- optional fixed64 event_gid = 2;
189
- optional fixed64 announcement_gid = 3;
190
- optional uint32 rtime_start = 4;
191
- optional uint32 rtime_end = 5;
192
- optional uint32 priority_score = 6;
193
- optional uint32 type = 7;
194
- optional uint32 clamp_range_slot = 8;
195
- optional uint32 appid = 9;
196
- optional uint32 rtime32_last_modified = 10;
197
- }
198
-
199
- message CClanMatchEventByRange {
200
- optional uint32 rtime_before = 1;
201
- optional uint32 rtime_after = 2;
202
- optional uint32 qualified = 3;
203
- repeated .CClanEventUserNewsTuple events = 4;
204
- }
205
-
206
- message CCommunity_ClanAnnouncementInfo {
207
- optional uint64 gid = 1;
208
- optional uint64 clanid = 2;
209
- optional uint64 posterid = 3;
210
- optional string headline = 4;
211
- optional uint32 posttime = 5;
212
- optional uint32 updatetime = 6;
213
- optional string body = 7;
214
- optional int32 commentcount = 8;
215
- repeated string tags = 9;
216
- optional int32 language = 10;
217
- optional bool hidden = 11;
218
- optional fixed64 forum_topic_id = 12;
219
- optional fixed64 event_gid = 13;
220
- optional int32 voteupcount = 14;
221
- optional int32 votedowncount = 15;
222
- }
223
-
224
- message CClanEventData {
225
- optional fixed64 gid = 1;
226
- optional fixed64 clan_steamid = 2;
227
- optional string event_name = 3;
228
- optional .EProtoClanEventType event_type = 4 [default = k_EClanOtherEvent];
229
- optional uint32 appid = 5;
230
- optional string server_address = 6;
231
- optional string server_password = 7;
232
- optional uint32 rtime32_start_time = 8;
233
- optional uint32 rtime32_end_time = 9;
234
- optional int32 comment_count = 10;
235
- optional fixed64 creator_steamid = 11;
236
- optional fixed64 last_update_steamid = 12;
237
- optional string event_notes = 13;
238
- optional string jsondata = 14;
239
- optional .CCommunity_ClanAnnouncementInfo announcement_body = 15;
240
- optional bool published = 16;
241
- optional bool hidden = 17;
242
- optional uint32 rtime32_visibility_start = 18;
243
- optional uint32 rtime32_visibility_end = 19;
244
- optional uint32 broadcaster_accountid = 20;
245
- optional uint32 follower_count = 21;
246
- optional uint32 ignore_count = 22;
247
- optional fixed64 forum_topic_id = 23;
248
- optional uint32 rtime32_last_modified = 24;
249
- optional fixed64 news_post_gid = 25;
250
- optional uint32 rtime_mod_reviewed = 26;
251
- optional uint32 featured_app_tagid = 27;
252
- repeated uint32 referenced_appids = 28;
253
- optional uint32 build_id = 29;
254
- optional string build_branch = 30;
255
- }
256
-
257
- message CBilling_Address {
258
- optional string first_name = 1;
259
- optional string last_name = 2;
260
- optional string address1 = 3;
261
- optional string address2 = 4;
262
- optional string city = 5;
263
- optional string us_state = 6;
264
- optional string country_code = 7;
265
- optional string postcode = 8;
266
- optional int32 zip_plus4 = 9;
267
- optional string phone = 10;
268
- }
269
-
270
- message CPackageReservationStatus {
271
- optional uint32 packageid = 1;
272
- optional int32 reservation_state = 2;
273
- optional int32 queue_position = 3;
274
- optional int32 total_queue_size = 4;
275
- optional string reservation_country_code = 5;
276
- optional bool expired = 6;
277
- optional uint32 time_expires = 7;
278
- optional uint32 time_reserved = 8;
279
- }
280
-
281
- message CMsgKeyValuePair {
282
- optional string name = 1;
283
- optional string value = 2;
284
- }
285
-
286
- message CMsgKeyValueSet {
287
- repeated .CMsgKeyValuePair pairs = 1;
288
- }
1
+ import "google/protobuf/descriptor.proto";
2
+
3
+ option optimize_for = SPEED;
4
+ option cc_generic_services = true;
5
+ option (force_php_generation) = true;
6
+
7
+ extend .google.protobuf.MessageOptions {
8
+ optional int32 msgpool_soft_limit = 50000 [default = 32];
9
+ optional int32 msgpool_hard_limit = 50001 [default = 384];
10
+ }
11
+
12
+ extend .google.protobuf.FileOptions {
13
+ optional bool force_php_generation = 50000 [default = false];
14
+ }
15
+
16
+ extend .google.protobuf.FieldOptions {
17
+ optional bool php_output_always_number = 50020 [default = false];
18
+ optional bool allow_field_named_steam_id = 50024 [default = false];
19
+ }
20
+
21
+ enum EBanContentCheckResult {
22
+ k_EBanContentCheckResult_NotScanned = 0;
23
+ k_EBanContentCheckResult_Reset = 1;
24
+ k_EBanContentCheckResult_NeedsChecking = 2;
25
+ k_EBanContentCheckResult_VeryUnlikely = 5;
26
+ k_EBanContentCheckResult_Unlikely = 30;
27
+ k_EBanContentCheckResult_Possible = 50;
28
+ k_EBanContentCheckResult_Likely = 75;
29
+ k_EBanContentCheckResult_VeryLikely = 100;
30
+ }
31
+
32
+ enum EProtoClanEventType {
33
+ k_EClanOtherEvent = 1;
34
+ k_EClanGameEvent = 2;
35
+ k_EClanPartyEvent = 3;
36
+ k_EClanMeetingEvent = 4;
37
+ k_EClanSpecialCauseEvent = 5;
38
+ k_EClanMusicAndArtsEvent = 6;
39
+ k_EClanSportsEvent = 7;
40
+ k_EClanTripEvent = 8;
41
+ k_EClanChatEvent = 9;
42
+ k_EClanGameReleaseEvent = 10;
43
+ k_EClanBroadcastEvent = 11;
44
+ k_EClanSmallUpdateEvent = 12;
45
+ k_EClanPreAnnounceMajorUpdateEvent = 13;
46
+ k_EClanMajorUpdateEvent = 14;
47
+ k_EClanDLCReleaseEvent = 15;
48
+ k_EClanFutureReleaseEvent = 16;
49
+ k_EClanESportTournamentStreamEvent = 17;
50
+ k_EClanDevStreamEvent = 18;
51
+ k_EClanFamousStreamEvent = 19;
52
+ k_EClanGameSalesEvent = 20;
53
+ k_EClanGameItemSalesEvent = 21;
54
+ k_EClanInGameBonusXPEvent = 22;
55
+ k_EClanInGameLootEvent = 23;
56
+ k_EClanInGamePerksEvent = 24;
57
+ k_EClanInGameChallengeEvent = 25;
58
+ k_EClanInGameContestEvent = 26;
59
+ k_EClanIRLEvent = 27;
60
+ k_EClanNewsEvent = 28;
61
+ k_EClanBetaReleaseEvent = 29;
62
+ k_EClanInGameContentReleaseEvent = 30;
63
+ k_EClanFreeTrial = 31;
64
+ k_EClanSeasonRelease = 32;
65
+ k_EClanSeasonUpdate = 33;
66
+ k_EClanCrosspostEvent = 34;
67
+ k_EClanInGameEventGeneral = 35;
68
+ }
69
+
70
+ enum PartnerEventNotificationType {
71
+ k_EEventStart = 0;
72
+ k_EEventBroadcastStart = 1;
73
+ k_EEventMatchStart = 2;
74
+ k_EEventPartnerMaxType = 3;
75
+ }
76
+
77
+ message CMsgIPAddress {
78
+ oneof ip {
79
+ fixed32 v4 = 1;
80
+ bytes v6 = 2;
81
+ }
82
+ }
83
+
84
+ message CMsgIPAddressBucket {
85
+ optional .CMsgIPAddress original_ip_address = 1;
86
+ optional fixed64 bucket = 2;
87
+ }
88
+
89
+ message CMsgProtoBufHeader {
90
+ optional fixed64 steamid = 1;
91
+ optional int32 client_sessionid = 2;
92
+ optional uint32 routing_appid = 3;
93
+ optional fixed64 jobid_source = 10 [default = 18446744073709551615];
94
+ optional fixed64 jobid_target = 11 [default = 18446744073709551615];
95
+ optional string target_job_name = 12;
96
+ optional int32 seq_num = 24;
97
+ optional int32 eresult = 13 [default = 2];
98
+ optional string error_message = 14;
99
+ optional uint32 auth_account_flags = 16;
100
+ optional uint32 token_source = 22;
101
+ optional bool admin_spoofing_user = 23;
102
+ optional int32 transport_error = 17 [default = 1];
103
+ optional uint64 messageid = 18 [default = 18446744073709551615];
104
+ optional uint32 publisher_group_id = 19;
105
+ optional uint32 sysid = 20;
106
+ optional uint64 trace_tag = 21;
107
+ optional uint32 webapi_key_id = 25;
108
+ optional bool is_from_external_source = 26;
109
+ repeated uint32 forward_to_sysid = 27;
110
+ optional uint32 cm_sysid = 28;
111
+ optional uint32 launcher_type = 31 [default = 0];
112
+ optional uint32 realm = 32 [default = 0];
113
+ optional int32 timeout_ms = 33 [default = -1];
114
+ optional string debug_source = 34;
115
+
116
+ oneof ip_addr {
117
+ uint32 ip = 15;
118
+ bytes ip_v6 = 29;
119
+ }
120
+ }
121
+
122
+ message CMsgMulti {
123
+ optional uint32 size_unzipped = 1;
124
+ optional bytes message_body = 2;
125
+ }
126
+
127
+ message CMsgProtobufWrapped {
128
+ optional bytes message_body = 1;
129
+ }
130
+
131
+ message CMsgAuthTicket {
132
+ optional uint32 estate = 1;
133
+ optional uint32 eresult = 2 [default = 2];
134
+ optional fixed64 steamid = 3;
135
+ optional fixed64 gameid = 4;
136
+ optional uint32 h_steam_pipe = 5;
137
+ optional uint32 ticket_crc = 6;
138
+ optional bytes ticket = 7;
139
+ }
140
+
141
+ message CCDDBAppDetailCommon {
142
+ optional uint32 appid = 1;
143
+ optional string name = 2;
144
+ optional string icon = 3;
145
+ optional bool tool = 6;
146
+ optional bool demo = 7;
147
+ optional bool media = 8;
148
+ optional bool community_visible_stats = 9;
149
+ optional string friendly_name = 10;
150
+ optional string propagation = 11;
151
+ optional bool has_adult_content = 12;
152
+ optional bool is_visible_in_steam_china = 13;
153
+ optional uint32 app_type = 14;
154
+ }
155
+
156
+ message CMsgAppRights {
157
+ optional bool edit_info = 1;
158
+ optional bool publish = 2;
159
+ optional bool view_error_data = 3;
160
+ optional bool download = 4;
161
+ optional bool upload_cdkeys = 5;
162
+ optional bool generate_cdkeys = 6;
163
+ optional bool view_financials = 7;
164
+ optional bool manage_ceg = 8;
165
+ optional bool manage_signing = 9;
166
+ optional bool manage_cdkeys = 10;
167
+ optional bool edit_marketing = 11;
168
+ optional bool economy_support = 12;
169
+ optional bool economy_support_supervisor = 13;
170
+ optional bool manage_pricing = 14;
171
+ optional bool broadcast_live = 15;
172
+ optional bool view_marketing_traffic = 16;
173
+ optional bool edit_store_display_content = 17;
174
+ }
175
+
176
+ message CCuratorPreferences {
177
+ optional uint32 supported_languages = 1;
178
+ optional bool platform_windows = 2;
179
+ optional bool platform_mac = 3;
180
+ optional bool platform_linux = 4;
181
+ optional bool vr_content = 5;
182
+ optional bool adult_content_violence = 6;
183
+ optional bool adult_content_sex = 7;
184
+ optional uint32 timestamp_updated = 8;
185
+ repeated uint32 tagids_curated = 9;
186
+ repeated uint32 tagids_filtered = 10;
187
+ optional string website_title = 11;
188
+ optional string website_url = 12;
189
+ optional string discussion_url = 13;
190
+ optional bool show_broadcast = 14;
191
+ }
192
+
193
+ message CLocalizationToken {
194
+ optional uint32 language = 1;
195
+ optional string localized_string = 2;
196
+ }
197
+
198
+ message CClanEventUserNewsTuple {
199
+ optional uint32 clanid = 1;
200
+ optional fixed64 event_gid = 2;
201
+ optional fixed64 announcement_gid = 3;
202
+ optional uint32 rtime_start = 4;
203
+ optional uint32 rtime_end = 5;
204
+ optional uint32 priority_score = 6;
205
+ optional uint32 type = 7;
206
+ optional uint32 clamp_range_slot = 8;
207
+ optional uint32 appid = 9;
208
+ optional uint32 rtime32_last_modified = 10;
209
+ }
210
+
211
+ message CClanMatchEventByRange {
212
+ optional uint32 rtime_before = 1;
213
+ optional uint32 rtime_after = 2;
214
+ optional uint32 qualified = 3;
215
+ repeated .CClanEventUserNewsTuple events = 4;
216
+ }
217
+
218
+ message CCommunity_ClanAnnouncementInfo {
219
+ optional uint64 gid = 1;
220
+ optional uint64 clanid = 2;
221
+ optional uint64 posterid = 3;
222
+ optional string headline = 4;
223
+ optional uint32 posttime = 5;
224
+ optional uint32 updatetime = 6;
225
+ optional string body = 7;
226
+ optional int32 commentcount = 8;
227
+ repeated string tags = 9;
228
+ optional int32 language = 10;
229
+ optional bool hidden = 11;
230
+ optional fixed64 forum_topic_id = 12;
231
+ optional fixed64 event_gid = 13;
232
+ optional int32 voteupcount = 14;
233
+ optional int32 votedowncount = 15;
234
+ optional .EBanContentCheckResult ban_check_result = 16 [default = k_EBanContentCheckResult_NotScanned];
235
+ }
236
+
237
+ message CClanEventData {
238
+ optional fixed64 gid = 1;
239
+ optional fixed64 clan_steamid = 2;
240
+ optional string event_name = 3;
241
+ optional .EProtoClanEventType event_type = 4 [default = k_EClanOtherEvent];
242
+ optional uint32 appid = 5;
243
+ optional string server_address = 6;
244
+ optional string server_password = 7;
245
+ optional uint32 rtime32_start_time = 8;
246
+ optional uint32 rtime32_end_time = 9;
247
+ optional int32 comment_count = 10;
248
+ optional fixed64 creator_steamid = 11;
249
+ optional fixed64 last_update_steamid = 12;
250
+ optional string event_notes = 13;
251
+ optional string jsondata = 14;
252
+ optional .CCommunity_ClanAnnouncementInfo announcement_body = 15;
253
+ optional bool published = 16;
254
+ optional bool hidden = 17;
255
+ optional uint32 rtime32_visibility_start = 18;
256
+ optional uint32 rtime32_visibility_end = 19;
257
+ optional uint32 broadcaster_accountid = 20;
258
+ optional uint32 follower_count = 21;
259
+ optional uint32 ignore_count = 22;
260
+ optional fixed64 forum_topic_id = 23;
261
+ optional uint32 rtime32_last_modified = 24;
262
+ optional fixed64 news_post_gid = 25;
263
+ optional uint32 rtime_mod_reviewed = 26;
264
+ optional uint32 featured_app_tagid = 27;
265
+ repeated uint32 referenced_appids = 28;
266
+ optional uint32 build_id = 29;
267
+ optional string build_branch = 30;
268
+ }
269
+
270
+ message CBilling_Address {
271
+ optional string first_name = 1;
272
+ optional string last_name = 2;
273
+ optional string address1 = 3;
274
+ optional string address2 = 4;
275
+ optional string city = 5;
276
+ optional string us_state = 6;
277
+ optional string country_code = 7;
278
+ optional string postcode = 8;
279
+ optional int32 zip_plus4 = 9;
280
+ optional string phone = 10;
281
+ }
282
+
283
+ message CPackageReservationStatus {
284
+ optional uint32 packageid = 1;
285
+ optional int32 reservation_state = 2;
286
+ optional int32 queue_position = 3;
287
+ optional int32 total_queue_size = 4;
288
+ optional string reservation_country_code = 5;
289
+ optional bool expired = 6;
290
+ optional uint32 time_expires = 7;
291
+ optional uint32 time_reserved = 8;
292
+ }
293
+
294
+ message CMsgKeyValuePair {
295
+ optional string name = 1;
296
+ optional string value = 2;
297
+ }
298
+
299
+ message CMsgKeyValueSet {
300
+ repeated .CMsgKeyValuePair pairs = 1;
301
+ }
@@ -0,0 +1,68 @@
1
+ import "steammessages_unified_base.steamworkssdk.proto";
2
+
3
+ message CCloud_GetUploadServerInfo_Request {
4
+ optional uint32 appid = 1 [(description) = "App ID to which a file will be uploaded to."];
5
+ }
6
+
7
+ message CCloud_GetUploadServerInfo_Response {
8
+ optional string server_url = 1;
9
+ }
10
+
11
+ message CCloud_GetFileDetails_Request {
12
+ optional uint64 ugcid = 1 [(description) = "ID of the Cloud file to get details for."];
13
+ optional uint32 appid = 2 [(description) = "App ID the file belongs to."];
14
+ }
15
+
16
+ message CCloud_UserFile {
17
+ optional uint32 appid = 1;
18
+ optional uint64 ugcid = 2;
19
+ optional string filename = 3;
20
+ optional uint64 timestamp = 4;
21
+ optional uint32 file_size = 5;
22
+ optional string url = 6;
23
+ optional fixed64 steamid_creator = 7;
24
+ }
25
+
26
+ message CCloud_GetFileDetails_Response {
27
+ optional .CCloud_UserFile details = 1;
28
+ }
29
+
30
+ message CCloud_EnumerateUserFiles_Request {
31
+ optional uint32 appid = 1 [(description) = "App ID to enumerate the files of."];
32
+ optional bool extended_details = 2 [(description) = "(Optional) Get extended details back on the files found. Defaults to only returned the app Id and UGC Id of the files found."];
33
+ optional uint32 count = 3 [(description) = "(Optional) Maximum number of results to return on this call. Defaults to a maximum of 500 files returned."];
34
+ optional uint32 start_index = 4 [(description) = "(Optional) Starting index to begin enumeration at. Defaults to the beginning of the list."];
35
+ }
36
+
37
+ message CCloud_EnumerateUserFiles_Response {
38
+ repeated .CCloud_UserFile files = 1;
39
+ optional uint32 total_files = 2;
40
+ }
41
+
42
+ message CCloud_Delete_Request {
43
+ optional string filename = 1;
44
+ optional uint32 appid = 2 [(description) = "App ID the file belongs to."];
45
+ }
46
+
47
+ message CCloud_Delete_Response {
48
+ }
49
+
50
+ service Cloud {
51
+ option (service_description) = "A service for Steam Cloud operations.";
52
+
53
+ rpc GetUploadServerInfo (.CCloud_GetUploadServerInfo_Request) returns (.CCloud_GetUploadServerInfo_Response) {
54
+ option (method_description) = "Returns the URL of the proper cloud server for a user.";
55
+ }
56
+
57
+ rpc GetFileDetails (.CCloud_GetFileDetails_Request) returns (.CCloud_GetFileDetails_Response) {
58
+ option (method_description) = "Returns details on a Cloud file.";
59
+ }
60
+
61
+ rpc EnumerateUserFiles (.CCloud_EnumerateUserFiles_Request) returns (.CCloud_EnumerateUserFiles_Response) {
62
+ option (method_description) = "Enumerates Cloud files for a user of a given app ID. Returns up to 500 files at a time.";
63
+ }
64
+
65
+ rpc Delete (.CCloud_Delete_Request) returns (.CCloud_Delete_Response) {
66
+ option (method_description) = "Deletes a file from the user's cloud.";
67
+ }
68
+ }