@xmobitea/gn-typescript-client 2.3.0 → 2.3.1-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.
- package/dist/index.js +314 -34927
- package/dist/runtime/GNNetwork.js +238 -0
- package/dist/runtime/GNNetworkAuthenticateApi.js +167 -0
- package/dist/runtime/GNNetworkCharacterPlayerApi.js +1271 -0
- package/dist/runtime/GNNetworkCloudScriptApi.js +143 -0
- package/dist/runtime/GNNetworkContentApi.js +191 -0
- package/dist/runtime/GNNetworkDashboardApi.js +223 -0
- package/dist/runtime/GNNetworkGamePlayerApi.js +1271 -0
- package/dist/runtime/GNNetworkGroupApi.js +983 -0
- package/dist/runtime/GNNetworkInventoryApi.js +839 -0
- package/dist/runtime/GNNetworkMasterPlayerApi.js +1927 -0
- package/dist/runtime/GNNetworkMultiplayerApi.js +263 -0
- package/dist/runtime/GNNetworkStoreInventoryApi.js +311 -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 +127 -0
- package/dist/runtime/constant/Commands.js +19 -0
- package/dist/runtime/constant/EventCode.js +8 -0
- package/dist/runtime/constant/OperationCode.js +214 -0
- package/dist/runtime/constant/ReturnCode.js +14 -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 +8 -0
- package/dist/runtime/constant/enumType/PermissionDataItem.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/errorCode/GNErrorCode.js +49 -0
- package/dist/runtime/constant/parameterCode/GNParameterCode.d.ts +3 -0
- package/dist/runtime/constant/parameterCode/GNParameterCode.js +540 -0
- package/dist/runtime/constant/parameterCode/ParameterCode.js +6 -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 +32 -0
- package/dist/runtime/entity/OperationHelper.js +23 -0
- package/dist/runtime/entity/OperationRequest.js +50 -0
- package/dist/runtime/entity/OperationResponse.js +81 -0
- package/dist/runtime/entity/models/AuthenticateModels.js +416 -0
- package/dist/runtime/entity/models/AuthenticateRequestModels.js +206 -0
- package/dist/runtime/entity/models/AuthenticateResponseModels.js +131 -0
- package/dist/runtime/entity/models/CharacterPlayerModels.js +1377 -0
- package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +1412 -0
- package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +369 -0
- package/dist/runtime/entity/models/CloudScriptModels.js +197 -0
- package/dist/runtime/entity/models/CloudScriptRequestModels.js +143 -0
- package/dist/runtime/entity/models/CloudScriptResponseModels.js +40 -0
- package/dist/runtime/entity/models/ContentModels.js +211 -0
- package/dist/runtime/entity/models/ContentRequestModels.js +197 -0
- package/dist/runtime/entity/models/ContentResponseModels.js +54 -0
- package/dist/runtime/entity/models/DashboardModels.d.ts +3 -0
- package/dist/runtime/entity/models/DashboardModels.js +2686 -0
- package/dist/runtime/entity/models/DashboardRequestModels.js +283 -0
- package/dist/runtime/entity/models/DashboardResponseModels.js +180 -0
- package/dist/runtime/entity/models/GamePlayerModels.js +1569 -0
- package/dist/runtime/entity/models/GamePlayerRequestModels.js +1412 -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 +1123 -0
- package/dist/runtime/entity/models/GroupRequestModels.js +1088 -0
- package/dist/runtime/entity/models/GroupResponseModels.js +285 -0
- package/dist/runtime/entity/models/InventoryModels.js +903 -0
- package/dist/runtime/entity/models/InventoryRequestModels.js +926 -0
- package/dist/runtime/entity/models/InventoryResponseModels.js +243 -0
- package/dist/runtime/entity/models/MasterPlayerModels.js +2371 -0
- package/dist/runtime/entity/models/MasterPlayerRequestModels.js +2152 -0
- package/dist/runtime/entity/models/MasterPlayerResponseModels.js +565 -0
- package/dist/runtime/entity/models/MultiplayerModels.js +404 -0
- package/dist/runtime/entity/models/MultiplayerRequestModels.js +278 -0
- package/dist/runtime/entity/models/MultiplayerResponseModels.js +75 -0
- package/dist/runtime/entity/models/StoreInventoryModels.js +737 -0
- package/dist/runtime/entity/models/StoreInventoryRequestModels.js +332 -0
- package/dist/runtime/entity/models/StoreInventoryResponseModels.js +89 -0
- package/dist/runtime/entity/request/CustomOperationRequest.js +24 -0
- package/dist/runtime/entity/response/CustomOperationResponse.js +29 -0
- package/dist/runtime/helper/CodeHelper.js +61 -0
- package/dist/runtime/helper/ConverterService.js +275 -0
- package/dist/runtime/helper/GNSupport.js +8 -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.js +129 -0
- package/dist/runtime/networking/OperationPending.js +53 -0
- package/dist/runtime/networking/PeerBase.js +168 -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 +35 -0
- package/dist/runtime/networking/http/HttpPeer.js +121 -0
- package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +6 -0
- package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +146 -0
- package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +126 -0
- package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +176 -0
- package/dist/runtime/networking/socket/SocketPeer.js +105 -0
- package/dist/runtime/typescript/ServiceUpdate.js +12 -0
- package/package.json +1 -1
- package/dist/gn.js.client.js +0 -47638
- package/dist/gn.js.client.min.js +0 -2
- package/dist/gn.js.client.min.js.LICENSE.txt +0 -14
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export var RequestType;
|
|
2
|
+
(function (RequestType) {
|
|
3
|
+
RequestType[RequestType["Custom"] = 0] = "Custom";
|
|
4
|
+
RequestType[RequestType["Authenticate"] = 1] = "Authenticate";
|
|
5
|
+
RequestType[RequestType["CharacterPlayer"] = 2] = "CharacterPlayer";
|
|
6
|
+
RequestType[RequestType["Content"] = 3] = "Content";
|
|
7
|
+
RequestType[RequestType["GamePlayer"] = 4] = "GamePlayer";
|
|
8
|
+
RequestType[RequestType["Group"] = 5] = "Group";
|
|
9
|
+
RequestType[RequestType["Inventory"] = 6] = "Inventory";
|
|
10
|
+
RequestType[RequestType["MasterPlayer"] = 7] = "MasterPlayer";
|
|
11
|
+
RequestType[RequestType["StoreInventory"] = 8] = "StoreInventory";
|
|
12
|
+
RequestType[RequestType["Dashboard"] = 9] = "Dashboard";
|
|
13
|
+
RequestType[RequestType["Multiplayer"] = 10] = "Multiplayer";
|
|
14
|
+
RequestType[RequestType["CloudScript"] = 11] = "CloudScript";
|
|
15
|
+
})(RequestType || (RequestType = {}));
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export class GNErrorCode {
|
|
2
|
+
}
|
|
3
|
+
GNErrorCode.Ok = 1;
|
|
4
|
+
GNErrorCode.AccountNotFound = 2;
|
|
5
|
+
GNErrorCode.AccountPasswordWrong = 3;
|
|
6
|
+
GNErrorCode.AccountUsernameExists = 4;
|
|
7
|
+
GNErrorCode.VerifyTokenError = 5;
|
|
8
|
+
GNErrorCode.ServiceNameNotFound = 6;
|
|
9
|
+
GNErrorCode.CharacterPlayerNotFound = 7;
|
|
10
|
+
GNErrorCode.NotEnoughCurrency = 8;
|
|
11
|
+
GNErrorCode.KeyNotFound = 9;
|
|
12
|
+
GNErrorCode.ItemNotFound = 10;
|
|
13
|
+
GNErrorCode.CatalogIdNotFound = 11;
|
|
14
|
+
GNErrorCode.GroupNotFound = 12;
|
|
15
|
+
GNErrorCode.OwnerNotFound = 13;
|
|
16
|
+
GNErrorCode.ClassIdNotFound = 14;
|
|
17
|
+
GNErrorCode.MemberNotFound = 15;
|
|
18
|
+
GNErrorCode.PlayerNotMember = 16;
|
|
19
|
+
GNErrorCode.GamePlayerNotFound = 17;
|
|
20
|
+
GNErrorCode.FileNotFound = 18;
|
|
21
|
+
GNErrorCode.FileNotUpload = 19;
|
|
22
|
+
GNErrorCode.OwnerTypeNotSupport = 20;
|
|
23
|
+
GNErrorCode.ItemNotComsumable = 21;
|
|
24
|
+
GNErrorCode.GameNotFound = 22;
|
|
25
|
+
GNErrorCode.GameIsExists = 23;
|
|
26
|
+
GNErrorCode.SecretInfoNotFound = 24;
|
|
27
|
+
GNErrorCode.SecretInfoIsExists = 25;
|
|
28
|
+
GNErrorCode.ExternalNotLinked = 26;
|
|
29
|
+
GNErrorCode.ExternalLinkedOtherAccount = 27;
|
|
30
|
+
GNErrorCode.ExternalLinkedOtherValue = 28;
|
|
31
|
+
GNErrorCode.MasterPlayerNotFound = 29;
|
|
32
|
+
GNErrorCode.StoreItemNotFound = 30;
|
|
33
|
+
GNErrorCode.BuyerNotFound = 31;
|
|
34
|
+
GNErrorCode.CanNotBuyThisStoreItem = 32;
|
|
35
|
+
GNErrorCode.ExceptionWhenValidateReceipt = 33;
|
|
36
|
+
GNErrorCode.StoreInvalid = 34;
|
|
37
|
+
GNErrorCode.ReceiptInvalid = 35;
|
|
38
|
+
GNErrorCode.StoreItemHadBeenRemove = 36;
|
|
39
|
+
GNErrorCode.DisplayNameHasUse = 37;
|
|
40
|
+
GNErrorCode.PlayerBan = 38;
|
|
41
|
+
GNErrorCode.MatchmakingTicketNotFound = 39;
|
|
42
|
+
GNErrorCode.MatchmakingTicketAlreadyCompleted = 40;
|
|
43
|
+
GNErrorCode.MatchmakingPlayerHasNotJoinedTicket = 41;
|
|
44
|
+
GNErrorCode.MatchNotFound = 42;
|
|
45
|
+
GNErrorCode.MatchmakingPlayerHasJoinedOtherTicket = 43;
|
|
46
|
+
GNErrorCode.MatchmakingQueueNotFound = 44;
|
|
47
|
+
GNErrorCode.TicketSizeError = 45;
|
|
48
|
+
GNErrorCode.ExecuteError = 46;
|
|
49
|
+
GNErrorCode.VersionInvalid = 47;
|
|
@@ -534,4 +534,7 @@ export declare class GNParameterCode {
|
|
|
534
534
|
static readonly Longitude: string;
|
|
535
535
|
static readonly BackupValue: string;
|
|
536
536
|
static readonly AnalyticsPrice: string;
|
|
537
|
+
static readonly IssuerId: string;
|
|
538
|
+
static readonly KeyId: string;
|
|
539
|
+
static readonly P8Content: string;
|
|
537
540
|
}
|
|
@@ -0,0 +1,540 @@
|
|
|
1
|
+
export class GNParameterCode {
|
|
2
|
+
}
|
|
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
|
+
GNParameterCode.iOSDeviceId = "iOSDeviceId";
|
|
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";
|