steamutils 1.5.33 → 1.5.35
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.
- package/.idea/gbrowser_project.xml +11 -0
- package/.idea/git_toolbox_blame.xml +6 -0
- package/.idea/git_toolbox_prj.xml +15 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/jsLibraryMappings.xml +6 -0
- package/.idea/jsLinters/eslint.xml +6 -0
- package/.idea/prettier.xml +8 -0
- package/SteamClient.js +19 -12
- package/_steamproto.js +39 -39
- package/full_steamproto.js +41 -0
- package/index.js +8206 -8025
- package/package.json +1 -1
- package/race.js +2241 -0
- package/steamproto.js +41 -150
- package/utils.js +1282 -1264
package/steamproto.js
CHANGED
@@ -1,150 +1,41 @@
|
|
1
|
-
import path from "path";
|
2
|
-
import { fileURLToPath } from "url";
|
3
|
-
import Protobuf from "protobufjs";
|
4
|
-
|
5
|
-
const __filename = fileURLToPath(import.meta.url);
|
6
|
-
const __dirname = path.dirname(__filename);
|
7
|
-
|
8
|
-
export class SteamProto {
|
9
|
-
constructor(proto) {
|
10
|
-
this._proto = proto;
|
11
|
-
}
|
12
|
-
|
13
|
-
toProto() {
|
14
|
-
const root = new Protobuf.Root().loadSync(path.join(`${__dirname}/protos/`, this._proto.filename), {
|
15
|
-
keepCase: true,
|
16
|
-
});
|
17
|
-
return root[this._proto.name];
|
18
|
-
}
|
19
|
-
|
20
|
-
protoEncode(obj) {
|
21
|
-
const protobuf = this.toProto();
|
22
|
-
return protobuf.encode(protobuf.create(obj)).finish();
|
23
|
-
}
|
24
|
-
|
25
|
-
protoEncodeBase64(obj) {
|
26
|
-
return this.protoEncode(obj).toString("base64");
|
27
|
-
}
|
28
|
-
|
29
|
-
protoDecode(obj) {
|
30
|
-
const protobuf = this.toProto();
|
31
|
-
try {
|
32
|
-
return protobuf.toObject(protobuf.decode(obj), { defaults: true });
|
33
|
-
} catch (e) {
|
34
|
-
console.error(`[${this._proto.name}] protoDecode 1`, typeof obj, obj);
|
35
|
-
console.error(`[${this._proto.name}] protoDecode 2`, e);
|
36
|
-
return null;
|
37
|
-
}
|
38
|
-
}
|
39
|
-
}
|
40
|
-
|
41
|
-
export const SteamProtoType = {};
|
42
|
-
export const ESteamProto = {};
|
43
|
-
ESteamProto.ECsgoGCMsg = {
|
44
|
-
k_EMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate: 9104,
|
45
|
-
k_EMsgGCCStrike15_v2_MatchmakingClient2GCHello: 9109,
|
46
|
-
k_EMsgGCCStrike15_v2_MatchmakingGC2ClientHello: 9110,
|
47
|
-
k_EMsgGCCStrike15_v2_ClientReportPlayer: 9119,
|
48
|
-
k_EMsgGCCStrike15_v2_ClientCommendPlayer: 9121,
|
49
|
-
k_EMsgGCCStrike15_v2_ClientReportResponse: 9122,
|
50
|
-
k_EMsgGCCStrike15_v2_ClientCommendPlayerQuery: 9123,
|
51
|
-
k_EMsgGCCStrike15_v2_ClientCommendPlayerQueryResponse: 9124,
|
52
|
-
k_EMsgGCCStrike15_v2_ClientRequestPlayersProfile: 9127,
|
53
|
-
k_EMsgGCCStrike15_v2_PlayersProfile: 9128,
|
54
|
-
k_EMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment: 9132,
|
55
|
-
k_EMsgGCCStrike15_v2_GC2ClientTextMsg: 9134,
|
56
|
-
k_EMsgGCCStrike15_v2_MatchList: 9139,
|
57
|
-
k_EMsgGCCStrike15_v2_ClientRequestJoinFriendData: 9163,
|
58
|
-
k_EMsgGCCStrike15_v2_AcknowledgePenalty: 9171,
|
59
|
-
k_EMsgGCCStrike15_v2_GC2ClientGlobalStats: 9173,
|
60
|
-
k_EMsgGCCStrike15_v2_ClientLogonFatalError: 9187,
|
61
|
-
k_EMsgGCCStrike15_v2_ClientPollState: 9188,
|
62
|
-
k_EMsgGCCStrike15_v2_Party_Register: 9189,
|
63
|
-
k_EMsgGCCStrike15_v2_Party_Search: 9191,
|
64
|
-
k_EMsgGCCStrike15_v2_Party_Invite: 9192,
|
65
|
-
k_EMsgGCCStrike15_v2_Account_RequestCoPlays: 9193,
|
66
|
-
k_EMsgGCCStrike15_v2_ClientGCRankUpdate: 9194,
|
67
|
-
k_EMsgGCCStrike15_v2_GetEventFavorites_Response: 9203,
|
68
|
-
k_EMsgGCCStrike15_ClientDeepStats: 9210,
|
69
|
-
k_EMsgGCCStrike15_StartAgreementSessionInGame: 9211,
|
70
|
-
k_EMsgGCCStrike15_v2_ClientNetworkConfig: 9220,
|
71
|
-
};
|
72
|
-
ESteamProto.EGCItemMsg = { k_EMsgGCStoreGetUserData: 2500, k_EMsgGCStoreGetUserDataResponse: 2501, k_EMsgGCStorePurchaseFinalize: 2504, k_EMsgGCStorePurchaseFinalizeResponse: 2505, k_EMsgGCStorePurchaseCancel: 2506, k_EMsgGCStorePurchaseCancelResponse: 2507, k_EMsgGCStorePurchaseInit: 2510, k_EMsgGCStorePurchaseInitResponse: 2511 };
|
73
|
-
ESteamProto.EMsg = { k_EMsgClientChatInvite: 800, k_EMsgGCHInviteUserToLobby: 2238, k_EMsgClientRequestedClientStats: 5480, k_EMsgClientMMSCreateLobby: 6601, k_EMsgClientMMSCreateLobbyResponse: 6602, k_EMsgClientMMSJoinLobby: 6603, k_EMsgClientMMSSetLobbyData: 6609, k_EMsgClientMMSSetLobbyDataResponse: 6610, k_EMsgClientMMSGetLobbyData: 6611, k_EMsgClientMMSLobbyData: 6612, k_EMsgClientMMSInviteToLobby: 6621 };
|
74
|
-
ESteamProto.EGCBaseClientMsg = { k_EMsgGCClientWelcome: 4004, k_EMsgGCClientHello: 4006, k_EMsgGCClientConnectionStatus: 4009 };
|
75
|
-
SteamProtoType.CMsgGCStorePurchaseInit = { name: "CMsgGCStorePurchaseInit", filename: "csgo\\base_gcmessages.proto" };
|
76
|
-
SteamProtoType.CMsgGCStorePurchaseInitResponse = { name: "CMsgGCStorePurchaseInitResponse", filename: "csgo\\base_gcmessages.proto" };
|
77
|
-
SteamProtoType.CSOEconGameAccountClient = { name: "CSOEconGameAccountClient", filename: "csgo\\base_gcmessages.proto" };
|
78
|
-
SteamProtoType.CSOItemRecipe = { name: "CSOItemRecipe", filename: "csgo\\base_gcmessages.proto" };
|
79
|
-
SteamProtoType.CSOEconItem = { name: "CSOEconItem", filename: "csgo\\base_gcmessages.proto" };
|
80
|
-
SteamProtoType.CMsgStoreGetUserData = { name: "CMsgStoreGetUserData", filename: "csgo\\base_gcmessages.proto" };
|
81
|
-
SteamProtoType.CMsgStoreGetUserDataResponse = { name: "CMsgStoreGetUserDataResponse", filename: "csgo\\base_gcmessages.proto" };
|
82
|
-
SteamProtoType.CSOEconItemDropRateBonus = { name: "CSOEconItemDropRateBonus", filename: "csgo\\base_gcmessages.proto" };
|
83
|
-
SteamProtoType.CSOEconItemLeagueViewPass = { name: "CSOEconItemLeagueViewPass", filename: "csgo\\base_gcmessages.proto" };
|
84
|
-
SteamProtoType.CSOEconItemEventTicket = { name: "CSOEconItemEventTicket", filename: "csgo\\base_gcmessages.proto" };
|
85
|
-
SteamProtoType.CMsgGCStorePurchaseCancel = { name: "CMsgGCStorePurchaseCancel", filename: "csgo\\base_gcmessages.proto" };
|
86
|
-
SteamProtoType.CMsgGCStorePurchaseCancelResponse = { name: "CMsgGCStorePurchaseCancelResponse", filename: "csgo\\base_gcmessages.proto" };
|
87
|
-
SteamProtoType.CMsgGCStorePurchaseFinalize = { name: "CMsgGCStorePurchaseFinalize", filename: "csgo\\base_gcmessages.proto" };
|
88
|
-
SteamProtoType.CMsgGCStorePurchaseFinalizeResponse = { name: "CMsgGCStorePurchaseFinalizeResponse", filename: "csgo\\base_gcmessages.proto" };
|
89
|
-
SteamProtoType.CSOEconDefaultEquippedDefinitionInstanceClient = { name: "CSOEconDefaultEquippedDefinitionInstanceClient", filename: "csgo\\base_gcmessages.proto" };
|
90
|
-
SteamProtoType.CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate = { name: "CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate", filename: "csgo\\cstrike15_gcmessages.proto" };
|
91
|
-
SteamProtoType.CMsgGCCStrike15_v2_MatchmakingGC2ClientHello = { name: "CMsgGCCStrike15_v2_MatchmakingGC2ClientHello", filename: "csgo\\cstrike15_gcmessages.proto" };
|
92
|
-
SteamProtoType.CMsgGCCStrike15_v2_ClientGCRankUpdate = { name: "CMsgGCCStrike15_v2_ClientGCRankUpdate", filename: "csgo\\cstrike15_gcmessages.proto" };
|
93
|
-
SteamProtoType.CMsgGCCStrike15_v2_ClientReportPlayer = { name: "CMsgGCCStrike15_v2_ClientReportPlayer", filename: "csgo\\cstrike15_gcmessages.proto" };
|
94
|
-
SteamProtoType.CMsgGCCStrike15_v2_ClientCommendPlayer = { name: "CMsgGCCStrike15_v2_ClientCommendPlayer", filename: "csgo\\cstrike15_gcmessages.proto" };
|
95
|
-
SteamProtoType.CMsgGCCStrike15_v2_ClientReportResponse = { name: "CMsgGCCStrike15_v2_ClientReportResponse", filename: "csgo\\cstrike15_gcmessages.proto" };
|
96
|
-
SteamProtoType.CMsgGCCStrike15_v2_ClientRequestJoinFriendData = { name: "CMsgGCCStrike15_v2_ClientRequestJoinFriendData", filename: "csgo\\cstrike15_gcmessages.proto" };
|
97
|
-
SteamProtoType.CMsgGCCstrike15_v2_ClientRedeemFreeReward = { name: "CMsgGCCstrike15_v2_ClientRedeemFreeReward", filename: "csgo\\cstrike15_gcmessages.proto" };
|
98
|
-
SteamProtoType.CMsgGCCStrike15_v2_ClientNetworkConfig = { name: "CMsgGCCStrike15_v2_ClientNetworkConfig", filename: "csgo\\cstrike15_gcmessages.proto" };
|
99
|
-
SteamProtoType.CMsgGCCStrike15_ClientDeepStats = { name: "CMsgGCCStrike15_ClientDeepStats", filename: "csgo\\cstrike15_gcmessages.proto" };
|
100
|
-
SteamProtoType.CMsgGCCStrike15_v2_ClientRequestPlayersProfile = { name: "CMsgGCCStrike15_v2_ClientRequestPlayersProfile", filename: "csgo\\cstrike15_gcmessages.proto" };
|
101
|
-
SteamProtoType.CMsgGCCStrike15_v2_PlayersProfile = { name: "CMsgGCCStrike15_v2_PlayersProfile", filename: "csgo\\cstrike15_gcmessages.proto" };
|
102
|
-
SteamProtoType.CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment = { name: "CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment", filename: "csgo\\cstrike15_gcmessages.proto" };
|
103
|
-
SteamProtoType.CMsgGCCStrike15_v2_GC2ClientTextMsg = { name: "CMsgGCCStrike15_v2_GC2ClientTextMsg", filename: "csgo\\cstrike15_gcmessages.proto" };
|
104
|
-
SteamProtoType.CMsgGCCStrike15_v2_MatchList = { name: "CMsgGCCStrike15_v2_MatchList", filename: "csgo\\cstrike15_gcmessages.proto" };
|
105
|
-
SteamProtoType.CSOEconCoupon = { name: "CSOEconCoupon", filename: "csgo\\cstrike15_gcmessages.proto" };
|
106
|
-
SteamProtoType.CSOAccountItemPersonalStore = { name: "CSOAccountItemPersonalStore", filename: "csgo\\cstrike15_gcmessages.proto" };
|
107
|
-
SteamProtoType.CSOQuestProgress = { name: "CSOQuestProgress", filename: "csgo\\cstrike15_gcmessages.proto" };
|
108
|
-
SteamProtoType.CSOAccountSeasonalOperation = { name: "CSOAccountSeasonalOperation", filename: "csgo\\cstrike15_gcmessages.proto" };
|
109
|
-
SteamProtoType.CSOPersonaDataPublic = { name: "CSOPersonaDataPublic", filename: "csgo\\cstrike15_gcmessages.proto" };
|
110
|
-
SteamProtoType.CMsgGCCStrike15_v2_AcknowledgePenalty = { name: "CMsgGCCStrike15_v2_AcknowledgePenalty", filename: "csgo\\cstrike15_gcmessages.proto" };
|
111
|
-
SteamProtoType.CMsgGCCStrike15_v2_ClientLogonFatalError = { name: "CMsgGCCStrike15_v2_ClientLogonFatalError", filename: "csgo\\cstrike15_gcmessages.proto" };
|
112
|
-
SteamProtoType.CMsgGCCStrike15_v2_ClientPollState = { name: "CMsgGCCStrike15_v2_ClientPollState", filename: "csgo\\cstrike15_gcmessages.proto" };
|
113
|
-
SteamProtoType.CMsgGCCStrike15_v2_Party_Register = { name: "CMsgGCCStrike15_v2_Party_Register", filename: "csgo\\cstrike15_gcmessages.proto" };
|
114
|
-
SteamProtoType.CMsgGCCStrike15_v2_Party_Search = { name: "CMsgGCCStrike15_v2_Party_Search", filename: "csgo\\cstrike15_gcmessages.proto" };
|
115
|
-
SteamProtoType.CMsgGCCStrike15_v2_Party_SearchResults = { name: "CMsgGCCStrike15_v2_Party_SearchResults", filename: "csgo\\cstrike15_gcmessages.proto" };
|
116
|
-
SteamProtoType.CMsgGCCStrike15_v2_Party_Invite = { name: "CMsgGCCStrike15_v2_Party_Invite", filename: "csgo\\cstrike15_gcmessages.proto" };
|
117
|
-
SteamProtoType.CMsgGCCStrike15_v2_Account_RequestCoPlays = { name: "CMsgGCCStrike15_v2_Account_RequestCoPlays", filename: "csgo\\cstrike15_gcmessages.proto" };
|
118
|
-
SteamProtoType.CMsgGCCStrike15_v2_GetEventFavorites_Response = { name: "CMsgGCCStrike15_v2_GetEventFavorites_Response", filename: "csgo\\cstrike15_gcmessages.proto" };
|
119
|
-
SteamProtoType.CMsgClientHello = { name: "CMsgClientHello", filename: "csgo\\gcsdk_gcmessages.proto" };
|
120
|
-
SteamProtoType.CMsgClientWelcome = { name: "CMsgClientWelcome", filename: "csgo\\gcsdk_gcmessages.proto" };
|
121
|
-
SteamProtoType.CMsgConnectionStatus = { name: "CMsgConnectionStatus", filename: "csgo\\gcsdk_gcmessages.proto" };
|
122
|
-
SteamProtoType.CPlayer_GetFriendsGameplayInfo_Request = { name: "CPlayer_GetFriendsGameplayInfo_Request", filename: "csgo\\steammessages_player.steamworkssdk.proto" };
|
123
|
-
SteamProtoType.CPlayer_GetFriendsGameplayInfo_Response = { name: "CPlayer_GetFriendsGameplayInfo_Response", filename: "csgo\\steammessages_player.steamworkssdk.proto" };
|
124
|
-
SteamProtoType.CAuthentication_RefreshToken_Revoke_Request = { name: "CAuthentication_RefreshToken_Revoke_Request", filename: "steam\\steammessages_auth.steamclient.proto" };
|
125
|
-
SteamProtoType.CAuthenticationSupport_QueryRefreshTokenByID_Request = { name: "CAuthenticationSupport_QueryRefreshTokenByID_Request", filename: "steam\\steammessages_auth.steamclient.proto" };
|
126
|
-
SteamProtoType.CMsgClientRequestedClientStats = { name: "CMsgClientRequestedClientStats", filename: "steam\\steammessages_clientserver.proto" };
|
127
|
-
SteamProtoType.CMsgClientUGSGetGlobalStats = { name: "CMsgClientUGSGetGlobalStats", filename: "steam\\steammessages_clientserver_2.proto" };
|
128
|
-
SteamProtoType.CMsgClientUGSGetGlobalStatsResponse = { name: "CMsgClientUGSGetGlobalStatsResponse", filename: "steam\\steammessages_clientserver_2.proto" };
|
129
|
-
SteamProtoType.CMsgClientMMSCreateLobby = { name: "CMsgClientMMSCreateLobby", filename: "steam\\steammessages_clientserver_mms.proto" };
|
130
|
-
SteamProtoType.CMsgClientMMSCreateLobbyResponse = { name: "CMsgClientMMSCreateLobbyResponse", filename: "steam\\steammessages_clientserver_mms.proto" };
|
131
|
-
SteamProtoType.CMsgClientMMSJoinLobby = { name: "CMsgClientMMSJoinLobby", filename: "steam\\steammessages_clientserver_mms.proto" };
|
132
|
-
SteamProtoType.CMsgClientMMSJoinLobbyResponse = { name: "CMsgClientMMSJoinLobbyResponse", filename: "steam\\steammessages_clientserver_mms.proto" };
|
133
|
-
SteamProtoType.CMsgClientMMSSetLobbyData = { name: "CMsgClientMMSSetLobbyData", filename: "steam\\steammessages_clientserver_mms.proto" };
|
134
|
-
SteamProtoType.CMsgClientMMSSetLobbyDataResponse = { name: "CMsgClientMMSSetLobbyDataResponse", filename: "steam\\steammessages_clientserver_mms.proto" };
|
135
|
-
SteamProtoType.CMsgClientMMSGetLobbyData = { name: "CMsgClientMMSGetLobbyData", filename: "steam\\steammessages_clientserver_mms.proto" };
|
136
|
-
SteamProtoType.CMsgClientMMSLobbyData = { name: "CMsgClientMMSLobbyData", filename: "steam\\steammessages_clientserver_mms.proto" };
|
137
|
-
SteamProtoType.CMsgClientMMSUserJoinedLobby = { name: "CMsgClientMMSUserJoinedLobby", filename: "steam\\steammessages_clientserver_mms.proto" };
|
138
|
-
SteamProtoType.CMsgClientMMSInviteToLobby = { name: "CMsgClientMMSInviteToLobby", filename: "steam\\steammessages_clientserver_mms.proto" };
|
139
|
-
SteamProtoType.CFriendMessages_GetRecentMessages_Request = { name: "CFriendMessages_GetRecentMessages_Request", filename: "steam\\steammessages_friendmessages.steamclient.proto" };
|
140
|
-
SteamProtoType.CFriendMessages_GetRecentMessages_Response = { name: "CFriendMessages_GetRecentMessages_Response", filename: "steam\\steammessages_friendmessages.steamclient.proto" };
|
141
|
-
SteamProtoType.CFriendMessages_SendMessage_Request = { name: "CFriendMessages_SendMessage_Request", filename: "steam\\steammessages_friendmessages.steamclient.proto" };
|
142
|
-
SteamProtoType.CFriendMessages_SendMessage_Response = { name: "CFriendMessages_SendMessage_Response", filename: "steam\\steammessages_friendmessages.steamclient.proto" };
|
143
|
-
SteamProtoType.CPlayer_GetPlayerLinkDetails_Request = { name: "CPlayer_GetPlayerLinkDetails_Request", filename: "steam\\steammessages_player.steamclient.proto" };
|
144
|
-
SteamProtoType.CPlayer_GetPlayerLinkDetails_Response = { name: "CPlayer_GetPlayerLinkDetails_Response", filename: "steam\\steammessages_player.steamclient.proto" };
|
145
|
-
SteamProtoType.ProfileTheme = { name: "ProfileTheme", filename: "steam\\steammessages_player.steamclient.proto" };
|
146
|
-
SteamProtoType.ProfilePreferences = { name: "ProfilePreferences", filename: "steam\\steammessages_player.steamclient.proto" };
|
147
|
-
SteamProtoType.CCheckout_GetFriendOwnershipForGifting_Response = { name: "CCheckout_GetFriendOwnershipForGifting_Response", filename: "webui\\service_checkout.proto" };
|
148
|
-
SteamProtoType.CFriendsList_GetFriendsList_Response = { name: "CFriendsList_GetFriendsList_Response", filename: "webui\\service_friendslist.proto" };
|
149
|
-
SteamProtoType.CLoyaltyRewards_RedeemPoints_Request = { name: "CLoyaltyRewards_RedeemPoints_Request", filename: "webui\\service_loyaltyrewards.proto" };
|
150
|
-
SteamProtoType.CLoyaltyRewards_RedeemPoints_Response = { name: "CLoyaltyRewards_RedeemPoints_Response", filename: "webui\\service_loyaltyrewards.proto" };
|
1
|
+
import path from "path";
|
2
|
+
import { fileURLToPath } from "url";
|
3
|
+
import Protobuf from "protobufjs";
|
4
|
+
|
5
|
+
const __filename = fileURLToPath(import.meta.url);
|
6
|
+
const __dirname = path.dirname(__filename);
|
7
|
+
|
8
|
+
export class SteamProto {
|
9
|
+
constructor(proto) {
|
10
|
+
this._proto = proto;
|
11
|
+
}
|
12
|
+
|
13
|
+
toProto() {
|
14
|
+
const root = new Protobuf.Root().loadSync(path.join(`${__dirname}/protos/`, this._proto.filename), {
|
15
|
+
keepCase: true,
|
16
|
+
});
|
17
|
+
return root[this._proto.name];
|
18
|
+
}
|
19
|
+
|
20
|
+
protoEncode(obj) {
|
21
|
+
const protobuf = this.toProto();
|
22
|
+
return protobuf.encode(protobuf.create(obj)).finish();
|
23
|
+
}
|
24
|
+
|
25
|
+
protoEncodeBase64(obj) {
|
26
|
+
return this.protoEncode(obj).toString("base64");
|
27
|
+
}
|
28
|
+
|
29
|
+
protoDecode(obj) {
|
30
|
+
const protobuf = this.toProto();
|
31
|
+
try {
|
32
|
+
return protobuf.toObject(protobuf.decode(obj), { defaults: true });
|
33
|
+
} catch (e) {
|
34
|
+
console.error(`[${this._proto.name}] protoDecode 1`, typeof obj, obj);
|
35
|
+
console.error(`[${this._proto.name}] protoDecode 2`, e);
|
36
|
+
return null;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
export const SteamProtoType = {};export const ESteamProto = {};ESteamProto.ECsgoGCMsg = {"k_EMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate":9104,"k_EMsgGCCStrike15_v2_MatchmakingClient2GCHello":9109,"k_EMsgGCCStrike15_v2_MatchmakingGC2ClientHello":9110,"k_EMsgGCCStrike15_v2_ClientReportPlayer":9119,"k_EMsgGCCStrike15_v2_ClientCommendPlayer":9121,"k_EMsgGCCStrike15_v2_ClientReportResponse":9122,"k_EMsgGCCStrike15_v2_ClientCommendPlayerQuery":9123,"k_EMsgGCCStrike15_v2_ClientCommendPlayerQueryResponse":9124,"k_EMsgGCCStrike15_v2_ClientRequestPlayersProfile":9127,"k_EMsgGCCStrike15_v2_PlayersProfile":9128,"k_EMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment":9132,"k_EMsgGCCStrike15_v2_GC2ClientTextMsg":9134,"k_EMsgGCCStrike15_v2_MatchList":9139,"k_EMsgGCCStrike15_v2_ClientRequestJoinFriendData":9163,"k_EMsgGCCStrike15_v2_AcknowledgePenalty":9171,"k_EMsgGCCStrike15_v2_GC2ClientGlobalStats":9173,"k_EMsgGCCStrike15_v2_ClientLogonFatalError":9187,"k_EMsgGCCStrike15_v2_ClientPollState":9188,"k_EMsgGCCStrike15_v2_Party_Register":9189,"k_EMsgGCCStrike15_v2_Party_Search":9191,"k_EMsgGCCStrike15_v2_Party_Invite":9192,"k_EMsgGCCStrike15_v2_Account_RequestCoPlays":9193,"k_EMsgGCCStrike15_v2_ClientGCRankUpdate":9194,"k_EMsgGCCStrike15_v2_GetEventFavorites_Response":9203,"k_EMsgGCCStrike15_ClientDeepStats":9210,"k_EMsgGCCStrike15_StartAgreementSessionInGame":9211,"k_EMsgGCCStrike15_v2_ClientNetworkConfig":9220};ESteamProto.EGCItemMsg = {"k_EMsgGCStoreGetUserData":2500,"k_EMsgGCStoreGetUserDataResponse":2501,"k_EMsgGCStorePurchaseFinalize":2504,"k_EMsgGCStorePurchaseFinalizeResponse":2505,"k_EMsgGCStorePurchaseCancel":2506,"k_EMsgGCStorePurchaseCancelResponse":2507,"k_EMsgGCStorePurchaseInit":2510,"k_EMsgGCStorePurchaseInitResponse":2511};ESteamProto.EMsg = {"k_EMsgClientChatInvite":800,"k_EMsgGCHInviteUserToLobby":2238,"k_EMsgClientRequestedClientStats":5480,"k_EMsgClientMMSCreateLobby":6601,"k_EMsgClientMMSCreateLobbyResponse":6602,"k_EMsgClientMMSJoinLobby":6603,"k_EMsgClientMMSSetLobbyData":6609,"k_EMsgClientMMSSetLobbyDataResponse":6610,"k_EMsgClientMMSGetLobbyData":6611,"k_EMsgClientMMSLobbyData":6612,"k_EMsgClientMMSInviteToLobby":6621};ESteamProto.EGCBaseClientMsg = {"k_EMsgGCClientWelcome":4004,"k_EMsgGCClientHello":4006,"k_EMsgGCClientConnectionStatus":4009};SteamProtoType.CMsgGCStorePurchaseInit = {"name":"CMsgGCStorePurchaseInit","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CMsgGCStorePurchaseInitResponse = {"name":"CMsgGCStorePurchaseInitResponse","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CSOEconGameAccountClient = {"name":"CSOEconGameAccountClient","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CSOItemRecipe = {"name":"CSOItemRecipe","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CSOEconItem = {"name":"CSOEconItem","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CMsgStoreGetUserData = {"name":"CMsgStoreGetUserData","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CMsgStoreGetUserDataResponse = {"name":"CMsgStoreGetUserDataResponse","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CSOEconItemDropRateBonus = {"name":"CSOEconItemDropRateBonus","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CSOEconItemLeagueViewPass = {"name":"CSOEconItemLeagueViewPass","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CSOEconItemEventTicket = {"name":"CSOEconItemEventTicket","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CMsgGCStorePurchaseCancel = {"name":"CMsgGCStorePurchaseCancel","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CMsgGCStorePurchaseCancelResponse = {"name":"CMsgGCStorePurchaseCancelResponse","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CMsgGCStorePurchaseFinalize = {"name":"CMsgGCStorePurchaseFinalize","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CMsgGCStorePurchaseFinalizeResponse = {"name":"CMsgGCStorePurchaseFinalizeResponse","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CSOEconDefaultEquippedDefinitionInstanceClient = {"name":"CSOEconDefaultEquippedDefinitionInstanceClient","filename":"csgo\\base_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate = {"name":"CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_MatchmakingGC2ClientHello = {"name":"CMsgGCCStrike15_v2_MatchmakingGC2ClientHello","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_ClientGCRankUpdate = {"name":"CMsgGCCStrike15_v2_ClientGCRankUpdate","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_ClientReportPlayer = {"name":"CMsgGCCStrike15_v2_ClientReportPlayer","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_ClientCommendPlayer = {"name":"CMsgGCCStrike15_v2_ClientCommendPlayer","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_ClientReportResponse = {"name":"CMsgGCCStrike15_v2_ClientReportResponse","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_ClientRequestJoinFriendData = {"name":"CMsgGCCStrike15_v2_ClientRequestJoinFriendData","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCstrike15_v2_ClientRedeemFreeReward = {"name":"CMsgGCCstrike15_v2_ClientRedeemFreeReward","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_ClientNetworkConfig = {"name":"CMsgGCCStrike15_v2_ClientNetworkConfig","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_ClientDeepStats = {"name":"CMsgGCCStrike15_ClientDeepStats","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_ClientRequestPlayersProfile = {"name":"CMsgGCCStrike15_v2_ClientRequestPlayersProfile","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_PlayersProfile = {"name":"CMsgGCCStrike15_v2_PlayersProfile","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment = {"name":"CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_GC2ClientTextMsg = {"name":"CMsgGCCStrike15_v2_GC2ClientTextMsg","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_MatchList = {"name":"CMsgGCCStrike15_v2_MatchList","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CSOEconCoupon = {"name":"CSOEconCoupon","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CSOAccountItemPersonalStore = {"name":"CSOAccountItemPersonalStore","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CSOQuestProgress = {"name":"CSOQuestProgress","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CSOAccountSeasonalOperation = {"name":"CSOAccountSeasonalOperation","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CSOPersonaDataPublic = {"name":"CSOPersonaDataPublic","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_AcknowledgePenalty = {"name":"CMsgGCCStrike15_v2_AcknowledgePenalty","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_ClientLogonFatalError = {"name":"CMsgGCCStrike15_v2_ClientLogonFatalError","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_ClientPollState = {"name":"CMsgGCCStrike15_v2_ClientPollState","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_Party_Register = {"name":"CMsgGCCStrike15_v2_Party_Register","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_Party_Search = {"name":"CMsgGCCStrike15_v2_Party_Search","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_Party_SearchResults = {"name":"CMsgGCCStrike15_v2_Party_SearchResults","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_Party_Invite = {"name":"CMsgGCCStrike15_v2_Party_Invite","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_Account_RequestCoPlays = {"name":"CMsgGCCStrike15_v2_Account_RequestCoPlays","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgGCCStrike15_v2_GetEventFavorites_Response = {"name":"CMsgGCCStrike15_v2_GetEventFavorites_Response","filename":"csgo\\cstrike15_gcmessages.proto"};SteamProtoType.CMsgClientHello = {"name":"CMsgClientHello","filename":"csgo\\gcsdk_gcmessages.proto"};SteamProtoType.CMsgClientWelcome = {"name":"CMsgClientWelcome","filename":"csgo\\gcsdk_gcmessages.proto"};SteamProtoType.CMsgConnectionStatus = {"name":"CMsgConnectionStatus","filename":"csgo\\gcsdk_gcmessages.proto"};SteamProtoType.CPlayer_GetFriendsGameplayInfo_Request = {"name":"CPlayer_GetFriendsGameplayInfo_Request","filename":"csgo\\steammessages_player.steamworkssdk.proto"};SteamProtoType.CPlayer_GetFriendsGameplayInfo_Response = {"name":"CPlayer_GetFriendsGameplayInfo_Response","filename":"csgo\\steammessages_player.steamworkssdk.proto"};SteamProtoType.CAuthentication_RefreshToken_Revoke_Request = {"name":"CAuthentication_RefreshToken_Revoke_Request","filename":"steam\\steammessages_auth.steamclient.proto"};SteamProtoType.CAuthenticationSupport_QueryRefreshTokenByID_Request = {"name":"CAuthenticationSupport_QueryRefreshTokenByID_Request","filename":"steam\\steammessages_auth.steamclient.proto"};SteamProtoType.CMsgClientRequestedClientStats = {"name":"CMsgClientRequestedClientStats","filename":"steam\\steammessages_clientserver.proto"};SteamProtoType.CMsgClientUGSGetGlobalStats = {"name":"CMsgClientUGSGetGlobalStats","filename":"steam\\steammessages_clientserver_2.proto"};SteamProtoType.CMsgClientUGSGetGlobalStatsResponse = {"name":"CMsgClientUGSGetGlobalStatsResponse","filename":"steam\\steammessages_clientserver_2.proto"};SteamProtoType.CMsgClientMMSCreateLobby = {"name":"CMsgClientMMSCreateLobby","filename":"steam\\steammessages_clientserver_mms.proto"};SteamProtoType.CMsgClientMMSCreateLobbyResponse = {"name":"CMsgClientMMSCreateLobbyResponse","filename":"steam\\steammessages_clientserver_mms.proto"};SteamProtoType.CMsgClientMMSJoinLobby = {"name":"CMsgClientMMSJoinLobby","filename":"steam\\steammessages_clientserver_mms.proto"};SteamProtoType.CMsgClientMMSJoinLobbyResponse = {"name":"CMsgClientMMSJoinLobbyResponse","filename":"steam\\steammessages_clientserver_mms.proto"};SteamProtoType.CMsgClientMMSSetLobbyData = {"name":"CMsgClientMMSSetLobbyData","filename":"steam\\steammessages_clientserver_mms.proto"};SteamProtoType.CMsgClientMMSSetLobbyDataResponse = {"name":"CMsgClientMMSSetLobbyDataResponse","filename":"steam\\steammessages_clientserver_mms.proto"};SteamProtoType.CMsgClientMMSGetLobbyData = {"name":"CMsgClientMMSGetLobbyData","filename":"steam\\steammessages_clientserver_mms.proto"};SteamProtoType.CMsgClientMMSLobbyData = {"name":"CMsgClientMMSLobbyData","filename":"steam\\steammessages_clientserver_mms.proto"};SteamProtoType.CMsgClientMMSUserJoinedLobby = {"name":"CMsgClientMMSUserJoinedLobby","filename":"steam\\steammessages_clientserver_mms.proto"};SteamProtoType.CMsgClientMMSInviteToLobby = {"name":"CMsgClientMMSInviteToLobby","filename":"steam\\steammessages_clientserver_mms.proto"};SteamProtoType.CFriendMessages_GetRecentMessages_Request = {"name":"CFriendMessages_GetRecentMessages_Request","filename":"steam\\steammessages_friendmessages.steamclient.proto"};SteamProtoType.CFriendMessages_GetRecentMessages_Response = {"name":"CFriendMessages_GetRecentMessages_Response","filename":"steam\\steammessages_friendmessages.steamclient.proto"};SteamProtoType.CFriendMessages_SendMessage_Request = {"name":"CFriendMessages_SendMessage_Request","filename":"steam\\steammessages_friendmessages.steamclient.proto"};SteamProtoType.CFriendMessages_SendMessage_Response = {"name":"CFriendMessages_SendMessage_Response","filename":"steam\\steammessages_friendmessages.steamclient.proto"};SteamProtoType.CStoreBrowse_GetItems_Request = {"name":"CStoreBrowse_GetItems_Request","filename":"steam\\steammessages_storebrowse.steamclient.proto"};SteamProtoType.StoreItem = {"name":"StoreItem","filename":"steam\\steammessages_storebrowse.steamclient.proto"};SteamProtoType.CStoreBrowse_GetItems_Response = {"name":"CStoreBrowse_GetItems_Response","filename":"steam\\steammessages_storebrowse.steamclient.proto"};SteamProtoType.CPlayer_GetPlayerLinkDetails_Request = {"name":"CPlayer_GetPlayerLinkDetails_Request","filename":"steam\\steammessages_player.steamclient.proto"};SteamProtoType.CPlayer_GetPlayerLinkDetails_Response = {"name":"CPlayer_GetPlayerLinkDetails_Response","filename":"steam\\steammessages_player.steamclient.proto"};SteamProtoType.ProfileTheme = {"name":"ProfileTheme","filename":"steam\\steammessages_player.steamclient.proto"};SteamProtoType.ProfilePreferences = {"name":"ProfilePreferences","filename":"steam\\steammessages_player.steamclient.proto"};SteamProtoType.CCheckout_GetFriendOwnershipForGifting_Response = {"name":"CCheckout_GetFriendOwnershipForGifting_Response","filename":"webui\\service_checkout.proto"};SteamProtoType.CCommunity_GetApps_Request = {"name":"CCommunity_GetApps_Request","filename":"webui\\service_community.proto"};SteamProtoType.CCommunity_GetApps_Response = {"name":"CCommunity_GetApps_Response","filename":"webui\\service_community.proto"};SteamProtoType.CFriendsList_GetFriendsList_Response = {"name":"CFriendsList_GetFriendsList_Response","filename":"webui\\service_friendslist.proto"};SteamProtoType.CLoyaltyRewards_BatchedQueryRewardItems_Request = {"name":"CLoyaltyRewards_BatchedQueryRewardItems_Request","filename":"webui\\service_loyaltyrewards.proto"};SteamProtoType.CLoyaltyRewards_BatchedQueryRewardItems_Response = {"name":"CLoyaltyRewards_BatchedQueryRewardItems_Response","filename":"webui\\service_loyaltyrewards.proto"};SteamProtoType.CLoyaltyRewards_RedeemPoints_Request = {"name":"CLoyaltyRewards_RedeemPoints_Request","filename":"webui\\service_loyaltyrewards.proto"};SteamProtoType.CLoyaltyRewards_RedeemPoints_Response = {"name":"CLoyaltyRewards_RedeemPoints_Response","filename":"webui\\service_loyaltyrewards.proto"};
|