@xmobitea/gn-typescript-client 2.6.8-tsc → 2.6.9
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/LICENSE +198 -5
- package/dist/gearn.js.client.js +46884 -0
- package/dist/gearn.js.client.min.js +2 -0
- package/dist/gearn.js.client.min.js.LICENSE.txt +14 -0
- package/dist/index.js +34162 -337
- package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +0 -1
- package/dist/runtime/entity/models/DashboardModels.d.ts +7 -7
- package/dist/runtime/entity/models/GroupModels.d.ts +0 -1
- package/dist/runtime/entity/models/MultiplayerModels.d.ts +1 -1
- package/package.json +2 -2
- package/responseModel/chatgpt/Authenticate.json +724 -0
- package/responseModel/chatgpt/CharacterPlayer.json +1890 -0
- package/responseModel/chatgpt/CloudScript.json +254 -0
- package/responseModel/chatgpt/Content.json +273 -0
- package/responseModel/chatgpt/Dashboard.json +4110 -0
- package/responseModel/chatgpt/GamePlayer.json +2306 -0
- package/responseModel/chatgpt/Generic.json +253 -0
- package/responseModel/chatgpt/Group.json +1509 -0
- package/responseModel/chatgpt/Inventory.json +1211 -0
- package/responseModel/chatgpt/MasterPlayer.json +3801 -0
- package/responseModel/chatgpt/Multiplayer.json +634 -0
- package/responseModel/chatgpt/StoreInventory.json +1099 -0
- package/responseModel/clients/AuthenticateModels.json +271 -0
- package/responseModel/clients/CharacterPlayerModels.json +792 -0
- package/responseModel/clients/CloudScriptModels.json +191 -0
- package/responseModel/clients/ContentModels.json +178 -0
- package/responseModel/clients/DashboardModels.json +5423 -0
- package/responseModel/clients/GamePlayerModels.json +781 -0
- package/responseModel/clients/GenericModels.json +344 -0
- package/responseModel/clients/GroupModels.json +705 -0
- package/responseModel/clients/InventoryModels.json +568 -0
- package/responseModel/clients/MasterPlayerModels.json +1281 -0
- package/responseModel/clients/MultiplayerModels.json +439 -0
- package/responseModel/clients/StoreInventoryModels.json +971 -0
- package/responseModel/finalChatgpt/Authenticate.json +1475 -0
- package/responseModel/finalChatgpt/CharacterPlayer.json +4104 -0
- package/responseModel/finalChatgpt/CloudScript.json +515 -0
- package/responseModel/finalChatgpt/Content.json +536 -0
- package/responseModel/finalChatgpt/Dashboard.json +6712 -0
- package/responseModel/finalChatgpt/GamePlayer.json +5142 -0
- package/responseModel/finalChatgpt/Generic.json +333 -0
- package/responseModel/finalChatgpt/Group.json +3232 -0
- package/responseModel/finalChatgpt/Inventory.json +2606 -0
- package/responseModel/finalChatgpt/MasterPlayer.json +8385 -0
- package/responseModel/finalChatgpt/Multiplayer.json +1196 -0
- package/responseModel/finalChatgpt/StoreInventory.json +2085 -0
- package/responseModel/finals/Authenticate.json +1460 -0
- package/responseModel/finals/CharacterPlayer.json +3639 -0
- package/responseModel/finals/CloudScript.json +465 -0
- package/responseModel/finals/Content.json +479 -0
- package/responseModel/finals/Dashboard.json +6718 -0
- package/responseModel/finals/GamePlayer.json +4291 -0
- package/responseModel/finals/Generic.json +345 -0
- package/responseModel/finals/Group.json +2885 -0
- package/responseModel/finals/Inventory.json +2309 -0
- package/responseModel/finals/MasterPlayer.json +7018 -0
- package/responseModel/finals/Multiplayer.json +1082 -0
- package/responseModel/finals/StoreInventory.json +1979 -0
- package/responseModel/finalsShort/Authenticate.json +723 -0
- package/responseModel/finalsShort/CharacterPlayer.json +1889 -0
- package/responseModel/finalsShort/CloudScript.json +253 -0
- package/responseModel/finalsShort/Content.json +272 -0
- package/responseModel/finalsShort/Dashboard.json +4109 -0
- package/responseModel/finalsShort/GamePlayer.json +2305 -0
- package/responseModel/finalsShort/Generic.json +252 -0
- package/responseModel/finalsShort/Group.json +1508 -0
- package/responseModel/finalsShort/Inventory.json +1210 -0
- package/responseModel/finalsShort/MasterPlayer.json +3800 -0
- package/responseModel/finalsShort/Multiplayer.json +633 -0
- package/responseModel/finalsShort/StoreInventory.json +1098 -0
- package/responseModel/operationResponse/AuthenticateResponseModels.json +77 -0
- package/responseModel/operationResponse/CharacterPlayerResponseModels.json +217 -0
- package/responseModel/operationResponse/CloudScriptResponseModels.json +25 -0
- package/responseModel/operationResponse/ContentResponseModels.json +33 -0
- package/responseModel/operationResponse/DashboardResponseModels.json +109 -0
- package/responseModel/operationResponse/GamePlayerResponseModels.json +213 -0
- package/responseModel/operationResponse/GroupResponseModels.json +165 -0
- package/responseModel/operationResponse/InventoryResponseModels.json +141 -0
- package/responseModel/operationResponse/MasterPlayerResponseModels.json +349 -0
- package/responseModel/operationResponse/MultiplayerResponseModels.json +45 -0
- package/responseModel/operationResponse/StoreInventoryResponseModels.json +61 -0
- package/responseModel/servers/Authenticate.json +1328 -0
- package/responseModel/servers/CharacterPlayer.json +3199 -0
- package/responseModel/servers/CloudScript.json +278 -0
- package/responseModel/servers/Content.json +324 -0
- package/responseModel/servers/GamePlayer.json +3844 -0
- package/responseModel/servers/Group.json +2454 -0
- package/responseModel/servers/Inventory.json +1964 -0
- package/responseModel/servers/MasterAdmin.json +5569 -0
- package/responseModel/servers/MasterPlayer.json +5924 -0
- package/responseModel/servers/Multiplayer.json +545 -0
- package/responseModel/servers/StoreInventory.json +1290 -0
- package/dist/runtime/GNNetwork.js +0 -250
- package/dist/runtime/GNNetworkAuthenticateApi.js +0 -122
- package/dist/runtime/GNNetworkCharacterPlayerApi.js +0 -968
- package/dist/runtime/GNNetworkCloudScriptApi.js +0 -104
- package/dist/runtime/GNNetworkContentApi.js +0 -140
- package/dist/runtime/GNNetworkDashboardApi.js +0 -170
- package/dist/runtime/GNNetworkGamePlayerApi.js +0 -950
- package/dist/runtime/GNNetworkGroupApi.js +0 -734
- package/dist/runtime/GNNetworkInventoryApi.js +0 -626
- package/dist/runtime/GNNetworkMasterPlayerApi.js +0 -1550
- package/dist/runtime/GNNetworkMultiplayerApi.js +0 -194
- package/dist/runtime/GNNetworkStoreInventoryApi.js +0 -266
- package/dist/runtime/common/Action0.js +0 -1
- package/dist/runtime/common/Action1.js +0 -1
- package/dist/runtime/common/Action2.js +0 -1
- package/dist/runtime/common/Action3.js +0 -1
- package/dist/runtime/common/Action4.js +0 -1
- package/dist/runtime/common/GNData.js +0 -211
- package/dist/runtime/config/GNServerSettings.js +0 -149
- package/dist/runtime/constant/Commands.js +0 -19
- package/dist/runtime/constant/EventCode.js +0 -8
- package/dist/runtime/constant/OperationCode.js +0 -221
- package/dist/runtime/constant/ReturnCode.js +0 -14
- package/dist/runtime/constant/enumType/ExecuteResponseStatus.js +0 -8
- package/dist/runtime/constant/enumType/FriendStatus.js +0 -7
- package/dist/runtime/constant/enumType/GoogleLoginType.js +0 -5
- package/dist/runtime/constant/enumType/GroupStatus.js +0 -7
- package/dist/runtime/constant/enumType/InvalidMemberType.js +0 -18
- package/dist/runtime/constant/enumType/ItemType.js +0 -5
- package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +0 -6
- package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +0 -8
- package/dist/runtime/constant/enumType/OwnerType.js +0 -9
- package/dist/runtime/constant/enumType/PermissionDataItem.js +0 -5
- package/dist/runtime/constant/enumType/PushPlatformType.js +0 -5
- package/dist/runtime/constant/enumType/RequestRole.js +0 -6
- package/dist/runtime/constant/enumType/RequestType.js +0 -15
- package/dist/runtime/constant/enumType/StoreItemType.js +0 -5
- package/dist/runtime/constant/enumType/StoreReceiveType.js +0 -8
- package/dist/runtime/constant/errorCode/ErrorCode.js +0 -52
- package/dist/runtime/constant/parameterCode/ParameterCode.js +0 -617
- package/dist/runtime/entity/DataMember.js +0 -208
- package/dist/runtime/entity/GNMetadata.js +0 -11
- package/dist/runtime/entity/InvalidMember.js +0 -1
- package/dist/runtime/entity/OperationEvent.js +0 -24
- package/dist/runtime/entity/OperationHelper.js +0 -24
- package/dist/runtime/entity/OperationRequest.js +0 -42
- package/dist/runtime/entity/OperationResponse.js +0 -73
- package/dist/runtime/entity/models/AuthenticateModels.js +0 -426
- package/dist/runtime/entity/models/AuthenticateRequestModels.js +0 -188
- package/dist/runtime/entity/models/AuthenticateResponseModels.js +0 -131
- package/dist/runtime/entity/models/CharacterPlayerModels.js +0 -1437
- package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +0 -1386
- package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +0 -376
- package/dist/runtime/entity/models/CloudScriptModels.js +0 -197
- package/dist/runtime/entity/models/CloudScriptRequestModels.js +0 -138
- package/dist/runtime/entity/models/CloudScriptResponseModels.js +0 -40
- package/dist/runtime/entity/models/ContentModels.js +0 -203
- package/dist/runtime/entity/models/ContentRequestModels.js +0 -190
- package/dist/runtime/entity/models/ContentResponseModels.js +0 -54
- package/dist/runtime/entity/models/DashboardModels.js +0 -3002
- package/dist/runtime/entity/models/DashboardRequestModels.js +0 -268
- package/dist/runtime/entity/models/DashboardResponseModels.js +0 -187
- package/dist/runtime/entity/models/GamePlayerModels.js +0 -1591
- package/dist/runtime/entity/models/GamePlayerRequestModels.js +0 -1360
- package/dist/runtime/entity/models/GamePlayerResponseModels.js +0 -369
- package/dist/runtime/entity/models/GenericModels.js +0 -177
- package/dist/runtime/entity/models/GroupModels.js +0 -1139
- package/dist/runtime/entity/models/GroupRequestModels.js +0 -1048
- package/dist/runtime/entity/models/GroupResponseModels.js +0 -285
- package/dist/runtime/entity/models/InventoryModels.js +0 -915
- package/dist/runtime/entity/models/InventoryRequestModels.js +0 -892
- package/dist/runtime/entity/models/InventoryResponseModels.js +0 -243
- package/dist/runtime/entity/models/MasterPlayerModels.js +0 -2573
- package/dist/runtime/entity/models/MasterPlayerRequestModels.js +0 -2228
- package/dist/runtime/entity/models/MasterPlayerResponseModels.js +0 -607
- package/dist/runtime/entity/models/MultiplayerModels.js +0 -404
- package/dist/runtime/entity/models/MultiplayerRequestModels.js +0 -268
- package/dist/runtime/entity/models/MultiplayerResponseModels.js +0 -75
- package/dist/runtime/entity/models/StoreInventoryModels.js +0 -797
- package/dist/runtime/entity/models/StoreInventoryRequestModels.js +0 -372
- package/dist/runtime/entity/models/StoreInventoryResponseModels.js +0 -103
- package/dist/runtime/entity/request/CustomOperationRequest.js +0 -24
- package/dist/runtime/entity/response/CustomOperationResponse.js +0 -29
- package/dist/runtime/entity/response/GetAuthInfoResponse.js +0 -2
- package/dist/runtime/entity/response/UploadFileResponse.js +0 -2
- package/dist/runtime/helper/CodeHelper.js +0 -63
- package/dist/runtime/helper/ConverterService.js +0 -275
- package/dist/runtime/helper/EnumUtility.js +0 -33
- package/dist/runtime/helper/GNSupport.js +0 -8
- package/dist/runtime/helper/GNUtils.js +0 -72
- package/dist/runtime/helper/MessagePackConverterService.js +0 -9
- package/dist/runtime/logger/GNDebug.js +0 -29
- package/dist/runtime/networking/AuthenticateStatus.js +0 -14
- package/dist/runtime/networking/IPeer.js +0 -1
- package/dist/runtime/networking/NetworkingPeer.js +0 -178
- package/dist/runtime/networking/OperationPending.js +0 -53
- package/dist/runtime/networking/PeerBase.js +0 -161
- package/dist/runtime/networking/handler/IServerEventHandler.js +0 -13
- package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +0 -39
- package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +0 -39
- package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +0 -39
- package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +0 -39
- package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +0 -35
- package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +0 -43
- package/dist/runtime/networking/http/HttpPeer.js +0 -122
- package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +0 -6
- package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +0 -164
- package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +0 -130
- package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +0 -165
- package/dist/runtime/networking/socket/SocketPeer.js +0 -115
- package/dist/runtime/typescript/ServiceUpdate.js +0 -12
|
@@ -0,0 +1,4109 @@
|
|
|
1
|
+
{
|
|
2
|
+
"requestType": "Dashboard",
|
|
3
|
+
"operations": [
|
|
4
|
+
{
|
|
5
|
+
"operationCode": "ChangePasswordAdminAccount",
|
|
6
|
+
"details": [
|
|
7
|
+
{
|
|
8
|
+
"role": "Client",
|
|
9
|
+
"requestData": [
|
|
10
|
+
{
|
|
11
|
+
"code": "CurrentPassword",
|
|
12
|
+
"description": "",
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"code": "Password",
|
|
17
|
+
"description": "",
|
|
18
|
+
"type": "string"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"description": ""
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"operationCode": "CreateAdminAccount",
|
|
27
|
+
"details": [
|
|
28
|
+
{
|
|
29
|
+
"role": "Client",
|
|
30
|
+
"requestData": [
|
|
31
|
+
{
|
|
32
|
+
"code": "Username",
|
|
33
|
+
"description": "",
|
|
34
|
+
"type": "string"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"code": "Password",
|
|
38
|
+
"description": "",
|
|
39
|
+
"type": "string"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"code": "SecretKey",
|
|
43
|
+
"description": "",
|
|
44
|
+
"type": "string"
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"description": ""
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"operationCode": "CreateGame",
|
|
53
|
+
"details": [
|
|
54
|
+
{
|
|
55
|
+
"role": "Client",
|
|
56
|
+
"requestData": [
|
|
57
|
+
{
|
|
58
|
+
"code": "GameId",
|
|
59
|
+
"description": "",
|
|
60
|
+
"type": "string"
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"description": ""
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"operationCode": "CreateSecretInfo",
|
|
69
|
+
"details": [
|
|
70
|
+
{
|
|
71
|
+
"role": "Client",
|
|
72
|
+
"requestData": [
|
|
73
|
+
{
|
|
74
|
+
"code": "SecretKey",
|
|
75
|
+
"description": "",
|
|
76
|
+
"type": "string"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"code": "GameId",
|
|
80
|
+
"description": "",
|
|
81
|
+
"type": "string"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"code": "Role",
|
|
85
|
+
"description": "",
|
|
86
|
+
"type": "number"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"code": "PermissionParam",
|
|
90
|
+
"description": "",
|
|
91
|
+
"type": "PermissionParam"
|
|
92
|
+
}
|
|
93
|
+
]
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"description": ""
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"operationCode": "DeleteInDatabase",
|
|
100
|
+
"details": [
|
|
101
|
+
{
|
|
102
|
+
"role": "Client",
|
|
103
|
+
"requestData": [
|
|
104
|
+
{
|
|
105
|
+
"code": "Type",
|
|
106
|
+
"description": "",
|
|
107
|
+
"type": "number"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"code": "Id",
|
|
111
|
+
"description": "",
|
|
112
|
+
"type": "string"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"code": "GameId",
|
|
116
|
+
"description": "",
|
|
117
|
+
"type": "string"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"code": "Log",
|
|
121
|
+
"description": "",
|
|
122
|
+
"type": "string"
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"description": ""
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"operationCode": "GetAdminAccountList",
|
|
131
|
+
"details": [],
|
|
132
|
+
"description": ""
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"operationCode": "GetAnalytics",
|
|
136
|
+
"details": [
|
|
137
|
+
{
|
|
138
|
+
"role": "Client",
|
|
139
|
+
"requestData": [
|
|
140
|
+
{
|
|
141
|
+
"code": "Timestamp",
|
|
142
|
+
"description": "",
|
|
143
|
+
"type": "number"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"code": "AnalyticsItem",
|
|
147
|
+
"description": "",
|
|
148
|
+
"type": "boolean"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"code": "Country",
|
|
152
|
+
"description": "",
|
|
153
|
+
"type": "boolean"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"code": "RequestComplete",
|
|
157
|
+
"description": "",
|
|
158
|
+
"type": "boolean"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"code": "OperationSystem",
|
|
162
|
+
"description": "",
|
|
163
|
+
"type": "boolean"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"code": "DatabaseSystem",
|
|
167
|
+
"description": "",
|
|
168
|
+
"type": "boolean"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"code": "LogDatabaseSystem",
|
|
172
|
+
"description": "",
|
|
173
|
+
"type": "boolean"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"code": "Cost",
|
|
177
|
+
"description": "",
|
|
178
|
+
"type": "boolean"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"code": "MonthlyCost",
|
|
182
|
+
"description": "",
|
|
183
|
+
"type": "boolean"
|
|
184
|
+
}
|
|
185
|
+
]
|
|
186
|
+
}
|
|
187
|
+
],
|
|
188
|
+
"description": ""
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"operationCode": "GetBackupStatisticsLeaderboardVersion",
|
|
192
|
+
"details": [
|
|
193
|
+
{
|
|
194
|
+
"role": "Client",
|
|
195
|
+
"requestData": [
|
|
196
|
+
{
|
|
197
|
+
"code": "GameId",
|
|
198
|
+
"description": "",
|
|
199
|
+
"type": "string"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"code": "Type",
|
|
203
|
+
"description": "",
|
|
204
|
+
"type": "number"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"code": "Key",
|
|
208
|
+
"description": "",
|
|
209
|
+
"type": "string"
|
|
210
|
+
}
|
|
211
|
+
]
|
|
212
|
+
}
|
|
213
|
+
],
|
|
214
|
+
"description": ""
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"operationCode": "GetEventCallbackCloudScript",
|
|
218
|
+
"details": [],
|
|
219
|
+
"description": ""
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"operationCode": "GetGameInformation",
|
|
223
|
+
"details": [
|
|
224
|
+
{
|
|
225
|
+
"role": "Client",
|
|
226
|
+
"requestData": [
|
|
227
|
+
{
|
|
228
|
+
"code": "GameId",
|
|
229
|
+
"description": "",
|
|
230
|
+
"type": "string"
|
|
231
|
+
}
|
|
232
|
+
]
|
|
233
|
+
}
|
|
234
|
+
],
|
|
235
|
+
"description": ""
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"operationCode": "GetGameList",
|
|
239
|
+
"details": [],
|
|
240
|
+
"description": ""
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"operationCode": "GetMasterGameSettings",
|
|
244
|
+
"details": [],
|
|
245
|
+
"description": ""
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"operationCode": "GetSecretInfoInformation",
|
|
249
|
+
"details": [
|
|
250
|
+
{
|
|
251
|
+
"role": "Client",
|
|
252
|
+
"requestData": [
|
|
253
|
+
{
|
|
254
|
+
"code": "SecretKey",
|
|
255
|
+
"description": "",
|
|
256
|
+
"type": "string"
|
|
257
|
+
}
|
|
258
|
+
]
|
|
259
|
+
}
|
|
260
|
+
],
|
|
261
|
+
"description": ""
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"operationCode": "GetSecretInfoList",
|
|
265
|
+
"details": [],
|
|
266
|
+
"description": ""
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"operationCode": "GetServerGameData",
|
|
270
|
+
"details": [
|
|
271
|
+
{
|
|
272
|
+
"role": "Client",
|
|
273
|
+
"requestData": [
|
|
274
|
+
{
|
|
275
|
+
"code": "GameId",
|
|
276
|
+
"description": "",
|
|
277
|
+
"type": "string"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"code": "MasterPlayerCount",
|
|
281
|
+
"description": "",
|
|
282
|
+
"type": "boolean"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"code": "GamePlayerCount",
|
|
286
|
+
"description": "",
|
|
287
|
+
"type": "boolean"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"code": "CharacterPlayerCount",
|
|
291
|
+
"description": "",
|
|
292
|
+
"type": "boolean"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"code": "InventoryCount",
|
|
296
|
+
"description": "",
|
|
297
|
+
"type": "boolean"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"code": "StoreInventoryCount",
|
|
301
|
+
"description": "",
|
|
302
|
+
"type": "boolean"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"code": "GroupCount",
|
|
306
|
+
"description": "",
|
|
307
|
+
"type": "boolean"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"code": "Country",
|
|
311
|
+
"description": "",
|
|
312
|
+
"type": "boolean"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"code": "Version",
|
|
316
|
+
"description": "",
|
|
317
|
+
"type": "boolean"
|
|
318
|
+
}
|
|
319
|
+
]
|
|
320
|
+
}
|
|
321
|
+
],
|
|
322
|
+
"description": ""
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"operationCode": "GetServerLog",
|
|
326
|
+
"details": [
|
|
327
|
+
{
|
|
328
|
+
"role": "Client",
|
|
329
|
+
"requestData": [
|
|
330
|
+
{
|
|
331
|
+
"code": "Skip",
|
|
332
|
+
"description": "",
|
|
333
|
+
"type": "number",
|
|
334
|
+
"defaultValue": "0"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"code": "Limit",
|
|
338
|
+
"description": "",
|
|
339
|
+
"type": "number",
|
|
340
|
+
"defaultValue": "50"
|
|
341
|
+
}
|
|
342
|
+
]
|
|
343
|
+
}
|
|
344
|
+
],
|
|
345
|
+
"description": ""
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"operationCode": "GetUsernameAdminAccount",
|
|
349
|
+
"details": [
|
|
350
|
+
{
|
|
351
|
+
"role": "Client",
|
|
352
|
+
"requestData": [
|
|
353
|
+
{
|
|
354
|
+
"code": "UserId",
|
|
355
|
+
"description": "",
|
|
356
|
+
"type": "string"
|
|
357
|
+
}
|
|
358
|
+
]
|
|
359
|
+
}
|
|
360
|
+
],
|
|
361
|
+
"description": ""
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"operationCode": "LoginByAdminAccount",
|
|
365
|
+
"details": [
|
|
366
|
+
{
|
|
367
|
+
"role": "Client",
|
|
368
|
+
"requestData": [
|
|
369
|
+
{
|
|
370
|
+
"code": "Username",
|
|
371
|
+
"description": "",
|
|
372
|
+
"type": "string"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"code": "Password",
|
|
376
|
+
"description": "",
|
|
377
|
+
"type": "string"
|
|
378
|
+
}
|
|
379
|
+
]
|
|
380
|
+
}
|
|
381
|
+
],
|
|
382
|
+
"description": ""
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"operationCode": "RemoveAdminAccount",
|
|
386
|
+
"details": [
|
|
387
|
+
{
|
|
388
|
+
"role": "Client",
|
|
389
|
+
"requestData": [
|
|
390
|
+
{
|
|
391
|
+
"code": "UserId",
|
|
392
|
+
"description": "",
|
|
393
|
+
"type": "string"
|
|
394
|
+
}
|
|
395
|
+
]
|
|
396
|
+
}
|
|
397
|
+
],
|
|
398
|
+
"description": ""
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"operationCode": "ResetStatisticsLeaderboard",
|
|
402
|
+
"details": [
|
|
403
|
+
{
|
|
404
|
+
"role": "Client",
|
|
405
|
+
"requestData": [
|
|
406
|
+
{
|
|
407
|
+
"code": "Type",
|
|
408
|
+
"description": "",
|
|
409
|
+
"type": "number"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"code": "Key",
|
|
413
|
+
"description": "",
|
|
414
|
+
"type": "string"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"code": "Version",
|
|
418
|
+
"description": "",
|
|
419
|
+
"type": "string"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"code": "GameId",
|
|
423
|
+
"description": "",
|
|
424
|
+
"type": "string"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"code": "Log",
|
|
428
|
+
"description": "",
|
|
429
|
+
"type": "string"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"code": "CatalogId",
|
|
433
|
+
"description": "",
|
|
434
|
+
"type": "string"
|
|
435
|
+
}
|
|
436
|
+
]
|
|
437
|
+
}
|
|
438
|
+
],
|
|
439
|
+
"description": ""
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"operationCode": "SetEventCallbackCloudScript",
|
|
443
|
+
"details": [
|
|
444
|
+
{
|
|
445
|
+
"role": "Client",
|
|
446
|
+
"requestData": [
|
|
447
|
+
{
|
|
448
|
+
"code": "EventName",
|
|
449
|
+
"description": "",
|
|
450
|
+
"type": "string"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"code": "Script",
|
|
454
|
+
"description": "",
|
|
455
|
+
"type": "string"
|
|
456
|
+
}
|
|
457
|
+
]
|
|
458
|
+
}
|
|
459
|
+
],
|
|
460
|
+
"description": ""
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"operationCode": "SetGameInformation",
|
|
464
|
+
"details": [
|
|
465
|
+
{
|
|
466
|
+
"role": "Client",
|
|
467
|
+
"requestData": [
|
|
468
|
+
{
|
|
469
|
+
"code": "GameId",
|
|
470
|
+
"description": "",
|
|
471
|
+
"type": "string"
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"code": "GameName",
|
|
475
|
+
"description": "",
|
|
476
|
+
"type": "string"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"code": "GameDescription",
|
|
480
|
+
"description": "",
|
|
481
|
+
"type": "string"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"code": "GameIconUrl",
|
|
485
|
+
"description": "",
|
|
486
|
+
"type": "string"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"code": "GameSettings",
|
|
490
|
+
"description": "",
|
|
491
|
+
"type": "GameSettingsParam"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"code": "MatchmakingQueueSettings",
|
|
495
|
+
"description": "",
|
|
496
|
+
"type": "Array<MatchmakingQueueSettingsParam>"
|
|
497
|
+
}
|
|
498
|
+
]
|
|
499
|
+
}
|
|
500
|
+
],
|
|
501
|
+
"description": ""
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"operationCode": "SetMasterGameSettings",
|
|
505
|
+
"details": [
|
|
506
|
+
{
|
|
507
|
+
"role": "Client",
|
|
508
|
+
"requestData": [
|
|
509
|
+
{
|
|
510
|
+
"code": "ThirtPartySettings",
|
|
511
|
+
"description": "",
|
|
512
|
+
"type": "ThirtPartyParam"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"code": "MasterPlayerSettings",
|
|
516
|
+
"description": "",
|
|
517
|
+
"type": "MasterPlayerSettingsParam"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"code": "EmailSettings",
|
|
521
|
+
"description": "",
|
|
522
|
+
"type": "EmailSettingsParam"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"code": "PushNotificationSettings",
|
|
526
|
+
"description": "",
|
|
527
|
+
"type": "PushNotificationSettingsParam"
|
|
528
|
+
}
|
|
529
|
+
]
|
|
530
|
+
}
|
|
531
|
+
],
|
|
532
|
+
"description": ""
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"operationCode": "SetPasswordAdminAccount",
|
|
536
|
+
"details": [
|
|
537
|
+
{
|
|
538
|
+
"role": "Client",
|
|
539
|
+
"requestData": [
|
|
540
|
+
{
|
|
541
|
+
"code": "UserId",
|
|
542
|
+
"description": "",
|
|
543
|
+
"type": "string"
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"code": "Password",
|
|
547
|
+
"description": "",
|
|
548
|
+
"type": "string"
|
|
549
|
+
}
|
|
550
|
+
]
|
|
551
|
+
}
|
|
552
|
+
],
|
|
553
|
+
"description": ""
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"operationCode": "SetSecretInfoInformation",
|
|
557
|
+
"details": [
|
|
558
|
+
{
|
|
559
|
+
"role": "Client",
|
|
560
|
+
"requestData": [
|
|
561
|
+
{
|
|
562
|
+
"code": "SecretKey",
|
|
563
|
+
"description": "",
|
|
564
|
+
"type": "string"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"code": "Remove",
|
|
568
|
+
"description": "",
|
|
569
|
+
"type": "boolean"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"code": "TsExpire",
|
|
573
|
+
"description": "",
|
|
574
|
+
"type": "number"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"code": "PermissionParam",
|
|
578
|
+
"description": "",
|
|
579
|
+
"type": "PermissionParam"
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"code": "Description",
|
|
583
|
+
"description": "",
|
|
584
|
+
"type": "string"
|
|
585
|
+
}
|
|
586
|
+
]
|
|
587
|
+
}
|
|
588
|
+
],
|
|
589
|
+
"description": ""
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"operationCode": "SetSecretKeyAdminAccount",
|
|
593
|
+
"details": [
|
|
594
|
+
{
|
|
595
|
+
"role": "Client",
|
|
596
|
+
"requestData": [
|
|
597
|
+
{
|
|
598
|
+
"code": "UserId",
|
|
599
|
+
"description": "",
|
|
600
|
+
"type": "string"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"code": "SecretKey",
|
|
604
|
+
"description": "",
|
|
605
|
+
"type": "string"
|
|
606
|
+
}
|
|
607
|
+
]
|
|
608
|
+
}
|
|
609
|
+
],
|
|
610
|
+
"description": ""
|
|
611
|
+
}
|
|
612
|
+
],
|
|
613
|
+
"models": [
|
|
614
|
+
{
|
|
615
|
+
"name": "AuthenticatePermissionRulesParam",
|
|
616
|
+
"details": [
|
|
617
|
+
{
|
|
618
|
+
"code": "LoginByAccount",
|
|
619
|
+
"description": "",
|
|
620
|
+
"type": "PermissionRulesParam"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"code": "LoginByAndroidDeviceId",
|
|
624
|
+
"description": "",
|
|
625
|
+
"type": "PermissionRulesParam"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"code": "LoginByApple",
|
|
629
|
+
"description": "",
|
|
630
|
+
"type": "PermissionRulesParam"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"code": "LoginByCustomDeviceId",
|
|
634
|
+
"description": "",
|
|
635
|
+
"type": "PermissionRulesParam"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"code": "LoginByCustomId",
|
|
639
|
+
"description": "",
|
|
640
|
+
"type": "PermissionRulesParam"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"code": "LoginByFacebook",
|
|
644
|
+
"description": "",
|
|
645
|
+
"type": "PermissionRulesParam"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"code": "LoginByGenericService",
|
|
649
|
+
"description": "",
|
|
650
|
+
"type": "PermissionRulesParam"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"code": "LoginByGoogle",
|
|
654
|
+
"description": "",
|
|
655
|
+
"type": "PermissionRulesParam"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"code": "LoginByGooglePlayGameService",
|
|
659
|
+
"description": "",
|
|
660
|
+
"type": "PermissionRulesParam"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"code": "LoginByGameCenter",
|
|
664
|
+
"description": "",
|
|
665
|
+
"type": "PermissionRulesParam"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"code": "LoginByiOSDeviceId",
|
|
669
|
+
"description": "",
|
|
670
|
+
"type": "PermissionRulesParam"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"code": "LoginByWindowsPhoneDeviceId",
|
|
674
|
+
"description": "",
|
|
675
|
+
"type": "PermissionRulesParam"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"code": "RegisterAccount",
|
|
679
|
+
"description": "",
|
|
680
|
+
"type": "PermissionRulesParam"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"code": "LoginByEditorDeviceId",
|
|
684
|
+
"description": "",
|
|
685
|
+
"type": "PermissionRulesParam"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"code": "LoginByLinuxDeviceId",
|
|
689
|
+
"description": "",
|
|
690
|
+
"type": "PermissionRulesParam"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"code": "LoginByMacOSDeviceId",
|
|
694
|
+
"description": "",
|
|
695
|
+
"type": "PermissionRulesParam"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"code": "LoginByWindowsDeviceId",
|
|
699
|
+
"description": "",
|
|
700
|
+
"type": "PermissionRulesParam"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"code": "RefreshAuthToken",
|
|
704
|
+
"description": "",
|
|
705
|
+
"type": "PermissionRulesParam"
|
|
706
|
+
}
|
|
707
|
+
],
|
|
708
|
+
"description": ""
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"name": "CharacterCatalogSettingsParam",
|
|
712
|
+
"details": [
|
|
713
|
+
{
|
|
714
|
+
"code": "CatalogId",
|
|
715
|
+
"description": "",
|
|
716
|
+
"type": "string"
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"code": "Description",
|
|
720
|
+
"description": "",
|
|
721
|
+
"type": "string"
|
|
722
|
+
}
|
|
723
|
+
],
|
|
724
|
+
"description": ""
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"name": "CharacterPlayerPermissionRulesParam",
|
|
728
|
+
"details": [
|
|
729
|
+
{
|
|
730
|
+
"code": "AddSegment",
|
|
731
|
+
"description": "",
|
|
732
|
+
"type": "PermissionRulesParam"
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"code": "RemoveSegment",
|
|
736
|
+
"description": "",
|
|
737
|
+
"type": "PermissionRulesParam"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"code": "GetSegment",
|
|
741
|
+
"description": "",
|
|
742
|
+
"type": "PermissionRulesParam"
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"code": "SetTag",
|
|
746
|
+
"description": "",
|
|
747
|
+
"type": "PermissionRulesParam"
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"code": "RemoveTag",
|
|
751
|
+
"description": "",
|
|
752
|
+
"type": "PermissionRulesParam"
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"code": "GetTag",
|
|
756
|
+
"description": "",
|
|
757
|
+
"type": "PermissionRulesParam"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"code": "GetDisplayName",
|
|
761
|
+
"description": "",
|
|
762
|
+
"type": "PermissionRulesParam"
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"code": "SetDisplayName",
|
|
766
|
+
"description": "",
|
|
767
|
+
"type": "PermissionRulesParam"
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"code": "GetTsCreate",
|
|
771
|
+
"description": "",
|
|
772
|
+
"type": "PermissionRulesParam"
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
"code": "GetIpAddressCreate",
|
|
776
|
+
"description": "",
|
|
777
|
+
"type": "PermissionRulesParam"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"code": "GetTsLastLogin",
|
|
781
|
+
"description": "",
|
|
782
|
+
"type": "PermissionRulesParam"
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"code": "SetPlayerBan",
|
|
786
|
+
"description": "",
|
|
787
|
+
"type": "PermissionRulesParam"
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"code": "GetPlayerBan",
|
|
791
|
+
"description": "",
|
|
792
|
+
"type": "PermissionRulesParam"
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"code": "SetCountryCode",
|
|
796
|
+
"description": "",
|
|
797
|
+
"type": "PermissionRulesParam"
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"code": "GetCountryCode",
|
|
801
|
+
"description": "",
|
|
802
|
+
"type": "PermissionRulesParam"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"code": "SetAvatar",
|
|
806
|
+
"description": "",
|
|
807
|
+
"type": "PermissionRulesParam"
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"code": "GetAvatar",
|
|
811
|
+
"description": "",
|
|
812
|
+
"type": "PermissionRulesParam"
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"code": "ChangePlayerCurrency",
|
|
816
|
+
"description": "",
|
|
817
|
+
"type": "PermissionRulesParam"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"code": "GetPlayerCurrency",
|
|
821
|
+
"description": "",
|
|
822
|
+
"type": "PermissionRulesParam"
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"code": "ChangePlayerStatistics",
|
|
826
|
+
"description": "",
|
|
827
|
+
"type": "PermissionRulesParam"
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
"code": "GetPlayerStatistics",
|
|
831
|
+
"description": "",
|
|
832
|
+
"type": "PermissionRulesParam"
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"code": "GetStatisticsLeaderboard",
|
|
836
|
+
"description": "",
|
|
837
|
+
"type": "PermissionRulesParam"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"code": "GetStatisticsLeaderboardAroundPlayer",
|
|
841
|
+
"description": "",
|
|
842
|
+
"type": "PermissionRulesParam"
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"code": "GetCustomData",
|
|
846
|
+
"description": "",
|
|
847
|
+
"type": "PermissionRulesParam"
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"code": "SetCustomData",
|
|
851
|
+
"description": "",
|
|
852
|
+
"type": "PermissionRulesParam"
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"code": "SetPlayerData",
|
|
856
|
+
"description": "",
|
|
857
|
+
"type": "PermissionRulesParam"
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"code": "GetPlayerData",
|
|
861
|
+
"description": "",
|
|
862
|
+
"type": "PermissionRulesParam"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"code": "GetPlayerInformation",
|
|
866
|
+
"description": "",
|
|
867
|
+
"type": "PermissionRulesParam"
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"code": "GetPlayersWithSegment",
|
|
871
|
+
"description": "",
|
|
872
|
+
"type": "PermissionRulesParam"
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"code": "GetPlayersWithTag",
|
|
876
|
+
"description": "",
|
|
877
|
+
"type": "PermissionRulesParam"
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"code": "GetCatalogId",
|
|
881
|
+
"description": "",
|
|
882
|
+
"type": "PermissionRulesParam"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"code": "GetOwner",
|
|
886
|
+
"description": "",
|
|
887
|
+
"type": "PermissionRulesParam"
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
"code": "GetRemoveStatus",
|
|
891
|
+
"description": "",
|
|
892
|
+
"type": "PermissionRulesParam"
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
"code": "GetPlayerFriend",
|
|
896
|
+
"description": "",
|
|
897
|
+
"type": "PermissionRulesParam"
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"code": "GetPlayerGroup",
|
|
901
|
+
"description": "",
|
|
902
|
+
"type": "PermissionRulesParam"
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"code": "GetPlayerInventory",
|
|
906
|
+
"description": "",
|
|
907
|
+
"type": "PermissionRulesParam"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"code": "RemovePlayerItem",
|
|
911
|
+
"description": "",
|
|
912
|
+
"type": "PermissionRulesParam"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"code": "CreatePlayerItem",
|
|
916
|
+
"description": "",
|
|
917
|
+
"type": "PermissionRulesParam"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"code": "CreateGroup",
|
|
921
|
+
"description": "",
|
|
922
|
+
"type": "PermissionRulesParam"
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"code": "JoinGroup",
|
|
926
|
+
"description": "",
|
|
927
|
+
"type": "PermissionRulesParam"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"code": "LeaveGroup",
|
|
931
|
+
"description": "",
|
|
932
|
+
"type": "PermissionRulesParam"
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"code": "SetOwner",
|
|
936
|
+
"description": "",
|
|
937
|
+
"type": "PermissionRulesParam"
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"code": "AddPlayerFriend",
|
|
941
|
+
"description": "",
|
|
942
|
+
"type": "PermissionRulesParam"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"code": "RemovePlayerFriend",
|
|
946
|
+
"description": "",
|
|
947
|
+
"type": "PermissionRulesParam"
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"code": "GetPlayersWithDisplayName",
|
|
951
|
+
"description": "",
|
|
952
|
+
"type": "PermissionRulesParam"
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"code": "SetRemoveStatus",
|
|
956
|
+
"description": "",
|
|
957
|
+
"type": "PermissionRulesParam"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"code": "GetFriendStatisticsLeaderboardAroundPlayer",
|
|
961
|
+
"description": "",
|
|
962
|
+
"type": "PermissionRulesParam"
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"code": "GetFriendStatisticsLeaderboard",
|
|
966
|
+
"description": "",
|
|
967
|
+
"type": "PermissionRulesParam"
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"code": "GetCurrencyLeaderboard",
|
|
971
|
+
"description": "",
|
|
972
|
+
"type": "PermissionRulesParam"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"code": "GetCreateLeaderboard",
|
|
976
|
+
"description": "",
|
|
977
|
+
"type": "PermissionRulesParam"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"code": "GetLastLoginLeaderboard",
|
|
981
|
+
"description": "",
|
|
982
|
+
"type": "PermissionRulesParam"
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"code": "GetStatisticsLog",
|
|
986
|
+
"description": "",
|
|
987
|
+
"type": "PermissionRulesParam"
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
"code": "GetCurrencyLog",
|
|
991
|
+
"description": "",
|
|
992
|
+
"type": "PermissionRulesParam"
|
|
993
|
+
}
|
|
994
|
+
],
|
|
995
|
+
"description": ""
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"name": "CharacterPlayerSettingsParam",
|
|
999
|
+
"details": [
|
|
1000
|
+
{
|
|
1001
|
+
"code": "PlayerCurrenciesSettings",
|
|
1002
|
+
"description": "",
|
|
1003
|
+
"type": "Array<CurrencySettingsParam>"
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"code": "PlayerStatisticsSettings",
|
|
1007
|
+
"description": "",
|
|
1008
|
+
"type": "Array<StatisticsSettingsParam>"
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"code": "PlayerDatasSettings",
|
|
1012
|
+
"description": "",
|
|
1013
|
+
"type": "Array<DataSettingsParam>"
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"code": "CustomDatasSettings",
|
|
1017
|
+
"description": "",
|
|
1018
|
+
"type": "Array<DataSettingsParam>"
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"code": "TagsSettings",
|
|
1022
|
+
"description": "",
|
|
1023
|
+
"type": "Array<TagSettingsParam>"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"code": "PlayerGroupCatalogSettings",
|
|
1027
|
+
"description": "",
|
|
1028
|
+
"type": "Array<GroupCatalogSettingsParam>"
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"code": "PlayerItemCatalogSettings",
|
|
1032
|
+
"description": "",
|
|
1033
|
+
"type": "Array<ItemCatalogSettingsParam>"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"code": "PlayerFriendCatalogSettings",
|
|
1037
|
+
"description": "",
|
|
1038
|
+
"type": "Array<FriendCatalogSettingsParam>"
|
|
1039
|
+
}
|
|
1040
|
+
],
|
|
1041
|
+
"description": ""
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"name": "CloudScriptPermissionRulesParam",
|
|
1045
|
+
"details": [
|
|
1046
|
+
{
|
|
1047
|
+
"code": "AddFunction",
|
|
1048
|
+
"description": "",
|
|
1049
|
+
"type": "PermissionRulesParam"
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"code": "GetFunctions",
|
|
1053
|
+
"description": "",
|
|
1054
|
+
"type": "PermissionRulesParam"
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"code": "EditFunction",
|
|
1058
|
+
"description": "",
|
|
1059
|
+
"type": "PermissionRulesParam"
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"code": "ExecuteFunction",
|
|
1063
|
+
"description": "",
|
|
1064
|
+
"type": "PermissionRulesParam"
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"code": "GetFunction",
|
|
1068
|
+
"description": "",
|
|
1069
|
+
"type": "PermissionRulesParam"
|
|
1070
|
+
}
|
|
1071
|
+
],
|
|
1072
|
+
"description": ""
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
"name": "ContentPermissionRulesParam",
|
|
1076
|
+
"details": [
|
|
1077
|
+
{
|
|
1078
|
+
"code": "GetContentData",
|
|
1079
|
+
"description": "",
|
|
1080
|
+
"type": "PermissionRulesParam"
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
"code": "SetContentData",
|
|
1084
|
+
"description": "",
|
|
1085
|
+
"type": "PermissionRulesParam"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"code": "CreateNewFileUploadInfo",
|
|
1089
|
+
"description": "",
|
|
1090
|
+
"type": "PermissionRulesParam"
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
"code": "GetFileUploadInfoList",
|
|
1094
|
+
"description": "",
|
|
1095
|
+
"type": "PermissionRulesParam"
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"code": "GetFileUploadInfo",
|
|
1099
|
+
"description": "",
|
|
1100
|
+
"type": "PermissionRulesParam"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"code": "RemoveFileUploadInfo",
|
|
1104
|
+
"description": "",
|
|
1105
|
+
"type": "PermissionRulesParam"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"code": "RequestDownloadFileUploadInfo",
|
|
1109
|
+
"description": "",
|
|
1110
|
+
"type": "PermissionRulesParam"
|
|
1111
|
+
}
|
|
1112
|
+
],
|
|
1113
|
+
"description": ""
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"name": "CurrencySettingsParam",
|
|
1117
|
+
"details": [
|
|
1118
|
+
{
|
|
1119
|
+
"code": "Key",
|
|
1120
|
+
"description": "",
|
|
1121
|
+
"type": "string"
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"code": "InitialValue",
|
|
1125
|
+
"description": "",
|
|
1126
|
+
"type": "number"
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"code": "Description",
|
|
1130
|
+
"description": "",
|
|
1131
|
+
"type": "string"
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"code": "Index",
|
|
1135
|
+
"description": "",
|
|
1136
|
+
"type": "boolean"
|
|
1137
|
+
}
|
|
1138
|
+
],
|
|
1139
|
+
"description": ""
|
|
1140
|
+
},
|
|
1141
|
+
{
|
|
1142
|
+
"name": "DataSettingsParam",
|
|
1143
|
+
"details": [
|
|
1144
|
+
{
|
|
1145
|
+
"code": "Key",
|
|
1146
|
+
"description": "",
|
|
1147
|
+
"type": "string"
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"code": "Description",
|
|
1151
|
+
"description": "",
|
|
1152
|
+
"type": "string"
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
"code": "Permission",
|
|
1156
|
+
"description": "",
|
|
1157
|
+
"type": "number"
|
|
1158
|
+
}
|
|
1159
|
+
],
|
|
1160
|
+
"description": ""
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"name": "EmailSettingsParam",
|
|
1164
|
+
"details": [
|
|
1165
|
+
{
|
|
1166
|
+
"code": "SendFrom",
|
|
1167
|
+
"description": "",
|
|
1168
|
+
"type": "string"
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"code": "Secure",
|
|
1172
|
+
"description": "",
|
|
1173
|
+
"type": "boolean"
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"code": "Host",
|
|
1177
|
+
"description": "",
|
|
1178
|
+
"type": "string"
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
"code": "Port",
|
|
1182
|
+
"description": "",
|
|
1183
|
+
"type": "number"
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"code": "Username",
|
|
1187
|
+
"description": "",
|
|
1188
|
+
"type": "string"
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"code": "Password",
|
|
1192
|
+
"description": "",
|
|
1193
|
+
"type": "string"
|
|
1194
|
+
}
|
|
1195
|
+
],
|
|
1196
|
+
"description": ""
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
"name": "FriendCatalogSettingsParam",
|
|
1200
|
+
"details": [
|
|
1201
|
+
{
|
|
1202
|
+
"code": "CatalogId",
|
|
1203
|
+
"description": "",
|
|
1204
|
+
"type": "string"
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"code": "Description",
|
|
1208
|
+
"description": "",
|
|
1209
|
+
"type": "string"
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
"code": "ForceAcceptFriend",
|
|
1213
|
+
"description": "",
|
|
1214
|
+
"type": "boolean"
|
|
1215
|
+
}
|
|
1216
|
+
],
|
|
1217
|
+
"description": ""
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"name": "GamePlayerPermissionRulesParam",
|
|
1221
|
+
"details": [
|
|
1222
|
+
{
|
|
1223
|
+
"code": "AddSegment",
|
|
1224
|
+
"description": "",
|
|
1225
|
+
"type": "PermissionRulesParam"
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"code": "RemoveSegment",
|
|
1229
|
+
"description": "",
|
|
1230
|
+
"type": "PermissionRulesParam"
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"code": "GetSegment",
|
|
1234
|
+
"description": "",
|
|
1235
|
+
"type": "PermissionRulesParam"
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"code": "SetTag",
|
|
1239
|
+
"description": "",
|
|
1240
|
+
"type": "PermissionRulesParam"
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"code": "RemoveTag",
|
|
1244
|
+
"description": "",
|
|
1245
|
+
"type": "PermissionRulesParam"
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"code": "GetTag",
|
|
1249
|
+
"description": "",
|
|
1250
|
+
"type": "PermissionRulesParam"
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"code": "GetDisplayName",
|
|
1254
|
+
"description": "",
|
|
1255
|
+
"type": "PermissionRulesParam"
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
"code": "SetDisplayName",
|
|
1259
|
+
"description": "",
|
|
1260
|
+
"type": "PermissionRulesParam"
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"code": "GetTsCreate",
|
|
1264
|
+
"description": "",
|
|
1265
|
+
"type": "PermissionRulesParam"
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"code": "GetIpAddressCreate",
|
|
1269
|
+
"description": "",
|
|
1270
|
+
"type": "PermissionRulesParam"
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
"code": "GetTsLastLogin",
|
|
1274
|
+
"description": "",
|
|
1275
|
+
"type": "PermissionRulesParam"
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"code": "SetPlayerBan",
|
|
1279
|
+
"description": "",
|
|
1280
|
+
"type": "PermissionRulesParam"
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"code": "GetPlayerBan",
|
|
1284
|
+
"description": "",
|
|
1285
|
+
"type": "PermissionRulesParam"
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"code": "SetCountryCode",
|
|
1289
|
+
"description": "",
|
|
1290
|
+
"type": "PermissionRulesParam"
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
"code": "GetCountryCode",
|
|
1294
|
+
"description": "",
|
|
1295
|
+
"type": "PermissionRulesParam"
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"code": "SetAvatar",
|
|
1299
|
+
"description": "",
|
|
1300
|
+
"type": "PermissionRulesParam"
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
"code": "GetAvatar",
|
|
1304
|
+
"description": "",
|
|
1305
|
+
"type": "PermissionRulesParam"
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"code": "ChangePlayerCurrency",
|
|
1309
|
+
"description": "",
|
|
1310
|
+
"type": "PermissionRulesParam"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"code": "GetPlayerCurrency",
|
|
1314
|
+
"description": "",
|
|
1315
|
+
"type": "PermissionRulesParam"
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
"code": "ChangePlayerStatistics",
|
|
1319
|
+
"description": "",
|
|
1320
|
+
"type": "PermissionRulesParam"
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
"code": "GetPlayerStatistics",
|
|
1324
|
+
"description": "",
|
|
1325
|
+
"type": "PermissionRulesParam"
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
"code": "GetStatisticsLeaderboard",
|
|
1329
|
+
"description": "",
|
|
1330
|
+
"type": "PermissionRulesParam"
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"code": "GetStatisticsLeaderboardAroundPlayer",
|
|
1334
|
+
"description": "",
|
|
1335
|
+
"type": "PermissionRulesParam"
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
"code": "GetCustomData",
|
|
1339
|
+
"description": "",
|
|
1340
|
+
"type": "PermissionRulesParam"
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"code": "SetCustomData",
|
|
1344
|
+
"description": "",
|
|
1345
|
+
"type": "PermissionRulesParam"
|
|
1346
|
+
},
|
|
1347
|
+
{
|
|
1348
|
+
"code": "SetPlayerData",
|
|
1349
|
+
"description": "",
|
|
1350
|
+
"type": "PermissionRulesParam"
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
"code": "GetPlayerData",
|
|
1354
|
+
"description": "",
|
|
1355
|
+
"type": "PermissionRulesParam"
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"code": "GetPlayerInformation",
|
|
1359
|
+
"description": "",
|
|
1360
|
+
"type": "PermissionRulesParam"
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
"code": "GetPlayersWithSegment",
|
|
1364
|
+
"description": "",
|
|
1365
|
+
"type": "PermissionRulesParam"
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
"code": "GetPlayersWithTag",
|
|
1369
|
+
"description": "",
|
|
1370
|
+
"type": "PermissionRulesParam"
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"code": "GetPlayerCharacter",
|
|
1374
|
+
"description": "",
|
|
1375
|
+
"type": "PermissionRulesParam"
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"code": "GetPlayerInventory",
|
|
1379
|
+
"description": "",
|
|
1380
|
+
"type": "PermissionRulesParam"
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
"code": "GetPlayerGroup",
|
|
1384
|
+
"description": "",
|
|
1385
|
+
"type": "PermissionRulesParam"
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
"code": "GetPlayerFriend",
|
|
1389
|
+
"description": "",
|
|
1390
|
+
"type": "PermissionRulesParam"
|
|
1391
|
+
},
|
|
1392
|
+
{
|
|
1393
|
+
"code": "RemovePlayerItem",
|
|
1394
|
+
"description": "",
|
|
1395
|
+
"type": "PermissionRulesParam"
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"code": "GetOnlineStatus",
|
|
1399
|
+
"description": "",
|
|
1400
|
+
"type": "PermissionRulesParam"
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"code": "CreateGroup",
|
|
1404
|
+
"description": "",
|
|
1405
|
+
"type": "PermissionRulesParam"
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
"code": "CreatePlayerItem",
|
|
1409
|
+
"description": "",
|
|
1410
|
+
"type": "PermissionRulesParam"
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
"code": "CreatePlayerCharacter",
|
|
1414
|
+
"description": "",
|
|
1415
|
+
"type": "PermissionRulesParam"
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
"code": "AddPlayerFriend",
|
|
1419
|
+
"description": "",
|
|
1420
|
+
"type": "PermissionRulesParam"
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"code": "RemovePlayerFriend",
|
|
1424
|
+
"description": "",
|
|
1425
|
+
"type": "PermissionRulesParam"
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
"code": "RemovePlayerCharacter",
|
|
1429
|
+
"description": "",
|
|
1430
|
+
"type": "PermissionRulesParam"
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"code": "JoinGroup",
|
|
1434
|
+
"description": "",
|
|
1435
|
+
"type": "PermissionRulesParam"
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"code": "LeaveGroup",
|
|
1439
|
+
"description": "",
|
|
1440
|
+
"type": "PermissionRulesParam"
|
|
1441
|
+
},
|
|
1442
|
+
{
|
|
1443
|
+
"code": "GetPlayersWithDisplayName",
|
|
1444
|
+
"description": "",
|
|
1445
|
+
"type": "PermissionRulesParam"
|
|
1446
|
+
},
|
|
1447
|
+
{
|
|
1448
|
+
"code": "GetFriendStatisticsLeaderboardAroundPlayer",
|
|
1449
|
+
"description": "",
|
|
1450
|
+
"type": "PermissionRulesParam"
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
"code": "GetFriendStatisticsLeaderboard",
|
|
1454
|
+
"description": "",
|
|
1455
|
+
"type": "PermissionRulesParam"
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
"code": "GetCurrencyLeaderboard",
|
|
1459
|
+
"description": "",
|
|
1460
|
+
"type": "PermissionRulesParam"
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
"code": "GetCreateLeaderboard",
|
|
1464
|
+
"description": "",
|
|
1465
|
+
"type": "PermissionRulesParam"
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"code": "GetLastLoginLeaderboard",
|
|
1469
|
+
"description": "",
|
|
1470
|
+
"type": "PermissionRulesParam"
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
"code": "GetStatisticsLog",
|
|
1474
|
+
"description": "",
|
|
1475
|
+
"type": "PermissionRulesParam"
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
"code": "GetCurrencyLog",
|
|
1479
|
+
"description": "",
|
|
1480
|
+
"type": "PermissionRulesParam"
|
|
1481
|
+
}
|
|
1482
|
+
],
|
|
1483
|
+
"description": ""
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"name": "GamePlayerSettingsParam",
|
|
1487
|
+
"details": [
|
|
1488
|
+
{
|
|
1489
|
+
"code": "PlayerCurrenciesSettings",
|
|
1490
|
+
"description": "",
|
|
1491
|
+
"type": "Array<CurrencySettingsParam>"
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
"code": "PlayerStatisticsSettings",
|
|
1495
|
+
"description": "",
|
|
1496
|
+
"type": "Array<StatisticsSettingsParam>"
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"code": "PlayerDatasSettings",
|
|
1500
|
+
"description": "",
|
|
1501
|
+
"type": "Array<DataSettingsParam>"
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
"code": "CustomDatasSettings",
|
|
1505
|
+
"description": "",
|
|
1506
|
+
"type": "Array<DataSettingsParam>"
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
"code": "TagsSettings",
|
|
1510
|
+
"description": "",
|
|
1511
|
+
"type": "Array<TagSettingsParam>"
|
|
1512
|
+
},
|
|
1513
|
+
{
|
|
1514
|
+
"code": "PlayerCharacterCatalogSettings",
|
|
1515
|
+
"description": "",
|
|
1516
|
+
"type": "Array<CharacterCatalogSettingsParam>"
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
"code": "PlayerGroupCatalogSettings",
|
|
1520
|
+
"description": "",
|
|
1521
|
+
"type": "Array<GroupCatalogSettingsParam>"
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
"code": "PlayerItemCatalogSettings",
|
|
1525
|
+
"description": "",
|
|
1526
|
+
"type": "Array<ItemCatalogSettingsParam>"
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
"code": "PlayerFriendCatalogSettings",
|
|
1530
|
+
"description": "",
|
|
1531
|
+
"type": "Array<FriendCatalogSettingsParam>"
|
|
1532
|
+
}
|
|
1533
|
+
],
|
|
1534
|
+
"description": ""
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
"name": "GameSettingsParam",
|
|
1538
|
+
"details": [
|
|
1539
|
+
{
|
|
1540
|
+
"code": "GamePlayerSettings",
|
|
1541
|
+
"description": "",
|
|
1542
|
+
"type": "GamePlayerSettingsParam"
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
"code": "CharacterPlayerSettings",
|
|
1546
|
+
"description": "",
|
|
1547
|
+
"type": "CharacterPlayerSettingsParam"
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"code": "GroupSettings",
|
|
1551
|
+
"description": "",
|
|
1552
|
+
"type": "GroupSettingsParam"
|
|
1553
|
+
},
|
|
1554
|
+
{
|
|
1555
|
+
"code": "InventorySettings",
|
|
1556
|
+
"description": "",
|
|
1557
|
+
"type": "InventorySettingsParam"
|
|
1558
|
+
}
|
|
1559
|
+
],
|
|
1560
|
+
"description": ""
|
|
1561
|
+
},
|
|
1562
|
+
{
|
|
1563
|
+
"name": "GenericServiceSettingsParam",
|
|
1564
|
+
"details": [
|
|
1565
|
+
{
|
|
1566
|
+
"code": "ServiceName",
|
|
1567
|
+
"description": "",
|
|
1568
|
+
"type": "string"
|
|
1569
|
+
}
|
|
1570
|
+
],
|
|
1571
|
+
"description": ""
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
"name": "GroupCatalogSettingsParam",
|
|
1575
|
+
"details": [
|
|
1576
|
+
{
|
|
1577
|
+
"code": "CatalogId",
|
|
1578
|
+
"description": "",
|
|
1579
|
+
"type": "string"
|
|
1580
|
+
},
|
|
1581
|
+
{
|
|
1582
|
+
"code": "Description",
|
|
1583
|
+
"description": "",
|
|
1584
|
+
"type": "string"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
"code": "ForceAcceptMember",
|
|
1588
|
+
"description": "",
|
|
1589
|
+
"type": "boolean"
|
|
1590
|
+
}
|
|
1591
|
+
],
|
|
1592
|
+
"description": ""
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"name": "GroupPermissionRulesParam",
|
|
1596
|
+
"details": [
|
|
1597
|
+
{
|
|
1598
|
+
"code": "AddSegment",
|
|
1599
|
+
"description": "",
|
|
1600
|
+
"type": "PermissionRulesParam"
|
|
1601
|
+
},
|
|
1602
|
+
{
|
|
1603
|
+
"code": "RemoveSegment",
|
|
1604
|
+
"description": "",
|
|
1605
|
+
"type": "PermissionRulesParam"
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
"code": "GetSegment",
|
|
1609
|
+
"description": "",
|
|
1610
|
+
"type": "PermissionRulesParam"
|
|
1611
|
+
},
|
|
1612
|
+
{
|
|
1613
|
+
"code": "SetTag",
|
|
1614
|
+
"description": "",
|
|
1615
|
+
"type": "PermissionRulesParam"
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"code": "RemoveTag",
|
|
1619
|
+
"description": "",
|
|
1620
|
+
"type": "PermissionRulesParam"
|
|
1621
|
+
},
|
|
1622
|
+
{
|
|
1623
|
+
"code": "GetTag",
|
|
1624
|
+
"description": "",
|
|
1625
|
+
"type": "PermissionRulesParam"
|
|
1626
|
+
},
|
|
1627
|
+
{
|
|
1628
|
+
"code": "GetDisplayName",
|
|
1629
|
+
"description": "",
|
|
1630
|
+
"type": "PermissionRulesParam"
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
"code": "SetDisplayName",
|
|
1634
|
+
"description": "",
|
|
1635
|
+
"type": "PermissionRulesParam"
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
"code": "GetTsCreate",
|
|
1639
|
+
"description": "",
|
|
1640
|
+
"type": "PermissionRulesParam"
|
|
1641
|
+
},
|
|
1642
|
+
{
|
|
1643
|
+
"code": "SetAvatar",
|
|
1644
|
+
"description": "",
|
|
1645
|
+
"type": "PermissionRulesParam"
|
|
1646
|
+
},
|
|
1647
|
+
{
|
|
1648
|
+
"code": "GetAvatar",
|
|
1649
|
+
"description": "",
|
|
1650
|
+
"type": "PermissionRulesParam"
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
"code": "ChangeGroupCurrency",
|
|
1654
|
+
"description": "",
|
|
1655
|
+
"type": "PermissionRulesParam"
|
|
1656
|
+
},
|
|
1657
|
+
{
|
|
1658
|
+
"code": "GetGroupCurrency",
|
|
1659
|
+
"description": "",
|
|
1660
|
+
"type": "PermissionRulesParam"
|
|
1661
|
+
},
|
|
1662
|
+
{
|
|
1663
|
+
"code": "ChangeGroupStatistics",
|
|
1664
|
+
"description": "",
|
|
1665
|
+
"type": "PermissionRulesParam"
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
"code": "GetGroupStatistics",
|
|
1669
|
+
"description": "",
|
|
1670
|
+
"type": "PermissionRulesParam"
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
"code": "GetStatisticsLeaderboard",
|
|
1674
|
+
"description": "",
|
|
1675
|
+
"type": "PermissionRulesParam"
|
|
1676
|
+
},
|
|
1677
|
+
{
|
|
1678
|
+
"code": "GetStatisticsLeaderboardAroundGroup",
|
|
1679
|
+
"description": "",
|
|
1680
|
+
"type": "PermissionRulesParam"
|
|
1681
|
+
},
|
|
1682
|
+
{
|
|
1683
|
+
"code": "GetCustomData",
|
|
1684
|
+
"description": "",
|
|
1685
|
+
"type": "PermissionRulesParam"
|
|
1686
|
+
},
|
|
1687
|
+
{
|
|
1688
|
+
"code": "SetCustomData",
|
|
1689
|
+
"description": "",
|
|
1690
|
+
"type": "PermissionRulesParam"
|
|
1691
|
+
},
|
|
1692
|
+
{
|
|
1693
|
+
"code": "SetGroupData",
|
|
1694
|
+
"description": "",
|
|
1695
|
+
"type": "PermissionRulesParam"
|
|
1696
|
+
},
|
|
1697
|
+
{
|
|
1698
|
+
"code": "GetGroupData",
|
|
1699
|
+
"description": "",
|
|
1700
|
+
"type": "PermissionRulesParam"
|
|
1701
|
+
},
|
|
1702
|
+
{
|
|
1703
|
+
"code": "GetGroupInformation",
|
|
1704
|
+
"description": "",
|
|
1705
|
+
"type": "PermissionRulesParam"
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"code": "GetGroupsWithSegment",
|
|
1709
|
+
"description": "",
|
|
1710
|
+
"type": "PermissionRulesParam"
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
"code": "GetGroupsWithTag",
|
|
1714
|
+
"description": "",
|
|
1715
|
+
"type": "PermissionRulesParam"
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"code": "GetCatalogId",
|
|
1719
|
+
"description": "",
|
|
1720
|
+
"type": "PermissionRulesParam"
|
|
1721
|
+
},
|
|
1722
|
+
{
|
|
1723
|
+
"code": "GetRemoveStatus",
|
|
1724
|
+
"description": "",
|
|
1725
|
+
"type": "PermissionRulesParam"
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
"code": "GetGroupInventory",
|
|
1729
|
+
"description": "",
|
|
1730
|
+
"type": "PermissionRulesParam"
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
"code": "RemoveGroupItem",
|
|
1734
|
+
"description": "",
|
|
1735
|
+
"type": "PermissionRulesParam"
|
|
1736
|
+
},
|
|
1737
|
+
{
|
|
1738
|
+
"code": "CreateGroupItem",
|
|
1739
|
+
"description": "",
|
|
1740
|
+
"type": "PermissionRulesParam"
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
"code": "GetMembers",
|
|
1744
|
+
"description": "",
|
|
1745
|
+
"type": "PermissionRulesParam"
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
"code": "AddMember",
|
|
1749
|
+
"description": "",
|
|
1750
|
+
"type": "PermissionRulesParam"
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
"code": "RemoveMember",
|
|
1754
|
+
"description": "",
|
|
1755
|
+
"type": "PermissionRulesParam"
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
"code": "SendGroupMessage",
|
|
1759
|
+
"description": "",
|
|
1760
|
+
"type": "PermissionRulesParam"
|
|
1761
|
+
},
|
|
1762
|
+
{
|
|
1763
|
+
"code": "GetGroupMessage",
|
|
1764
|
+
"description": "",
|
|
1765
|
+
"type": "PermissionRulesParam"
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"code": "SetRemoveStatus",
|
|
1769
|
+
"description": "",
|
|
1770
|
+
"type": "PermissionRulesParam"
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
"code": "GetGroupsWithDisplayName",
|
|
1774
|
+
"description": "",
|
|
1775
|
+
"type": "PermissionRulesParam"
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
"code": "GetCurrencyLeaderboard",
|
|
1779
|
+
"description": "",
|
|
1780
|
+
"type": "PermissionRulesParam"
|
|
1781
|
+
},
|
|
1782
|
+
{
|
|
1783
|
+
"code": "GetCreateLeaderboard",
|
|
1784
|
+
"description": "",
|
|
1785
|
+
"type": "PermissionRulesParam"
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"code": "GetStatisticsLog",
|
|
1789
|
+
"description": "",
|
|
1790
|
+
"type": "PermissionRulesParam"
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
"code": "GetCurrencyLog",
|
|
1794
|
+
"description": "",
|
|
1795
|
+
"type": "PermissionRulesParam"
|
|
1796
|
+
}
|
|
1797
|
+
],
|
|
1798
|
+
"description": ""
|
|
1799
|
+
},
|
|
1800
|
+
{
|
|
1801
|
+
"name": "GroupSettingsParam",
|
|
1802
|
+
"details": [
|
|
1803
|
+
{
|
|
1804
|
+
"code": "GroupCurrenciesSettings",
|
|
1805
|
+
"description": "",
|
|
1806
|
+
"type": "Array<CurrencySettingsParam>"
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
"code": "GroupStatisticsSettings",
|
|
1810
|
+
"description": "",
|
|
1811
|
+
"type": "Array<StatisticsSettingsParam>"
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
"code": "GroupDatasSettings",
|
|
1815
|
+
"description": "",
|
|
1816
|
+
"type": "Array<DataSettingsParam>"
|
|
1817
|
+
},
|
|
1818
|
+
{
|
|
1819
|
+
"code": "CustomDatasSettings",
|
|
1820
|
+
"description": "",
|
|
1821
|
+
"type": "Array<DataSettingsParam>"
|
|
1822
|
+
},
|
|
1823
|
+
{
|
|
1824
|
+
"code": "TagsSettings",
|
|
1825
|
+
"description": "",
|
|
1826
|
+
"type": "Array<TagSettingsParam>"
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"code": "GroupItemCatalogSettings",
|
|
1830
|
+
"description": "",
|
|
1831
|
+
"type": "Array<ItemCatalogSettingsParam>"
|
|
1832
|
+
}
|
|
1833
|
+
],
|
|
1834
|
+
"description": ""
|
|
1835
|
+
},
|
|
1836
|
+
{
|
|
1837
|
+
"name": "InventoryPermissionRulesParam",
|
|
1838
|
+
"details": [
|
|
1839
|
+
{
|
|
1840
|
+
"code": "AddSegment",
|
|
1841
|
+
"description": "",
|
|
1842
|
+
"type": "PermissionRulesParam"
|
|
1843
|
+
},
|
|
1844
|
+
{
|
|
1845
|
+
"code": "RemoveSegment",
|
|
1846
|
+
"description": "",
|
|
1847
|
+
"type": "PermissionRulesParam"
|
|
1848
|
+
},
|
|
1849
|
+
{
|
|
1850
|
+
"code": "GetSegment",
|
|
1851
|
+
"description": "",
|
|
1852
|
+
"type": "PermissionRulesParam"
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
"code": "SetTag",
|
|
1856
|
+
"description": "",
|
|
1857
|
+
"type": "PermissionRulesParam"
|
|
1858
|
+
},
|
|
1859
|
+
{
|
|
1860
|
+
"code": "RemoveTag",
|
|
1861
|
+
"description": "",
|
|
1862
|
+
"type": "PermissionRulesParam"
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"code": "GetTag",
|
|
1866
|
+
"description": "",
|
|
1867
|
+
"type": "PermissionRulesParam"
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"code": "GetDisplayName",
|
|
1871
|
+
"description": "",
|
|
1872
|
+
"type": "PermissionRulesParam"
|
|
1873
|
+
},
|
|
1874
|
+
{
|
|
1875
|
+
"code": "SetDisplayName",
|
|
1876
|
+
"description": "",
|
|
1877
|
+
"type": "PermissionRulesParam"
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
"code": "GetTsCreate",
|
|
1881
|
+
"description": "",
|
|
1882
|
+
"type": "PermissionRulesParam"
|
|
1883
|
+
},
|
|
1884
|
+
{
|
|
1885
|
+
"code": "SetAvatar",
|
|
1886
|
+
"description": "",
|
|
1887
|
+
"type": "PermissionRulesParam"
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
"code": "GetAvatar",
|
|
1891
|
+
"description": "",
|
|
1892
|
+
"type": "PermissionRulesParam"
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
"code": "ChangeItemStatistics",
|
|
1896
|
+
"description": "",
|
|
1897
|
+
"type": "PermissionRulesParam"
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
"code": "GetItemStatistics",
|
|
1901
|
+
"description": "",
|
|
1902
|
+
"type": "PermissionRulesParam"
|
|
1903
|
+
},
|
|
1904
|
+
{
|
|
1905
|
+
"code": "GetStatisticsLeaderboard",
|
|
1906
|
+
"description": "",
|
|
1907
|
+
"type": "PermissionRulesParam"
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
"code": "GetStatisticsLeaderboardAroundItem",
|
|
1911
|
+
"description": "",
|
|
1912
|
+
"type": "PermissionRulesParam"
|
|
1913
|
+
},
|
|
1914
|
+
{
|
|
1915
|
+
"code": "GetCustomData",
|
|
1916
|
+
"description": "",
|
|
1917
|
+
"type": "PermissionRulesParam"
|
|
1918
|
+
},
|
|
1919
|
+
{
|
|
1920
|
+
"code": "SetCustomData",
|
|
1921
|
+
"description": "",
|
|
1922
|
+
"type": "PermissionRulesParam"
|
|
1923
|
+
},
|
|
1924
|
+
{
|
|
1925
|
+
"code": "SetItemData",
|
|
1926
|
+
"description": "",
|
|
1927
|
+
"type": "PermissionRulesParam"
|
|
1928
|
+
},
|
|
1929
|
+
{
|
|
1930
|
+
"code": "GetItemData",
|
|
1931
|
+
"description": "",
|
|
1932
|
+
"type": "PermissionRulesParam"
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
"code": "GetItemInformation",
|
|
1936
|
+
"description": "",
|
|
1937
|
+
"type": "PermissionRulesParam"
|
|
1938
|
+
},
|
|
1939
|
+
{
|
|
1940
|
+
"code": "GetItemsWithSegment",
|
|
1941
|
+
"description": "",
|
|
1942
|
+
"type": "PermissionRulesParam"
|
|
1943
|
+
},
|
|
1944
|
+
{
|
|
1945
|
+
"code": "GetItemsWithTag",
|
|
1946
|
+
"description": "",
|
|
1947
|
+
"type": "PermissionRulesParam"
|
|
1948
|
+
},
|
|
1949
|
+
{
|
|
1950
|
+
"code": "GetCatalogId",
|
|
1951
|
+
"description": "",
|
|
1952
|
+
"type": "PermissionRulesParam"
|
|
1953
|
+
},
|
|
1954
|
+
{
|
|
1955
|
+
"code": "GetClassId",
|
|
1956
|
+
"description": "",
|
|
1957
|
+
"type": "PermissionRulesParam"
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
"code": "GetItemType",
|
|
1961
|
+
"description": "",
|
|
1962
|
+
"type": "PermissionRulesParam"
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
"code": "GetAmount",
|
|
1966
|
+
"description": "",
|
|
1967
|
+
"type": "PermissionRulesParam"
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
"code": "GetOwner",
|
|
1971
|
+
"description": "",
|
|
1972
|
+
"type": "PermissionRulesParam"
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"code": "GetRemoveStatus",
|
|
1976
|
+
"description": "",
|
|
1977
|
+
"type": "PermissionRulesParam"
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"code": "SetAmount",
|
|
1981
|
+
"description": "",
|
|
1982
|
+
"type": "PermissionRulesParam"
|
|
1983
|
+
},
|
|
1984
|
+
{
|
|
1985
|
+
"code": "SetOwner",
|
|
1986
|
+
"description": "",
|
|
1987
|
+
"type": "PermissionRulesParam"
|
|
1988
|
+
},
|
|
1989
|
+
{
|
|
1990
|
+
"code": "SetRemoveStatus",
|
|
1991
|
+
"description": "",
|
|
1992
|
+
"type": "PermissionRulesParam"
|
|
1993
|
+
},
|
|
1994
|
+
{
|
|
1995
|
+
"code": "GetItemsWithDisplayName",
|
|
1996
|
+
"description": "",
|
|
1997
|
+
"type": "PermissionRulesParam"
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
"code": "GetCreateLeaderboard",
|
|
2001
|
+
"description": "",
|
|
2002
|
+
"type": "PermissionRulesParam"
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"code": "GetStatisticsLog",
|
|
2006
|
+
"description": "",
|
|
2007
|
+
"type": "PermissionRulesParam"
|
|
2008
|
+
}
|
|
2009
|
+
],
|
|
2010
|
+
"description": ""
|
|
2011
|
+
},
|
|
2012
|
+
{
|
|
2013
|
+
"name": "InventorySettingsParam",
|
|
2014
|
+
"details": [
|
|
2015
|
+
{
|
|
2016
|
+
"code": "ItemStatisticsSettings",
|
|
2017
|
+
"description": "",
|
|
2018
|
+
"type": "Array<StatisticsSettingsParam>"
|
|
2019
|
+
},
|
|
2020
|
+
{
|
|
2021
|
+
"code": "ItemDatasSettings",
|
|
2022
|
+
"description": "",
|
|
2023
|
+
"type": "Array<DataSettingsParam>"
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
"code": "CustomDatasSettings",
|
|
2027
|
+
"description": "",
|
|
2028
|
+
"type": "Array<DataSettingsParam>"
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
"code": "TagsSettings",
|
|
2032
|
+
"description": "",
|
|
2033
|
+
"type": "Array<TagSettingsParam>"
|
|
2034
|
+
}
|
|
2035
|
+
],
|
|
2036
|
+
"description": ""
|
|
2037
|
+
},
|
|
2038
|
+
{
|
|
2039
|
+
"name": "ItemCatalogSettingsParam",
|
|
2040
|
+
"details": [
|
|
2041
|
+
{
|
|
2042
|
+
"code": "CatalogId",
|
|
2043
|
+
"description": "",
|
|
2044
|
+
"type": "string"
|
|
2045
|
+
},
|
|
2046
|
+
{
|
|
2047
|
+
"code": "ItemType",
|
|
2048
|
+
"description": "",
|
|
2049
|
+
"type": "number"
|
|
2050
|
+
},
|
|
2051
|
+
{
|
|
2052
|
+
"code": "ItemClassSettings",
|
|
2053
|
+
"description": "",
|
|
2054
|
+
"type": "Array<ItemClassSettingsParam>"
|
|
2055
|
+
}
|
|
2056
|
+
],
|
|
2057
|
+
"description": ""
|
|
2058
|
+
},
|
|
2059
|
+
{
|
|
2060
|
+
"name": "ItemClassSettingsParam",
|
|
2061
|
+
"details": [
|
|
2062
|
+
{
|
|
2063
|
+
"code": "ClassId",
|
|
2064
|
+
"description": "",
|
|
2065
|
+
"type": "string"
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
"code": "Description",
|
|
2069
|
+
"description": "",
|
|
2070
|
+
"type": "string"
|
|
2071
|
+
}
|
|
2072
|
+
],
|
|
2073
|
+
"description": ""
|
|
2074
|
+
},
|
|
2075
|
+
{
|
|
2076
|
+
"name": "MasterAdminPermissionRulesParam",
|
|
2077
|
+
"details": [
|
|
2078
|
+
{
|
|
2079
|
+
"code": "SetMasterGameSettings",
|
|
2080
|
+
"description": "",
|
|
2081
|
+
"type": "PermissionRulesParam"
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
"code": "CreateAdminAccount",
|
|
2085
|
+
"description": "",
|
|
2086
|
+
"type": "PermissionRulesParam"
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
"code": "RemoveAdminAccount",
|
|
2090
|
+
"description": "",
|
|
2091
|
+
"type": "PermissionRulesParam"
|
|
2092
|
+
},
|
|
2093
|
+
{
|
|
2094
|
+
"code": "SetPasswordAdminAccount",
|
|
2095
|
+
"description": "",
|
|
2096
|
+
"type": "PermissionRulesParam"
|
|
2097
|
+
},
|
|
2098
|
+
{
|
|
2099
|
+
"code": "SetSecretKeyAdminAccount",
|
|
2100
|
+
"description": "",
|
|
2101
|
+
"type": "PermissionRulesParam"
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
"code": "SetGameInformation",
|
|
2105
|
+
"description": "",
|
|
2106
|
+
"type": "PermissionRulesParam"
|
|
2107
|
+
},
|
|
2108
|
+
{
|
|
2109
|
+
"code": "CreateGame",
|
|
2110
|
+
"description": "",
|
|
2111
|
+
"type": "PermissionRulesParam"
|
|
2112
|
+
},
|
|
2113
|
+
{
|
|
2114
|
+
"code": "ChangePasswordAdminAccount",
|
|
2115
|
+
"description": "",
|
|
2116
|
+
"type": "PermissionRulesParam"
|
|
2117
|
+
},
|
|
2118
|
+
{
|
|
2119
|
+
"code": "GetAdminAccountList",
|
|
2120
|
+
"description": "",
|
|
2121
|
+
"type": "PermissionRulesParam"
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
"code": "GetGameInformation",
|
|
2125
|
+
"description": "",
|
|
2126
|
+
"type": "PermissionRulesParam"
|
|
2127
|
+
},
|
|
2128
|
+
{
|
|
2129
|
+
"code": "GetGameList",
|
|
2130
|
+
"description": "",
|
|
2131
|
+
"type": "PermissionRulesParam"
|
|
2132
|
+
},
|
|
2133
|
+
{
|
|
2134
|
+
"code": "GetMasterGameSettings",
|
|
2135
|
+
"description": "",
|
|
2136
|
+
"type": "PermissionRulesParam"
|
|
2137
|
+
},
|
|
2138
|
+
{
|
|
2139
|
+
"code": "GetServerLog",
|
|
2140
|
+
"description": "",
|
|
2141
|
+
"type": "PermissionRulesParam"
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
"code": "GetSecretInfoInformation",
|
|
2145
|
+
"description": "",
|
|
2146
|
+
"type": "PermissionRulesParam"
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
"code": "GetSecretInfoList",
|
|
2150
|
+
"description": "",
|
|
2151
|
+
"type": "PermissionRulesParam"
|
|
2152
|
+
},
|
|
2153
|
+
{
|
|
2154
|
+
"code": "CreateSecretInfo",
|
|
2155
|
+
"description": "",
|
|
2156
|
+
"type": "PermissionRulesParam"
|
|
2157
|
+
},
|
|
2158
|
+
{
|
|
2159
|
+
"code": "SetSecretInfoInformation",
|
|
2160
|
+
"description": "",
|
|
2161
|
+
"type": "PermissionRulesParam"
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
"code": "GetUsernameAdminAccount",
|
|
2165
|
+
"description": "",
|
|
2166
|
+
"type": "PermissionRulesParam"
|
|
2167
|
+
},
|
|
2168
|
+
{
|
|
2169
|
+
"code": "GetAnalytics",
|
|
2170
|
+
"description": "",
|
|
2171
|
+
"type": "PermissionRulesParam"
|
|
2172
|
+
},
|
|
2173
|
+
{
|
|
2174
|
+
"code": "GetEventCallbackCloudScript",
|
|
2175
|
+
"description": "",
|
|
2176
|
+
"type": "PermissionRulesParam"
|
|
2177
|
+
},
|
|
2178
|
+
{
|
|
2179
|
+
"code": "SetEventCallbackCloudScript",
|
|
2180
|
+
"description": "",
|
|
2181
|
+
"type": "PermissionRulesParam"
|
|
2182
|
+
},
|
|
2183
|
+
{
|
|
2184
|
+
"code": "ResetStatisticsLeaderboard",
|
|
2185
|
+
"description": "",
|
|
2186
|
+
"type": "PermissionRulesParam"
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"code": "GetBackupStatisticsLeaderboardVersion",
|
|
2190
|
+
"description": "",
|
|
2191
|
+
"type": "PermissionRulesParam"
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
"code": "DeleteInDatabase",
|
|
2195
|
+
"description": "",
|
|
2196
|
+
"type": "PermissionRulesParam"
|
|
2197
|
+
}
|
|
2198
|
+
],
|
|
2199
|
+
"description": ""
|
|
2200
|
+
},
|
|
2201
|
+
{
|
|
2202
|
+
"name": "MasterPlayerPermissionRulesParam",
|
|
2203
|
+
"details": [
|
|
2204
|
+
{
|
|
2205
|
+
"code": "LinkAccount",
|
|
2206
|
+
"description": "",
|
|
2207
|
+
"type": "PermissionRulesParam"
|
|
2208
|
+
},
|
|
2209
|
+
{
|
|
2210
|
+
"code": "LinkAndroidDeviceId",
|
|
2211
|
+
"description": "",
|
|
2212
|
+
"type": "PermissionRulesParam"
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
"code": "LinkApple",
|
|
2216
|
+
"description": "",
|
|
2217
|
+
"type": "PermissionRulesParam"
|
|
2218
|
+
},
|
|
2219
|
+
{
|
|
2220
|
+
"code": "LinkCustomDeviceId",
|
|
2221
|
+
"description": "",
|
|
2222
|
+
"type": "PermissionRulesParam"
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
"code": "LinkCustomId",
|
|
2226
|
+
"description": "",
|
|
2227
|
+
"type": "PermissionRulesParam"
|
|
2228
|
+
},
|
|
2229
|
+
{
|
|
2230
|
+
"code": "LinkEditorDeviceId",
|
|
2231
|
+
"description": "",
|
|
2232
|
+
"type": "PermissionRulesParam"
|
|
2233
|
+
},
|
|
2234
|
+
{
|
|
2235
|
+
"code": "LinkFacebook",
|
|
2236
|
+
"description": "",
|
|
2237
|
+
"type": "PermissionRulesParam"
|
|
2238
|
+
},
|
|
2239
|
+
{
|
|
2240
|
+
"code": "LinkGenericService",
|
|
2241
|
+
"description": "",
|
|
2242
|
+
"type": "PermissionRulesParam"
|
|
2243
|
+
},
|
|
2244
|
+
{
|
|
2245
|
+
"code": "LinkGoogle",
|
|
2246
|
+
"description": "",
|
|
2247
|
+
"type": "PermissionRulesParam"
|
|
2248
|
+
},
|
|
2249
|
+
{
|
|
2250
|
+
"code": "LinkGooglePlayGameService",
|
|
2251
|
+
"description": "",
|
|
2252
|
+
"type": "PermissionRulesParam"
|
|
2253
|
+
},
|
|
2254
|
+
{
|
|
2255
|
+
"code": "LinkGameCenter",
|
|
2256
|
+
"description": "",
|
|
2257
|
+
"type": "PermissionRulesParam"
|
|
2258
|
+
},
|
|
2259
|
+
{
|
|
2260
|
+
"code": "LinkiOSDeviceId",
|
|
2261
|
+
"description": "",
|
|
2262
|
+
"type": "PermissionRulesParam"
|
|
2263
|
+
},
|
|
2264
|
+
{
|
|
2265
|
+
"code": "LinkLinuxDeviceId",
|
|
2266
|
+
"description": "",
|
|
2267
|
+
"type": "PermissionRulesParam"
|
|
2268
|
+
},
|
|
2269
|
+
{
|
|
2270
|
+
"code": "LinkMacOSDeviceId",
|
|
2271
|
+
"description": "",
|
|
2272
|
+
"type": "PermissionRulesParam"
|
|
2273
|
+
},
|
|
2274
|
+
{
|
|
2275
|
+
"code": "LinkWindowsDeviceId",
|
|
2276
|
+
"description": "",
|
|
2277
|
+
"type": "PermissionRulesParam"
|
|
2278
|
+
},
|
|
2279
|
+
{
|
|
2280
|
+
"code": "LinkWindowsPhoneDeviceId",
|
|
2281
|
+
"description": "",
|
|
2282
|
+
"type": "PermissionRulesParam"
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
"code": "UnlinkAccount",
|
|
2286
|
+
"description": "",
|
|
2287
|
+
"type": "PermissionRulesParam"
|
|
2288
|
+
},
|
|
2289
|
+
{
|
|
2290
|
+
"code": "UnlinkAndroidDeviceId",
|
|
2291
|
+
"description": "",
|
|
2292
|
+
"type": "PermissionRulesParam"
|
|
2293
|
+
},
|
|
2294
|
+
{
|
|
2295
|
+
"code": "UnlinkApple",
|
|
2296
|
+
"description": "",
|
|
2297
|
+
"type": "PermissionRulesParam"
|
|
2298
|
+
},
|
|
2299
|
+
{
|
|
2300
|
+
"code": "UnlinkCustomDeviceId",
|
|
2301
|
+
"description": "",
|
|
2302
|
+
"type": "PermissionRulesParam"
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
"code": "UnlinkCustomId",
|
|
2306
|
+
"description": "",
|
|
2307
|
+
"type": "PermissionRulesParam"
|
|
2308
|
+
},
|
|
2309
|
+
{
|
|
2310
|
+
"code": "UnlinkEditorDeviceId",
|
|
2311
|
+
"description": "",
|
|
2312
|
+
"type": "PermissionRulesParam"
|
|
2313
|
+
},
|
|
2314
|
+
{
|
|
2315
|
+
"code": "UnlinkFacebook",
|
|
2316
|
+
"description": "",
|
|
2317
|
+
"type": "PermissionRulesParam"
|
|
2318
|
+
},
|
|
2319
|
+
{
|
|
2320
|
+
"code": "UnlinkGenericService",
|
|
2321
|
+
"description": "",
|
|
2322
|
+
"type": "PermissionRulesParam"
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
"code": "UnlinkGoogle",
|
|
2326
|
+
"description": "",
|
|
2327
|
+
"type": "PermissionRulesParam"
|
|
2328
|
+
},
|
|
2329
|
+
{
|
|
2330
|
+
"code": "UnlinkGooglePlayGameService",
|
|
2331
|
+
"description": "",
|
|
2332
|
+
"type": "PermissionRulesParam"
|
|
2333
|
+
},
|
|
2334
|
+
{
|
|
2335
|
+
"code": "UnlinkGameCenter",
|
|
2336
|
+
"description": "",
|
|
2337
|
+
"type": "PermissionRulesParam"
|
|
2338
|
+
},
|
|
2339
|
+
{
|
|
2340
|
+
"code": "UnlinkiOSDeviceId",
|
|
2341
|
+
"description": "",
|
|
2342
|
+
"type": "PermissionRulesParam"
|
|
2343
|
+
},
|
|
2344
|
+
{
|
|
2345
|
+
"code": "UnlinkLinuxDeviceId",
|
|
2346
|
+
"description": "",
|
|
2347
|
+
"type": "PermissionRulesParam"
|
|
2348
|
+
},
|
|
2349
|
+
{
|
|
2350
|
+
"code": "UnlinkMacOSDeviceId",
|
|
2351
|
+
"description": "",
|
|
2352
|
+
"type": "PermissionRulesParam"
|
|
2353
|
+
},
|
|
2354
|
+
{
|
|
2355
|
+
"code": "UnlinkWindowsDeviceId",
|
|
2356
|
+
"description": "",
|
|
2357
|
+
"type": "PermissionRulesParam"
|
|
2358
|
+
},
|
|
2359
|
+
{
|
|
2360
|
+
"code": "UnlinkWindowsPhoneDeviceId",
|
|
2361
|
+
"description": "",
|
|
2362
|
+
"type": "PermissionRulesParam"
|
|
2363
|
+
},
|
|
2364
|
+
{
|
|
2365
|
+
"code": "AddSegment",
|
|
2366
|
+
"description": "",
|
|
2367
|
+
"type": "PermissionRulesParam"
|
|
2368
|
+
},
|
|
2369
|
+
{
|
|
2370
|
+
"code": "RemoveSegment",
|
|
2371
|
+
"description": "",
|
|
2372
|
+
"type": "PermissionRulesParam"
|
|
2373
|
+
},
|
|
2374
|
+
{
|
|
2375
|
+
"code": "GetSegment",
|
|
2376
|
+
"description": "",
|
|
2377
|
+
"type": "PermissionRulesParam"
|
|
2378
|
+
},
|
|
2379
|
+
{
|
|
2380
|
+
"code": "SetTag",
|
|
2381
|
+
"description": "",
|
|
2382
|
+
"type": "PermissionRulesParam"
|
|
2383
|
+
},
|
|
2384
|
+
{
|
|
2385
|
+
"code": "RemoveTag",
|
|
2386
|
+
"description": "",
|
|
2387
|
+
"type": "PermissionRulesParam"
|
|
2388
|
+
},
|
|
2389
|
+
{
|
|
2390
|
+
"code": "GetTag",
|
|
2391
|
+
"description": "",
|
|
2392
|
+
"type": "PermissionRulesParam"
|
|
2393
|
+
},
|
|
2394
|
+
{
|
|
2395
|
+
"code": "GetDisplayName",
|
|
2396
|
+
"description": "",
|
|
2397
|
+
"type": "PermissionRulesParam"
|
|
2398
|
+
},
|
|
2399
|
+
{
|
|
2400
|
+
"code": "SetDisplayName",
|
|
2401
|
+
"description": "",
|
|
2402
|
+
"type": "PermissionRulesParam"
|
|
2403
|
+
},
|
|
2404
|
+
{
|
|
2405
|
+
"code": "GetTsCreate",
|
|
2406
|
+
"description": "",
|
|
2407
|
+
"type": "PermissionRulesParam"
|
|
2408
|
+
},
|
|
2409
|
+
{
|
|
2410
|
+
"code": "GetIpAddressCreate",
|
|
2411
|
+
"description": "",
|
|
2412
|
+
"type": "PermissionRulesParam"
|
|
2413
|
+
},
|
|
2414
|
+
{
|
|
2415
|
+
"code": "SetTsLastLogin",
|
|
2416
|
+
"description": "",
|
|
2417
|
+
"type": "PermissionRulesParam"
|
|
2418
|
+
},
|
|
2419
|
+
{
|
|
2420
|
+
"code": "GetTsLastLogin",
|
|
2421
|
+
"description": "",
|
|
2422
|
+
"type": "PermissionRulesParam"
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
"code": "SetPlayerBan",
|
|
2426
|
+
"description": "",
|
|
2427
|
+
"type": "PermissionRulesParam"
|
|
2428
|
+
},
|
|
2429
|
+
{
|
|
2430
|
+
"code": "GetPlayerBan",
|
|
2431
|
+
"description": "",
|
|
2432
|
+
"type": "PermissionRulesParam"
|
|
2433
|
+
},
|
|
2434
|
+
{
|
|
2435
|
+
"code": "SetCountryCode",
|
|
2436
|
+
"description": "",
|
|
2437
|
+
"type": "PermissionRulesParam"
|
|
2438
|
+
},
|
|
2439
|
+
{
|
|
2440
|
+
"code": "GetCountryCode",
|
|
2441
|
+
"description": "",
|
|
2442
|
+
"type": "PermissionRulesParam"
|
|
2443
|
+
},
|
|
2444
|
+
{
|
|
2445
|
+
"code": "ChangeAccountPassword",
|
|
2446
|
+
"description": "",
|
|
2447
|
+
"type": "PermissionRulesParam"
|
|
2448
|
+
},
|
|
2449
|
+
{
|
|
2450
|
+
"code": "ResetAccountPassword",
|
|
2451
|
+
"description": "",
|
|
2452
|
+
"type": "PermissionRulesParam"
|
|
2453
|
+
},
|
|
2454
|
+
{
|
|
2455
|
+
"code": "SetAvatar",
|
|
2456
|
+
"description": "",
|
|
2457
|
+
"type": "PermissionRulesParam"
|
|
2458
|
+
},
|
|
2459
|
+
{
|
|
2460
|
+
"code": "GetAvatar",
|
|
2461
|
+
"description": "",
|
|
2462
|
+
"type": "PermissionRulesParam"
|
|
2463
|
+
},
|
|
2464
|
+
{
|
|
2465
|
+
"code": "ChangePlayerCurrency",
|
|
2466
|
+
"description": "",
|
|
2467
|
+
"type": "PermissionRulesParam"
|
|
2468
|
+
},
|
|
2469
|
+
{
|
|
2470
|
+
"code": "GetPlayerCurrency",
|
|
2471
|
+
"description": "",
|
|
2472
|
+
"type": "PermissionRulesParam"
|
|
2473
|
+
},
|
|
2474
|
+
{
|
|
2475
|
+
"code": "ChangePlayerStatistics",
|
|
2476
|
+
"description": "",
|
|
2477
|
+
"type": "PermissionRulesParam"
|
|
2478
|
+
},
|
|
2479
|
+
{
|
|
2480
|
+
"code": "GetPlayerStatistics",
|
|
2481
|
+
"description": "",
|
|
2482
|
+
"type": "PermissionRulesParam"
|
|
2483
|
+
},
|
|
2484
|
+
{
|
|
2485
|
+
"code": "GetStatisticsLeaderboard",
|
|
2486
|
+
"description": "",
|
|
2487
|
+
"type": "PermissionRulesParam"
|
|
2488
|
+
},
|
|
2489
|
+
{
|
|
2490
|
+
"code": "GetStatisticsLeaderboardAroundPlayer",
|
|
2491
|
+
"description": "",
|
|
2492
|
+
"type": "PermissionRulesParam"
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
"code": "GetCustomData",
|
|
2496
|
+
"description": "",
|
|
2497
|
+
"type": "PermissionRulesParam"
|
|
2498
|
+
},
|
|
2499
|
+
{
|
|
2500
|
+
"code": "SetCustomData",
|
|
2501
|
+
"description": "",
|
|
2502
|
+
"type": "PermissionRulesParam"
|
|
2503
|
+
},
|
|
2504
|
+
{
|
|
2505
|
+
"code": "SetPlayerData",
|
|
2506
|
+
"description": "",
|
|
2507
|
+
"type": "PermissionRulesParam"
|
|
2508
|
+
},
|
|
2509
|
+
{
|
|
2510
|
+
"code": "GetPlayerData",
|
|
2511
|
+
"description": "",
|
|
2512
|
+
"type": "PermissionRulesParam"
|
|
2513
|
+
},
|
|
2514
|
+
{
|
|
2515
|
+
"code": "GetPlayerInformation",
|
|
2516
|
+
"description": "",
|
|
2517
|
+
"type": "PermissionRulesParam"
|
|
2518
|
+
},
|
|
2519
|
+
{
|
|
2520
|
+
"code": "GetPlayersWithApple",
|
|
2521
|
+
"description": "",
|
|
2522
|
+
"type": "PermissionRulesParam"
|
|
2523
|
+
},
|
|
2524
|
+
{
|
|
2525
|
+
"code": "GetPlayersWithFacebook",
|
|
2526
|
+
"description": "",
|
|
2527
|
+
"type": "PermissionRulesParam"
|
|
2528
|
+
},
|
|
2529
|
+
{
|
|
2530
|
+
"code": "GetPlayersWithGoogle",
|
|
2531
|
+
"description": "",
|
|
2532
|
+
"type": "PermissionRulesParam"
|
|
2533
|
+
},
|
|
2534
|
+
{
|
|
2535
|
+
"code": "GetPlayersWithGenericService",
|
|
2536
|
+
"description": "",
|
|
2537
|
+
"type": "PermissionRulesParam"
|
|
2538
|
+
},
|
|
2539
|
+
{
|
|
2540
|
+
"code": "GetPlayersWithSegment",
|
|
2541
|
+
"description": "",
|
|
2542
|
+
"type": "PermissionRulesParam"
|
|
2543
|
+
},
|
|
2544
|
+
{
|
|
2545
|
+
"code": "GetPlayersWithTag",
|
|
2546
|
+
"description": "",
|
|
2547
|
+
"type": "PermissionRulesParam"
|
|
2548
|
+
},
|
|
2549
|
+
{
|
|
2550
|
+
"code": "GetPlayersWithGooglePlayGameService",
|
|
2551
|
+
"description": "",
|
|
2552
|
+
"type": "PermissionRulesParam"
|
|
2553
|
+
},
|
|
2554
|
+
{
|
|
2555
|
+
"code": "GetPlayersWithGameCenter",
|
|
2556
|
+
"description": "",
|
|
2557
|
+
"type": "PermissionRulesParam"
|
|
2558
|
+
},
|
|
2559
|
+
{
|
|
2560
|
+
"code": "GetExternal",
|
|
2561
|
+
"description": "",
|
|
2562
|
+
"type": "PermissionRulesParam"
|
|
2563
|
+
},
|
|
2564
|
+
{
|
|
2565
|
+
"code": "GetPlayersWithDisplayName",
|
|
2566
|
+
"description": "",
|
|
2567
|
+
"type": "PermissionRulesParam"
|
|
2568
|
+
},
|
|
2569
|
+
{
|
|
2570
|
+
"code": "GetEmail",
|
|
2571
|
+
"description": "",
|
|
2572
|
+
"type": "PermissionRulesParam"
|
|
2573
|
+
},
|
|
2574
|
+
{
|
|
2575
|
+
"code": "SetEmail",
|
|
2576
|
+
"description": "",
|
|
2577
|
+
"type": "PermissionRulesParam"
|
|
2578
|
+
},
|
|
2579
|
+
{
|
|
2580
|
+
"code": "GetCurrencyLeaderboard",
|
|
2581
|
+
"description": "",
|
|
2582
|
+
"type": "PermissionRulesParam"
|
|
2583
|
+
},
|
|
2584
|
+
{
|
|
2585
|
+
"code": "GetLastLoginLeaderboard",
|
|
2586
|
+
"description": "",
|
|
2587
|
+
"type": "PermissionRulesParam"
|
|
2588
|
+
},
|
|
2589
|
+
{
|
|
2590
|
+
"code": "GetCreateLeaderboard",
|
|
2591
|
+
"description": "",
|
|
2592
|
+
"type": "PermissionRulesParam"
|
|
2593
|
+
},
|
|
2594
|
+
{
|
|
2595
|
+
"code": "GetStatisticsLog",
|
|
2596
|
+
"description": "",
|
|
2597
|
+
"type": "PermissionRulesParam"
|
|
2598
|
+
},
|
|
2599
|
+
{
|
|
2600
|
+
"code": "GetCurrencyLog",
|
|
2601
|
+
"description": "",
|
|
2602
|
+
"type": "PermissionRulesParam"
|
|
2603
|
+
},
|
|
2604
|
+
{
|
|
2605
|
+
"code": "SendSocketOperationEvent",
|
|
2606
|
+
"description": "",
|
|
2607
|
+
"type": "PermissionRulesParam"
|
|
2608
|
+
},
|
|
2609
|
+
{
|
|
2610
|
+
"code": "SendEmail",
|
|
2611
|
+
"description": "",
|
|
2612
|
+
"type": "PermissionRulesParam"
|
|
2613
|
+
},
|
|
2614
|
+
{
|
|
2615
|
+
"code": "SendPushNotification",
|
|
2616
|
+
"description": "",
|
|
2617
|
+
"type": "PermissionRulesParam"
|
|
2618
|
+
},
|
|
2619
|
+
{
|
|
2620
|
+
"code": "AddPushNotification",
|
|
2621
|
+
"description": "",
|
|
2622
|
+
"type": "PermissionRulesParam"
|
|
2623
|
+
},
|
|
2624
|
+
{
|
|
2625
|
+
"code": "RemovePushNotification",
|
|
2626
|
+
"description": "",
|
|
2627
|
+
"type": "PermissionRulesParam"
|
|
2628
|
+
},
|
|
2629
|
+
{
|
|
2630
|
+
"code": "GetPushNotification",
|
|
2631
|
+
"description": "",
|
|
2632
|
+
"type": "PermissionRulesParam"
|
|
2633
|
+
}
|
|
2634
|
+
],
|
|
2635
|
+
"description": ""
|
|
2636
|
+
},
|
|
2637
|
+
{
|
|
2638
|
+
"name": "MasterPlayerSettingsParam",
|
|
2639
|
+
"details": [
|
|
2640
|
+
{
|
|
2641
|
+
"code": "GenericServiceSettings",
|
|
2642
|
+
"description": "",
|
|
2643
|
+
"type": "Array<GenericServiceSettingsParam>"
|
|
2644
|
+
},
|
|
2645
|
+
{
|
|
2646
|
+
"code": "PlayerCurrenciesSettings",
|
|
2647
|
+
"description": "",
|
|
2648
|
+
"type": "Array<CurrencySettingsParam>"
|
|
2649
|
+
},
|
|
2650
|
+
{
|
|
2651
|
+
"code": "PlayerStatisticsSettings",
|
|
2652
|
+
"description": "",
|
|
2653
|
+
"type": "Array<StatisticsSettingsParam>"
|
|
2654
|
+
},
|
|
2655
|
+
{
|
|
2656
|
+
"code": "PlayerDatasSettings",
|
|
2657
|
+
"description": "",
|
|
2658
|
+
"type": "Array<DataSettingsParam>"
|
|
2659
|
+
},
|
|
2660
|
+
{
|
|
2661
|
+
"code": "CustomDatasSettings",
|
|
2662
|
+
"description": "",
|
|
2663
|
+
"type": "Array<DataSettingsParam>"
|
|
2664
|
+
},
|
|
2665
|
+
{
|
|
2666
|
+
"code": "TagsSettings",
|
|
2667
|
+
"description": "",
|
|
2668
|
+
"type": "Array<TagSettingsParam>"
|
|
2669
|
+
}
|
|
2670
|
+
],
|
|
2671
|
+
"description": ""
|
|
2672
|
+
},
|
|
2673
|
+
{
|
|
2674
|
+
"name": "SizeParam",
|
|
2675
|
+
"details": [
|
|
2676
|
+
{
|
|
2677
|
+
"code": "Min",
|
|
2678
|
+
"description": "",
|
|
2679
|
+
"type": "number"
|
|
2680
|
+
},
|
|
2681
|
+
{
|
|
2682
|
+
"code": "Max",
|
|
2683
|
+
"description": "",
|
|
2684
|
+
"type": "number"
|
|
2685
|
+
}
|
|
2686
|
+
],
|
|
2687
|
+
"description": ""
|
|
2688
|
+
},
|
|
2689
|
+
{
|
|
2690
|
+
"name": "TeamParam",
|
|
2691
|
+
"details": [
|
|
2692
|
+
{
|
|
2693
|
+
"code": "TeamId",
|
|
2694
|
+
"description": "",
|
|
2695
|
+
"type": "string"
|
|
2696
|
+
},
|
|
2697
|
+
{
|
|
2698
|
+
"code": "TeamSize",
|
|
2699
|
+
"description": "",
|
|
2700
|
+
"type": "SizeParam"
|
|
2701
|
+
}
|
|
2702
|
+
],
|
|
2703
|
+
"description": ""
|
|
2704
|
+
},
|
|
2705
|
+
{
|
|
2706
|
+
"name": "LinearExpansionsParam",
|
|
2707
|
+
"details": [
|
|
2708
|
+
{
|
|
2709
|
+
"code": "SecondsBetweenExpansions",
|
|
2710
|
+
"description": "",
|
|
2711
|
+
"type": "number"
|
|
2712
|
+
},
|
|
2713
|
+
{
|
|
2714
|
+
"code": "Delta",
|
|
2715
|
+
"description": "",
|
|
2716
|
+
"type": "number"
|
|
2717
|
+
},
|
|
2718
|
+
{
|
|
2719
|
+
"code": "Limit",
|
|
2720
|
+
"description": "",
|
|
2721
|
+
"type": "number"
|
|
2722
|
+
}
|
|
2723
|
+
],
|
|
2724
|
+
"description": ""
|
|
2725
|
+
},
|
|
2726
|
+
{
|
|
2727
|
+
"name": "CustomExpansionsParam",
|
|
2728
|
+
"details": [
|
|
2729
|
+
{
|
|
2730
|
+
"code": "SecondsBetweenExpansions",
|
|
2731
|
+
"description": "",
|
|
2732
|
+
"type": "number"
|
|
2733
|
+
},
|
|
2734
|
+
{
|
|
2735
|
+
"code": "OverrideValue",
|
|
2736
|
+
"description": "",
|
|
2737
|
+
"type": "Array<any>"
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
"code": "OverrideMin",
|
|
2741
|
+
"description": "",
|
|
2742
|
+
"type": "Array<any>"
|
|
2743
|
+
},
|
|
2744
|
+
{
|
|
2745
|
+
"code": "OverrideMax",
|
|
2746
|
+
"description": "",
|
|
2747
|
+
"type": "Array<any>"
|
|
2748
|
+
}
|
|
2749
|
+
],
|
|
2750
|
+
"description": ""
|
|
2751
|
+
},
|
|
2752
|
+
{
|
|
2753
|
+
"name": "AdvancedSettingsParam",
|
|
2754
|
+
"details": [
|
|
2755
|
+
{
|
|
2756
|
+
"code": "SecondsUntilOptional",
|
|
2757
|
+
"description": "",
|
|
2758
|
+
"type": "number"
|
|
2759
|
+
},
|
|
2760
|
+
{
|
|
2761
|
+
"code": "ExpansionType",
|
|
2762
|
+
"description": "",
|
|
2763
|
+
"type": "number"
|
|
2764
|
+
},
|
|
2765
|
+
{
|
|
2766
|
+
"code": "LinearExpansions",
|
|
2767
|
+
"description": "",
|
|
2768
|
+
"type": "LinearExpansionsParam"
|
|
2769
|
+
},
|
|
2770
|
+
{
|
|
2771
|
+
"code": "CustomExpansions",
|
|
2772
|
+
"description": "",
|
|
2773
|
+
"type": "CustomExpansionsParam"
|
|
2774
|
+
}
|
|
2775
|
+
],
|
|
2776
|
+
"description": ""
|
|
2777
|
+
},
|
|
2778
|
+
{
|
|
2779
|
+
"name": "RuleParam",
|
|
2780
|
+
"details": [
|
|
2781
|
+
{
|
|
2782
|
+
"code": "Name",
|
|
2783
|
+
"description": "",
|
|
2784
|
+
"type": "string"
|
|
2785
|
+
},
|
|
2786
|
+
{
|
|
2787
|
+
"code": "Type",
|
|
2788
|
+
"description": "",
|
|
2789
|
+
"type": "number"
|
|
2790
|
+
},
|
|
2791
|
+
{
|
|
2792
|
+
"code": "AttributeSource",
|
|
2793
|
+
"description": "",
|
|
2794
|
+
"type": "number"
|
|
2795
|
+
},
|
|
2796
|
+
{
|
|
2797
|
+
"code": "AttributePath",
|
|
2798
|
+
"description": "",
|
|
2799
|
+
"type": "string"
|
|
2800
|
+
},
|
|
2801
|
+
{
|
|
2802
|
+
"code": "DefaultValue",
|
|
2803
|
+
"description": "",
|
|
2804
|
+
"type": "any"
|
|
2805
|
+
},
|
|
2806
|
+
{
|
|
2807
|
+
"code": "CompairType",
|
|
2808
|
+
"description": "",
|
|
2809
|
+
"type": "number"
|
|
2810
|
+
},
|
|
2811
|
+
{
|
|
2812
|
+
"code": "AllowedDifference",
|
|
2813
|
+
"description": "",
|
|
2814
|
+
"type": "number"
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
"code": "Min",
|
|
2818
|
+
"description": "",
|
|
2819
|
+
"type": "number"
|
|
2820
|
+
},
|
|
2821
|
+
{
|
|
2822
|
+
"code": "Max",
|
|
2823
|
+
"description": "",
|
|
2824
|
+
"type": "number"
|
|
2825
|
+
},
|
|
2826
|
+
{
|
|
2827
|
+
"code": "AdvancedSettings",
|
|
2828
|
+
"description": "",
|
|
2829
|
+
"type": "AdvancedSettingsParam"
|
|
2830
|
+
}
|
|
2831
|
+
],
|
|
2832
|
+
"description": ""
|
|
2833
|
+
},
|
|
2834
|
+
{
|
|
2835
|
+
"name": "ServerAllocationParam",
|
|
2836
|
+
"details": [
|
|
2837
|
+
{
|
|
2838
|
+
"code": "Enable",
|
|
2839
|
+
"description": "",
|
|
2840
|
+
"type": "boolean"
|
|
2841
|
+
}
|
|
2842
|
+
],
|
|
2843
|
+
"description": ""
|
|
2844
|
+
},
|
|
2845
|
+
{
|
|
2846
|
+
"name": "MatchmakingQueueSettingsParam",
|
|
2847
|
+
"details": [
|
|
2848
|
+
{
|
|
2849
|
+
"code": "QueueName",
|
|
2850
|
+
"description": "",
|
|
2851
|
+
"type": "string"
|
|
2852
|
+
},
|
|
2853
|
+
{
|
|
2854
|
+
"code": "MatchSize",
|
|
2855
|
+
"description": "",
|
|
2856
|
+
"type": "SizeParam"
|
|
2857
|
+
},
|
|
2858
|
+
{
|
|
2859
|
+
"code": "TicketSize",
|
|
2860
|
+
"description": "",
|
|
2861
|
+
"type": "SizeParam"
|
|
2862
|
+
},
|
|
2863
|
+
{
|
|
2864
|
+
"code": "ServerAllocation",
|
|
2865
|
+
"description": "",
|
|
2866
|
+
"type": "ServerAllocationParam"
|
|
2867
|
+
},
|
|
2868
|
+
{
|
|
2869
|
+
"code": "Teams",
|
|
2870
|
+
"description": "",
|
|
2871
|
+
"type": "Array<TeamParam>"
|
|
2872
|
+
},
|
|
2873
|
+
{
|
|
2874
|
+
"code": "Rules",
|
|
2875
|
+
"description": "",
|
|
2876
|
+
"type": "Array<RuleParam>"
|
|
2877
|
+
},
|
|
2878
|
+
{
|
|
2879
|
+
"code": "Remove",
|
|
2880
|
+
"description": "",
|
|
2881
|
+
"type": "boolean"
|
|
2882
|
+
}
|
|
2883
|
+
],
|
|
2884
|
+
"description": ""
|
|
2885
|
+
},
|
|
2886
|
+
{
|
|
2887
|
+
"name": "MultiplayerPermissionRulesParam",
|
|
2888
|
+
"details": [
|
|
2889
|
+
{
|
|
2890
|
+
"code": "CancelAllMatchmakingTicket",
|
|
2891
|
+
"description": "",
|
|
2892
|
+
"type": "PermissionRulesParam"
|
|
2893
|
+
},
|
|
2894
|
+
{
|
|
2895
|
+
"code": "CancelMatchmakingTicket",
|
|
2896
|
+
"description": "",
|
|
2897
|
+
"type": "PermissionRulesParam"
|
|
2898
|
+
},
|
|
2899
|
+
{
|
|
2900
|
+
"code": "CreateMatchmakingTicket",
|
|
2901
|
+
"description": "",
|
|
2902
|
+
"type": "PermissionRulesParam"
|
|
2903
|
+
},
|
|
2904
|
+
{
|
|
2905
|
+
"code": "GetMatchmakingTicket",
|
|
2906
|
+
"description": "",
|
|
2907
|
+
"type": "PermissionRulesParam"
|
|
2908
|
+
},
|
|
2909
|
+
{
|
|
2910
|
+
"code": "GetMatch",
|
|
2911
|
+
"description": "",
|
|
2912
|
+
"type": "PermissionRulesParam"
|
|
2913
|
+
},
|
|
2914
|
+
{
|
|
2915
|
+
"code": "GetQueueStatistics",
|
|
2916
|
+
"description": "",
|
|
2917
|
+
"type": "PermissionRulesParam"
|
|
2918
|
+
},
|
|
2919
|
+
{
|
|
2920
|
+
"code": "JoinMatchmakingTicket",
|
|
2921
|
+
"description": "",
|
|
2922
|
+
"type": "PermissionRulesParam"
|
|
2923
|
+
},
|
|
2924
|
+
{
|
|
2925
|
+
"code": "ListMatchmakingTicketsForPlayer",
|
|
2926
|
+
"description": "",
|
|
2927
|
+
"type": "PermissionRulesParam"
|
|
2928
|
+
},
|
|
2929
|
+
{
|
|
2930
|
+
"code": "GetAllMatchmakingTicket",
|
|
2931
|
+
"description": "",
|
|
2932
|
+
"type": "PermissionRulesParam"
|
|
2933
|
+
},
|
|
2934
|
+
{
|
|
2935
|
+
"code": "GetAllMatch",
|
|
2936
|
+
"description": "",
|
|
2937
|
+
"type": "PermissionRulesParam"
|
|
2938
|
+
}
|
|
2939
|
+
],
|
|
2940
|
+
"description": ""
|
|
2941
|
+
},
|
|
2942
|
+
{
|
|
2943
|
+
"name": "PermissionParam",
|
|
2944
|
+
"details": [
|
|
2945
|
+
{
|
|
2946
|
+
"code": "Authenticate",
|
|
2947
|
+
"description": "",
|
|
2948
|
+
"type": "AuthenticatePermissionRulesParam"
|
|
2949
|
+
},
|
|
2950
|
+
{
|
|
2951
|
+
"code": "MasterPlayer",
|
|
2952
|
+
"description": "",
|
|
2953
|
+
"type": "MasterPlayerPermissionRulesParam"
|
|
2954
|
+
},
|
|
2955
|
+
{
|
|
2956
|
+
"code": "GamePlayer",
|
|
2957
|
+
"description": "",
|
|
2958
|
+
"type": "GamePlayerPermissionRulesParam"
|
|
2959
|
+
},
|
|
2960
|
+
{
|
|
2961
|
+
"code": "CharacterPlayer",
|
|
2962
|
+
"description": "",
|
|
2963
|
+
"type": "CharacterPlayerPermissionRulesParam"
|
|
2964
|
+
},
|
|
2965
|
+
{
|
|
2966
|
+
"code": "Content",
|
|
2967
|
+
"description": "",
|
|
2968
|
+
"type": "ContentPermissionRulesParam"
|
|
2969
|
+
},
|
|
2970
|
+
{
|
|
2971
|
+
"code": "Group",
|
|
2972
|
+
"description": "",
|
|
2973
|
+
"type": "GroupPermissionRulesParam"
|
|
2974
|
+
},
|
|
2975
|
+
{
|
|
2976
|
+
"code": "Inventory",
|
|
2977
|
+
"description": "",
|
|
2978
|
+
"type": "InventoryPermissionRulesParam"
|
|
2979
|
+
},
|
|
2980
|
+
{
|
|
2981
|
+
"code": "StoreInventory",
|
|
2982
|
+
"description": "",
|
|
2983
|
+
"type": "StoreInventoryPermissionRulesParam"
|
|
2984
|
+
},
|
|
2985
|
+
{
|
|
2986
|
+
"code": "MasterAdmin",
|
|
2987
|
+
"description": "",
|
|
2988
|
+
"type": "MasterAdminPermissionRulesParam"
|
|
2989
|
+
},
|
|
2990
|
+
{
|
|
2991
|
+
"code": "Multiplayer",
|
|
2992
|
+
"description": "",
|
|
2993
|
+
"type": "MultiplayerPermissionRulesParam"
|
|
2994
|
+
},
|
|
2995
|
+
{
|
|
2996
|
+
"code": "CloudScript",
|
|
2997
|
+
"description": "",
|
|
2998
|
+
"type": "CloudScriptPermissionRulesParam"
|
|
2999
|
+
}
|
|
3000
|
+
],
|
|
3001
|
+
"description": ""
|
|
3002
|
+
},
|
|
3003
|
+
{
|
|
3004
|
+
"name": "PermissionRulesParam",
|
|
3005
|
+
"details": [
|
|
3006
|
+
{
|
|
3007
|
+
"code": "SelfEnable",
|
|
3008
|
+
"description": "",
|
|
3009
|
+
"type": "boolean"
|
|
3010
|
+
},
|
|
3011
|
+
{
|
|
3012
|
+
"code": "OtherSelfEnable",
|
|
3013
|
+
"description": "",
|
|
3014
|
+
"type": "boolean"
|
|
3015
|
+
},
|
|
3016
|
+
{
|
|
3017
|
+
"code": "AdminSelfEnable",
|
|
3018
|
+
"description": "",
|
|
3019
|
+
"type": "boolean"
|
|
3020
|
+
},
|
|
3021
|
+
{
|
|
3022
|
+
"code": "ServerSelfEnable",
|
|
3023
|
+
"description": "",
|
|
3024
|
+
"type": "boolean"
|
|
3025
|
+
}
|
|
3026
|
+
],
|
|
3027
|
+
"description": ""
|
|
3028
|
+
},
|
|
3029
|
+
{
|
|
3030
|
+
"name": "PushNotificationSettingsParam",
|
|
3031
|
+
"details": [
|
|
3032
|
+
{
|
|
3033
|
+
"code": "ProjectId",
|
|
3034
|
+
"description": "",
|
|
3035
|
+
"type": "string"
|
|
3036
|
+
},
|
|
3037
|
+
{
|
|
3038
|
+
"code": "ClientEmail",
|
|
3039
|
+
"description": "",
|
|
3040
|
+
"type": "string"
|
|
3041
|
+
},
|
|
3042
|
+
{
|
|
3043
|
+
"code": "PrivateKey",
|
|
3044
|
+
"description": "",
|
|
3045
|
+
"type": "string"
|
|
3046
|
+
}
|
|
3047
|
+
],
|
|
3048
|
+
"description": ""
|
|
3049
|
+
},
|
|
3050
|
+
{
|
|
3051
|
+
"name": "StatisticsSettingsParam",
|
|
3052
|
+
"details": [
|
|
3053
|
+
{
|
|
3054
|
+
"code": "Key",
|
|
3055
|
+
"description": "",
|
|
3056
|
+
"type": "string"
|
|
3057
|
+
},
|
|
3058
|
+
{
|
|
3059
|
+
"code": "StatisticsAggregationMethod",
|
|
3060
|
+
"description": "",
|
|
3061
|
+
"type": "number"
|
|
3062
|
+
},
|
|
3063
|
+
{
|
|
3064
|
+
"code": "MaximumValue",
|
|
3065
|
+
"description": "",
|
|
3066
|
+
"type": "number",
|
|
3067
|
+
"defaultValue": "null"
|
|
3068
|
+
},
|
|
3069
|
+
{
|
|
3070
|
+
"code": "MinimumValue",
|
|
3071
|
+
"description": "",
|
|
3072
|
+
"type": "number",
|
|
3073
|
+
"defaultValue": "null"
|
|
3074
|
+
},
|
|
3075
|
+
{
|
|
3076
|
+
"code": "InitialValue",
|
|
3077
|
+
"description": "",
|
|
3078
|
+
"type": "number"
|
|
3079
|
+
},
|
|
3080
|
+
{
|
|
3081
|
+
"code": "Description",
|
|
3082
|
+
"description": "",
|
|
3083
|
+
"type": "string"
|
|
3084
|
+
},
|
|
3085
|
+
{
|
|
3086
|
+
"code": "Index",
|
|
3087
|
+
"description": "",
|
|
3088
|
+
"type": "boolean"
|
|
3089
|
+
}
|
|
3090
|
+
],
|
|
3091
|
+
"description": ""
|
|
3092
|
+
},
|
|
3093
|
+
{
|
|
3094
|
+
"name": "StoreInventoryPermissionRulesParam",
|
|
3095
|
+
"details": [
|
|
3096
|
+
{
|
|
3097
|
+
"code": "BuyStoreItem",
|
|
3098
|
+
"description": "",
|
|
3099
|
+
"type": "PermissionRulesParam"
|
|
3100
|
+
},
|
|
3101
|
+
{
|
|
3102
|
+
"code": "GetStoreItemInformation",
|
|
3103
|
+
"description": "",
|
|
3104
|
+
"type": "PermissionRulesParam"
|
|
3105
|
+
},
|
|
3106
|
+
{
|
|
3107
|
+
"code": "GetStoreItemsWithTag",
|
|
3108
|
+
"description": "",
|
|
3109
|
+
"type": "PermissionRulesParam"
|
|
3110
|
+
},
|
|
3111
|
+
{
|
|
3112
|
+
"code": "CreateStoreItem",
|
|
3113
|
+
"description": "",
|
|
3114
|
+
"type": "PermissionRulesParam"
|
|
3115
|
+
},
|
|
3116
|
+
{
|
|
3117
|
+
"code": "SetRemoveStatus",
|
|
3118
|
+
"description": "",
|
|
3119
|
+
"type": "PermissionRulesParam"
|
|
3120
|
+
},
|
|
3121
|
+
{
|
|
3122
|
+
"code": "SetStoreItemInformation",
|
|
3123
|
+
"description": "",
|
|
3124
|
+
"type": "PermissionRulesParam"
|
|
3125
|
+
},
|
|
3126
|
+
{
|
|
3127
|
+
"code": "ValidateAppleAppStoreReceipt",
|
|
3128
|
+
"description": "",
|
|
3129
|
+
"type": "PermissionRulesParam"
|
|
3130
|
+
},
|
|
3131
|
+
{
|
|
3132
|
+
"code": "ValidateGooglePlayStoreReceipt",
|
|
3133
|
+
"description": "",
|
|
3134
|
+
"type": "PermissionRulesParam"
|
|
3135
|
+
},
|
|
3136
|
+
{
|
|
3137
|
+
"code": "ValidateFacebookStoreReceipt",
|
|
3138
|
+
"description": "",
|
|
3139
|
+
"type": "PermissionRulesParam"
|
|
3140
|
+
},
|
|
3141
|
+
{
|
|
3142
|
+
"code": "GetCreateLeaderboard",
|
|
3143
|
+
"description": "",
|
|
3144
|
+
"type": "PermissionRulesParam"
|
|
3145
|
+
},
|
|
3146
|
+
{
|
|
3147
|
+
"code": "PresentStoreItem",
|
|
3148
|
+
"description": "",
|
|
3149
|
+
"type": "PermissionRulesParam"
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
"code": "GetStoreLog",
|
|
3153
|
+
"description": "",
|
|
3154
|
+
"type": "PermissionRulesParam"
|
|
3155
|
+
},
|
|
3156
|
+
{
|
|
3157
|
+
"code": "GetStoreUsed",
|
|
3158
|
+
"description": "",
|
|
3159
|
+
"type": "PermissionRulesParam"
|
|
3160
|
+
},
|
|
3161
|
+
{
|
|
3162
|
+
"code": "RemoveStoreUsed",
|
|
3163
|
+
"description": "",
|
|
3164
|
+
"type": "PermissionRulesParam"
|
|
3165
|
+
}
|
|
3166
|
+
],
|
|
3167
|
+
"description": ""
|
|
3168
|
+
},
|
|
3169
|
+
{
|
|
3170
|
+
"name": "TagSettingsParam",
|
|
3171
|
+
"details": [
|
|
3172
|
+
{
|
|
3173
|
+
"code": "Key",
|
|
3174
|
+
"description": "",
|
|
3175
|
+
"type": "string"
|
|
3176
|
+
},
|
|
3177
|
+
{
|
|
3178
|
+
"code": "Description",
|
|
3179
|
+
"description": "",
|
|
3180
|
+
"type": "string"
|
|
3181
|
+
},
|
|
3182
|
+
{
|
|
3183
|
+
"code": "Index",
|
|
3184
|
+
"description": "",
|
|
3185
|
+
"type": "boolean"
|
|
3186
|
+
}
|
|
3187
|
+
],
|
|
3188
|
+
"description": ""
|
|
3189
|
+
},
|
|
3190
|
+
{
|
|
3191
|
+
"name": "ThirtPartyAppleSettingsParam",
|
|
3192
|
+
"details": [
|
|
3193
|
+
{
|
|
3194
|
+
"code": "AppleClientId",
|
|
3195
|
+
"description": "",
|
|
3196
|
+
"type": "string"
|
|
3197
|
+
},
|
|
3198
|
+
{
|
|
3199
|
+
"code": "SandboxEnable",
|
|
3200
|
+
"description": "",
|
|
3201
|
+
"type": "boolean"
|
|
3202
|
+
},
|
|
3203
|
+
{
|
|
3204
|
+
"code": "IssuerId",
|
|
3205
|
+
"description": "",
|
|
3206
|
+
"type": "string"
|
|
3207
|
+
},
|
|
3208
|
+
{
|
|
3209
|
+
"code": "KeyId",
|
|
3210
|
+
"description": "",
|
|
3211
|
+
"type": "string"
|
|
3212
|
+
},
|
|
3213
|
+
{
|
|
3214
|
+
"code": "P8Content",
|
|
3215
|
+
"description": "",
|
|
3216
|
+
"type": "string"
|
|
3217
|
+
}
|
|
3218
|
+
],
|
|
3219
|
+
"description": ""
|
|
3220
|
+
},
|
|
3221
|
+
{
|
|
3222
|
+
"name": "ThirtPartyFacebookSettingsParam",
|
|
3223
|
+
"details": [
|
|
3224
|
+
{
|
|
3225
|
+
"code": "FacebookAppId",
|
|
3226
|
+
"description": "",
|
|
3227
|
+
"type": "string"
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"code": "FacebookAppToken",
|
|
3231
|
+
"description": "",
|
|
3232
|
+
"type": "string"
|
|
3233
|
+
},
|
|
3234
|
+
{
|
|
3235
|
+
"code": "FacebookInappSecret",
|
|
3236
|
+
"description": "",
|
|
3237
|
+
"type": "string"
|
|
3238
|
+
}
|
|
3239
|
+
],
|
|
3240
|
+
"description": ""
|
|
3241
|
+
},
|
|
3242
|
+
{
|
|
3243
|
+
"name": "ThirtPartyGameCenterSettingsParam",
|
|
3244
|
+
"details": [
|
|
3245
|
+
{
|
|
3246
|
+
"code": "PackageId",
|
|
3247
|
+
"description": "",
|
|
3248
|
+
"type": "string"
|
|
3249
|
+
}
|
|
3250
|
+
],
|
|
3251
|
+
"description": ""
|
|
3252
|
+
},
|
|
3253
|
+
{
|
|
3254
|
+
"name": "ThirtPartyGooglePlayGameSettingsParam",
|
|
3255
|
+
"details": [
|
|
3256
|
+
{
|
|
3257
|
+
"code": "RedirectUri",
|
|
3258
|
+
"description": "",
|
|
3259
|
+
"type": "string"
|
|
3260
|
+
},
|
|
3261
|
+
{
|
|
3262
|
+
"code": "ClientId",
|
|
3263
|
+
"description": "",
|
|
3264
|
+
"type": "string"
|
|
3265
|
+
},
|
|
3266
|
+
{
|
|
3267
|
+
"code": "ClientSecret",
|
|
3268
|
+
"description": "",
|
|
3269
|
+
"type": "string"
|
|
3270
|
+
},
|
|
3271
|
+
{
|
|
3272
|
+
"code": "ApplicationId",
|
|
3273
|
+
"description": "",
|
|
3274
|
+
"type": "string"
|
|
3275
|
+
}
|
|
3276
|
+
],
|
|
3277
|
+
"description": ""
|
|
3278
|
+
},
|
|
3279
|
+
{
|
|
3280
|
+
"name": "ThirtPartyGoogleSettingsParam",
|
|
3281
|
+
"details": [
|
|
3282
|
+
{
|
|
3283
|
+
"code": "GoogleClientId",
|
|
3284
|
+
"description": "",
|
|
3285
|
+
"type": "string"
|
|
3286
|
+
},
|
|
3287
|
+
{
|
|
3288
|
+
"code": "PackageId",
|
|
3289
|
+
"description": "",
|
|
3290
|
+
"type": "string"
|
|
3291
|
+
},
|
|
3292
|
+
{
|
|
3293
|
+
"code": "PublicRSAKey",
|
|
3294
|
+
"description": "",
|
|
3295
|
+
"type": "string"
|
|
3296
|
+
}
|
|
3297
|
+
],
|
|
3298
|
+
"description": ""
|
|
3299
|
+
},
|
|
3300
|
+
{
|
|
3301
|
+
"name": "ThirtPartyParam",
|
|
3302
|
+
"details": [
|
|
3303
|
+
{
|
|
3304
|
+
"code": "GoogleSettings",
|
|
3305
|
+
"description": "",
|
|
3306
|
+
"type": "ThirtPartyGoogleSettingsParam"
|
|
3307
|
+
},
|
|
3308
|
+
{
|
|
3309
|
+
"code": "FacebookSettings",
|
|
3310
|
+
"description": "",
|
|
3311
|
+
"type": "ThirtPartyFacebookSettingsParam"
|
|
3312
|
+
},
|
|
3313
|
+
{
|
|
3314
|
+
"code": "AppleSettings",
|
|
3315
|
+
"description": "",
|
|
3316
|
+
"type": "ThirtPartyAppleSettingsParam"
|
|
3317
|
+
},
|
|
3318
|
+
{
|
|
3319
|
+
"code": "GooglePlayGameSettings",
|
|
3320
|
+
"description": "",
|
|
3321
|
+
"type": "ThirtPartyGooglePlayGameSettingsParam"
|
|
3322
|
+
},
|
|
3323
|
+
{
|
|
3324
|
+
"code": "GameCenterSettings",
|
|
3325
|
+
"description": "",
|
|
3326
|
+
"type": "ThirtPartyGameCenterSettingsParam"
|
|
3327
|
+
}
|
|
3328
|
+
],
|
|
3329
|
+
"description": ""
|
|
3330
|
+
},
|
|
3331
|
+
{
|
|
3332
|
+
"name": "AdminAccountResponseData",
|
|
3333
|
+
"details": [
|
|
3334
|
+
{
|
|
3335
|
+
"code": "UserId",
|
|
3336
|
+
"description": "",
|
|
3337
|
+
"type": "string"
|
|
3338
|
+
},
|
|
3339
|
+
{
|
|
3340
|
+
"code": "Username",
|
|
3341
|
+
"description": "",
|
|
3342
|
+
"type": "string"
|
|
3343
|
+
},
|
|
3344
|
+
{
|
|
3345
|
+
"code": "SecretKey",
|
|
3346
|
+
"description": "",
|
|
3347
|
+
"type": "string"
|
|
3348
|
+
}
|
|
3349
|
+
],
|
|
3350
|
+
"extends": null,
|
|
3351
|
+
"description": ""
|
|
3352
|
+
},
|
|
3353
|
+
{
|
|
3354
|
+
"name": "GetAdminAccountListResponseData",
|
|
3355
|
+
"details": [
|
|
3356
|
+
{
|
|
3357
|
+
"code": "Results",
|
|
3358
|
+
"description": "",
|
|
3359
|
+
"type": "Array<AdminAccountResponseData>"
|
|
3360
|
+
}
|
|
3361
|
+
],
|
|
3362
|
+
"extends": null,
|
|
3363
|
+
"description": ""
|
|
3364
|
+
},
|
|
3365
|
+
{
|
|
3366
|
+
"name": "GetGameInformationResponseData",
|
|
3367
|
+
"details": [
|
|
3368
|
+
{
|
|
3369
|
+
"code": "GameId",
|
|
3370
|
+
"description": "",
|
|
3371
|
+
"type": "string"
|
|
3372
|
+
},
|
|
3373
|
+
{
|
|
3374
|
+
"code": "TsCreate",
|
|
3375
|
+
"description": "",
|
|
3376
|
+
"type": "number"
|
|
3377
|
+
},
|
|
3378
|
+
{
|
|
3379
|
+
"code": "GameName",
|
|
3380
|
+
"description": "",
|
|
3381
|
+
"type": "string"
|
|
3382
|
+
},
|
|
3383
|
+
{
|
|
3384
|
+
"code": "CreatorId",
|
|
3385
|
+
"description": "",
|
|
3386
|
+
"type": "string"
|
|
3387
|
+
},
|
|
3388
|
+
{
|
|
3389
|
+
"code": "GameDescription",
|
|
3390
|
+
"description": "",
|
|
3391
|
+
"type": "string"
|
|
3392
|
+
},
|
|
3393
|
+
{
|
|
3394
|
+
"code": "GameIconUrl",
|
|
3395
|
+
"description": "",
|
|
3396
|
+
"type": "string"
|
|
3397
|
+
},
|
|
3398
|
+
{
|
|
3399
|
+
"code": "GameSettings",
|
|
3400
|
+
"description": "",
|
|
3401
|
+
"type": "GameSettingsParam"
|
|
3402
|
+
},
|
|
3403
|
+
{
|
|
3404
|
+
"code": "MatchmakingQueueSettings",
|
|
3405
|
+
"description": "",
|
|
3406
|
+
"type": "Array<MatchmakingQueueSettingsParam>"
|
|
3407
|
+
}
|
|
3408
|
+
],
|
|
3409
|
+
"extends": null,
|
|
3410
|
+
"description": ""
|
|
3411
|
+
},
|
|
3412
|
+
{
|
|
3413
|
+
"name": "GameWithGameIdResponseData",
|
|
3414
|
+
"details": [
|
|
3415
|
+
{
|
|
3416
|
+
"code": "GameId",
|
|
3417
|
+
"description": "",
|
|
3418
|
+
"type": "string"
|
|
3419
|
+
}
|
|
3420
|
+
],
|
|
3421
|
+
"extends": null,
|
|
3422
|
+
"description": ""
|
|
3423
|
+
},
|
|
3424
|
+
{
|
|
3425
|
+
"name": "GetGameListResponseData",
|
|
3426
|
+
"details": [
|
|
3427
|
+
{
|
|
3428
|
+
"code": "Results",
|
|
3429
|
+
"description": "",
|
|
3430
|
+
"type": "Array<GameWithGameIdResponseData>"
|
|
3431
|
+
}
|
|
3432
|
+
],
|
|
3433
|
+
"extends": null,
|
|
3434
|
+
"description": ""
|
|
3435
|
+
},
|
|
3436
|
+
{
|
|
3437
|
+
"name": "GetMasterGameSettingsResponseData",
|
|
3438
|
+
"details": [
|
|
3439
|
+
{
|
|
3440
|
+
"code": "ThirtPartySettings",
|
|
3441
|
+
"description": "",
|
|
3442
|
+
"type": "ThirtPartyParam"
|
|
3443
|
+
},
|
|
3444
|
+
{
|
|
3445
|
+
"code": "MasterPlayerSettings",
|
|
3446
|
+
"description": "",
|
|
3447
|
+
"type": "MasterPlayerSettingsParam"
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
"code": "EmailSettings",
|
|
3451
|
+
"description": "",
|
|
3452
|
+
"type": "EmailSettingsParam"
|
|
3453
|
+
},
|
|
3454
|
+
{
|
|
3455
|
+
"code": "PushNotificationSettings",
|
|
3456
|
+
"description": "",
|
|
3457
|
+
"type": "PushNotificationSettingsParam"
|
|
3458
|
+
}
|
|
3459
|
+
],
|
|
3460
|
+
"extends": null,
|
|
3461
|
+
"description": ""
|
|
3462
|
+
},
|
|
3463
|
+
{
|
|
3464
|
+
"name": "GetSecretInfoInformationResponseData",
|
|
3465
|
+
"details": [
|
|
3466
|
+
{
|
|
3467
|
+
"code": "SecretKey",
|
|
3468
|
+
"description": "",
|
|
3469
|
+
"type": "string"
|
|
3470
|
+
},
|
|
3471
|
+
{
|
|
3472
|
+
"code": "GameId",
|
|
3473
|
+
"description": "",
|
|
3474
|
+
"type": "string"
|
|
3475
|
+
},
|
|
3476
|
+
{
|
|
3477
|
+
"code": "Role",
|
|
3478
|
+
"description": "",
|
|
3479
|
+
"type": "number"
|
|
3480
|
+
},
|
|
3481
|
+
{
|
|
3482
|
+
"code": "TsCreate",
|
|
3483
|
+
"description": "",
|
|
3484
|
+
"type": "number"
|
|
3485
|
+
},
|
|
3486
|
+
{
|
|
3487
|
+
"code": "CreatorId",
|
|
3488
|
+
"description": "",
|
|
3489
|
+
"type": "string"
|
|
3490
|
+
},
|
|
3491
|
+
{
|
|
3492
|
+
"code": "Remove",
|
|
3493
|
+
"description": "",
|
|
3494
|
+
"type": "boolean"
|
|
3495
|
+
},
|
|
3496
|
+
{
|
|
3497
|
+
"code": "TsExpire",
|
|
3498
|
+
"description": "",
|
|
3499
|
+
"type": "number"
|
|
3500
|
+
},
|
|
3501
|
+
{
|
|
3502
|
+
"code": "Description",
|
|
3503
|
+
"description": "",
|
|
3504
|
+
"type": "string"
|
|
3505
|
+
},
|
|
3506
|
+
{
|
|
3507
|
+
"code": "PermissionParam",
|
|
3508
|
+
"description": "",
|
|
3509
|
+
"type": "PermissionParam"
|
|
3510
|
+
}
|
|
3511
|
+
],
|
|
3512
|
+
"extends": null,
|
|
3513
|
+
"description": ""
|
|
3514
|
+
},
|
|
3515
|
+
{
|
|
3516
|
+
"name": "SecretInfoWithSecretKeyResponseData",
|
|
3517
|
+
"details": [
|
|
3518
|
+
{
|
|
3519
|
+
"code": "SecretKey",
|
|
3520
|
+
"description": "",
|
|
3521
|
+
"type": "string"
|
|
3522
|
+
}
|
|
3523
|
+
],
|
|
3524
|
+
"extends": null,
|
|
3525
|
+
"description": ""
|
|
3526
|
+
},
|
|
3527
|
+
{
|
|
3528
|
+
"name": "GetSecretInfoListResponseData",
|
|
3529
|
+
"details": [
|
|
3530
|
+
{
|
|
3531
|
+
"code": "AdminSecretKeys",
|
|
3532
|
+
"description": "",
|
|
3533
|
+
"type": "Array<SecretInfoWithSecretKeyResponseData>"
|
|
3534
|
+
},
|
|
3535
|
+
{
|
|
3536
|
+
"code": "ServerSecretKeys",
|
|
3537
|
+
"description": "",
|
|
3538
|
+
"type": "Array<SecretInfoWithSecretKeyResponseData>"
|
|
3539
|
+
},
|
|
3540
|
+
{
|
|
3541
|
+
"code": "PlayerSecretKeys",
|
|
3542
|
+
"description": "",
|
|
3543
|
+
"type": "Array<SecretInfoWithSecretKeyResponseData>"
|
|
3544
|
+
}
|
|
3545
|
+
],
|
|
3546
|
+
"extends": null,
|
|
3547
|
+
"description": ""
|
|
3548
|
+
},
|
|
3549
|
+
{
|
|
3550
|
+
"name": "AdminAccountWithUserIdResponseData",
|
|
3551
|
+
"details": [
|
|
3552
|
+
{
|
|
3553
|
+
"code": "UserId",
|
|
3554
|
+
"description": "",
|
|
3555
|
+
"type": "string"
|
|
3556
|
+
}
|
|
3557
|
+
],
|
|
3558
|
+
"extends": null,
|
|
3559
|
+
"description": ""
|
|
3560
|
+
},
|
|
3561
|
+
{
|
|
3562
|
+
"name": "CreateAdminAccountResponseData",
|
|
3563
|
+
"details": [
|
|
3564
|
+
{
|
|
3565
|
+
"code": "Results",
|
|
3566
|
+
"description": "",
|
|
3567
|
+
"type": "Array<AdminAccountWithUserIdResponseData>"
|
|
3568
|
+
}
|
|
3569
|
+
],
|
|
3570
|
+
"extends": null,
|
|
3571
|
+
"description": ""
|
|
3572
|
+
},
|
|
3573
|
+
{
|
|
3574
|
+
"name": "LoginByAdminAccountResponseData",
|
|
3575
|
+
"details": [
|
|
3576
|
+
{
|
|
3577
|
+
"code": "AuthToken",
|
|
3578
|
+
"description": "",
|
|
3579
|
+
"type": "string"
|
|
3580
|
+
}
|
|
3581
|
+
],
|
|
3582
|
+
"extends": null,
|
|
3583
|
+
"description": ""
|
|
3584
|
+
},
|
|
3585
|
+
{
|
|
3586
|
+
"name": "GetServerLogResponseData",
|
|
3587
|
+
"details": [
|
|
3588
|
+
{
|
|
3589
|
+
"code": "Results",
|
|
3590
|
+
"description": "",
|
|
3591
|
+
"type": "Array<string>"
|
|
3592
|
+
}
|
|
3593
|
+
],
|
|
3594
|
+
"extends": null,
|
|
3595
|
+
"description": ""
|
|
3596
|
+
},
|
|
3597
|
+
{
|
|
3598
|
+
"name": "CountryRegionResponseData",
|
|
3599
|
+
"details": [
|
|
3600
|
+
{
|
|
3601
|
+
"code": "RegionCode",
|
|
3602
|
+
"description": "",
|
|
3603
|
+
"type": "string"
|
|
3604
|
+
},
|
|
3605
|
+
{
|
|
3606
|
+
"code": "RegionName",
|
|
3607
|
+
"description": "",
|
|
3608
|
+
"type": "string"
|
|
3609
|
+
},
|
|
3610
|
+
{
|
|
3611
|
+
"code": "CCU",
|
|
3612
|
+
"description": "",
|
|
3613
|
+
"type": "number"
|
|
3614
|
+
},
|
|
3615
|
+
{
|
|
3616
|
+
"code": "Latitude",
|
|
3617
|
+
"description": "",
|
|
3618
|
+
"type": "number",
|
|
3619
|
+
"defaultValue": "0"
|
|
3620
|
+
},
|
|
3621
|
+
{
|
|
3622
|
+
"code": "Longitude",
|
|
3623
|
+
"description": "",
|
|
3624
|
+
"type": "number",
|
|
3625
|
+
"defaultValue": "0"
|
|
3626
|
+
}
|
|
3627
|
+
],
|
|
3628
|
+
"extends": null,
|
|
3629
|
+
"description": ""
|
|
3630
|
+
},
|
|
3631
|
+
{
|
|
3632
|
+
"name": "CountryResponseData",
|
|
3633
|
+
"details": [
|
|
3634
|
+
{
|
|
3635
|
+
"code": "CountryCode",
|
|
3636
|
+
"description": "",
|
|
3637
|
+
"type": "string"
|
|
3638
|
+
},
|
|
3639
|
+
{
|
|
3640
|
+
"code": "Regions",
|
|
3641
|
+
"description": "",
|
|
3642
|
+
"type": "Array<CountryRegionResponseData>"
|
|
3643
|
+
}
|
|
3644
|
+
],
|
|
3645
|
+
"extends": null,
|
|
3646
|
+
"description": ""
|
|
3647
|
+
},
|
|
3648
|
+
{
|
|
3649
|
+
"name": "AnalyticsItemResponseData",
|
|
3650
|
+
"details": [
|
|
3651
|
+
{
|
|
3652
|
+
"code": "CCU",
|
|
3653
|
+
"description": "",
|
|
3654
|
+
"type": "number"
|
|
3655
|
+
},
|
|
3656
|
+
{
|
|
3657
|
+
"code": "DAU",
|
|
3658
|
+
"description": "",
|
|
3659
|
+
"type": "number"
|
|
3660
|
+
},
|
|
3661
|
+
{
|
|
3662
|
+
"code": "DAUSince0h",
|
|
3663
|
+
"description": "",
|
|
3664
|
+
"type": "number"
|
|
3665
|
+
},
|
|
3666
|
+
{
|
|
3667
|
+
"code": "DNU",
|
|
3668
|
+
"description": "",
|
|
3669
|
+
"type": "number"
|
|
3670
|
+
},
|
|
3671
|
+
{
|
|
3672
|
+
"code": "DNUSince0h",
|
|
3673
|
+
"description": "",
|
|
3674
|
+
"type": "number"
|
|
3675
|
+
},
|
|
3676
|
+
{
|
|
3677
|
+
"code": "DRT",
|
|
3678
|
+
"description": "",
|
|
3679
|
+
"type": "number"
|
|
3680
|
+
},
|
|
3681
|
+
{
|
|
3682
|
+
"code": "DRTSince0h",
|
|
3683
|
+
"description": "",
|
|
3684
|
+
"type": "number"
|
|
3685
|
+
},
|
|
3686
|
+
{
|
|
3687
|
+
"code": "MAU",
|
|
3688
|
+
"description": "",
|
|
3689
|
+
"type": "number"
|
|
3690
|
+
},
|
|
3691
|
+
{
|
|
3692
|
+
"code": "MAUSince0h1",
|
|
3693
|
+
"description": "",
|
|
3694
|
+
"type": "number"
|
|
3695
|
+
},
|
|
3696
|
+
{
|
|
3697
|
+
"code": "MNU",
|
|
3698
|
+
"description": "",
|
|
3699
|
+
"type": "number"
|
|
3700
|
+
},
|
|
3701
|
+
{
|
|
3702
|
+
"code": "MNUSince0h1",
|
|
3703
|
+
"description": "",
|
|
3704
|
+
"type": "number"
|
|
3705
|
+
},
|
|
3706
|
+
{
|
|
3707
|
+
"code": "MRT",
|
|
3708
|
+
"description": "",
|
|
3709
|
+
"type": "number"
|
|
3710
|
+
},
|
|
3711
|
+
{
|
|
3712
|
+
"code": "MRTSince0h1",
|
|
3713
|
+
"description": "",
|
|
3714
|
+
"type": "number"
|
|
3715
|
+
},
|
|
3716
|
+
{
|
|
3717
|
+
"code": "AnalyticsPrice",
|
|
3718
|
+
"description": "",
|
|
3719
|
+
"type": "number"
|
|
3720
|
+
}
|
|
3721
|
+
],
|
|
3722
|
+
"extends": null,
|
|
3723
|
+
"description": ""
|
|
3724
|
+
},
|
|
3725
|
+
{
|
|
3726
|
+
"name": "MemoryUsageResponseData",
|
|
3727
|
+
"details": [
|
|
3728
|
+
{
|
|
3729
|
+
"code": "FreeMemoryInBytes",
|
|
3730
|
+
"description": "",
|
|
3731
|
+
"type": "number"
|
|
3732
|
+
},
|
|
3733
|
+
{
|
|
3734
|
+
"code": "TotalMemoryInBytes",
|
|
3735
|
+
"description": "",
|
|
3736
|
+
"type": "number"
|
|
3737
|
+
}
|
|
3738
|
+
],
|
|
3739
|
+
"extends": null,
|
|
3740
|
+
"description": ""
|
|
3741
|
+
},
|
|
3742
|
+
{
|
|
3743
|
+
"name": "StorageUsageResponseData",
|
|
3744
|
+
"details": [
|
|
3745
|
+
{
|
|
3746
|
+
"code": "Name",
|
|
3747
|
+
"description": "",
|
|
3748
|
+
"type": "string"
|
|
3749
|
+
},
|
|
3750
|
+
{
|
|
3751
|
+
"code": "FsTotalSizeInBytes",
|
|
3752
|
+
"description": "",
|
|
3753
|
+
"type": "number"
|
|
3754
|
+
},
|
|
3755
|
+
{
|
|
3756
|
+
"code": "FsUsedSizeInBytes",
|
|
3757
|
+
"description": "",
|
|
3758
|
+
"type": "number"
|
|
3759
|
+
}
|
|
3760
|
+
],
|
|
3761
|
+
"extends": null,
|
|
3762
|
+
"description": ""
|
|
3763
|
+
},
|
|
3764
|
+
{
|
|
3765
|
+
"name": "DatabaseSystemResponseData",
|
|
3766
|
+
"details": [
|
|
3767
|
+
{
|
|
3768
|
+
"code": "FsTotalSizeInBytes",
|
|
3769
|
+
"description": "",
|
|
3770
|
+
"type": "number"
|
|
3771
|
+
},
|
|
3772
|
+
{
|
|
3773
|
+
"code": "FsUsedSizeInBytes",
|
|
3774
|
+
"description": "",
|
|
3775
|
+
"type": "number"
|
|
3776
|
+
},
|
|
3777
|
+
{
|
|
3778
|
+
"code": "TotalSizeInBytes",
|
|
3779
|
+
"description": "",
|
|
3780
|
+
"type": "number"
|
|
3781
|
+
},
|
|
3782
|
+
{
|
|
3783
|
+
"code": "Collections",
|
|
3784
|
+
"description": "",
|
|
3785
|
+
"type": "number"
|
|
3786
|
+
},
|
|
3787
|
+
{
|
|
3788
|
+
"code": "Objects",
|
|
3789
|
+
"description": "",
|
|
3790
|
+
"type": "number"
|
|
3791
|
+
},
|
|
3792
|
+
{
|
|
3793
|
+
"code": "Indexes",
|
|
3794
|
+
"description": "",
|
|
3795
|
+
"type": "number"
|
|
3796
|
+
}
|
|
3797
|
+
],
|
|
3798
|
+
"extends": null,
|
|
3799
|
+
"description": ""
|
|
3800
|
+
},
|
|
3801
|
+
{
|
|
3802
|
+
"name": "OperationSystemResponseData",
|
|
3803
|
+
"details": [
|
|
3804
|
+
{
|
|
3805
|
+
"code": "CpuUsage",
|
|
3806
|
+
"description": "",
|
|
3807
|
+
"type": "number"
|
|
3808
|
+
},
|
|
3809
|
+
{
|
|
3810
|
+
"code": "MemoryUsage",
|
|
3811
|
+
"description": "",
|
|
3812
|
+
"type": "MemoryUsageResponseData"
|
|
3813
|
+
},
|
|
3814
|
+
{
|
|
3815
|
+
"code": "StorageUsage",
|
|
3816
|
+
"description": "",
|
|
3817
|
+
"type": "Array<StorageUsageResponseData>"
|
|
3818
|
+
}
|
|
3819
|
+
],
|
|
3820
|
+
"extends": null,
|
|
3821
|
+
"description": ""
|
|
3822
|
+
},
|
|
3823
|
+
{
|
|
3824
|
+
"name": "RequestCompleteErrorCodeResponseData",
|
|
3825
|
+
"details": [
|
|
3826
|
+
{
|
|
3827
|
+
"code": "ErrorCode",
|
|
3828
|
+
"description": "",
|
|
3829
|
+
"type": "number"
|
|
3830
|
+
},
|
|
3831
|
+
{
|
|
3832
|
+
"code": "Count",
|
|
3833
|
+
"description": "",
|
|
3834
|
+
"type": "number"
|
|
3835
|
+
}
|
|
3836
|
+
],
|
|
3837
|
+
"extends": null,
|
|
3838
|
+
"description": ""
|
|
3839
|
+
},
|
|
3840
|
+
{
|
|
3841
|
+
"name": "RequestCompleteResponseData",
|
|
3842
|
+
"details": [
|
|
3843
|
+
{
|
|
3844
|
+
"code": "EventName",
|
|
3845
|
+
"description": "",
|
|
3846
|
+
"type": "string"
|
|
3847
|
+
},
|
|
3848
|
+
{
|
|
3849
|
+
"code": "Results",
|
|
3850
|
+
"description": "",
|
|
3851
|
+
"type": "Array<RequestCompleteErrorCodeResponseData>"
|
|
3852
|
+
}
|
|
3853
|
+
],
|
|
3854
|
+
"extends": null,
|
|
3855
|
+
"description": ""
|
|
3856
|
+
},
|
|
3857
|
+
{
|
|
3858
|
+
"name": "CostResponseData",
|
|
3859
|
+
"details": [
|
|
3860
|
+
{
|
|
3861
|
+
"code": "RequestCount",
|
|
3862
|
+
"description": "",
|
|
3863
|
+
"type": "number"
|
|
3864
|
+
},
|
|
3865
|
+
{
|
|
3866
|
+
"code": "MatchmakingRequestCount",
|
|
3867
|
+
"description": "",
|
|
3868
|
+
"type": "number"
|
|
3869
|
+
},
|
|
3870
|
+
{
|
|
3871
|
+
"code": "CloudScriptGBs",
|
|
3872
|
+
"description": "",
|
|
3873
|
+
"type": "number"
|
|
3874
|
+
},
|
|
3875
|
+
{
|
|
3876
|
+
"code": "StorageSizeInBytes",
|
|
3877
|
+
"description": "",
|
|
3878
|
+
"type": "number"
|
|
3879
|
+
},
|
|
3880
|
+
{
|
|
3881
|
+
"code": "DataTransferSizeInBytes",
|
|
3882
|
+
"description": "",
|
|
3883
|
+
"type": "number"
|
|
3884
|
+
}
|
|
3885
|
+
],
|
|
3886
|
+
"extends": null,
|
|
3887
|
+
"description": ""
|
|
3888
|
+
},
|
|
3889
|
+
{
|
|
3890
|
+
"name": "GetAnalyticsResponseData",
|
|
3891
|
+
"details": [
|
|
3892
|
+
{
|
|
3893
|
+
"code": "AnalyticsItem",
|
|
3894
|
+
"description": "",
|
|
3895
|
+
"type": "AnalyticsItemResponseData"
|
|
3896
|
+
},
|
|
3897
|
+
{
|
|
3898
|
+
"code": "Country",
|
|
3899
|
+
"description": "",
|
|
3900
|
+
"type": "Array<CountryResponseData>"
|
|
3901
|
+
},
|
|
3902
|
+
{
|
|
3903
|
+
"code": "OperationSystem",
|
|
3904
|
+
"description": "",
|
|
3905
|
+
"type": "OperationSystemResponseData"
|
|
3906
|
+
},
|
|
3907
|
+
{
|
|
3908
|
+
"code": "RequestComplete",
|
|
3909
|
+
"description": "",
|
|
3910
|
+
"type": "Array<RequestCompleteResponseData>"
|
|
3911
|
+
},
|
|
3912
|
+
{
|
|
3913
|
+
"code": "DatabaseSystem",
|
|
3914
|
+
"description": "",
|
|
3915
|
+
"type": "DatabaseSystemResponseData"
|
|
3916
|
+
},
|
|
3917
|
+
{
|
|
3918
|
+
"code": "LogDatabaseSystem",
|
|
3919
|
+
"description": "",
|
|
3920
|
+
"type": "DatabaseSystemResponseData"
|
|
3921
|
+
},
|
|
3922
|
+
{
|
|
3923
|
+
"code": "Cost",
|
|
3924
|
+
"description": "",
|
|
3925
|
+
"type": "CostResponseData"
|
|
3926
|
+
},
|
|
3927
|
+
{
|
|
3928
|
+
"code": "MonthlyCost",
|
|
3929
|
+
"description": "",
|
|
3930
|
+
"type": "CostResponseData"
|
|
3931
|
+
}
|
|
3932
|
+
],
|
|
3933
|
+
"extends": null,
|
|
3934
|
+
"description": ""
|
|
3935
|
+
},
|
|
3936
|
+
{
|
|
3937
|
+
"name": "GetUsernameAdminAccountResponseData",
|
|
3938
|
+
"details": [
|
|
3939
|
+
{
|
|
3940
|
+
"code": "Username",
|
|
3941
|
+
"description": "",
|
|
3942
|
+
"type": "string"
|
|
3943
|
+
}
|
|
3944
|
+
],
|
|
3945
|
+
"extends": null,
|
|
3946
|
+
"description": ""
|
|
3947
|
+
},
|
|
3948
|
+
{
|
|
3949
|
+
"name": "ChildScriptResponseData",
|
|
3950
|
+
"details": [
|
|
3951
|
+
{
|
|
3952
|
+
"code": "EventName",
|
|
3953
|
+
"description": "",
|
|
3954
|
+
"type": "string"
|
|
3955
|
+
},
|
|
3956
|
+
{
|
|
3957
|
+
"code": "Script",
|
|
3958
|
+
"description": "",
|
|
3959
|
+
"type": "string"
|
|
3960
|
+
},
|
|
3961
|
+
{
|
|
3962
|
+
"code": "HasEdit",
|
|
3963
|
+
"description": "",
|
|
3964
|
+
"type": "boolean"
|
|
3965
|
+
}
|
|
3966
|
+
],
|
|
3967
|
+
"extends": null,
|
|
3968
|
+
"description": ""
|
|
3969
|
+
},
|
|
3970
|
+
{
|
|
3971
|
+
"name": "EventCallbackCloudScriptResponseData",
|
|
3972
|
+
"details": [
|
|
3973
|
+
{
|
|
3974
|
+
"code": "Type",
|
|
3975
|
+
"description": "",
|
|
3976
|
+
"type": "string"
|
|
3977
|
+
},
|
|
3978
|
+
{
|
|
3979
|
+
"code": "TsCreate",
|
|
3980
|
+
"description": "",
|
|
3981
|
+
"type": "number"
|
|
3982
|
+
},
|
|
3983
|
+
{
|
|
3984
|
+
"code": "Version",
|
|
3985
|
+
"description": "",
|
|
3986
|
+
"type": "string"
|
|
3987
|
+
},
|
|
3988
|
+
{
|
|
3989
|
+
"code": "ChildScripts",
|
|
3990
|
+
"description": "",
|
|
3991
|
+
"type": "Array<ChildScriptResponseData>"
|
|
3992
|
+
}
|
|
3993
|
+
],
|
|
3994
|
+
"extends": null,
|
|
3995
|
+
"description": ""
|
|
3996
|
+
},
|
|
3997
|
+
{
|
|
3998
|
+
"name": "GetEventCallbackCloudScriptResponseData",
|
|
3999
|
+
"details": [
|
|
4000
|
+
{
|
|
4001
|
+
"code": "Results",
|
|
4002
|
+
"description": "",
|
|
4003
|
+
"type": "Array<EventCallbackCloudScriptResponseData>"
|
|
4004
|
+
}
|
|
4005
|
+
],
|
|
4006
|
+
"extends": null,
|
|
4007
|
+
"description": ""
|
|
4008
|
+
},
|
|
4009
|
+
{
|
|
4010
|
+
"name": "SetEventCallbackCloudScriptResponseData",
|
|
4011
|
+
"details": [
|
|
4012
|
+
{
|
|
4013
|
+
"code": "ErrorMessage",
|
|
4014
|
+
"description": "",
|
|
4015
|
+
"type": "string"
|
|
4016
|
+
}
|
|
4017
|
+
],
|
|
4018
|
+
"extends": null,
|
|
4019
|
+
"description": ""
|
|
4020
|
+
},
|
|
4021
|
+
{
|
|
4022
|
+
"name": "BackupStatisticsLeaderboardVersionResponseData",
|
|
4023
|
+
"details": [
|
|
4024
|
+
{
|
|
4025
|
+
"code": "Version",
|
|
4026
|
+
"description": "",
|
|
4027
|
+
"type": "string"
|
|
4028
|
+
},
|
|
4029
|
+
{
|
|
4030
|
+
"code": "Log",
|
|
4031
|
+
"description": "",
|
|
4032
|
+
"type": "string"
|
|
4033
|
+
},
|
|
4034
|
+
{
|
|
4035
|
+
"code": "TsCreate",
|
|
4036
|
+
"description": "",
|
|
4037
|
+
"type": "number"
|
|
4038
|
+
}
|
|
4039
|
+
],
|
|
4040
|
+
"extends": null,
|
|
4041
|
+
"description": ""
|
|
4042
|
+
},
|
|
4043
|
+
{
|
|
4044
|
+
"name": "GetBackupStatisticsLeaderboardVersionResponseData",
|
|
4045
|
+
"details": [
|
|
4046
|
+
{
|
|
4047
|
+
"code": "Results",
|
|
4048
|
+
"description": "",
|
|
4049
|
+
"type": "Array<BackupStatisticsLeaderboardVersionResponseData>"
|
|
4050
|
+
}
|
|
4051
|
+
],
|
|
4052
|
+
"extends": null,
|
|
4053
|
+
"description": ""
|
|
4054
|
+
},
|
|
4055
|
+
{
|
|
4056
|
+
"name": "GetServerGameDataResponseData",
|
|
4057
|
+
"details": [
|
|
4058
|
+
{
|
|
4059
|
+
"code": "MasterPlayerCount",
|
|
4060
|
+
"description": "",
|
|
4061
|
+
"type": "number"
|
|
4062
|
+
},
|
|
4063
|
+
{
|
|
4064
|
+
"code": "GamePlayerCount",
|
|
4065
|
+
"description": "",
|
|
4066
|
+
"type": "number"
|
|
4067
|
+
},
|
|
4068
|
+
{
|
|
4069
|
+
"code": "CharacterPlayerCount",
|
|
4070
|
+
"description": "",
|
|
4071
|
+
"type": "number"
|
|
4072
|
+
},
|
|
4073
|
+
{
|
|
4074
|
+
"code": "InventoryCount",
|
|
4075
|
+
"description": "",
|
|
4076
|
+
"type": "number"
|
|
4077
|
+
},
|
|
4078
|
+
{
|
|
4079
|
+
"code": "StoreInventoryCount",
|
|
4080
|
+
"description": "",
|
|
4081
|
+
"type": "number"
|
|
4082
|
+
},
|
|
4083
|
+
{
|
|
4084
|
+
"code": "GroupCount",
|
|
4085
|
+
"description": "",
|
|
4086
|
+
"type": "number"
|
|
4087
|
+
},
|
|
4088
|
+
{
|
|
4089
|
+
"code": "Country",
|
|
4090
|
+
"description": "",
|
|
4091
|
+
"type": "Array<CountryResponseData>"
|
|
4092
|
+
},
|
|
4093
|
+
{
|
|
4094
|
+
"code": "Version",
|
|
4095
|
+
"description": "",
|
|
4096
|
+
"type": "string"
|
|
4097
|
+
}
|
|
4098
|
+
],
|
|
4099
|
+
"extends": null,
|
|
4100
|
+
"description": ""
|
|
4101
|
+
},
|
|
4102
|
+
{
|
|
4103
|
+
"name": "EmptyResponseData",
|
|
4104
|
+
"details": [],
|
|
4105
|
+
"extends": null,
|
|
4106
|
+
"description": ""
|
|
4107
|
+
}
|
|
4108
|
+
]
|
|
4109
|
+
}
|