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