@xmobitea/gn-typescript-client 2.3.3-esnext → 2.4.0-esnext
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.
|
@@ -33,6 +33,7 @@ export declare class GNNetwork {
|
|
|
33
33
|
static peer: NetworkingPeer;
|
|
34
34
|
static getPing(): number;
|
|
35
35
|
static getSocketSId(): string;
|
|
36
|
+
static sendRequestAuthSocket(): void;
|
|
36
37
|
static isSocketConnected(): boolean;
|
|
37
38
|
static getServerTimestamp(): number;
|
|
38
39
|
static getAuthenticateStatus(): AuthenticateStatus;
|
|
@@ -36,6 +36,9 @@ export class GNNetwork {
|
|
|
36
36
|
static getSocketSId() {
|
|
37
37
|
return GNNetwork.peer != null ? GNNetwork.peer.getClientId() : "";
|
|
38
38
|
}
|
|
39
|
+
static sendRequestAuthSocket() {
|
|
40
|
+
return GNNetwork.peer.sendRequestAuthSocket();
|
|
41
|
+
}
|
|
39
42
|
static isSocketConnected() {
|
|
40
43
|
let socketSId = GNNetwork.getSocketSId();
|
|
41
44
|
if (socketSId)
|
|
@@ -1,565 +1,565 @@
|
|
|
1
1
|
export class GNParameterCode {
|
|
2
2
|
}
|
|
3
|
-
GNParameterCode.Username = "
|
|
4
|
-
GNParameterCode.Password = "
|
|
5
|
-
GNParameterCode.AndroidDeviceId = "
|
|
6
|
-
GNParameterCode.AppleId = "
|
|
7
|
-
GNParameterCode.AppleIds = "
|
|
8
|
-
GNParameterCode.GoogleId = "
|
|
9
|
-
GNParameterCode.GoogleIds = "
|
|
10
|
-
GNParameterCode.CustomDeviceId = "
|
|
11
|
-
GNParameterCode.CustomId = "
|
|
12
|
-
GNParameterCode.EditorDeviceId = "
|
|
13
|
-
GNParameterCode.FacebookId = "
|
|
14
|
-
GNParameterCode.ServiceName = "
|
|
15
|
-
GNParameterCode.UserId = "
|
|
16
|
-
GNParameterCode.CurrentPassword = "
|
|
3
|
+
GNParameterCode.Username = "username";
|
|
4
|
+
GNParameterCode.Password = "password";
|
|
5
|
+
GNParameterCode.AndroidDeviceId = "androidDeviceId";
|
|
6
|
+
GNParameterCode.AppleId = "appleId";
|
|
7
|
+
GNParameterCode.AppleIds = "appleIds";
|
|
8
|
+
GNParameterCode.GoogleId = "googleId";
|
|
9
|
+
GNParameterCode.GoogleIds = "googleIds";
|
|
10
|
+
GNParameterCode.CustomDeviceId = "customDeviceId";
|
|
11
|
+
GNParameterCode.CustomId = "customId";
|
|
12
|
+
GNParameterCode.EditorDeviceId = "editorDeviceId";
|
|
13
|
+
GNParameterCode.FacebookId = "facebookId";
|
|
14
|
+
GNParameterCode.ServiceName = "serviceName";
|
|
15
|
+
GNParameterCode.UserId = "userId";
|
|
16
|
+
GNParameterCode.CurrentPassword = "currentPassword";
|
|
17
17
|
GNParameterCode.iOSDeviceId = "iOSDeviceId";
|
|
18
|
-
GNParameterCode.LinuxDeviceId = "
|
|
19
|
-
GNParameterCode.MacOSDeviceId = "
|
|
20
|
-
GNParameterCode.WindowsDeviceId = "
|
|
21
|
-
GNParameterCode.WindowsPhoneDeviceId = "
|
|
22
|
-
GNParameterCode.InfoResponseParameters = "
|
|
23
|
-
GNParameterCode.CreatePlayerIfNotExists = "
|
|
24
|
-
GNParameterCode.External = "
|
|
25
|
-
GNParameterCode.Segments = "
|
|
26
|
-
GNParameterCode.CustomDatas = "
|
|
27
|
-
GNParameterCode.DisplayName = "
|
|
28
|
-
GNParameterCode.UniqueDisplayName = "
|
|
29
|
-
GNParameterCode.Avatar = "
|
|
30
|
-
GNParameterCode.TsCreate = "
|
|
31
|
-
GNParameterCode.Tags = "
|
|
32
|
-
GNParameterCode.Role = "
|
|
33
|
-
GNParameterCode.PlayerBan = "
|
|
34
|
-
GNParameterCode.PlayerDatas = "
|
|
35
|
-
GNParameterCode.PlayerCurrencies = "
|
|
36
|
-
GNParameterCode.PlayerStatistics = "
|
|
37
|
-
GNParameterCode.TsLastLogin = "
|
|
38
|
-
GNParameterCode.IpAddressCreate = "
|
|
39
|
-
GNParameterCode.CountryCode = "
|
|
40
|
-
GNParameterCode.TagKeys = "
|
|
41
|
-
GNParameterCode.CustomDataKeys = "
|
|
42
|
-
GNParameterCode.Type = "
|
|
43
|
-
GNParameterCode.Value = "
|
|
44
|
-
GNParameterCode.Name = "
|
|
45
|
-
GNParameterCode.TsExpire = "
|
|
46
|
-
GNParameterCode.Reason = "
|
|
47
|
-
GNParameterCode.Key = "
|
|
48
|
-
GNParameterCode.Permission = "
|
|
49
|
-
GNParameterCode.NewlyCreated = "
|
|
50
|
-
GNParameterCode.Token = "
|
|
51
|
-
GNParameterCode.Device = "
|
|
52
|
-
GNParameterCode.Account = "
|
|
53
|
-
GNParameterCode.Custom = "
|
|
54
|
-
GNParameterCode.Apple = "
|
|
55
|
-
GNParameterCode.Google = "
|
|
56
|
-
GNParameterCode.Facebook = "
|
|
57
|
-
GNParameterCode.GenericService = "
|
|
58
|
-
GNParameterCode.ServiceId = "
|
|
59
|
-
GNParameterCode.ServiceData = "
|
|
60
|
-
GNParameterCode.StatisticsAggregationMethod = "
|
|
61
|
-
GNParameterCode.MaximumValue = "
|
|
62
|
-
GNParameterCode.MinimumValue = "
|
|
63
|
-
GNParameterCode.Skip = "
|
|
64
|
-
GNParameterCode.Limit = "
|
|
65
|
-
GNParameterCode.Results = "
|
|
66
|
-
GNParameterCode.FacebookIds = "
|
|
67
|
-
GNParameterCode.GenericIds = "
|
|
68
|
-
GNParameterCode.ForceLink = "
|
|
69
|
-
GNParameterCode.Email = "
|
|
70
|
-
GNParameterCode.InfoRequestParam = "
|
|
71
|
-
GNParameterCode.PlayerDataKeys = "
|
|
72
|
-
GNParameterCode.PlayerCurrencyKeys = "
|
|
73
|
-
GNParameterCode.PlayerStatisticsKeys = "
|
|
74
|
-
GNParameterCode.Amount = "
|
|
75
|
-
GNParameterCode.Keyword = "
|
|
76
|
-
GNParameterCode.Position = "
|
|
77
|
-
GNParameterCode.LoadFromCache = "
|
|
78
|
-
GNParameterCode.DataKeys = "
|
|
79
|
-
GNParameterCode.CurrencyKeys = "
|
|
80
|
-
GNParameterCode.StatisticsKeys = "
|
|
81
|
-
GNParameterCode.Id = "
|
|
82
|
-
GNParameterCode.TsRemove = "
|
|
83
|
-
GNParameterCode.CharacterId = "
|
|
84
|
-
GNParameterCode.CatalogId = "
|
|
85
|
-
GNParameterCode.ItemId = "
|
|
86
|
-
GNParameterCode.GroupId = "
|
|
87
|
-
GNParameterCode.Status = "
|
|
88
|
-
GNParameterCode.TsLastStatusUpdate = "
|
|
89
|
-
GNParameterCode.PlayerInventories = "
|
|
90
|
-
GNParameterCode.PlayerGroups = "
|
|
91
|
-
GNParameterCode.PlayerFriends = "
|
|
92
|
-
GNParameterCode.CharacterCatalogIds = "
|
|
93
|
-
GNParameterCode.ItemCatalogIds = "
|
|
94
|
-
GNParameterCode.GroupCatalogIds = "
|
|
95
|
-
GNParameterCode.FriendCatalogIds = "
|
|
96
|
-
GNParameterCode.Owner = "
|
|
97
|
-
GNParameterCode.RemoveStatus = "
|
|
98
|
-
GNParameterCode.FriendId = "
|
|
99
|
-
GNParameterCode.GroupMembers = "
|
|
100
|
-
GNParameterCode.GroupStatistics = "
|
|
101
|
-
GNParameterCode.Members = "
|
|
102
|
-
GNParameterCode.OwnerId = "
|
|
103
|
-
GNParameterCode.OwnerType = "
|
|
104
|
-
GNParameterCode.Keys = "
|
|
105
|
-
GNParameterCode.Label = "
|
|
106
|
-
GNParameterCode.Configs = "
|
|
107
|
-
GNParameterCode.Data = "
|
|
108
|
-
GNParameterCode.FileName = "
|
|
109
|
-
GNParameterCode.FileId = "
|
|
110
|
-
GNParameterCode.MimeType = "
|
|
111
|
-
GNParameterCode.Size = "
|
|
112
|
-
GNParameterCode.FolderFileName = "
|
|
113
|
-
GNParameterCode.FileUpload = "
|
|
114
|
-
GNParameterCode.TsUploadExpire = "
|
|
115
|
-
GNParameterCode.DownloadToken = "
|
|
116
|
-
GNParameterCode.GameId = "
|
|
117
|
-
GNParameterCode.PlayerCharacters = "
|
|
118
|
-
GNParameterCode.ForceAcceptFriend = "
|
|
119
|
-
GNParameterCode.SocketId = "
|
|
120
|
-
GNParameterCode.OnlineStatus = "
|
|
121
|
-
GNParameterCode.GroupDatas = "
|
|
122
|
-
GNParameterCode.GroupCurrencies = "
|
|
123
|
-
GNParameterCode.GroupInventories = "
|
|
124
|
-
GNParameterCode.GroupDataKeys = "
|
|
125
|
-
GNParameterCode.GroupCurrencyKeys = "
|
|
126
|
-
GNParameterCode.GroupStatisticsKeys = "
|
|
127
|
-
GNParameterCode.MemberId = "
|
|
128
|
-
GNParameterCode.Message = "
|
|
129
|
-
GNParameterCode.SenderId = "
|
|
130
|
-
GNParameterCode.SenderType = "
|
|
131
|
-
GNParameterCode.GroupMessages = "
|
|
132
|
-
GNParameterCode.ItemCurrencies = "
|
|
133
|
-
GNParameterCode.ItemStatistics = "
|
|
134
|
-
GNParameterCode.ItemDatas = "
|
|
135
|
-
GNParameterCode.ItemInventories = "
|
|
136
|
-
GNParameterCode.ItemDataKeys = "
|
|
137
|
-
GNParameterCode.ItemCurrencyKeys = "
|
|
138
|
-
GNParameterCode.ItemStatisticsKeys = "
|
|
139
|
-
GNParameterCode.ItemType = "
|
|
140
|
-
GNParameterCode.ClassId = "
|
|
141
|
-
GNParameterCode.Hash = "
|
|
142
|
-
GNParameterCode.GoogleSettings = "
|
|
143
|
-
GNParameterCode.FacebookSettings = "
|
|
144
|
-
GNParameterCode.AppleSettings = "
|
|
145
|
-
GNParameterCode.GoogleClientId = "
|
|
146
|
-
GNParameterCode.PackageId = "
|
|
147
|
-
GNParameterCode.PublicRSAKey = "
|
|
148
|
-
GNParameterCode.FacebookInappSecret = "
|
|
149
|
-
GNParameterCode.FacebookAppToken = "
|
|
150
|
-
GNParameterCode.FacebookAppId = "
|
|
151
|
-
GNParameterCode.AppleClientId = "
|
|
152
|
-
GNParameterCode.SandboxEnable = "
|
|
153
|
-
GNParameterCode.SecretKey = "
|
|
154
|
-
GNParameterCode.CreatorId = "
|
|
155
|
-
GNParameterCode.GameDescription = "
|
|
156
|
-
GNParameterCode.GameIconUrl = "
|
|
157
|
-
GNParameterCode.GameSettings = "
|
|
158
|
-
GNParameterCode.ThirtPartySettings = "
|
|
159
|
-
GNParameterCode.ForceAcceptMember = "
|
|
160
|
-
GNParameterCode.InitialValue = "
|
|
161
|
-
GNParameterCode.GameName = "
|
|
162
|
-
GNParameterCode.CurrencySettings = "
|
|
163
|
-
GNParameterCode.StatisticsSettings = "
|
|
164
|
-
GNParameterCode.DatasSettings = "
|
|
165
|
-
GNParameterCode.CustomDatasSettings = "
|
|
166
|
-
GNParameterCode.TagsSettings = "
|
|
167
|
-
GNParameterCode.MasterPlayerSettings = "
|
|
168
|
-
GNParameterCode.GamePlayerSettings = "
|
|
169
|
-
GNParameterCode.CharacterPlayerSettings = "
|
|
170
|
-
GNParameterCode.GroupSettings = "
|
|
171
|
-
GNParameterCode.InventorySettings = "
|
|
172
|
-
GNParameterCode.CharacterCatalogSettings = "
|
|
173
|
-
GNParameterCode.GroupCatalogSettings = "
|
|
174
|
-
GNParameterCode.ItemCatalogSettings = "
|
|
175
|
-
GNParameterCode.FriendCatalogSettings = "
|
|
176
|
-
GNParameterCode.ItemClassSettings = "
|
|
177
|
-
GNParameterCode.Remove = "
|
|
178
|
-
GNParameterCode.SelfEnable = "
|
|
179
|
-
GNParameterCode.OtherSelfEnable = "
|
|
180
|
-
GNParameterCode.AdminSelfEnable = "
|
|
181
|
-
GNParameterCode.ServerSelfEnable = "
|
|
182
|
-
GNParameterCode.Authenticate = "
|
|
183
|
-
GNParameterCode.MasterPlayer = "
|
|
184
|
-
GNParameterCode.GamePlayer = "
|
|
185
|
-
GNParameterCode.CharacterPlayer = "
|
|
186
|
-
GNParameterCode.Content = "
|
|
187
|
-
GNParameterCode.Group = "
|
|
188
|
-
GNParameterCode.Inventory = "
|
|
189
|
-
GNParameterCode.StoreInventory = "
|
|
190
|
-
GNParameterCode.MasterAdmin = "
|
|
191
|
-
GNParameterCode.LoginByAccount = "
|
|
192
|
-
GNParameterCode.LoginByAndroidDeviceId = "
|
|
193
|
-
GNParameterCode.LoginByApple = "
|
|
194
|
-
GNParameterCode.LoginByCustomDeviceId = "
|
|
195
|
-
GNParameterCode.LoginByCustomId = "
|
|
196
|
-
GNParameterCode.LoginByFacebook = "
|
|
197
|
-
GNParameterCode.LoginByGenericService = "
|
|
198
|
-
GNParameterCode.LoginByGoogle = "
|
|
199
|
-
GNParameterCode.LoginByiOSDeviceId = "
|
|
200
|
-
GNParameterCode.LoginByWindowsPhoneDeviceId = "
|
|
201
|
-
GNParameterCode.RegisterAccount = "
|
|
202
|
-
GNParameterCode.LoginByEditorDeviceId = "
|
|
203
|
-
GNParameterCode.LoginByLinuxDeviceId = "
|
|
204
|
-
GNParameterCode.LoginByMacOSDeviceId = "
|
|
205
|
-
GNParameterCode.LoginByWindowsDeviceId = "
|
|
206
|
-
GNParameterCode.RefreshAuthToken = "
|
|
207
|
-
GNParameterCode.LinkAccount = "
|
|
208
|
-
GNParameterCode.LinkAndroidDeviceId = "
|
|
209
|
-
GNParameterCode.LinkApple = "
|
|
210
|
-
GNParameterCode.LinkCustomDeviceId = "
|
|
211
|
-
GNParameterCode.LinkCustomId = "
|
|
212
|
-
GNParameterCode.LinkEditorDeviceId = "
|
|
213
|
-
GNParameterCode.LinkFacebook = "
|
|
214
|
-
GNParameterCode.LinkGenericService = "
|
|
215
|
-
GNParameterCode.LinkGoogle = "
|
|
216
|
-
GNParameterCode.LinkiOSDeviceId = "
|
|
217
|
-
GNParameterCode.LinkLinuxDeviceId = "
|
|
218
|
-
GNParameterCode.LinkMacOSDeviceId = "
|
|
219
|
-
GNParameterCode.LinkWindowsDeviceId = "
|
|
220
|
-
GNParameterCode.LinkWindowsPhoneDeviceId = "
|
|
221
|
-
GNParameterCode.UnlinkAccount = "
|
|
222
|
-
GNParameterCode.UnlinkAndroidDeviceId = "
|
|
223
|
-
GNParameterCode.UnlinkApple = "
|
|
224
|
-
GNParameterCode.UnlinkCustomDeviceId = "
|
|
225
|
-
GNParameterCode.UnlinkCustomId = "
|
|
226
|
-
GNParameterCode.UnlinkEditorDeviceId = "
|
|
227
|
-
GNParameterCode.UnlinkFacebook = "
|
|
228
|
-
GNParameterCode.UnlinkGenericService = "
|
|
229
|
-
GNParameterCode.UnlinkGoogle = "
|
|
230
|
-
GNParameterCode.UnlinkiOSDeviceId = "
|
|
231
|
-
GNParameterCode.UnlinkLinuxDeviceId = "
|
|
232
|
-
GNParameterCode.UnlinkMacOSDeviceId = "
|
|
233
|
-
GNParameterCode.UnlinkWindowsDeviceId = "
|
|
234
|
-
GNParameterCode.UnlinkWindowsPhoneDeviceId = "
|
|
235
|
-
GNParameterCode.AddSegment = "
|
|
236
|
-
GNParameterCode.RemoveSegment = "
|
|
237
|
-
GNParameterCode.GetSegment = "
|
|
238
|
-
GNParameterCode.SetTag = "
|
|
239
|
-
GNParameterCode.RemoveTag = "
|
|
240
|
-
GNParameterCode.GetTag = "
|
|
241
|
-
GNParameterCode.GetDisplayName = "
|
|
242
|
-
GNParameterCode.SetDisplayName = "
|
|
243
|
-
GNParameterCode.GetTsCreate = "
|
|
244
|
-
GNParameterCode.GetIpAddressCreate = "
|
|
245
|
-
GNParameterCode.SetTsLastLogin = "
|
|
246
|
-
GNParameterCode.GetTsLastLogin = "
|
|
247
|
-
GNParameterCode.SetPlayerBan = "
|
|
248
|
-
GNParameterCode.GetPlayerBan = "
|
|
249
|
-
GNParameterCode.SetCountryCode = "
|
|
250
|
-
GNParameterCode.GetCountryCode = "
|
|
251
|
-
GNParameterCode.ChangeAccountPassword = "
|
|
252
|
-
GNParameterCode.ResetAccountPassword = "
|
|
253
|
-
GNParameterCode.SetAvatar = "
|
|
254
|
-
GNParameterCode.GetAvatar = "
|
|
255
|
-
GNParameterCode.SetPlayerCurrency = "
|
|
256
|
-
GNParameterCode.GetPlayerCurrency = "
|
|
257
|
-
GNParameterCode.SetPlayerStatistics = "
|
|
258
|
-
GNParameterCode.GetPlayerStatistics = "
|
|
259
|
-
GNParameterCode.GetStatisticsLeaderboard = "
|
|
260
|
-
GNParameterCode.GetStatisticsLeaderboardAroundPlayer = "
|
|
261
|
-
GNParameterCode.GetCustomData = "
|
|
262
|
-
GNParameterCode.SetCustomData = "
|
|
263
|
-
GNParameterCode.SetPlayerData = "
|
|
264
|
-
GNParameterCode.GetPlayerData = "
|
|
265
|
-
GNParameterCode.GetPlayerInformation = "
|
|
266
|
-
GNParameterCode.GetPlayersWithApple = "
|
|
267
|
-
GNParameterCode.GetPlayersWithFacebook = "
|
|
268
|
-
GNParameterCode.GetPlayersWithGoogle = "
|
|
269
|
-
GNParameterCode.GetPlayersWithGenericService = "
|
|
270
|
-
GNParameterCode.GetPlayersWithSegment = "
|
|
271
|
-
GNParameterCode.GetPlayersWithTag = "
|
|
272
|
-
GNParameterCode.GetExternal = "
|
|
273
|
-
GNParameterCode.GetPlayersWithDisplayName = "
|
|
274
|
-
GNParameterCode.GetPlayerCharacter = "
|
|
275
|
-
GNParameterCode.GetPlayerInventory = "
|
|
276
|
-
GNParameterCode.GetPlayerGroup = "
|
|
277
|
-
GNParameterCode.GetPlayerFriend = "
|
|
278
|
-
GNParameterCode.RemovePlayerItem = "
|
|
279
|
-
GNParameterCode.GetOnlineStatus = "
|
|
280
|
-
GNParameterCode.GrantGroup = "
|
|
281
|
-
GNParameterCode.GrantPlayerItem = "
|
|
282
|
-
GNParameterCode.GrantPlayerCharacter = "
|
|
283
|
-
GNParameterCode.AddPlayerFriend = "
|
|
284
|
-
GNParameterCode.RemovePlayerFriend = "
|
|
285
|
-
GNParameterCode.RemovePlayerCharacter = "
|
|
286
|
-
GNParameterCode.JoinGroup = "
|
|
287
|
-
GNParameterCode.LeaveGroup = "
|
|
288
|
-
GNParameterCode.GetFriendStatisticsLeaderboardAroundPlayer = "
|
|
289
|
-
GNParameterCode.GetFriendStatisticsLeaderboard = "
|
|
290
|
-
GNParameterCode.GetCatalogId = "
|
|
291
|
-
GNParameterCode.GetOwner = "
|
|
292
|
-
GNParameterCode.GetRemoveStatus = "
|
|
293
|
-
GNParameterCode.SetOwner = "
|
|
294
|
-
GNParameterCode.SetRemoveStatus = "
|
|
295
|
-
GNParameterCode.GetContentData = "
|
|
296
|
-
GNParameterCode.SetContentData = "
|
|
297
|
-
GNParameterCode.SetGroupCurrency = "
|
|
298
|
-
GNParameterCode.GetGroupCurrency = "
|
|
299
|
-
GNParameterCode.SetGroupStatistics = "
|
|
300
|
-
GNParameterCode.GetGroupStatistics = "
|
|
301
|
-
GNParameterCode.GetStatisticsLeaderboardAroundGroup = "
|
|
302
|
-
GNParameterCode.SetGroupData = "
|
|
303
|
-
GNParameterCode.GetGroupData = "
|
|
304
|
-
GNParameterCode.GetGroupInformation = "
|
|
305
|
-
GNParameterCode.GetGroupsWithSegment = "
|
|
306
|
-
GNParameterCode.GetGroupsWithTag = "
|
|
307
|
-
GNParameterCode.GetGroupInventory = "
|
|
308
|
-
GNParameterCode.RemoveGroupItem = "
|
|
309
|
-
GNParameterCode.GrantGroupItem = "
|
|
310
|
-
GNParameterCode.GetMembers = "
|
|
311
|
-
GNParameterCode.AddMember = "
|
|
312
|
-
GNParameterCode.RemoveMember = "
|
|
313
|
-
GNParameterCode.SendGroupMessage = "
|
|
314
|
-
GNParameterCode.GetGroupMessage = "
|
|
315
|
-
GNParameterCode.GetGroupsWithDisplayName = "
|
|
316
|
-
GNParameterCode.SetItemStatistics = "
|
|
317
|
-
GNParameterCode.GetItemStatistics = "
|
|
318
|
-
GNParameterCode.GetStatisticsLeaderboardAroundItem = "
|
|
319
|
-
GNParameterCode.SetItemData = "
|
|
320
|
-
GNParameterCode.GetItemData = "
|
|
321
|
-
GNParameterCode.GetItemInformation = "
|
|
322
|
-
GNParameterCode.GetItemsWithSegment = "
|
|
323
|
-
GNParameterCode.GetItemsWithTag = "
|
|
324
|
-
GNParameterCode.GetClassId = "
|
|
325
|
-
GNParameterCode.GetItemType = "
|
|
326
|
-
GNParameterCode.GetAmount = "
|
|
327
|
-
GNParameterCode.SetAmount = "
|
|
328
|
-
GNParameterCode.GetItemsWithDisplayName = "
|
|
329
|
-
GNParameterCode.BuyStoreItem = "
|
|
330
|
-
GNParameterCode.GetStoreItemInformation = "
|
|
331
|
-
GNParameterCode.GetStoreItemsWithTag = "
|
|
332
|
-
GNParameterCode.GrantStoreItem = "
|
|
333
|
-
GNParameterCode.SetStoreItemInformation = "
|
|
334
|
-
GNParameterCode.ValidateAppleAppStoreReceipt = "
|
|
335
|
-
GNParameterCode.ValidateGooglePlayStoreReceipt = "
|
|
336
|
-
GNParameterCode.ValidateFacebookStoreReceipt = "
|
|
337
|
-
GNParameterCode.SetMasterGameSettings = "
|
|
338
|
-
GNParameterCode.GrantAdminAccount = "
|
|
339
|
-
GNParameterCode.RemoveAdminAccount = "
|
|
340
|
-
GNParameterCode.SetPasswordAdminAccount = "
|
|
341
|
-
GNParameterCode.SetSecretKeyAdminAccount = "
|
|
342
|
-
GNParameterCode.SetGameInformation = "
|
|
343
|
-
GNParameterCode.GrantGame = "
|
|
344
|
-
GNParameterCode.ChangePasswordAdminAccount = "
|
|
345
|
-
GNParameterCode.GetAdminAccountList = "
|
|
346
|
-
GNParameterCode.GetGameInformation = "
|
|
347
|
-
GNParameterCode.GetGameList = "
|
|
348
|
-
GNParameterCode.GetMasterGameSettings = "
|
|
349
|
-
GNParameterCode.GetServerLog = "
|
|
350
|
-
GNParameterCode.GetSecretInfoInformation = "
|
|
351
|
-
GNParameterCode.GetSecretInfoList = "
|
|
352
|
-
GNParameterCode.GrantSecretInfo = "
|
|
353
|
-
GNParameterCode.GenericServiceSettings = "
|
|
354
|
-
GNParameterCode.GetEmail = "
|
|
355
|
-
GNParameterCode.SetEmail = "
|
|
356
|
-
GNParameterCode.CreateNewFileUploadInfo = "
|
|
357
|
-
GNParameterCode.GetFileUploadInfoList = "
|
|
358
|
-
GNParameterCode.GetFileUploadInfo = "
|
|
359
|
-
GNParameterCode.RemoveFileUploadInfo = "
|
|
360
|
-
GNParameterCode.RequestDownloadFileUploadInfo = "
|
|
361
|
-
GNParameterCode.StoreId = "
|
|
362
|
-
GNParameterCode.StoreItems = "
|
|
363
|
-
GNParameterCode.StoreCurrencies = "
|
|
364
|
-
GNParameterCode.PriceCurrencies = "
|
|
365
|
-
GNParameterCode.InAppPurchase = "
|
|
366
|
-
GNParameterCode.StoreStatistics = "
|
|
367
|
-
GNParameterCode.StoreDatas = "
|
|
368
|
-
GNParameterCode.StoreDataKeys = "
|
|
369
|
-
GNParameterCode.StoreStatisticsKeys = "
|
|
370
|
-
GNParameterCode.Currencies = "
|
|
371
|
-
GNParameterCode.Inventories = "
|
|
372
|
-
GNParameterCode.Receipt = "
|
|
373
|
-
GNParameterCode.FacebookStoreId = "
|
|
374
|
-
GNParameterCode.AppleAppStoreId = "
|
|
375
|
-
GNParameterCode.GooglePlayStoreId = "
|
|
376
|
-
GNParameterCode.CustomTags = "
|
|
377
|
-
GNParameterCode.SetSecretInfoInformation = "
|
|
378
|
-
GNParameterCode.GetCurrencyLeaderboard = "
|
|
379
|
-
GNParameterCode.GetCreateLeaderboard = "
|
|
380
|
-
GNParameterCode.GetLastLoginLeaderboard = "
|
|
381
|
-
GNParameterCode.Multiplayer = "
|
|
382
|
-
GNParameterCode.TimeInSeconds = "
|
|
383
|
-
GNParameterCode.QueueName = "
|
|
384
|
-
GNParameterCode.TimeToMatchInSeconds = "
|
|
385
|
-
GNParameterCode.TicketId = "
|
|
386
|
-
GNParameterCode.TicketIds = "
|
|
387
|
-
GNParameterCode.MatchmakingTicket = "
|
|
388
|
-
GNParameterCode.GiveUpAfterSeconds = "
|
|
389
|
-
GNParameterCode.MatchId = "
|
|
390
|
-
GNParameterCode.Attribute = "
|
|
391
|
-
GNParameterCode.ReturnMember = "
|
|
392
|
-
GNParameterCode.Match = "
|
|
393
|
-
GNParameterCode.TeamId = "
|
|
394
|
-
GNParameterCode.IpV4Address = "
|
|
395
|
-
GNParameterCode.Ports = "
|
|
396
|
-
GNParameterCode.PublicPort = "
|
|
397
|
-
GNParameterCode.PrivatePort = "
|
|
398
|
-
GNParameterCode.Protocol = "
|
|
399
|
-
GNParameterCode.ServerDetail = "
|
|
400
|
-
GNParameterCode.MatchmakingQueueSettings = "
|
|
401
|
-
GNParameterCode.Min = "
|
|
402
|
-
GNParameterCode.Max = "
|
|
403
|
-
GNParameterCode.MatchSize = "
|
|
404
|
-
GNParameterCode.TicketSize = "
|
|
405
|
-
GNParameterCode.TeamSize = "
|
|
406
|
-
GNParameterCode.Teams = "
|
|
407
|
-
GNParameterCode.Rules = "
|
|
408
|
-
GNParameterCode.AttributeSource = "
|
|
409
|
-
GNParameterCode.AttributePath = "
|
|
410
|
-
GNParameterCode.DefaultValue = "
|
|
411
|
-
GNParameterCode.CompairType = "
|
|
412
|
-
GNParameterCode.AllowedDifference = "
|
|
413
|
-
GNParameterCode.AdvancedSettings = "
|
|
414
|
-
GNParameterCode.SecondsUntilOptional = "
|
|
415
|
-
GNParameterCode.ExpansionType = "
|
|
416
|
-
GNParameterCode.SecondsBetweenExpansions = "
|
|
417
|
-
GNParameterCode.Delta = "
|
|
418
|
-
GNParameterCode.LinearExpansions = "
|
|
419
|
-
GNParameterCode.CustomExpansions = "
|
|
420
|
-
GNParameterCode.OverrideValue = "
|
|
421
|
-
GNParameterCode.OverrideMin = "
|
|
422
|
-
GNParameterCode.OverrideMax = "
|
|
423
|
-
GNParameterCode.PendingMemberCount = "
|
|
424
|
-
GNParameterCode.PendingTicketCount = "
|
|
425
|
-
GNParameterCode.AverageMatchmakingTimeInSeconds = "
|
|
426
|
-
GNParameterCode.CancelAllMatchmakingTicket = "
|
|
427
|
-
GNParameterCode.CancelMatchmakingTicket = "
|
|
428
|
-
GNParameterCode.CreateMatchmakingTicket = "
|
|
429
|
-
GNParameterCode.GetMatchmakingTicket = "
|
|
430
|
-
GNParameterCode.GetMatch = "
|
|
431
|
-
GNParameterCode.GetQueueStatistics = "
|
|
432
|
-
GNParameterCode.JoinMatchmakingTicket = "
|
|
433
|
-
GNParameterCode.ListMatchmakingTicketsForPlayer = "
|
|
434
|
-
GNParameterCode.GetAllMatchmakingTicket = "
|
|
435
|
-
GNParameterCode.GetAllMatch = "
|
|
436
|
-
GNParameterCode.FunctionName = "
|
|
437
|
-
GNParameterCode.FunctionParameters = "
|
|
438
|
-
GNParameterCode.Version = "
|
|
439
|
-
GNParameterCode.FunctionResult = "
|
|
440
|
-
GNParameterCode.ExecutionTimeInMs = "
|
|
441
|
-
GNParameterCode.MemoryUsedInBytes = "
|
|
442
|
-
GNParameterCode.FunctionLogs = "
|
|
443
|
-
GNParameterCode.CanExecute = "
|
|
444
|
-
GNParameterCode.Script = "
|
|
445
|
-
GNParameterCode.IsLive = "
|
|
446
|
-
GNParameterCode.AddFunction = "
|
|
447
|
-
GNParameterCode.GetFunctions = "
|
|
448
|
-
GNParameterCode.EditFunction = "
|
|
449
|
-
GNParameterCode.ExecuteFunction = "
|
|
450
|
-
GNParameterCode.GetFunction = "
|
|
451
|
-
GNParameterCode.CloudScript = "
|
|
452
|
-
GNParameterCode.LoginByGooglePlayGameService = "
|
|
453
|
-
GNParameterCode.LoginByGameCenter = "
|
|
454
|
-
GNParameterCode.UnlinkGooglePlayGameService = "
|
|
455
|
-
GNParameterCode.UnlinkGameCenter = "
|
|
456
|
-
GNParameterCode.LinkGooglePlayGameService = "
|
|
457
|
-
GNParameterCode.LinkGameCenter = "
|
|
458
|
-
GNParameterCode.GooglePlayGameSettings = "
|
|
459
|
-
GNParameterCode.GameCenterSettings = "
|
|
460
|
-
GNParameterCode.ApplicationId = "
|
|
461
|
-
GNParameterCode.ClientId = "
|
|
462
|
-
GNParameterCode.ClientSecret = "
|
|
463
|
-
GNParameterCode.RedirectUri = "
|
|
464
|
-
GNParameterCode.PlayerId = "
|
|
465
|
-
GNParameterCode.PublicKeyUrl = "
|
|
466
|
-
GNParameterCode.Signature = "
|
|
467
|
-
GNParameterCode.Salt = "
|
|
468
|
-
GNParameterCode.Timestamp = "
|
|
469
|
-
GNParameterCode.GooglePlayGameService = "
|
|
470
|
-
GNParameterCode.GameCenter = "
|
|
471
|
-
GNParameterCode.PlayerIds = "
|
|
472
|
-
GNParameterCode.GetPlayersWithGooglePlayGameService = "
|
|
473
|
-
GNParameterCode.GetPlayersWithGameCenter = "
|
|
474
|
-
GNParameterCode.LatestVersion = "
|
|
475
|
-
GNParameterCode.LiveLatestVersion = "
|
|
476
|
-
GNParameterCode.SendSocketOperationEvent = "
|
|
477
|
-
GNParameterCode.EventCode = "
|
|
478
|
-
GNParameterCode.EventParameters = "
|
|
479
|
-
GNParameterCode.EventEncrypted = "
|
|
480
|
-
GNParameterCode.Log = "
|
|
481
|
-
GNParameterCode.StartValue = "
|
|
482
|
-
GNParameterCode.FinalValue = "
|
|
483
|
-
GNParameterCode.GetStatisticsLog = "
|
|
484
|
-
GNParameterCode.GetCurrencyLog = "
|
|
485
|
-
GNParameterCode.GetUsernameAdminAccount = "
|
|
486
|
-
GNParameterCode.GetAnalytics = "
|
|
487
|
-
GNParameterCode.AnalyticsItem = "
|
|
488
|
-
GNParameterCode.CCU = "
|
|
489
|
-
GNParameterCode.DAU = "
|
|
490
|
-
GNParameterCode.DAUSince0h = "
|
|
491
|
-
GNParameterCode.DNU = "
|
|
492
|
-
GNParameterCode.DNUSince0h = "
|
|
493
|
-
GNParameterCode.DRT = "
|
|
494
|
-
GNParameterCode.DRTSince0h = "
|
|
495
|
-
GNParameterCode.MAU = "
|
|
496
|
-
GNParameterCode.MAUSince0h1 = "
|
|
497
|
-
GNParameterCode.MNU = "
|
|
498
|
-
GNParameterCode.MNUSince0h1 = "
|
|
499
|
-
GNParameterCode.MRT = "
|
|
500
|
-
GNParameterCode.MRTSince0h1 = "
|
|
501
|
-
GNParameterCode.GetEventCallbackCloudScript = "
|
|
502
|
-
GNParameterCode.SetEventCallbackCloudScript = "
|
|
503
|
-
GNParameterCode.HasEdit = "
|
|
504
|
-
GNParameterCode.FullScript = "
|
|
505
|
-
GNParameterCode.ChildScripts = "
|
|
506
|
-
GNParameterCode.EventName = "
|
|
507
|
-
GNParameterCode.PresentStoreItem = "
|
|
508
|
-
GNParameterCode.GetStoreLog = "
|
|
509
|
-
GNParameterCode.TsLastUpdate = "
|
|
510
|
-
GNParameterCode.StoreReceiveType = "
|
|
511
|
-
GNParameterCode.StoreReceiveTypes = "
|
|
512
|
-
GNParameterCode.TransactionId = "
|
|
513
|
-
GNParameterCode.PriceCurrencyStartValues = "
|
|
514
|
-
GNParameterCode.PriceCurrencyAmountValues = "
|
|
515
|
-
GNParameterCode.PriceCurrencyFinalValues = "
|
|
516
|
-
GNParameterCode.StoreCurrencyStartValues = "
|
|
517
|
-
GNParameterCode.StoreCurrencyAmountValues = "
|
|
518
|
-
GNParameterCode.StoreCurrencyFinalValues = "
|
|
519
|
-
GNParameterCode.StoreItemFinalValues = "
|
|
520
|
-
GNParameterCode.Index = "
|
|
521
|
-
GNParameterCode.ResetStatisticsLeaderboard = "
|
|
522
|
-
GNParameterCode.GetBackupStatisticsLeaderboardVersion = "
|
|
523
|
-
GNParameterCode.GetServerGameData = "
|
|
524
|
-
GNParameterCode.MasterPlayerCount = "
|
|
525
|
-
GNParameterCode.GamePlayerCount = "
|
|
526
|
-
GNParameterCode.CharacterPlayerCount = "
|
|
527
|
-
GNParameterCode.InventoryCount = "
|
|
528
|
-
GNParameterCode.StoreInventoryCount = "
|
|
529
|
-
GNParameterCode.GroupCount = "
|
|
530
|
-
GNParameterCode.Country = "
|
|
531
|
-
GNParameterCode.RegionCode = "
|
|
532
|
-
GNParameterCode.RegionName = "
|
|
533
|
-
GNParameterCode.Regions = "
|
|
534
|
-
GNParameterCode.Latitude = "
|
|
535
|
-
GNParameterCode.Longitude = "
|
|
536
|
-
GNParameterCode.BackupValue = "
|
|
537
|
-
GNParameterCode.AnalyticsPrice = "
|
|
538
|
-
GNParameterCode.IssuerId = "
|
|
539
|
-
GNParameterCode.KeyId = "
|
|
540
|
-
GNParameterCode.P8Content = "
|
|
541
|
-
GNParameterCode.ServerAllocation = "
|
|
542
|
-
GNParameterCode.Enable = "
|
|
543
|
-
GNParameterCode.SendEmail = "
|
|
544
|
-
GNParameterCode.SendPushNotification = "
|
|
545
|
-
GNParameterCode.AddPushNotification = "
|
|
546
|
-
GNParameterCode.RemovePushNotification = "
|
|
547
|
-
GNParameterCode.GetPushNotification = "
|
|
548
|
-
GNParameterCode.EmailSettings = "
|
|
549
|
-
GNParameterCode.PushNotificationSettings = "
|
|
550
|
-
GNParameterCode.SendFrom = "
|
|
551
|
-
GNParameterCode.SendGridApiKey = "
|
|
552
|
-
GNParameterCode.Subject = "
|
|
553
|
-
GNParameterCode.ContentHtml = "
|
|
554
|
-
GNParameterCode.PushNotifications = "
|
|
555
|
-
GNParameterCode.PushId = "
|
|
556
|
-
GNParameterCode.PlatformType = "
|
|
557
|
-
GNParameterCode.ProjectId = "
|
|
558
|
-
GNParameterCode.ClientEmail = "
|
|
559
|
-
GNParameterCode.PrivateKey = "
|
|
560
|
-
GNParameterCode.Badge = "
|
|
561
|
-
GNParameterCode.Icon = "
|
|
562
|
-
GNParameterCode.Sound = "
|
|
563
|
-
GNParameterCode.Title = "
|
|
564
|
-
GNParameterCode.Body = "
|
|
565
|
-
GNParameterCode.TargetPlatforms = "
|
|
18
|
+
GNParameterCode.LinuxDeviceId = "linuxDeviceId";
|
|
19
|
+
GNParameterCode.MacOSDeviceId = "macOSDeviceId";
|
|
20
|
+
GNParameterCode.WindowsDeviceId = "windowsDeviceId";
|
|
21
|
+
GNParameterCode.WindowsPhoneDeviceId = "windowsPhoneDeviceId";
|
|
22
|
+
GNParameterCode.InfoResponseParameters = "infoResponseParameters";
|
|
23
|
+
GNParameterCode.CreatePlayerIfNotExists = "createPlayerIfNotExists";
|
|
24
|
+
GNParameterCode.External = "external";
|
|
25
|
+
GNParameterCode.Segments = "segments";
|
|
26
|
+
GNParameterCode.CustomDatas = "customDatas";
|
|
27
|
+
GNParameterCode.DisplayName = "displayName";
|
|
28
|
+
GNParameterCode.UniqueDisplayName = "uniqueDisplayName";
|
|
29
|
+
GNParameterCode.Avatar = "avatar";
|
|
30
|
+
GNParameterCode.TsCreate = "tsCreate";
|
|
31
|
+
GNParameterCode.Tags = "tags";
|
|
32
|
+
GNParameterCode.Role = "role";
|
|
33
|
+
GNParameterCode.PlayerBan = "playerBan";
|
|
34
|
+
GNParameterCode.PlayerDatas = "playerDatas";
|
|
35
|
+
GNParameterCode.PlayerCurrencies = "playerCurrencies";
|
|
36
|
+
GNParameterCode.PlayerStatistics = "playerStatistics";
|
|
37
|
+
GNParameterCode.TsLastLogin = "tsLastLogin";
|
|
38
|
+
GNParameterCode.IpAddressCreate = "ipAddressCreate";
|
|
39
|
+
GNParameterCode.CountryCode = "countryCode";
|
|
40
|
+
GNParameterCode.TagKeys = "tagKeys";
|
|
41
|
+
GNParameterCode.CustomDataKeys = "customDataKeys";
|
|
42
|
+
GNParameterCode.Type = "type";
|
|
43
|
+
GNParameterCode.Value = "value";
|
|
44
|
+
GNParameterCode.Name = "name";
|
|
45
|
+
GNParameterCode.TsExpire = "tsExpire";
|
|
46
|
+
GNParameterCode.Reason = "reason";
|
|
47
|
+
GNParameterCode.Key = "key";
|
|
48
|
+
GNParameterCode.Permission = "permission";
|
|
49
|
+
GNParameterCode.NewlyCreated = "newlyCreated";
|
|
50
|
+
GNParameterCode.Token = "token";
|
|
51
|
+
GNParameterCode.Device = "device";
|
|
52
|
+
GNParameterCode.Account = "account";
|
|
53
|
+
GNParameterCode.Custom = "custom";
|
|
54
|
+
GNParameterCode.Apple = "apple";
|
|
55
|
+
GNParameterCode.Google = "google";
|
|
56
|
+
GNParameterCode.Facebook = "facebook";
|
|
57
|
+
GNParameterCode.GenericService = "genericService";
|
|
58
|
+
GNParameterCode.ServiceId = "serviceId";
|
|
59
|
+
GNParameterCode.ServiceData = "serviceData";
|
|
60
|
+
GNParameterCode.StatisticsAggregationMethod = "statisticsAggregationMethod";
|
|
61
|
+
GNParameterCode.MaximumValue = "maximumValue";
|
|
62
|
+
GNParameterCode.MinimumValue = "minimumValue";
|
|
63
|
+
GNParameterCode.Skip = "skip";
|
|
64
|
+
GNParameterCode.Limit = "limit";
|
|
65
|
+
GNParameterCode.Results = "results";
|
|
66
|
+
GNParameterCode.FacebookIds = "facebookIds";
|
|
67
|
+
GNParameterCode.GenericIds = "genericIds";
|
|
68
|
+
GNParameterCode.ForceLink = "forceLink";
|
|
69
|
+
GNParameterCode.Email = "email";
|
|
70
|
+
GNParameterCode.InfoRequestParam = "infoRequestParam";
|
|
71
|
+
GNParameterCode.PlayerDataKeys = "playerDataKeys";
|
|
72
|
+
GNParameterCode.PlayerCurrencyKeys = "playerCurrencyKeys";
|
|
73
|
+
GNParameterCode.PlayerStatisticsKeys = "playerStatisticsKeys";
|
|
74
|
+
GNParameterCode.Amount = "amount";
|
|
75
|
+
GNParameterCode.Keyword = "keyword";
|
|
76
|
+
GNParameterCode.Position = "position";
|
|
77
|
+
GNParameterCode.LoadFromCache = "loadFromCache";
|
|
78
|
+
GNParameterCode.DataKeys = "dataKeys";
|
|
79
|
+
GNParameterCode.CurrencyKeys = "currencyKeys";
|
|
80
|
+
GNParameterCode.StatisticsKeys = "statisticsKeys";
|
|
81
|
+
GNParameterCode.Id = "id";
|
|
82
|
+
GNParameterCode.TsRemove = "tsRemove";
|
|
83
|
+
GNParameterCode.CharacterId = "characterId";
|
|
84
|
+
GNParameterCode.CatalogId = "catalogId";
|
|
85
|
+
GNParameterCode.ItemId = "itemId";
|
|
86
|
+
GNParameterCode.GroupId = "groupId";
|
|
87
|
+
GNParameterCode.Status = "status";
|
|
88
|
+
GNParameterCode.TsLastStatusUpdate = "tsLastStatusUpdate";
|
|
89
|
+
GNParameterCode.PlayerInventories = "playerInventories";
|
|
90
|
+
GNParameterCode.PlayerGroups = "playerGroups";
|
|
91
|
+
GNParameterCode.PlayerFriends = "playerFriends";
|
|
92
|
+
GNParameterCode.CharacterCatalogIds = "characterCatalogIds";
|
|
93
|
+
GNParameterCode.ItemCatalogIds = "itemCatalogIds";
|
|
94
|
+
GNParameterCode.GroupCatalogIds = "groupCatalogIds";
|
|
95
|
+
GNParameterCode.FriendCatalogIds = "friendCatalogIds";
|
|
96
|
+
GNParameterCode.Owner = "owner";
|
|
97
|
+
GNParameterCode.RemoveStatus = "removeStatus";
|
|
98
|
+
GNParameterCode.FriendId = "friendId";
|
|
99
|
+
GNParameterCode.GroupMembers = "groupMembers";
|
|
100
|
+
GNParameterCode.GroupStatistics = "groupStatistics";
|
|
101
|
+
GNParameterCode.Members = "members";
|
|
102
|
+
GNParameterCode.OwnerId = "ownerId";
|
|
103
|
+
GNParameterCode.OwnerType = "ownerType";
|
|
104
|
+
GNParameterCode.Keys = "keys";
|
|
105
|
+
GNParameterCode.Label = "label";
|
|
106
|
+
GNParameterCode.Configs = "configs";
|
|
107
|
+
GNParameterCode.Data = "data";
|
|
108
|
+
GNParameterCode.FileName = "fileName";
|
|
109
|
+
GNParameterCode.FileId = "fileId";
|
|
110
|
+
GNParameterCode.MimeType = "mimeType";
|
|
111
|
+
GNParameterCode.Size = "size";
|
|
112
|
+
GNParameterCode.FolderFileName = "folderFileName";
|
|
113
|
+
GNParameterCode.FileUpload = "fileUpload";
|
|
114
|
+
GNParameterCode.TsUploadExpire = "tsUploadExpire";
|
|
115
|
+
GNParameterCode.DownloadToken = "downloadToken";
|
|
116
|
+
GNParameterCode.GameId = "gameId";
|
|
117
|
+
GNParameterCode.PlayerCharacters = "playerCharacters";
|
|
118
|
+
GNParameterCode.ForceAcceptFriend = "forceAcceptFriend";
|
|
119
|
+
GNParameterCode.SocketId = "socketId";
|
|
120
|
+
GNParameterCode.OnlineStatus = "onlineStatus";
|
|
121
|
+
GNParameterCode.GroupDatas = "groupDatas";
|
|
122
|
+
GNParameterCode.GroupCurrencies = "groupCurrencies";
|
|
123
|
+
GNParameterCode.GroupInventories = "groupInventories";
|
|
124
|
+
GNParameterCode.GroupDataKeys = "groupDataKeys";
|
|
125
|
+
GNParameterCode.GroupCurrencyKeys = "groupCurrencyKeys";
|
|
126
|
+
GNParameterCode.GroupStatisticsKeys = "groupStatisticsKeys";
|
|
127
|
+
GNParameterCode.MemberId = "memberId";
|
|
128
|
+
GNParameterCode.Message = "message";
|
|
129
|
+
GNParameterCode.SenderId = "senderId";
|
|
130
|
+
GNParameterCode.SenderType = "senderType";
|
|
131
|
+
GNParameterCode.GroupMessages = "groupMessages";
|
|
132
|
+
GNParameterCode.ItemCurrencies = "itemCurrencies";
|
|
133
|
+
GNParameterCode.ItemStatistics = "itemStatistics";
|
|
134
|
+
GNParameterCode.ItemDatas = "itemDatas";
|
|
135
|
+
GNParameterCode.ItemInventories = "itemInventories";
|
|
136
|
+
GNParameterCode.ItemDataKeys = "itemDataKeys";
|
|
137
|
+
GNParameterCode.ItemCurrencyKeys = "itemCurrencyKeys";
|
|
138
|
+
GNParameterCode.ItemStatisticsKeys = "itemStatisticsKeys";
|
|
139
|
+
GNParameterCode.ItemType = "itemType";
|
|
140
|
+
GNParameterCode.ClassId = "classId";
|
|
141
|
+
GNParameterCode.Hash = "hash";
|
|
142
|
+
GNParameterCode.GoogleSettings = "googleSettings";
|
|
143
|
+
GNParameterCode.FacebookSettings = "facebookSettings";
|
|
144
|
+
GNParameterCode.AppleSettings = "appleSettings";
|
|
145
|
+
GNParameterCode.GoogleClientId = "googleClientId";
|
|
146
|
+
GNParameterCode.PackageId = "packageId";
|
|
147
|
+
GNParameterCode.PublicRSAKey = "publicRSAKey";
|
|
148
|
+
GNParameterCode.FacebookInappSecret = "facebookInappSecret";
|
|
149
|
+
GNParameterCode.FacebookAppToken = "facebookAppToken";
|
|
150
|
+
GNParameterCode.FacebookAppId = "facebookAppId";
|
|
151
|
+
GNParameterCode.AppleClientId = "appleClientId";
|
|
152
|
+
GNParameterCode.SandboxEnable = "sandboxEnable";
|
|
153
|
+
GNParameterCode.SecretKey = "secretKey";
|
|
154
|
+
GNParameterCode.CreatorId = "creatorId";
|
|
155
|
+
GNParameterCode.GameDescription = "gameDescription";
|
|
156
|
+
GNParameterCode.GameIconUrl = "gameIconUrl";
|
|
157
|
+
GNParameterCode.GameSettings = "gameSettings";
|
|
158
|
+
GNParameterCode.ThirtPartySettings = "thirtPartySettings";
|
|
159
|
+
GNParameterCode.ForceAcceptMember = "forceAcceptMember";
|
|
160
|
+
GNParameterCode.InitialValue = "initialValue";
|
|
161
|
+
GNParameterCode.GameName = "gameName";
|
|
162
|
+
GNParameterCode.CurrencySettings = "currencySettings";
|
|
163
|
+
GNParameterCode.StatisticsSettings = "statisticsSettings";
|
|
164
|
+
GNParameterCode.DatasSettings = "datasSettings";
|
|
165
|
+
GNParameterCode.CustomDatasSettings = "customDatasSettings";
|
|
166
|
+
GNParameterCode.TagsSettings = "tagsSettings";
|
|
167
|
+
GNParameterCode.MasterPlayerSettings = "masterPlayerSettings";
|
|
168
|
+
GNParameterCode.GamePlayerSettings = "gamePlayerSettings";
|
|
169
|
+
GNParameterCode.CharacterPlayerSettings = "characterPlayerSettings";
|
|
170
|
+
GNParameterCode.GroupSettings = "groupSettings";
|
|
171
|
+
GNParameterCode.InventorySettings = "inventorySettings";
|
|
172
|
+
GNParameterCode.CharacterCatalogSettings = "characterCatalogSettings";
|
|
173
|
+
GNParameterCode.GroupCatalogSettings = "groupCatalogSettings";
|
|
174
|
+
GNParameterCode.ItemCatalogSettings = "itemCatalogSettings";
|
|
175
|
+
GNParameterCode.FriendCatalogSettings = "friendCatalogSettings";
|
|
176
|
+
GNParameterCode.ItemClassSettings = "itemClassSettings";
|
|
177
|
+
GNParameterCode.Remove = "remove";
|
|
178
|
+
GNParameterCode.SelfEnable = "selfEnable";
|
|
179
|
+
GNParameterCode.OtherSelfEnable = "otherSelfEnable";
|
|
180
|
+
GNParameterCode.AdminSelfEnable = "adminSelfEnable";
|
|
181
|
+
GNParameterCode.ServerSelfEnable = "serverSelfEnable";
|
|
182
|
+
GNParameterCode.Authenticate = "authenticate";
|
|
183
|
+
GNParameterCode.MasterPlayer = "masterPlayer";
|
|
184
|
+
GNParameterCode.GamePlayer = "gamePlayer";
|
|
185
|
+
GNParameterCode.CharacterPlayer = "characterPlayer";
|
|
186
|
+
GNParameterCode.Content = "content";
|
|
187
|
+
GNParameterCode.Group = "group";
|
|
188
|
+
GNParameterCode.Inventory = "inventory";
|
|
189
|
+
GNParameterCode.StoreInventory = "storeInventory";
|
|
190
|
+
GNParameterCode.MasterAdmin = "masterAdmin";
|
|
191
|
+
GNParameterCode.LoginByAccount = "loginByAccount";
|
|
192
|
+
GNParameterCode.LoginByAndroidDeviceId = "loginByAndroidDeviceId";
|
|
193
|
+
GNParameterCode.LoginByApple = "loginByApple";
|
|
194
|
+
GNParameterCode.LoginByCustomDeviceId = "loginByCustomDeviceId";
|
|
195
|
+
GNParameterCode.LoginByCustomId = "loginByCustomId";
|
|
196
|
+
GNParameterCode.LoginByFacebook = "loginByFacebook";
|
|
197
|
+
GNParameterCode.LoginByGenericService = "loginByGenericService";
|
|
198
|
+
GNParameterCode.LoginByGoogle = "loginByGoogle";
|
|
199
|
+
GNParameterCode.LoginByiOSDeviceId = "loginByiOSDeviceId";
|
|
200
|
+
GNParameterCode.LoginByWindowsPhoneDeviceId = "loginByWindowsPhoneDeviceId";
|
|
201
|
+
GNParameterCode.RegisterAccount = "registerAccount";
|
|
202
|
+
GNParameterCode.LoginByEditorDeviceId = "loginByEditorDeviceId";
|
|
203
|
+
GNParameterCode.LoginByLinuxDeviceId = "loginByLinuxDeviceId";
|
|
204
|
+
GNParameterCode.LoginByMacOSDeviceId = "loginByMacOSDeviceId";
|
|
205
|
+
GNParameterCode.LoginByWindowsDeviceId = "loginByWindowsDeviceId";
|
|
206
|
+
GNParameterCode.RefreshAuthToken = "refreshAuthToken";
|
|
207
|
+
GNParameterCode.LinkAccount = "linkAccount";
|
|
208
|
+
GNParameterCode.LinkAndroidDeviceId = "linkAndroidDeviceId";
|
|
209
|
+
GNParameterCode.LinkApple = "linkApple";
|
|
210
|
+
GNParameterCode.LinkCustomDeviceId = "linkCustomDeviceId";
|
|
211
|
+
GNParameterCode.LinkCustomId = "linkCustomId";
|
|
212
|
+
GNParameterCode.LinkEditorDeviceId = "linkEditorDeviceId";
|
|
213
|
+
GNParameterCode.LinkFacebook = "linkFacebook";
|
|
214
|
+
GNParameterCode.LinkGenericService = "linkGenericService";
|
|
215
|
+
GNParameterCode.LinkGoogle = "linkGoogle";
|
|
216
|
+
GNParameterCode.LinkiOSDeviceId = "linkiOSDeviceId";
|
|
217
|
+
GNParameterCode.LinkLinuxDeviceId = "linkLinuxDeviceId";
|
|
218
|
+
GNParameterCode.LinkMacOSDeviceId = "linkMacOSDeviceId";
|
|
219
|
+
GNParameterCode.LinkWindowsDeviceId = "linkWindowsDeviceId";
|
|
220
|
+
GNParameterCode.LinkWindowsPhoneDeviceId = "linkWindowsPhoneDeviceId";
|
|
221
|
+
GNParameterCode.UnlinkAccount = "unlinkAccount";
|
|
222
|
+
GNParameterCode.UnlinkAndroidDeviceId = "unlinkAndroidDeviceId";
|
|
223
|
+
GNParameterCode.UnlinkApple = "unlinkApple";
|
|
224
|
+
GNParameterCode.UnlinkCustomDeviceId = "unlinkCustomDeviceId";
|
|
225
|
+
GNParameterCode.UnlinkCustomId = "unlinkCustomId";
|
|
226
|
+
GNParameterCode.UnlinkEditorDeviceId = "unlinkEditorDeviceId";
|
|
227
|
+
GNParameterCode.UnlinkFacebook = "unlinkFacebook";
|
|
228
|
+
GNParameterCode.UnlinkGenericService = "unlinkGenericService";
|
|
229
|
+
GNParameterCode.UnlinkGoogle = "unlinkGoogle";
|
|
230
|
+
GNParameterCode.UnlinkiOSDeviceId = "unlinkiOSDeviceId";
|
|
231
|
+
GNParameterCode.UnlinkLinuxDeviceId = "unlinkLinuxDeviceId";
|
|
232
|
+
GNParameterCode.UnlinkMacOSDeviceId = "unlinkMacOSDeviceId";
|
|
233
|
+
GNParameterCode.UnlinkWindowsDeviceId = "unlinkWindowsDeviceId";
|
|
234
|
+
GNParameterCode.UnlinkWindowsPhoneDeviceId = "unlinkWindowsPhoneDeviceId";
|
|
235
|
+
GNParameterCode.AddSegment = "addSegment";
|
|
236
|
+
GNParameterCode.RemoveSegment = "removeSegment";
|
|
237
|
+
GNParameterCode.GetSegment = "getSegment";
|
|
238
|
+
GNParameterCode.SetTag = "setTag";
|
|
239
|
+
GNParameterCode.RemoveTag = "removeTag";
|
|
240
|
+
GNParameterCode.GetTag = "getTag";
|
|
241
|
+
GNParameterCode.GetDisplayName = "getDisplayName";
|
|
242
|
+
GNParameterCode.SetDisplayName = "setDisplayName";
|
|
243
|
+
GNParameterCode.GetTsCreate = "getTsCreate";
|
|
244
|
+
GNParameterCode.GetIpAddressCreate = "getIpAddressCreate";
|
|
245
|
+
GNParameterCode.SetTsLastLogin = "setTsLastLogin";
|
|
246
|
+
GNParameterCode.GetTsLastLogin = "getTsLastLogin";
|
|
247
|
+
GNParameterCode.SetPlayerBan = "setPlayerBan";
|
|
248
|
+
GNParameterCode.GetPlayerBan = "getPlayerBan";
|
|
249
|
+
GNParameterCode.SetCountryCode = "setCountryCode";
|
|
250
|
+
GNParameterCode.GetCountryCode = "getCountryCode";
|
|
251
|
+
GNParameterCode.ChangeAccountPassword = "changeAccountPassword";
|
|
252
|
+
GNParameterCode.ResetAccountPassword = "resetAccountPassword";
|
|
253
|
+
GNParameterCode.SetAvatar = "setAvatar";
|
|
254
|
+
GNParameterCode.GetAvatar = "getAvatar";
|
|
255
|
+
GNParameterCode.SetPlayerCurrency = "setPlayerCurrency";
|
|
256
|
+
GNParameterCode.GetPlayerCurrency = "getPlayerCurrency";
|
|
257
|
+
GNParameterCode.SetPlayerStatistics = "setPlayerStatistics";
|
|
258
|
+
GNParameterCode.GetPlayerStatistics = "getPlayerStatistics";
|
|
259
|
+
GNParameterCode.GetStatisticsLeaderboard = "getStatisticsLeaderboard";
|
|
260
|
+
GNParameterCode.GetStatisticsLeaderboardAroundPlayer = "getStatisticsLeaderboardAroundPlayer";
|
|
261
|
+
GNParameterCode.GetCustomData = "getCustomData";
|
|
262
|
+
GNParameterCode.SetCustomData = "setCustomData";
|
|
263
|
+
GNParameterCode.SetPlayerData = "setPlayerData";
|
|
264
|
+
GNParameterCode.GetPlayerData = "getPlayerData";
|
|
265
|
+
GNParameterCode.GetPlayerInformation = "getPlayerInformation";
|
|
266
|
+
GNParameterCode.GetPlayersWithApple = "getPlayersWithApple";
|
|
267
|
+
GNParameterCode.GetPlayersWithFacebook = "getPlayersWithFacebook";
|
|
268
|
+
GNParameterCode.GetPlayersWithGoogle = "getPlayersWithGoogle";
|
|
269
|
+
GNParameterCode.GetPlayersWithGenericService = "getPlayersWithGenericService";
|
|
270
|
+
GNParameterCode.GetPlayersWithSegment = "getPlayersWithSegment";
|
|
271
|
+
GNParameterCode.GetPlayersWithTag = "getPlayersWithTag";
|
|
272
|
+
GNParameterCode.GetExternal = "getExternal";
|
|
273
|
+
GNParameterCode.GetPlayersWithDisplayName = "getPlayersWithDisplayName";
|
|
274
|
+
GNParameterCode.GetPlayerCharacter = "getPlayerCharacter";
|
|
275
|
+
GNParameterCode.GetPlayerInventory = "getPlayerInventory";
|
|
276
|
+
GNParameterCode.GetPlayerGroup = "getPlayerGroup";
|
|
277
|
+
GNParameterCode.GetPlayerFriend = "getPlayerFriend";
|
|
278
|
+
GNParameterCode.RemovePlayerItem = "removePlayerItem";
|
|
279
|
+
GNParameterCode.GetOnlineStatus = "getOnlineStatus";
|
|
280
|
+
GNParameterCode.GrantGroup = "grantGroup";
|
|
281
|
+
GNParameterCode.GrantPlayerItem = "grantPlayerItem";
|
|
282
|
+
GNParameterCode.GrantPlayerCharacter = "grantPlayerCharacter";
|
|
283
|
+
GNParameterCode.AddPlayerFriend = "addPlayerFriend";
|
|
284
|
+
GNParameterCode.RemovePlayerFriend = "removePlayerFriend";
|
|
285
|
+
GNParameterCode.RemovePlayerCharacter = "removePlayerCharacter";
|
|
286
|
+
GNParameterCode.JoinGroup = "joinGroup";
|
|
287
|
+
GNParameterCode.LeaveGroup = "leaveGroup";
|
|
288
|
+
GNParameterCode.GetFriendStatisticsLeaderboardAroundPlayer = "getFriendStatisticsLeaderboardAroundPlayer";
|
|
289
|
+
GNParameterCode.GetFriendStatisticsLeaderboard = "getFriendStatisticsLeaderboard";
|
|
290
|
+
GNParameterCode.GetCatalogId = "getCatalogId";
|
|
291
|
+
GNParameterCode.GetOwner = "getOwner";
|
|
292
|
+
GNParameterCode.GetRemoveStatus = "getRemoveStatus";
|
|
293
|
+
GNParameterCode.SetOwner = "setOwner";
|
|
294
|
+
GNParameterCode.SetRemoveStatus = "setRemoveStatus";
|
|
295
|
+
GNParameterCode.GetContentData = "getContentData";
|
|
296
|
+
GNParameterCode.SetContentData = "setContentData";
|
|
297
|
+
GNParameterCode.SetGroupCurrency = "setGroupCurrency";
|
|
298
|
+
GNParameterCode.GetGroupCurrency = "getGroupCurrency";
|
|
299
|
+
GNParameterCode.SetGroupStatistics = "setGroupStatistics";
|
|
300
|
+
GNParameterCode.GetGroupStatistics = "getGroupStatistics";
|
|
301
|
+
GNParameterCode.GetStatisticsLeaderboardAroundGroup = "getStatisticsLeaderboardAroundGroup";
|
|
302
|
+
GNParameterCode.SetGroupData = "setGroupData";
|
|
303
|
+
GNParameterCode.GetGroupData = "getGroupData";
|
|
304
|
+
GNParameterCode.GetGroupInformation = "getGroupInformation";
|
|
305
|
+
GNParameterCode.GetGroupsWithSegment = "getGroupsWithSegment";
|
|
306
|
+
GNParameterCode.GetGroupsWithTag = "getGroupsWithTag";
|
|
307
|
+
GNParameterCode.GetGroupInventory = "getGroupInventory";
|
|
308
|
+
GNParameterCode.RemoveGroupItem = "removeGroupItem";
|
|
309
|
+
GNParameterCode.GrantGroupItem = "grantGroupItem";
|
|
310
|
+
GNParameterCode.GetMembers = "getMembers";
|
|
311
|
+
GNParameterCode.AddMember = "addMember";
|
|
312
|
+
GNParameterCode.RemoveMember = "removeMember";
|
|
313
|
+
GNParameterCode.SendGroupMessage = "sendGroupMessage";
|
|
314
|
+
GNParameterCode.GetGroupMessage = "getGroupMessage";
|
|
315
|
+
GNParameterCode.GetGroupsWithDisplayName = "getGroupsWithDisplayName";
|
|
316
|
+
GNParameterCode.SetItemStatistics = "setItemStatistics";
|
|
317
|
+
GNParameterCode.GetItemStatistics = "getItemStatistics";
|
|
318
|
+
GNParameterCode.GetStatisticsLeaderboardAroundItem = "getStatisticsLeaderboardAroundItem";
|
|
319
|
+
GNParameterCode.SetItemData = "setItemData";
|
|
320
|
+
GNParameterCode.GetItemData = "getItemData";
|
|
321
|
+
GNParameterCode.GetItemInformation = "getItemInformation";
|
|
322
|
+
GNParameterCode.GetItemsWithSegment = "getItemsWithSegment";
|
|
323
|
+
GNParameterCode.GetItemsWithTag = "getItemsWithTag";
|
|
324
|
+
GNParameterCode.GetClassId = "getClassId";
|
|
325
|
+
GNParameterCode.GetItemType = "getItemType";
|
|
326
|
+
GNParameterCode.GetAmount = "getAmount";
|
|
327
|
+
GNParameterCode.SetAmount = "setAmount";
|
|
328
|
+
GNParameterCode.GetItemsWithDisplayName = "getItemsWithDisplayName";
|
|
329
|
+
GNParameterCode.BuyStoreItem = "buyStoreItem";
|
|
330
|
+
GNParameterCode.GetStoreItemInformation = "getStoreItemInformation";
|
|
331
|
+
GNParameterCode.GetStoreItemsWithTag = "getStoreItemsWithTag";
|
|
332
|
+
GNParameterCode.GrantStoreItem = "grantStoreItem";
|
|
333
|
+
GNParameterCode.SetStoreItemInformation = "setStoreItemInformation";
|
|
334
|
+
GNParameterCode.ValidateAppleAppStoreReceipt = "validateAppleAppStoreReceipt";
|
|
335
|
+
GNParameterCode.ValidateGooglePlayStoreReceipt = "validateGooglePlayStoreReceipt";
|
|
336
|
+
GNParameterCode.ValidateFacebookStoreReceipt = "validateFacebookStoreReceipt";
|
|
337
|
+
GNParameterCode.SetMasterGameSettings = "setMasterGameSettings";
|
|
338
|
+
GNParameterCode.GrantAdminAccount = "grantAdminAccount";
|
|
339
|
+
GNParameterCode.RemoveAdminAccount = "removeAdminAccount";
|
|
340
|
+
GNParameterCode.SetPasswordAdminAccount = "setPasswordAdminAccount";
|
|
341
|
+
GNParameterCode.SetSecretKeyAdminAccount = "setSecretKeyAdminAccount";
|
|
342
|
+
GNParameterCode.SetGameInformation = "setGameInformation";
|
|
343
|
+
GNParameterCode.GrantGame = "grantGame";
|
|
344
|
+
GNParameterCode.ChangePasswordAdminAccount = "changePasswordAdminAccount";
|
|
345
|
+
GNParameterCode.GetAdminAccountList = "getAdminAccountList";
|
|
346
|
+
GNParameterCode.GetGameInformation = "getGameInformation";
|
|
347
|
+
GNParameterCode.GetGameList = "getGameList";
|
|
348
|
+
GNParameterCode.GetMasterGameSettings = "getMasterGameSettings";
|
|
349
|
+
GNParameterCode.GetServerLog = "getServerLog";
|
|
350
|
+
GNParameterCode.GetSecretInfoInformation = "getSecretInfoInformation";
|
|
351
|
+
GNParameterCode.GetSecretInfoList = "getSecretInfoList";
|
|
352
|
+
GNParameterCode.GrantSecretInfo = "grantSecretInfo";
|
|
353
|
+
GNParameterCode.GenericServiceSettings = "genericServiceSettings";
|
|
354
|
+
GNParameterCode.GetEmail = "getEmail";
|
|
355
|
+
GNParameterCode.SetEmail = "setEmail";
|
|
356
|
+
GNParameterCode.CreateNewFileUploadInfo = "createNewFileUploadInfo";
|
|
357
|
+
GNParameterCode.GetFileUploadInfoList = "getFileUploadInfoList";
|
|
358
|
+
GNParameterCode.GetFileUploadInfo = "getFileUploadInfo";
|
|
359
|
+
GNParameterCode.RemoveFileUploadInfo = "removeFileUploadInfo";
|
|
360
|
+
GNParameterCode.RequestDownloadFileUploadInfo = "requestDownloadFileUploadInfo";
|
|
361
|
+
GNParameterCode.StoreId = "storeId";
|
|
362
|
+
GNParameterCode.StoreItems = "storeItems";
|
|
363
|
+
GNParameterCode.StoreCurrencies = "storeCurrencies";
|
|
364
|
+
GNParameterCode.PriceCurrencies = "priceCurrencies";
|
|
365
|
+
GNParameterCode.InAppPurchase = "inAppPurchase";
|
|
366
|
+
GNParameterCode.StoreStatistics = "storeStatistics";
|
|
367
|
+
GNParameterCode.StoreDatas = "storeDatas";
|
|
368
|
+
GNParameterCode.StoreDataKeys = "storeDataKeys";
|
|
369
|
+
GNParameterCode.StoreStatisticsKeys = "storeStatisticsKeys";
|
|
370
|
+
GNParameterCode.Currencies = "currencies";
|
|
371
|
+
GNParameterCode.Inventories = "inventories";
|
|
372
|
+
GNParameterCode.Receipt = "receipt";
|
|
373
|
+
GNParameterCode.FacebookStoreId = "facebookStoreId";
|
|
374
|
+
GNParameterCode.AppleAppStoreId = "appleAppStoreId";
|
|
375
|
+
GNParameterCode.GooglePlayStoreId = "googlePlayStoreId";
|
|
376
|
+
GNParameterCode.CustomTags = "customTags";
|
|
377
|
+
GNParameterCode.SetSecretInfoInformation = "setSecretInfoInformation";
|
|
378
|
+
GNParameterCode.GetCurrencyLeaderboard = "getCurrencyLeaderboard";
|
|
379
|
+
GNParameterCode.GetCreateLeaderboard = "getCreateLeaderboard";
|
|
380
|
+
GNParameterCode.GetLastLoginLeaderboard = "getLastLoginLeaderboard";
|
|
381
|
+
GNParameterCode.Multiplayer = "multiplayer";
|
|
382
|
+
GNParameterCode.TimeInSeconds = "timeInSeconds";
|
|
383
|
+
GNParameterCode.QueueName = "queueName";
|
|
384
|
+
GNParameterCode.TimeToMatchInSeconds = "timeToMatchInSeconds";
|
|
385
|
+
GNParameterCode.TicketId = "ticketId";
|
|
386
|
+
GNParameterCode.TicketIds = "ticketIds";
|
|
387
|
+
GNParameterCode.MatchmakingTicket = "matchmakingTicket";
|
|
388
|
+
GNParameterCode.GiveUpAfterSeconds = "giveUpAfterSeconds";
|
|
389
|
+
GNParameterCode.MatchId = "matchId";
|
|
390
|
+
GNParameterCode.Attribute = "attribute";
|
|
391
|
+
GNParameterCode.ReturnMember = "returnMember";
|
|
392
|
+
GNParameterCode.Match = "match";
|
|
393
|
+
GNParameterCode.TeamId = "teamId";
|
|
394
|
+
GNParameterCode.IpV4Address = "ipV4Address";
|
|
395
|
+
GNParameterCode.Ports = "ports";
|
|
396
|
+
GNParameterCode.PublicPort = "publicPort";
|
|
397
|
+
GNParameterCode.PrivatePort = "privatePort";
|
|
398
|
+
GNParameterCode.Protocol = "protocol";
|
|
399
|
+
GNParameterCode.ServerDetail = "serverDetail";
|
|
400
|
+
GNParameterCode.MatchmakingQueueSettings = "matchmakingQueueSettings";
|
|
401
|
+
GNParameterCode.Min = "min";
|
|
402
|
+
GNParameterCode.Max = "max";
|
|
403
|
+
GNParameterCode.MatchSize = "matchSize";
|
|
404
|
+
GNParameterCode.TicketSize = "ticketSize";
|
|
405
|
+
GNParameterCode.TeamSize = "teamSize";
|
|
406
|
+
GNParameterCode.Teams = "teams";
|
|
407
|
+
GNParameterCode.Rules = "rules";
|
|
408
|
+
GNParameterCode.AttributeSource = "attributeSource";
|
|
409
|
+
GNParameterCode.AttributePath = "attributePath";
|
|
410
|
+
GNParameterCode.DefaultValue = "defaultValue";
|
|
411
|
+
GNParameterCode.CompairType = "compairType";
|
|
412
|
+
GNParameterCode.AllowedDifference = "allowedDifference";
|
|
413
|
+
GNParameterCode.AdvancedSettings = "advancedSettings";
|
|
414
|
+
GNParameterCode.SecondsUntilOptional = "secondsUntilOptional";
|
|
415
|
+
GNParameterCode.ExpansionType = "expansionType";
|
|
416
|
+
GNParameterCode.SecondsBetweenExpansions = "secondsBetweenExpansions";
|
|
417
|
+
GNParameterCode.Delta = "delta";
|
|
418
|
+
GNParameterCode.LinearExpansions = "linearExpansions";
|
|
419
|
+
GNParameterCode.CustomExpansions = "customExpansions";
|
|
420
|
+
GNParameterCode.OverrideValue = "overrideValue";
|
|
421
|
+
GNParameterCode.OverrideMin = "overrideMin";
|
|
422
|
+
GNParameterCode.OverrideMax = "overrideMax";
|
|
423
|
+
GNParameterCode.PendingMemberCount = "pendingMemberCount";
|
|
424
|
+
GNParameterCode.PendingTicketCount = "pendingTicketCount";
|
|
425
|
+
GNParameterCode.AverageMatchmakingTimeInSeconds = "averageMatchmakingTimeInSeconds";
|
|
426
|
+
GNParameterCode.CancelAllMatchmakingTicket = "cancelAllMatchmakingTicket";
|
|
427
|
+
GNParameterCode.CancelMatchmakingTicket = "cancelMatchmakingTicket";
|
|
428
|
+
GNParameterCode.CreateMatchmakingTicket = "createMatchmakingTicket";
|
|
429
|
+
GNParameterCode.GetMatchmakingTicket = "getMatchmakingTicket";
|
|
430
|
+
GNParameterCode.GetMatch = "getMatch";
|
|
431
|
+
GNParameterCode.GetQueueStatistics = "getQueueStatistics";
|
|
432
|
+
GNParameterCode.JoinMatchmakingTicket = "joinMatchmakingTicket";
|
|
433
|
+
GNParameterCode.ListMatchmakingTicketsForPlayer = "listMatchmakingTicketsForPlayer";
|
|
434
|
+
GNParameterCode.GetAllMatchmakingTicket = "getAllMatchmakingTicket";
|
|
435
|
+
GNParameterCode.GetAllMatch = "getAllMatch";
|
|
436
|
+
GNParameterCode.FunctionName = "functionName";
|
|
437
|
+
GNParameterCode.FunctionParameters = "functionParameters";
|
|
438
|
+
GNParameterCode.Version = "version";
|
|
439
|
+
GNParameterCode.FunctionResult = "functionResult";
|
|
440
|
+
GNParameterCode.ExecutionTimeInMs = "executionTimeInMs";
|
|
441
|
+
GNParameterCode.MemoryUsedInBytes = "memoryUsedInBytes";
|
|
442
|
+
GNParameterCode.FunctionLogs = "functionLogs";
|
|
443
|
+
GNParameterCode.CanExecute = "canExecute";
|
|
444
|
+
GNParameterCode.Script = "script";
|
|
445
|
+
GNParameterCode.IsLive = "isLive";
|
|
446
|
+
GNParameterCode.AddFunction = "addFunction";
|
|
447
|
+
GNParameterCode.GetFunctions = "getFunctions";
|
|
448
|
+
GNParameterCode.EditFunction = "editFunction";
|
|
449
|
+
GNParameterCode.ExecuteFunction = "executeFunction";
|
|
450
|
+
GNParameterCode.GetFunction = "getFunction";
|
|
451
|
+
GNParameterCode.CloudScript = "cloudScript";
|
|
452
|
+
GNParameterCode.LoginByGooglePlayGameService = "loginByGooglePlayGameService";
|
|
453
|
+
GNParameterCode.LoginByGameCenter = "loginByGameCenter";
|
|
454
|
+
GNParameterCode.UnlinkGooglePlayGameService = "unlinkGooglePlayGameService";
|
|
455
|
+
GNParameterCode.UnlinkGameCenter = "unlinkGameCenter";
|
|
456
|
+
GNParameterCode.LinkGooglePlayGameService = "linkGooglePlayGameService";
|
|
457
|
+
GNParameterCode.LinkGameCenter = "linkGameCenter";
|
|
458
|
+
GNParameterCode.GooglePlayGameSettings = "googlePlayGameSettings";
|
|
459
|
+
GNParameterCode.GameCenterSettings = "gameCenterSettings";
|
|
460
|
+
GNParameterCode.ApplicationId = "applicationId";
|
|
461
|
+
GNParameterCode.ClientId = "clientId";
|
|
462
|
+
GNParameterCode.ClientSecret = "clientSecret";
|
|
463
|
+
GNParameterCode.RedirectUri = "redirectUri";
|
|
464
|
+
GNParameterCode.PlayerId = "playerId";
|
|
465
|
+
GNParameterCode.PublicKeyUrl = "publicKeyUrl";
|
|
466
|
+
GNParameterCode.Signature = "signature";
|
|
467
|
+
GNParameterCode.Salt = "salt";
|
|
468
|
+
GNParameterCode.Timestamp = "timestamp";
|
|
469
|
+
GNParameterCode.GooglePlayGameService = "googlePlayGameService";
|
|
470
|
+
GNParameterCode.GameCenter = "gameCenter";
|
|
471
|
+
GNParameterCode.PlayerIds = "playerIds";
|
|
472
|
+
GNParameterCode.GetPlayersWithGooglePlayGameService = "getPlayersWithGooglePlayGameService";
|
|
473
|
+
GNParameterCode.GetPlayersWithGameCenter = "getPlayersWithGameCenter";
|
|
474
|
+
GNParameterCode.LatestVersion = "latestVersion";
|
|
475
|
+
GNParameterCode.LiveLatestVersion = "liveLatestVersion";
|
|
476
|
+
GNParameterCode.SendSocketOperationEvent = "sendSocketOperationEvent";
|
|
477
|
+
GNParameterCode.EventCode = "eventCode";
|
|
478
|
+
GNParameterCode.EventParameters = "eventParameters";
|
|
479
|
+
GNParameterCode.EventEncrypted = "eventEncrypted";
|
|
480
|
+
GNParameterCode.Log = "log";
|
|
481
|
+
GNParameterCode.StartValue = "startValue";
|
|
482
|
+
GNParameterCode.FinalValue = "finalValue";
|
|
483
|
+
GNParameterCode.GetStatisticsLog = "getStatisticsLog";
|
|
484
|
+
GNParameterCode.GetCurrencyLog = "getCurrencyLog";
|
|
485
|
+
GNParameterCode.GetUsernameAdminAccount = "getUsernameAdminAccount";
|
|
486
|
+
GNParameterCode.GetAnalytics = "getAnalytics";
|
|
487
|
+
GNParameterCode.AnalyticsItem = "analyticsItem";
|
|
488
|
+
GNParameterCode.CCU = "ccu";
|
|
489
|
+
GNParameterCode.DAU = "dau";
|
|
490
|
+
GNParameterCode.DAUSince0h = "dauSince0h";
|
|
491
|
+
GNParameterCode.DNU = "dnu";
|
|
492
|
+
GNParameterCode.DNUSince0h = "dnuSince0h";
|
|
493
|
+
GNParameterCode.DRT = "drt";
|
|
494
|
+
GNParameterCode.DRTSince0h = "drtSince0h";
|
|
495
|
+
GNParameterCode.MAU = "mau";
|
|
496
|
+
GNParameterCode.MAUSince0h1 = "mauSince0h1";
|
|
497
|
+
GNParameterCode.MNU = "mnu";
|
|
498
|
+
GNParameterCode.MNUSince0h1 = "mnuSince0h1";
|
|
499
|
+
GNParameterCode.MRT = "mrt";
|
|
500
|
+
GNParameterCode.MRTSince0h1 = "mrtSince0h1";
|
|
501
|
+
GNParameterCode.GetEventCallbackCloudScript = "getEventCallbackCloudScript";
|
|
502
|
+
GNParameterCode.SetEventCallbackCloudScript = "setEventCallbackCloudScript";
|
|
503
|
+
GNParameterCode.HasEdit = "hasEdit";
|
|
504
|
+
GNParameterCode.FullScript = "fullScript";
|
|
505
|
+
GNParameterCode.ChildScripts = "childScripts";
|
|
506
|
+
GNParameterCode.EventName = "eventName";
|
|
507
|
+
GNParameterCode.PresentStoreItem = "presentStoreItem";
|
|
508
|
+
GNParameterCode.GetStoreLog = "getStoreLog";
|
|
509
|
+
GNParameterCode.TsLastUpdate = "tsLastUpdate";
|
|
510
|
+
GNParameterCode.StoreReceiveType = "storeReceiveType";
|
|
511
|
+
GNParameterCode.StoreReceiveTypes = "storeReceiveTypes";
|
|
512
|
+
GNParameterCode.TransactionId = "transactionId";
|
|
513
|
+
GNParameterCode.PriceCurrencyStartValues = "priceCurrencyStartValues";
|
|
514
|
+
GNParameterCode.PriceCurrencyAmountValues = "priceCurrencyAmountValues";
|
|
515
|
+
GNParameterCode.PriceCurrencyFinalValues = "priceCurrencyFinalValues";
|
|
516
|
+
GNParameterCode.StoreCurrencyStartValues = "storeCurrencyStartValues";
|
|
517
|
+
GNParameterCode.StoreCurrencyAmountValues = "storeCurrencyAmountValues";
|
|
518
|
+
GNParameterCode.StoreCurrencyFinalValues = "storeCurrencyFinalValues";
|
|
519
|
+
GNParameterCode.StoreItemFinalValues = "storeItemFinalValues";
|
|
520
|
+
GNParameterCode.Index = "index";
|
|
521
|
+
GNParameterCode.ResetStatisticsLeaderboard = "resetStatisticsLeaderboard";
|
|
522
|
+
GNParameterCode.GetBackupStatisticsLeaderboardVersion = "getBackupStatisticsLeaderboardVersion";
|
|
523
|
+
GNParameterCode.GetServerGameData = "getServerGameData";
|
|
524
|
+
GNParameterCode.MasterPlayerCount = "masterPlayerCount";
|
|
525
|
+
GNParameterCode.GamePlayerCount = "gamePlayerCount";
|
|
526
|
+
GNParameterCode.CharacterPlayerCount = "characterPlayerCount";
|
|
527
|
+
GNParameterCode.InventoryCount = "inventoryCount";
|
|
528
|
+
GNParameterCode.StoreInventoryCount = "storeInventoryCount";
|
|
529
|
+
GNParameterCode.GroupCount = "groupCount";
|
|
530
|
+
GNParameterCode.Country = "country";
|
|
531
|
+
GNParameterCode.RegionCode = "regionCode";
|
|
532
|
+
GNParameterCode.RegionName = "regionName";
|
|
533
|
+
GNParameterCode.Regions = "regions";
|
|
534
|
+
GNParameterCode.Latitude = "latitude";
|
|
535
|
+
GNParameterCode.Longitude = "longitude";
|
|
536
|
+
GNParameterCode.BackupValue = "backupValue";
|
|
537
|
+
GNParameterCode.AnalyticsPrice = "analyticsPrice";
|
|
538
|
+
GNParameterCode.IssuerId = "issuerId";
|
|
539
|
+
GNParameterCode.KeyId = "keyId";
|
|
540
|
+
GNParameterCode.P8Content = "p8Content";
|
|
541
|
+
GNParameterCode.ServerAllocation = "serverAllocation";
|
|
542
|
+
GNParameterCode.Enable = "enable";
|
|
543
|
+
GNParameterCode.SendEmail = "sendEmail";
|
|
544
|
+
GNParameterCode.SendPushNotification = "sendPushNotification";
|
|
545
|
+
GNParameterCode.AddPushNotification = "addPushNotification";
|
|
546
|
+
GNParameterCode.RemovePushNotification = "removePushNotification";
|
|
547
|
+
GNParameterCode.GetPushNotification = "getPushNotification";
|
|
548
|
+
GNParameterCode.EmailSettings = "emailSettings";
|
|
549
|
+
GNParameterCode.PushNotificationSettings = "pushNotificationSettings";
|
|
550
|
+
GNParameterCode.SendFrom = "sendFrom";
|
|
551
|
+
GNParameterCode.SendGridApiKey = "sendGridApiKey";
|
|
552
|
+
GNParameterCode.Subject = "subject";
|
|
553
|
+
GNParameterCode.ContentHtml = "contentHtml";
|
|
554
|
+
GNParameterCode.PushNotifications = "pushNotifications";
|
|
555
|
+
GNParameterCode.PushId = "pushId";
|
|
556
|
+
GNParameterCode.PlatformType = "platformType";
|
|
557
|
+
GNParameterCode.ProjectId = "projectId";
|
|
558
|
+
GNParameterCode.ClientEmail = "clientEmail";
|
|
559
|
+
GNParameterCode.PrivateKey = "privateKey";
|
|
560
|
+
GNParameterCode.Badge = "badge";
|
|
561
|
+
GNParameterCode.Icon = "icon";
|
|
562
|
+
GNParameterCode.Sound = "sound";
|
|
563
|
+
GNParameterCode.Title = "title";
|
|
564
|
+
GNParameterCode.Body = "body";
|
|
565
|
+
GNParameterCode.TargetPlatforms = "targetPlatforms";
|