@xmobitea/gn-typescript-client 2.6.9 → 2.6.10-tsc

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (201) hide show
  1. package/dist/index.js +337 -34162
  2. package/dist/runtime/GNNetwork.js +250 -0
  3. package/dist/runtime/GNNetworkAuthenticateApi.js +122 -0
  4. package/dist/runtime/GNNetworkCharacterPlayerApi.js +968 -0
  5. package/dist/runtime/GNNetworkCloudScriptApi.js +104 -0
  6. package/dist/runtime/GNNetworkContentApi.js +140 -0
  7. package/dist/runtime/GNNetworkDashboardApi.js +170 -0
  8. package/dist/runtime/GNNetworkGamePlayerApi.js +950 -0
  9. package/dist/runtime/GNNetworkGroupApi.js +734 -0
  10. package/dist/runtime/GNNetworkInventoryApi.js +626 -0
  11. package/dist/runtime/GNNetworkMasterPlayerApi.js +1550 -0
  12. package/dist/runtime/GNNetworkMultiplayerApi.js +194 -0
  13. package/dist/runtime/GNNetworkStoreInventoryApi.js +266 -0
  14. package/dist/runtime/common/Action0.js +1 -0
  15. package/dist/runtime/common/Action1.js +1 -0
  16. package/dist/runtime/common/Action2.js +1 -0
  17. package/dist/runtime/common/Action3.js +1 -0
  18. package/dist/runtime/common/Action4.js +1 -0
  19. package/dist/runtime/common/GNData.js +211 -0
  20. package/dist/runtime/config/GNServerSettings.d.ts +3 -0
  21. package/dist/runtime/config/GNServerSettings.js +156 -0
  22. package/dist/runtime/constant/Commands.d.ts +1 -0
  23. package/dist/runtime/constant/Commands.js +20 -0
  24. package/dist/runtime/constant/EventCode.js +8 -0
  25. package/dist/runtime/constant/OperationCode.js +221 -0
  26. package/dist/runtime/constant/ReturnCode.js +14 -0
  27. package/dist/runtime/constant/enumType/ExecuteResponseStatus.js +8 -0
  28. package/dist/runtime/constant/enumType/FriendStatus.js +7 -0
  29. package/dist/runtime/constant/enumType/GoogleLoginType.js +5 -0
  30. package/dist/runtime/constant/enumType/GroupStatus.js +7 -0
  31. package/dist/runtime/constant/enumType/InvalidMemberType.js +18 -0
  32. package/dist/runtime/constant/enumType/ItemType.js +5 -0
  33. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +6 -0
  34. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +8 -0
  35. package/dist/runtime/constant/enumType/OwnerType.js +9 -0
  36. package/dist/runtime/constant/enumType/PermissionDataItem.js +5 -0
  37. package/dist/runtime/constant/enumType/PushPlatformType.js +5 -0
  38. package/dist/runtime/constant/enumType/RequestRole.js +6 -0
  39. package/dist/runtime/constant/enumType/RequestType.js +15 -0
  40. package/dist/runtime/constant/enumType/StoreItemType.js +5 -0
  41. package/dist/runtime/constant/enumType/StoreReceiveType.js +8 -0
  42. package/dist/runtime/constant/errorCode/ErrorCode.js +52 -0
  43. package/dist/runtime/constant/parameterCode/ParameterCode.js +617 -0
  44. package/dist/runtime/entity/DataMember.js +208 -0
  45. package/dist/runtime/entity/GNMetadata.js +11 -0
  46. package/dist/runtime/entity/InvalidMember.js +1 -0
  47. package/dist/runtime/entity/OperationEvent.js +24 -0
  48. package/dist/runtime/entity/OperationHelper.js +24 -0
  49. package/dist/runtime/entity/OperationRequest.js +42 -0
  50. package/dist/runtime/entity/OperationResponse.js +73 -0
  51. package/dist/runtime/entity/models/AuthenticateModels.js +426 -0
  52. package/dist/runtime/entity/models/AuthenticateRequestModels.js +188 -0
  53. package/dist/runtime/entity/models/AuthenticateResponseModels.js +131 -0
  54. package/dist/runtime/entity/models/CharacterPlayerModels.js +1433 -0
  55. package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +1386 -0
  56. package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +376 -0
  57. package/dist/runtime/entity/models/CloudScriptModels.js +197 -0
  58. package/dist/runtime/entity/models/CloudScriptRequestModels.js +138 -0
  59. package/dist/runtime/entity/models/CloudScriptResponseModels.js +40 -0
  60. package/dist/runtime/entity/models/ContentModels.js +203 -0
  61. package/dist/runtime/entity/models/ContentRequestModels.js +190 -0
  62. package/dist/runtime/entity/models/ContentResponseModels.js +54 -0
  63. package/dist/runtime/entity/models/DashboardModels.js +3002 -0
  64. package/dist/runtime/entity/models/DashboardRequestModels.js +268 -0
  65. package/dist/runtime/entity/models/DashboardResponseModels.js +187 -0
  66. package/dist/runtime/entity/models/GamePlayerModels.js +1591 -0
  67. package/dist/runtime/entity/models/GamePlayerRequestModels.js +1360 -0
  68. package/dist/runtime/entity/models/GamePlayerResponseModels.js +369 -0
  69. package/dist/runtime/entity/models/GenericModels.js +177 -0
  70. package/dist/runtime/entity/models/GroupModels.js +1135 -0
  71. package/dist/runtime/entity/models/GroupRequestModels.js +1048 -0
  72. package/dist/runtime/entity/models/GroupResponseModels.js +285 -0
  73. package/dist/runtime/entity/models/InventoryModels.js +915 -0
  74. package/dist/runtime/entity/models/InventoryRequestModels.js +892 -0
  75. package/dist/runtime/entity/models/InventoryResponseModels.js +243 -0
  76. package/dist/runtime/entity/models/MasterPlayerModels.js +2573 -0
  77. package/dist/runtime/entity/models/MasterPlayerRequestModels.js +2228 -0
  78. package/dist/runtime/entity/models/MasterPlayerResponseModels.js +607 -0
  79. package/dist/runtime/entity/models/MultiplayerModels.js +404 -0
  80. package/dist/runtime/entity/models/MultiplayerRequestModels.js +268 -0
  81. package/dist/runtime/entity/models/MultiplayerResponseModels.js +75 -0
  82. package/dist/runtime/entity/models/StoreInventoryModels.js +797 -0
  83. package/dist/runtime/entity/models/StoreInventoryRequestModels.js +372 -0
  84. package/dist/runtime/entity/models/StoreInventoryResponseModels.js +103 -0
  85. package/dist/runtime/entity/request/CustomOperationRequest.js +24 -0
  86. package/dist/runtime/entity/response/CustomOperationResponse.js +29 -0
  87. package/dist/runtime/entity/response/GetAuthInfoResponse.js +2 -0
  88. package/dist/runtime/entity/response/UploadFileResponse.js +2 -0
  89. package/dist/runtime/helper/CodeHelper.js +63 -0
  90. package/dist/runtime/helper/ConverterService.js +275 -0
  91. package/dist/runtime/helper/EnumUtility.js +33 -0
  92. package/dist/runtime/helper/GNSupport.js +8 -0
  93. package/dist/runtime/helper/GNUtils.js +72 -0
  94. package/dist/runtime/helper/MessagePackConverterService.js +9 -0
  95. package/dist/runtime/logger/GNDebug.js +29 -0
  96. package/dist/runtime/networking/AuthenticateStatus.js +14 -0
  97. package/dist/runtime/networking/IPeer.js +1 -0
  98. package/dist/runtime/networking/NetworkingPeer.js +178 -0
  99. package/dist/runtime/networking/OperationPending.js +53 -0
  100. package/dist/runtime/networking/PeerBase.js +161 -0
  101. package/dist/runtime/networking/handler/IServerEventHandler.js +13 -0
  102. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +39 -0
  103. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +39 -0
  104. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +39 -0
  105. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +39 -0
  106. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +35 -0
  107. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +43 -0
  108. package/dist/runtime/networking/http/HttpPeer.js +123 -0
  109. package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +2 -0
  110. package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +9 -0
  111. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +179 -0
  112. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +130 -0
  113. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +165 -0
  114. package/dist/runtime/networking/socket/SocketPeer.js +115 -0
  115. package/dist/runtime/typescript/ServiceUpdate.js +12 -0
  116. package/package.json +1 -1
  117. package/dist/gearn.js.client.js +0 -46884
  118. package/dist/gearn.js.client.min.js +0 -2
  119. package/dist/gearn.js.client.min.js.LICENSE.txt +0 -14
  120. package/responseModel/chatgpt/Authenticate.json +0 -724
  121. package/responseModel/chatgpt/CharacterPlayer.json +0 -1890
  122. package/responseModel/chatgpt/CloudScript.json +0 -254
  123. package/responseModel/chatgpt/Content.json +0 -273
  124. package/responseModel/chatgpt/Dashboard.json +0 -4110
  125. package/responseModel/chatgpt/GamePlayer.json +0 -2306
  126. package/responseModel/chatgpt/Generic.json +0 -253
  127. package/responseModel/chatgpt/Group.json +0 -1509
  128. package/responseModel/chatgpt/Inventory.json +0 -1211
  129. package/responseModel/chatgpt/MasterPlayer.json +0 -3801
  130. package/responseModel/chatgpt/Multiplayer.json +0 -634
  131. package/responseModel/chatgpt/StoreInventory.json +0 -1099
  132. package/responseModel/clients/AuthenticateModels.json +0 -271
  133. package/responseModel/clients/CharacterPlayerModels.json +0 -792
  134. package/responseModel/clients/CloudScriptModels.json +0 -191
  135. package/responseModel/clients/ContentModels.json +0 -178
  136. package/responseModel/clients/DashboardModels.json +0 -5423
  137. package/responseModel/clients/GamePlayerModels.json +0 -781
  138. package/responseModel/clients/GenericModels.json +0 -344
  139. package/responseModel/clients/GroupModels.json +0 -705
  140. package/responseModel/clients/InventoryModels.json +0 -568
  141. package/responseModel/clients/MasterPlayerModels.json +0 -1281
  142. package/responseModel/clients/MultiplayerModels.json +0 -439
  143. package/responseModel/clients/StoreInventoryModels.json +0 -971
  144. package/responseModel/finalChatgpt/Authenticate.json +0 -1475
  145. package/responseModel/finalChatgpt/CharacterPlayer.json +0 -4104
  146. package/responseModel/finalChatgpt/CloudScript.json +0 -515
  147. package/responseModel/finalChatgpt/Content.json +0 -536
  148. package/responseModel/finalChatgpt/Dashboard.json +0 -6712
  149. package/responseModel/finalChatgpt/GamePlayer.json +0 -5142
  150. package/responseModel/finalChatgpt/Generic.json +0 -333
  151. package/responseModel/finalChatgpt/Group.json +0 -3232
  152. package/responseModel/finalChatgpt/Inventory.json +0 -2606
  153. package/responseModel/finalChatgpt/MasterPlayer.json +0 -8385
  154. package/responseModel/finalChatgpt/Multiplayer.json +0 -1196
  155. package/responseModel/finalChatgpt/StoreInventory.json +0 -2085
  156. package/responseModel/finals/Authenticate.json +0 -1460
  157. package/responseModel/finals/CharacterPlayer.json +0 -3639
  158. package/responseModel/finals/CloudScript.json +0 -465
  159. package/responseModel/finals/Content.json +0 -479
  160. package/responseModel/finals/Dashboard.json +0 -6718
  161. package/responseModel/finals/GamePlayer.json +0 -4291
  162. package/responseModel/finals/Generic.json +0 -345
  163. package/responseModel/finals/Group.json +0 -2885
  164. package/responseModel/finals/Inventory.json +0 -2309
  165. package/responseModel/finals/MasterPlayer.json +0 -7018
  166. package/responseModel/finals/Multiplayer.json +0 -1082
  167. package/responseModel/finals/StoreInventory.json +0 -1979
  168. package/responseModel/finalsShort/Authenticate.json +0 -723
  169. package/responseModel/finalsShort/CharacterPlayer.json +0 -1889
  170. package/responseModel/finalsShort/CloudScript.json +0 -253
  171. package/responseModel/finalsShort/Content.json +0 -272
  172. package/responseModel/finalsShort/Dashboard.json +0 -4109
  173. package/responseModel/finalsShort/GamePlayer.json +0 -2305
  174. package/responseModel/finalsShort/Generic.json +0 -252
  175. package/responseModel/finalsShort/Group.json +0 -1508
  176. package/responseModel/finalsShort/Inventory.json +0 -1210
  177. package/responseModel/finalsShort/MasterPlayer.json +0 -3800
  178. package/responseModel/finalsShort/Multiplayer.json +0 -633
  179. package/responseModel/finalsShort/StoreInventory.json +0 -1098
  180. package/responseModel/operationResponse/AuthenticateResponseModels.json +0 -77
  181. package/responseModel/operationResponse/CharacterPlayerResponseModels.json +0 -217
  182. package/responseModel/operationResponse/CloudScriptResponseModels.json +0 -25
  183. package/responseModel/operationResponse/ContentResponseModels.json +0 -33
  184. package/responseModel/operationResponse/DashboardResponseModels.json +0 -109
  185. package/responseModel/operationResponse/GamePlayerResponseModels.json +0 -213
  186. package/responseModel/operationResponse/GroupResponseModels.json +0 -165
  187. package/responseModel/operationResponse/InventoryResponseModels.json +0 -141
  188. package/responseModel/operationResponse/MasterPlayerResponseModels.json +0 -349
  189. package/responseModel/operationResponse/MultiplayerResponseModels.json +0 -45
  190. package/responseModel/operationResponse/StoreInventoryResponseModels.json +0 -61
  191. package/responseModel/servers/Authenticate.json +0 -1328
  192. package/responseModel/servers/CharacterPlayer.json +0 -3199
  193. package/responseModel/servers/CloudScript.json +0 -278
  194. package/responseModel/servers/Content.json +0 -324
  195. package/responseModel/servers/GamePlayer.json +0 -3844
  196. package/responseModel/servers/Group.json +0 -2454
  197. package/responseModel/servers/Inventory.json +0 -1964
  198. package/responseModel/servers/MasterAdmin.json +0 -5569
  199. package/responseModel/servers/MasterPlayer.json +0 -5924
  200. package/responseModel/servers/Multiplayer.json +0 -545
  201. package/responseModel/servers/StoreInventory.json +0 -1290
@@ -1,2305 +0,0 @@
1
- {
2
- "requestType": "GamePlayer",
3
- "operations": [
4
- {
5
- "operationCode": "AddPlayerFriend",
6
- "details": [
7
- {
8
- "role": "Client",
9
- "requestData": [
10
- {
11
- "code": "UserId",
12
- "description": "",
13
- "type": "string"
14
- },
15
- {
16
- "code": "FriendId",
17
- "description": "",
18
- "type": "string"
19
- },
20
- {
21
- "code": "CatalogId",
22
- "description": "",
23
- "type": "string"
24
- }
25
- ]
26
- },
27
- {
28
- "role": "Server",
29
- "requestData": [
30
- {
31
- "code": "UserId",
32
- "description": "",
33
- "type": "string"
34
- }
35
- ]
36
- }
37
- ],
38
- "description": ""
39
- },
40
- {
41
- "operationCode": "AddSegment",
42
- "details": [
43
- {
44
- "role": "Client",
45
- "requestData": [
46
- {
47
- "code": "UserId",
48
- "description": "",
49
- "type": "string"
50
- },
51
- {
52
- "code": "Value",
53
- "description": "",
54
- "type": "string"
55
- }
56
- ]
57
- },
58
- {
59
- "role": "Server",
60
- "requestData": [
61
- {
62
- "code": "UserId",
63
- "description": "",
64
- "type": "string"
65
- }
66
- ]
67
- }
68
- ],
69
- "description": ""
70
- },
71
- {
72
- "operationCode": "ChangePlayerCurrency",
73
- "details": [
74
- {
75
- "role": "Client",
76
- "requestData": [
77
- {
78
- "code": "UserId",
79
- "description": "",
80
- "type": "string"
81
- },
82
- {
83
- "code": "PlayerCurrencies",
84
- "description": "",
85
- "type": "Array<PlayerCurrencyParam>"
86
- },
87
- {
88
- "code": "Log",
89
- "description": "",
90
- "type": "string"
91
- }
92
- ]
93
- },
94
- {
95
- "role": "Server",
96
- "requestData": [
97
- {
98
- "code": "UserId",
99
- "description": "",
100
- "type": "string"
101
- }
102
- ]
103
- }
104
- ],
105
- "description": ""
106
- },
107
- {
108
- "operationCode": "ChangePlayerStatistics",
109
- "details": [
110
- {
111
- "role": "Client",
112
- "requestData": [
113
- {
114
- "code": "UserId",
115
- "description": "",
116
- "type": "string"
117
- },
118
- {
119
- "code": "PlayerStatistics",
120
- "description": "",
121
- "type": "Array<PlayerStatisticsParam>"
122
- },
123
- {
124
- "code": "Log",
125
- "description": "",
126
- "type": "string"
127
- }
128
- ]
129
- },
130
- {
131
- "role": "Server",
132
- "requestData": [
133
- {
134
- "code": "UserId",
135
- "description": "",
136
- "type": "string"
137
- }
138
- ]
139
- }
140
- ],
141
- "description": ""
142
- },
143
- {
144
- "operationCode": "CreateGroup",
145
- "details": [
146
- {
147
- "role": "Client",
148
- "requestData": [
149
- {
150
- "code": "UserId",
151
- "description": "",
152
- "type": "string"
153
- },
154
- {
155
- "code": "CatalogId",
156
- "description": "",
157
- "type": "string"
158
- },
159
- {
160
- "code": "GroupMembers",
161
- "description": "",
162
- "type": "Array<GroupMemberParam>"
163
- },
164
- {
165
- "code": "DisplayName",
166
- "description": "",
167
- "type": "string",
168
- "defaultValue": "\"\""
169
- }
170
- ]
171
- },
172
- {
173
- "role": "Server",
174
- "requestData": [
175
- {
176
- "code": "UserId",
177
- "description": "",
178
- "type": "string"
179
- }
180
- ]
181
- }
182
- ],
183
- "description": ""
184
- },
185
- {
186
- "operationCode": "CreatePlayerCharacter",
187
- "details": [
188
- {
189
- "role": "Client",
190
- "requestData": [
191
- {
192
- "code": "UserId",
193
- "description": "",
194
- "type": "string"
195
- },
196
- {
197
- "code": "CatalogId",
198
- "description": "",
199
- "type": "string"
200
- },
201
- {
202
- "code": "DisplayName",
203
- "description": "",
204
- "type": "string",
205
- "defaultValue": "\"\""
206
- },
207
- {
208
- "code": "UniqueDisplayName",
209
- "description": "",
210
- "type": "boolean",
211
- "defaultValue": "false"
212
- }
213
- ]
214
- },
215
- {
216
- "role": "Server",
217
- "requestData": [
218
- {
219
- "code": "UserId",
220
- "description": "",
221
- "type": "string"
222
- }
223
- ]
224
- }
225
- ],
226
- "description": ""
227
- },
228
- {
229
- "operationCode": "CreatePlayerItem",
230
- "details": [
231
- {
232
- "role": "Client",
233
- "requestData": [
234
- {
235
- "code": "UserId",
236
- "description": "",
237
- "type": "string"
238
- },
239
- {
240
- "code": "CatalogId",
241
- "description": "",
242
- "type": "string"
243
- },
244
- {
245
- "code": "ClassId",
246
- "description": "",
247
- "type": "string"
248
- },
249
- {
250
- "code": "DisplayName",
251
- "description": "",
252
- "type": "string",
253
- "defaultValue": "\"\""
254
- },
255
- {
256
- "code": "Amount",
257
- "description": "",
258
- "type": "number",
259
- "defaultValue": "1"
260
- }
261
- ]
262
- },
263
- {
264
- "role": "Server",
265
- "requestData": [
266
- {
267
- "code": "UserId",
268
- "description": "",
269
- "type": "string"
270
- }
271
- ]
272
- }
273
- ],
274
- "description": ""
275
- },
276
- {
277
- "operationCode": "GetAvatar",
278
- "details": [
279
- {
280
- "role": "Client",
281
- "requestData": [
282
- {
283
- "code": "UserId",
284
- "description": "",
285
- "type": "string"
286
- }
287
- ]
288
- },
289
- {
290
- "role": "Server",
291
- "requestData": [
292
- {
293
- "code": "UserId",
294
- "description": "",
295
- "type": "string"
296
- }
297
- ]
298
- }
299
- ],
300
- "description": ""
301
- },
302
- {
303
- "operationCode": "GetCountryCode",
304
- "details": [
305
- {
306
- "role": "Client",
307
- "requestData": [
308
- {
309
- "code": "UserId",
310
- "description": "",
311
- "type": "string"
312
- }
313
- ]
314
- },
315
- {
316
- "role": "Server",
317
- "requestData": [
318
- {
319
- "code": "UserId",
320
- "description": "",
321
- "type": "string"
322
- }
323
- ]
324
- }
325
- ],
326
- "description": ""
327
- },
328
- {
329
- "operationCode": "GetCreateLeaderboard",
330
- "details": [
331
- {
332
- "role": "Client",
333
- "requestData": [
334
- {
335
- "code": "InfoRequestParam",
336
- "description": "",
337
- "type": "InfoRequestParam"
338
- },
339
- {
340
- "code": "Skip",
341
- "description": "",
342
- "type": "number",
343
- "defaultValue": "0"
344
- },
345
- {
346
- "code": "Limit",
347
- "description": "",
348
- "type": "number",
349
- "defaultValue": "10"
350
- },
351
- {
352
- "code": "LoadFromCache",
353
- "description": "",
354
- "type": "boolean",
355
- "defaultValue": "true"
356
- }
357
- ]
358
- }
359
- ],
360
- "description": ""
361
- },
362
- {
363
- "operationCode": "GetCurrencyLeaderboard",
364
- "details": [
365
- {
366
- "role": "Client",
367
- "requestData": [
368
- {
369
- "code": "Key",
370
- "description": "",
371
- "type": "string"
372
- },
373
- {
374
- "code": "InfoRequestParam",
375
- "description": "",
376
- "type": "InfoRequestParam"
377
- },
378
- {
379
- "code": "Skip",
380
- "description": "",
381
- "type": "number",
382
- "defaultValue": "0"
383
- },
384
- {
385
- "code": "Limit",
386
- "description": "",
387
- "type": "number",
388
- "defaultValue": "10"
389
- },
390
- {
391
- "code": "LoadFromCache",
392
- "description": "",
393
- "type": "boolean",
394
- "defaultValue": "true"
395
- }
396
- ]
397
- }
398
- ],
399
- "description": ""
400
- },
401
- {
402
- "operationCode": "GetCurrencyLog",
403
- "details": [
404
- {
405
- "role": "Client",
406
- "requestData": [
407
- {
408
- "code": "Keys",
409
- "description": "",
410
- "type": "Array<string>"
411
- },
412
- {
413
- "code": "UserId",
414
- "description": "",
415
- "type": "string"
416
- },
417
- {
418
- "code": "Limit",
419
- "description": "",
420
- "type": "number",
421
- "defaultValue": "10"
422
- },
423
- {
424
- "code": "Token",
425
- "description": "",
426
- "type": "string"
427
- }
428
- ]
429
- }
430
- ],
431
- "description": ""
432
- },
433
- {
434
- "operationCode": "GetCustomData",
435
- "details": [
436
- {
437
- "role": "Client",
438
- "requestData": [
439
- {
440
- "code": "UserId",
441
- "description": "",
442
- "type": "string"
443
- },
444
- {
445
- "code": "CustomDataKeys",
446
- "description": "",
447
- "type": "Array<string>"
448
- }
449
- ]
450
- },
451
- {
452
- "role": "Server",
453
- "requestData": [
454
- {
455
- "code": "UserId",
456
- "description": "",
457
- "type": "string"
458
- }
459
- ]
460
- }
461
- ],
462
- "description": ""
463
- },
464
- {
465
- "operationCode": "GetDisplayName",
466
- "details": [
467
- {
468
- "role": "Client",
469
- "requestData": [
470
- {
471
- "code": "UserId",
472
- "description": "",
473
- "type": "string"
474
- }
475
- ]
476
- },
477
- {
478
- "role": "Server",
479
- "requestData": [
480
- {
481
- "code": "UserId",
482
- "description": "",
483
- "type": "string"
484
- }
485
- ]
486
- }
487
- ],
488
- "description": ""
489
- },
490
- {
491
- "operationCode": "GetFriendStatisticsLeaderboardAroundPlayer",
492
- "details": [
493
- {
494
- "role": "Client",
495
- "requestData": [
496
- {
497
- "code": "UserId",
498
- "description": "",
499
- "type": "string"
500
- },
501
- {
502
- "code": "Key",
503
- "description": "",
504
- "type": "string"
505
- },
506
- {
507
- "code": "InfoRequestParam",
508
- "description": "",
509
- "type": "InfoRequestParam"
510
- },
511
- {
512
- "code": "Skip",
513
- "description": "",
514
- "type": "number",
515
- "defaultValue": "0"
516
- },
517
- {
518
- "code": "Limit",
519
- "description": "",
520
- "type": "number",
521
- "defaultValue": "10"
522
- },
523
- {
524
- "code": "LoadFromCache",
525
- "description": "",
526
- "type": "boolean",
527
- "defaultValue": "true"
528
- }
529
- ]
530
- },
531
- {
532
- "role": "Server",
533
- "requestData": [
534
- {
535
- "code": "UserId",
536
- "description": "",
537
- "type": "string"
538
- }
539
- ]
540
- }
541
- ],
542
- "description": ""
543
- },
544
- {
545
- "operationCode": "GetFriendStatisticsLeaderboard",
546
- "details": [
547
- {
548
- "role": "Client",
549
- "requestData": [
550
- {
551
- "code": "UserId",
552
- "description": "",
553
- "type": "string"
554
- },
555
- {
556
- "code": "Key",
557
- "description": "",
558
- "type": "string"
559
- },
560
- {
561
- "code": "InfoRequestParam",
562
- "description": "",
563
- "type": "InfoRequestParam"
564
- },
565
- {
566
- "code": "Skip",
567
- "description": "",
568
- "type": "number",
569
- "defaultValue": "0"
570
- },
571
- {
572
- "code": "Limit",
573
- "description": "",
574
- "type": "number",
575
- "defaultValue": "10"
576
- },
577
- {
578
- "code": "LoadFromCache",
579
- "description": "",
580
- "type": "boolean",
581
- "defaultValue": "true"
582
- }
583
- ]
584
- },
585
- {
586
- "role": "Server",
587
- "requestData": [
588
- {
589
- "code": "UserId",
590
- "description": "",
591
- "type": "string"
592
- }
593
- ]
594
- }
595
- ],
596
- "description": ""
597
- },
598
- {
599
- "operationCode": "GetIpAddressCreate",
600
- "details": [
601
- {
602
- "role": "Client",
603
- "requestData": [
604
- {
605
- "code": "UserId",
606
- "description": "",
607
- "type": "string"
608
- }
609
- ]
610
- },
611
- {
612
- "role": "Server",
613
- "requestData": [
614
- {
615
- "code": "UserId",
616
- "description": "",
617
- "type": "string"
618
- }
619
- ]
620
- }
621
- ],
622
- "description": ""
623
- },
624
- {
625
- "operationCode": "GetLastLoginLeaderboard",
626
- "details": [
627
- {
628
- "role": "Client",
629
- "requestData": [
630
- {
631
- "code": "InfoRequestParam",
632
- "description": "",
633
- "type": "InfoRequestParam"
634
- },
635
- {
636
- "code": "Skip",
637
- "description": "",
638
- "type": "number",
639
- "defaultValue": "0"
640
- },
641
- {
642
- "code": "Limit",
643
- "description": "",
644
- "type": "number",
645
- "defaultValue": "10"
646
- },
647
- {
648
- "code": "LoadFromCache",
649
- "description": "",
650
- "type": "boolean",
651
- "defaultValue": "true"
652
- }
653
- ]
654
- }
655
- ],
656
- "description": ""
657
- },
658
- {
659
- "operationCode": "GetOnlineStatus",
660
- "details": [
661
- {
662
- "role": "Client",
663
- "requestData": [
664
- {
665
- "code": "UserId",
666
- "description": "",
667
- "type": "string"
668
- }
669
- ]
670
- },
671
- {
672
- "role": "Server",
673
- "requestData": [
674
- {
675
- "code": "UserId",
676
- "description": "",
677
- "type": "string"
678
- }
679
- ]
680
- }
681
- ],
682
- "description": ""
683
- },
684
- {
685
- "operationCode": "GetPlayerBan",
686
- "details": [
687
- {
688
- "role": "Client",
689
- "requestData": [
690
- {
691
- "code": "UserId",
692
- "description": "",
693
- "type": "string"
694
- }
695
- ]
696
- },
697
- {
698
- "role": "Server",
699
- "requestData": [
700
- {
701
- "code": "UserId",
702
- "description": "",
703
- "type": "string"
704
- }
705
- ]
706
- }
707
- ],
708
- "description": ""
709
- },
710
- {
711
- "operationCode": "GetPlayerCharacter",
712
- "details": [
713
- {
714
- "role": "Client",
715
- "requestData": [
716
- {
717
- "code": "UserId",
718
- "description": "",
719
- "type": "string"
720
- },
721
- {
722
- "code": "CharacterCatalogIds",
723
- "description": "",
724
- "type": "Array<string>"
725
- }
726
- ]
727
- },
728
- {
729
- "role": "Server",
730
- "requestData": [
731
- {
732
- "code": "UserId",
733
- "description": "",
734
- "type": "string"
735
- }
736
- ]
737
- }
738
- ],
739
- "description": ""
740
- },
741
- {
742
- "operationCode": "GetPlayerCurrency",
743
- "details": [
744
- {
745
- "role": "Client",
746
- "requestData": [
747
- {
748
- "code": "UserId",
749
- "description": "",
750
- "type": "string"
751
- },
752
- {
753
- "code": "PlayerCurrencyKeys",
754
- "description": "",
755
- "type": "Array<string>"
756
- }
757
- ]
758
- },
759
- {
760
- "role": "Server",
761
- "requestData": [
762
- {
763
- "code": "UserId",
764
- "description": "",
765
- "type": "string"
766
- }
767
- ]
768
- }
769
- ],
770
- "description": ""
771
- },
772
- {
773
- "operationCode": "GetPlayerData",
774
- "details": [
775
- {
776
- "role": "Client",
777
- "requestData": [
778
- {
779
- "code": "UserId",
780
- "description": "",
781
- "type": "string"
782
- },
783
- {
784
- "code": "PlayerDataKeys",
785
- "description": "",
786
- "type": "Array<string>"
787
- }
788
- ]
789
- },
790
- {
791
- "role": "Server",
792
- "requestData": [
793
- {
794
- "code": "UserId",
795
- "description": "",
796
- "type": "string"
797
- }
798
- ]
799
- }
800
- ],
801
- "description": ""
802
- },
803
- {
804
- "operationCode": "GetPlayerFriend",
805
- "details": [
806
- {
807
- "role": "Client",
808
- "requestData": [
809
- {
810
- "code": "UserId",
811
- "description": "",
812
- "type": "string"
813
- },
814
- {
815
- "code": "FriendCatalogIds",
816
- "description": "",
817
- "type": "Array<string>"
818
- }
819
- ]
820
- },
821
- {
822
- "role": "Server",
823
- "requestData": [
824
- {
825
- "code": "UserId",
826
- "description": "",
827
- "type": "string"
828
- }
829
- ]
830
- }
831
- ],
832
- "description": ""
833
- },
834
- {
835
- "operationCode": "GetPlayerGroup",
836
- "details": [
837
- {
838
- "role": "Client",
839
- "requestData": [
840
- {
841
- "code": "UserId",
842
- "description": "",
843
- "type": "string"
844
- },
845
- {
846
- "code": "GroupCatalogIds",
847
- "description": "",
848
- "type": "Array<string>"
849
- }
850
- ]
851
- },
852
- {
853
- "role": "Server",
854
- "requestData": [
855
- {
856
- "code": "UserId",
857
- "description": "",
858
- "type": "string"
859
- }
860
- ]
861
- }
862
- ],
863
- "description": ""
864
- },
865
- {
866
- "operationCode": "GetPlayerInformation",
867
- "details": [
868
- {
869
- "role": "Client",
870
- "requestData": [
871
- {
872
- "code": "UserId",
873
- "description": "",
874
- "type": "string"
875
- },
876
- {
877
- "code": "InfoRequestParam",
878
- "description": "",
879
- "type": "InfoRequestParam"
880
- }
881
- ]
882
- },
883
- {
884
- "role": "Server",
885
- "requestData": [
886
- {
887
- "code": "UserId",
888
- "description": "",
889
- "type": "string"
890
- },
891
- {
892
- "code": "CreatePlayerIfNotExists",
893
- "description": "",
894
- "type": "boolean",
895
- "defaultValue": "false"
896
- }
897
- ]
898
- }
899
- ],
900
- "description": ""
901
- },
902
- {
903
- "operationCode": "GetPlayerInventory",
904
- "details": [
905
- {
906
- "role": "Client",
907
- "requestData": [
908
- {
909
- "code": "UserId",
910
- "description": "",
911
- "type": "string"
912
- },
913
- {
914
- "code": "ItemCatalogIds",
915
- "description": "",
916
- "type": "Array<string>"
917
- }
918
- ]
919
- },
920
- {
921
- "role": "Server",
922
- "requestData": [
923
- {
924
- "code": "UserId",
925
- "description": "",
926
- "type": "string"
927
- }
928
- ]
929
- }
930
- ],
931
- "description": ""
932
- },
933
- {
934
- "operationCode": "GetPlayerStatistics",
935
- "details": [
936
- {
937
- "role": "Client",
938
- "requestData": [
939
- {
940
- "code": "UserId",
941
- "description": "",
942
- "type": "string"
943
- },
944
- {
945
- "code": "StatisticsKeys",
946
- "description": "",
947
- "type": "Array<string>"
948
- }
949
- ]
950
- },
951
- {
952
- "role": "Server",
953
- "requestData": [
954
- {
955
- "code": "UserId",
956
- "description": "",
957
- "type": "string"
958
- }
959
- ]
960
- }
961
- ],
962
- "description": ""
963
- },
964
- {
965
- "operationCode": "GetPlayersWithDisplayName",
966
- "details": [
967
- {
968
- "role": "Client",
969
- "requestData": [
970
- {
971
- "code": "Keyword",
972
- "description": "",
973
- "type": "string"
974
- },
975
- {
976
- "code": "InfoRequestParam",
977
- "description": "",
978
- "type": "InfoRequestParam"
979
- },
980
- {
981
- "code": "Skip",
982
- "description": "",
983
- "type": "number",
984
- "defaultValue": "0"
985
- },
986
- {
987
- "code": "Limit",
988
- "description": "",
989
- "type": "number",
990
- "defaultValue": "10"
991
- }
992
- ]
993
- }
994
- ],
995
- "description": ""
996
- },
997
- {
998
- "operationCode": "GetPlayersWithSegment",
999
- "details": [
1000
- {
1001
- "role": "Client",
1002
- "requestData": [
1003
- {
1004
- "code": "Value",
1005
- "description": "",
1006
- "type": "string"
1007
- },
1008
- {
1009
- "code": "InfoRequestParam",
1010
- "description": "",
1011
- "type": "InfoRequestParam"
1012
- },
1013
- {
1014
- "code": "Skip",
1015
- "description": "",
1016
- "type": "number",
1017
- "defaultValue": "0"
1018
- },
1019
- {
1020
- "code": "Limit",
1021
- "description": "",
1022
- "type": "number",
1023
- "defaultValue": "10"
1024
- }
1025
- ]
1026
- }
1027
- ],
1028
- "description": ""
1029
- },
1030
- {
1031
- "operationCode": "GetPlayersWithTag",
1032
- "details": [
1033
- {
1034
- "role": "Client",
1035
- "requestData": [
1036
- {
1037
- "code": "Key",
1038
- "description": "",
1039
- "type": "string"
1040
- },
1041
- {
1042
- "code": "Value",
1043
- "description": "",
1044
- "type": "string"
1045
- },
1046
- {
1047
- "code": "InfoRequestParam",
1048
- "description": "",
1049
- "type": "InfoRequestParam"
1050
- },
1051
- {
1052
- "code": "Skip",
1053
- "description": "",
1054
- "type": "number",
1055
- "defaultValue": "0"
1056
- },
1057
- {
1058
- "code": "Limit",
1059
- "description": "",
1060
- "type": "number",
1061
- "defaultValue": "10"
1062
- }
1063
- ]
1064
- }
1065
- ],
1066
- "description": ""
1067
- },
1068
- {
1069
- "operationCode": "GetSegment",
1070
- "details": [
1071
- {
1072
- "role": "Client",
1073
- "requestData": [
1074
- {
1075
- "code": "UserId",
1076
- "description": "",
1077
- "type": "string"
1078
- }
1079
- ]
1080
- },
1081
- {
1082
- "role": "Server",
1083
- "requestData": [
1084
- {
1085
- "code": "UserId",
1086
- "description": "",
1087
- "type": "string"
1088
- }
1089
- ]
1090
- }
1091
- ],
1092
- "description": ""
1093
- },
1094
- {
1095
- "operationCode": "GetStatisticsLeaderboardAroundPlayer",
1096
- "details": [
1097
- {
1098
- "role": "Client",
1099
- "requestData": [
1100
- {
1101
- "code": "UserId",
1102
- "description": "",
1103
- "type": "string"
1104
- },
1105
- {
1106
- "code": "Key",
1107
- "description": "",
1108
- "type": "string"
1109
- },
1110
- {
1111
- "code": "InfoRequestParam",
1112
- "description": "",
1113
- "type": "InfoRequestParam"
1114
- },
1115
- {
1116
- "code": "Skip",
1117
- "description": "",
1118
- "type": "number",
1119
- "defaultValue": "0"
1120
- },
1121
- {
1122
- "code": "Limit",
1123
- "description": "",
1124
- "type": "number",
1125
- "defaultValue": "10"
1126
- },
1127
- {
1128
- "code": "LoadFromCache",
1129
- "description": "",
1130
- "type": "boolean",
1131
- "defaultValue": "true"
1132
- }
1133
- ]
1134
- },
1135
- {
1136
- "role": "Server",
1137
- "requestData": [
1138
- {
1139
- "code": "UserId",
1140
- "description": "",
1141
- "type": "string"
1142
- }
1143
- ]
1144
- }
1145
- ],
1146
- "description": ""
1147
- },
1148
- {
1149
- "operationCode": "GetStatisticsLeaderboard",
1150
- "details": [
1151
- {
1152
- "role": "Client",
1153
- "requestData": [
1154
- {
1155
- "code": "Key",
1156
- "description": "",
1157
- "type": "string"
1158
- },
1159
- {
1160
- "code": "InfoRequestParam",
1161
- "description": "",
1162
- "type": "InfoRequestParam"
1163
- },
1164
- {
1165
- "code": "Skip",
1166
- "description": "",
1167
- "type": "number",
1168
- "defaultValue": "0"
1169
- },
1170
- {
1171
- "code": "Limit",
1172
- "description": "",
1173
- "type": "number",
1174
- "defaultValue": "10"
1175
- },
1176
- {
1177
- "code": "LoadFromCache",
1178
- "description": "",
1179
- "type": "boolean",
1180
- "defaultValue": "true"
1181
- },
1182
- {
1183
- "code": "Version",
1184
- "description": "",
1185
- "type": "string"
1186
- }
1187
- ]
1188
- }
1189
- ],
1190
- "description": ""
1191
- },
1192
- {
1193
- "operationCode": "GetStatisticsLog",
1194
- "details": [
1195
- {
1196
- "role": "Client",
1197
- "requestData": [
1198
- {
1199
- "code": "Keys",
1200
- "description": "",
1201
- "type": "Array<string>"
1202
- },
1203
- {
1204
- "code": "UserId",
1205
- "description": "",
1206
- "type": "string"
1207
- },
1208
- {
1209
- "code": "Limit",
1210
- "description": "",
1211
- "type": "number",
1212
- "defaultValue": "10"
1213
- },
1214
- {
1215
- "code": "Token",
1216
- "description": "",
1217
- "type": "string"
1218
- }
1219
- ]
1220
- }
1221
- ],
1222
- "description": ""
1223
- },
1224
- {
1225
- "operationCode": "GetTag",
1226
- "details": [
1227
- {
1228
- "role": "Client",
1229
- "requestData": [
1230
- {
1231
- "code": "UserId",
1232
- "description": "",
1233
- "type": "string"
1234
- },
1235
- {
1236
- "code": "TagKeys",
1237
- "description": "",
1238
- "type": "Array<string>"
1239
- }
1240
- ]
1241
- },
1242
- {
1243
- "role": "Server",
1244
- "requestData": [
1245
- {
1246
- "code": "UserId",
1247
- "description": "",
1248
- "type": "string"
1249
- }
1250
- ]
1251
- }
1252
- ],
1253
- "description": ""
1254
- },
1255
- {
1256
- "operationCode": "GetTsCreate",
1257
- "details": [
1258
- {
1259
- "role": "Client",
1260
- "requestData": [
1261
- {
1262
- "code": "UserId",
1263
- "description": "",
1264
- "type": "string"
1265
- }
1266
- ]
1267
- },
1268
- {
1269
- "role": "Server",
1270
- "requestData": [
1271
- {
1272
- "code": "UserId",
1273
- "description": "",
1274
- "type": "string"
1275
- }
1276
- ]
1277
- }
1278
- ],
1279
- "description": ""
1280
- },
1281
- {
1282
- "operationCode": "GetTsLastLogin",
1283
- "details": [
1284
- {
1285
- "role": "Client",
1286
- "requestData": [
1287
- {
1288
- "code": "UserId",
1289
- "description": "",
1290
- "type": "string"
1291
- }
1292
- ]
1293
- },
1294
- {
1295
- "role": "Server",
1296
- "requestData": [
1297
- {
1298
- "code": "UserId",
1299
- "description": "",
1300
- "type": "string"
1301
- }
1302
- ]
1303
- }
1304
- ],
1305
- "description": ""
1306
- },
1307
- {
1308
- "operationCode": "JoinGroup",
1309
- "details": [
1310
- {
1311
- "role": "Client",
1312
- "requestData": [
1313
- {
1314
- "code": "UserId",
1315
- "description": "",
1316
- "type": "string"
1317
- },
1318
- {
1319
- "code": "GroupId",
1320
- "description": "",
1321
- "type": "string"
1322
- }
1323
- ]
1324
- },
1325
- {
1326
- "role": "Server",
1327
- "requestData": [
1328
- {
1329
- "code": "UserId",
1330
- "description": "",
1331
- "type": "string"
1332
- }
1333
- ]
1334
- }
1335
- ],
1336
- "description": ""
1337
- },
1338
- {
1339
- "operationCode": "LeaveGroup",
1340
- "details": [
1341
- {
1342
- "role": "Client",
1343
- "requestData": [
1344
- {
1345
- "code": "UserId",
1346
- "description": "",
1347
- "type": "string"
1348
- },
1349
- {
1350
- "code": "GroupId",
1351
- "description": "",
1352
- "type": "string"
1353
- }
1354
- ]
1355
- },
1356
- {
1357
- "role": "Server",
1358
- "requestData": [
1359
- {
1360
- "code": "UserId",
1361
- "description": "",
1362
- "type": "string"
1363
- }
1364
- ]
1365
- }
1366
- ],
1367
- "description": ""
1368
- },
1369
- {
1370
- "operationCode": "RemovePlayerCharacter",
1371
- "details": [
1372
- {
1373
- "role": "Client",
1374
- "requestData": [
1375
- {
1376
- "code": "UserId",
1377
- "description": "",
1378
- "type": "string"
1379
- },
1380
- {
1381
- "code": "CharacterId",
1382
- "description": "",
1383
- "type": "string"
1384
- }
1385
- ]
1386
- },
1387
- {
1388
- "role": "Server",
1389
- "requestData": [
1390
- {
1391
- "code": "UserId",
1392
- "description": "",
1393
- "type": "string"
1394
- }
1395
- ]
1396
- }
1397
- ],
1398
- "description": ""
1399
- },
1400
- {
1401
- "operationCode": "RemovePlayerFriend",
1402
- "details": [
1403
- {
1404
- "role": "Client",
1405
- "requestData": [
1406
- {
1407
- "code": "UserId",
1408
- "description": "",
1409
- "type": "string"
1410
- },
1411
- {
1412
- "code": "FriendId",
1413
- "description": "",
1414
- "type": "string"
1415
- }
1416
- ]
1417
- },
1418
- {
1419
- "role": "Server",
1420
- "requestData": [
1421
- {
1422
- "code": "UserId",
1423
- "description": "",
1424
- "type": "string"
1425
- }
1426
- ]
1427
- }
1428
- ],
1429
- "description": ""
1430
- },
1431
- {
1432
- "operationCode": "RemovePlayerItem",
1433
- "details": [
1434
- {
1435
- "role": "Client",
1436
- "requestData": [
1437
- {
1438
- "code": "UserId",
1439
- "description": "",
1440
- "type": "string"
1441
- },
1442
- {
1443
- "code": "ItemId",
1444
- "description": "",
1445
- "type": "string"
1446
- }
1447
- ]
1448
- },
1449
- {
1450
- "role": "Server",
1451
- "requestData": [
1452
- {
1453
- "code": "UserId",
1454
- "description": "",
1455
- "type": "string"
1456
- }
1457
- ]
1458
- }
1459
- ],
1460
- "description": ""
1461
- },
1462
- {
1463
- "operationCode": "RemoveSegment",
1464
- "details": [
1465
- {
1466
- "role": "Client",
1467
- "requestData": [
1468
- {
1469
- "code": "UserId",
1470
- "description": "",
1471
- "type": "string"
1472
- },
1473
- {
1474
- "code": "Value",
1475
- "description": "",
1476
- "type": "string"
1477
- }
1478
- ]
1479
- },
1480
- {
1481
- "role": "Server",
1482
- "requestData": [
1483
- {
1484
- "code": "UserId",
1485
- "description": "",
1486
- "type": "string"
1487
- }
1488
- ]
1489
- }
1490
- ],
1491
- "description": ""
1492
- },
1493
- {
1494
- "operationCode": "RemoveTag",
1495
- "details": [
1496
- {
1497
- "role": "Client",
1498
- "requestData": [
1499
- {
1500
- "code": "UserId",
1501
- "description": "",
1502
- "type": "string"
1503
- },
1504
- {
1505
- "code": "Key",
1506
- "description": "",
1507
- "type": "string"
1508
- }
1509
- ]
1510
- },
1511
- {
1512
- "role": "Server",
1513
- "requestData": [
1514
- {
1515
- "code": "UserId",
1516
- "description": "",
1517
- "type": "string"
1518
- }
1519
- ]
1520
- }
1521
- ],
1522
- "description": ""
1523
- },
1524
- {
1525
- "operationCode": "SetAvatar",
1526
- "details": [
1527
- {
1528
- "role": "Client",
1529
- "requestData": [
1530
- {
1531
- "code": "UserId",
1532
- "description": "",
1533
- "type": "string"
1534
- },
1535
- {
1536
- "code": "Type",
1537
- "description": "",
1538
- "type": "number"
1539
- },
1540
- {
1541
- "code": "Value",
1542
- "description": "",
1543
- "type": "string"
1544
- }
1545
- ]
1546
- },
1547
- {
1548
- "role": "Server",
1549
- "requestData": [
1550
- {
1551
- "code": "UserId",
1552
- "description": "",
1553
- "type": "string"
1554
- }
1555
- ]
1556
- }
1557
- ],
1558
- "description": ""
1559
- },
1560
- {
1561
- "operationCode": "SetCountryCode",
1562
- "details": [
1563
- {
1564
- "role": "Client",
1565
- "requestData": [
1566
- {
1567
- "code": "UserId",
1568
- "description": "",
1569
- "type": "string"
1570
- },
1571
- {
1572
- "code": "CountryCode",
1573
- "description": "",
1574
- "type": "string"
1575
- }
1576
- ]
1577
- },
1578
- {
1579
- "role": "Server",
1580
- "requestData": [
1581
- {
1582
- "code": "UserId",
1583
- "description": "",
1584
- "type": "string"
1585
- }
1586
- ]
1587
- }
1588
- ],
1589
- "description": ""
1590
- },
1591
- {
1592
- "operationCode": "SetCustomData",
1593
- "details": [
1594
- {
1595
- "role": "Client",
1596
- "requestData": [
1597
- {
1598
- "code": "UserId",
1599
- "description": "",
1600
- "type": "string"
1601
- },
1602
- {
1603
- "code": "CustomDatas",
1604
- "description": "",
1605
- "type": "Array<CustomDataParam>"
1606
- }
1607
- ]
1608
- },
1609
- {
1610
- "role": "Server",
1611
- "requestData": [
1612
- {
1613
- "code": "UserId",
1614
- "description": "",
1615
- "type": "string"
1616
- }
1617
- ]
1618
- }
1619
- ],
1620
- "description": ""
1621
- },
1622
- {
1623
- "operationCode": "SetDisplayName",
1624
- "details": [
1625
- {
1626
- "role": "Client",
1627
- "requestData": [
1628
- {
1629
- "code": "UserId",
1630
- "description": "",
1631
- "type": "string"
1632
- },
1633
- {
1634
- "code": "DisplayName",
1635
- "description": "",
1636
- "type": "string"
1637
- },
1638
- {
1639
- "code": "UniqueDisplayName",
1640
- "description": "",
1641
- "type": "boolean",
1642
- "defaultValue": "false"
1643
- }
1644
- ]
1645
- },
1646
- {
1647
- "role": "Server",
1648
- "requestData": [
1649
- {
1650
- "code": "UserId",
1651
- "description": "",
1652
- "type": "string"
1653
- }
1654
- ]
1655
- }
1656
- ],
1657
- "description": ""
1658
- },
1659
- {
1660
- "operationCode": "SetPlayerBan",
1661
- "details": [
1662
- {
1663
- "role": "Client",
1664
- "requestData": [
1665
- {
1666
- "code": "UserId",
1667
- "description": "",
1668
- "type": "string"
1669
- },
1670
- {
1671
- "code": "TsExpire",
1672
- "description": "",
1673
- "type": "number"
1674
- },
1675
- {
1676
- "code": "Reason",
1677
- "description": "",
1678
- "type": "string"
1679
- }
1680
- ]
1681
- },
1682
- {
1683
- "role": "Server",
1684
- "requestData": [
1685
- {
1686
- "code": "UserId",
1687
- "description": "",
1688
- "type": "string"
1689
- }
1690
- ]
1691
- }
1692
- ],
1693
- "description": ""
1694
- },
1695
- {
1696
- "operationCode": "SetPlayerData",
1697
- "details": [
1698
- {
1699
- "role": "Client",
1700
- "requestData": [
1701
- {
1702
- "code": "UserId",
1703
- "description": "",
1704
- "type": "string"
1705
- },
1706
- {
1707
- "code": "PlayerDatas",
1708
- "description": "",
1709
- "type": "Array<PlayerDataParam>"
1710
- }
1711
- ]
1712
- },
1713
- {
1714
- "role": "Server",
1715
- "requestData": [
1716
- {
1717
- "code": "UserId",
1718
- "description": "",
1719
- "type": "string"
1720
- }
1721
- ]
1722
- }
1723
- ],
1724
- "description": ""
1725
- },
1726
- {
1727
- "operationCode": "SetTag",
1728
- "details": [
1729
- {
1730
- "role": "Client",
1731
- "requestData": [
1732
- {
1733
- "code": "UserId",
1734
- "description": "",
1735
- "type": "string"
1736
- },
1737
- {
1738
- "code": "Key",
1739
- "description": "",
1740
- "type": "string"
1741
- },
1742
- {
1743
- "code": "Value",
1744
- "description": "",
1745
- "type": "string"
1746
- }
1747
- ]
1748
- },
1749
- {
1750
- "role": "Server",
1751
- "requestData": [
1752
- {
1753
- "code": "UserId",
1754
- "description": "",
1755
- "type": "string"
1756
- }
1757
- ]
1758
- }
1759
- ],
1760
- "description": ""
1761
- }
1762
- ],
1763
- "models": [
1764
- {
1765
- "name": "CustomDataParam",
1766
- "details": [
1767
- {
1768
- "code": "Key",
1769
- "description": "",
1770
- "type": "string"
1771
- },
1772
- {
1773
- "code": "Value",
1774
- "description": "",
1775
- "type": "any"
1776
- }
1777
- ],
1778
- "description": ""
1779
- },
1780
- {
1781
- "name": "GroupMemberParam",
1782
- "details": [
1783
- {
1784
- "code": "UserId",
1785
- "description": "",
1786
- "type": "string"
1787
- }
1788
- ],
1789
- "description": ""
1790
- },
1791
- {
1792
- "name": "InfoRequestParam",
1793
- "details": [
1794
- {
1795
- "code": "Segments",
1796
- "description": "",
1797
- "type": "boolean",
1798
- "defaultValue": "false"
1799
- },
1800
- {
1801
- "code": "CustomDatas",
1802
- "description": "",
1803
- "type": "boolean",
1804
- "defaultValue": "false"
1805
- },
1806
- {
1807
- "code": "DisplayName",
1808
- "description": "",
1809
- "type": "boolean",
1810
- "defaultValue": "false"
1811
- },
1812
- {
1813
- "code": "Avatar",
1814
- "description": "",
1815
- "type": "boolean",
1816
- "defaultValue": "false"
1817
- },
1818
- {
1819
- "code": "TsCreate",
1820
- "description": "",
1821
- "type": "boolean",
1822
- "defaultValue": "false"
1823
- },
1824
- {
1825
- "code": "Tags",
1826
- "description": "",
1827
- "type": "boolean",
1828
- "defaultValue": "false"
1829
- },
1830
- {
1831
- "code": "PlayerBan",
1832
- "description": "",
1833
- "type": "boolean",
1834
- "defaultValue": "false"
1835
- },
1836
- {
1837
- "code": "PlayerCurrencies",
1838
- "description": "",
1839
- "type": "boolean",
1840
- "defaultValue": "false"
1841
- },
1842
- {
1843
- "code": "PlayerStatistics",
1844
- "description": "",
1845
- "type": "boolean",
1846
- "defaultValue": "false"
1847
- },
1848
- {
1849
- "code": "PlayerDatas",
1850
- "description": "",
1851
- "type": "boolean",
1852
- "defaultValue": "false"
1853
- },
1854
- {
1855
- "code": "IpAddressCreate",
1856
- "description": "",
1857
- "type": "boolean",
1858
- "defaultValue": "false"
1859
- },
1860
- {
1861
- "code": "CountryCode",
1862
- "description": "",
1863
- "type": "boolean",
1864
- "defaultValue": "false"
1865
- },
1866
- {
1867
- "code": "TsLastLogin",
1868
- "description": "",
1869
- "type": "boolean",
1870
- "defaultValue": "false"
1871
- },
1872
- {
1873
- "code": "PlayerCharacters",
1874
- "description": "",
1875
- "type": "boolean",
1876
- "defaultValue": "false"
1877
- },
1878
- {
1879
- "code": "PlayerInventories",
1880
- "description": "",
1881
- "type": "boolean",
1882
- "defaultValue": "false"
1883
- },
1884
- {
1885
- "code": "PlayerGroups",
1886
- "description": "",
1887
- "type": "boolean",
1888
- "defaultValue": "false"
1889
- },
1890
- {
1891
- "code": "PlayerFriends",
1892
- "description": "",
1893
- "type": "boolean",
1894
- "defaultValue": "false"
1895
- },
1896
- {
1897
- "code": "PlayerDataKeys",
1898
- "description": "",
1899
- "type": "Array<string>"
1900
- },
1901
- {
1902
- "code": "PlayerCurrencyKeys",
1903
- "description": "",
1904
- "type": "Array<string>"
1905
- },
1906
- {
1907
- "code": "PlayerStatisticsKeys",
1908
- "description": "",
1909
- "type": "Array<string>"
1910
- },
1911
- {
1912
- "code": "CustomDataKeys",
1913
- "description": "",
1914
- "type": "Array<string>"
1915
- },
1916
- {
1917
- "code": "TagKeys",
1918
- "description": "",
1919
- "type": "Array<string>"
1920
- },
1921
- {
1922
- "code": "CharacterCatalogIds",
1923
- "description": "",
1924
- "type": "Array<string>"
1925
- },
1926
- {
1927
- "code": "ItemCatalogIds",
1928
- "description": "",
1929
- "type": "Array<string>"
1930
- },
1931
- {
1932
- "code": "GroupCatalogIds",
1933
- "description": "",
1934
- "type": "Array<string>"
1935
- },
1936
- {
1937
- "code": "FriendCatalogIds",
1938
- "description": "",
1939
- "type": "Array<string>"
1940
- }
1941
- ],
1942
- "description": ""
1943
- },
1944
- {
1945
- "name": "PlayerCurrencyParam",
1946
- "details": [
1947
- {
1948
- "code": "Key",
1949
- "description": "",
1950
- "type": "string"
1951
- },
1952
- {
1953
- "code": "Amount",
1954
- "description": "",
1955
- "type": "number"
1956
- }
1957
- ],
1958
- "description": ""
1959
- },
1960
- {
1961
- "name": "PlayerDataParam",
1962
- "details": [
1963
- {
1964
- "code": "Key",
1965
- "description": "",
1966
- "type": "string"
1967
- },
1968
- {
1969
- "code": "Value",
1970
- "description": "",
1971
- "type": "any"
1972
- }
1973
- ],
1974
- "description": ""
1975
- },
1976
- {
1977
- "name": "PlayerStatisticsParam",
1978
- "details": [
1979
- {
1980
- "code": "Key",
1981
- "description": "",
1982
- "type": "string"
1983
- },
1984
- {
1985
- "code": "Value",
1986
- "description": "",
1987
- "type": "number"
1988
- }
1989
- ],
1990
- "description": ""
1991
- },
1992
- {
1993
- "name": "InfoResponseParameters",
1994
- "details": [
1995
- {
1996
- "code": "Segments",
1997
- "description": "",
1998
- "type": "Array<string>"
1999
- },
2000
- {
2001
- "code": "CustomDatas",
2002
- "description": "",
2003
- "type": "Array<GenericModels.DataItem>"
2004
- },
2005
- {
2006
- "code": "DisplayName",
2007
- "description": "",
2008
- "type": "string"
2009
- },
2010
- {
2011
- "code": "Avatar",
2012
- "description": "",
2013
- "type": "GenericModels.AvatarItem"
2014
- },
2015
- {
2016
- "code": "TsCreate",
2017
- "description": "",
2018
- "type": "number"
2019
- },
2020
- {
2021
- "code": "Tags",
2022
- "description": "",
2023
- "type": "Array<GenericModels.TagItem>"
2024
- },
2025
- {
2026
- "code": "PlayerBan",
2027
- "description": "",
2028
- "type": "GenericModels.BanItem"
2029
- },
2030
- {
2031
- "code": "PlayerDatas",
2032
- "description": "",
2033
- "type": "Array<GenericModels.DataItem>"
2034
- },
2035
- {
2036
- "code": "PlayerCurrencies",
2037
- "description": "",
2038
- "type": "Array<GenericModels.CurrencyItem>"
2039
- },
2040
- {
2041
- "code": "PlayerStatistics",
2042
- "description": "",
2043
- "type": "Array<GenericModels.StatisticsItem>"
2044
- },
2045
- {
2046
- "code": "PlayerCharacters",
2047
- "description": "",
2048
- "type": "Array<GenericModels.CharacterItem>"
2049
- },
2050
- {
2051
- "code": "PlayerInventories",
2052
- "description": "",
2053
- "type": "Array<GenericModels.InventoryItem>"
2054
- },
2055
- {
2056
- "code": "PlayerGroups",
2057
- "description": "",
2058
- "type": "Array<GenericModels.GroupItem>"
2059
- },
2060
- {
2061
- "code": "PlayerFriends",
2062
- "description": "",
2063
- "type": "Array<GenericModels.FriendItem>"
2064
- },
2065
- {
2066
- "code": "TsLastLogin",
2067
- "description": "",
2068
- "type": "number"
2069
- },
2070
- {
2071
- "code": "IpAddressCreate",
2072
- "description": "",
2073
- "type": "string"
2074
- },
2075
- {
2076
- "code": "CountryCode",
2077
- "description": "",
2078
- "type": "string"
2079
- }
2080
- ],
2081
- "extends": null,
2082
- "description": ""
2083
- },
2084
- {
2085
- "name": "GamePlayerResponseData",
2086
- "details": [
2087
- {
2088
- "code": "InfoResponseParameters",
2089
- "description": "",
2090
- "type": "InfoResponseParameters"
2091
- }
2092
- ],
2093
- "extends": null,
2094
- "description": ""
2095
- },
2096
- {
2097
- "name": "GamePlayerWithUserIdResponseData",
2098
- "details": [
2099
- {
2100
- "code": "UserId",
2101
- "description": "",
2102
- "type": "string"
2103
- },
2104
- {
2105
- "code": "InfoResponseParameters",
2106
- "description": "",
2107
- "type": "InfoResponseParameters"
2108
- }
2109
- ],
2110
- "extends": null,
2111
- "description": ""
2112
- },
2113
- {
2114
- "name": "GamePlayerLeaderboardResponseData",
2115
- "details": [
2116
- {
2117
- "code": "Position",
2118
- "description": "",
2119
- "type": "number"
2120
- },
2121
- {
2122
- "code": "BackupValue",
2123
- "description": "",
2124
- "type": "number"
2125
- },
2126
- {
2127
- "code": "UserId",
2128
- "description": "",
2129
- "type": "string"
2130
- },
2131
- {
2132
- "code": "InfoResponseParameters",
2133
- "description": "",
2134
- "type": "InfoResponseParameters"
2135
- }
2136
- ],
2137
- "extends": null,
2138
- "description": ""
2139
- },
2140
- {
2141
- "name": "GamePlayerLogResponseData",
2142
- "details": [
2143
- {
2144
- "code": "UserId",
2145
- "description": "",
2146
- "type": "string"
2147
- },
2148
- {
2149
- "code": "TsCreate",
2150
- "description": "",
2151
- "type": "number"
2152
- },
2153
- {
2154
- "code": "Log",
2155
- "description": "",
2156
- "type": "string"
2157
- },
2158
- {
2159
- "code": "Key",
2160
- "description": "",
2161
- "type": "string"
2162
- },
2163
- {
2164
- "code": "Amount",
2165
- "description": "",
2166
- "type": "number"
2167
- },
2168
- {
2169
- "code": "StartValue",
2170
- "description": "",
2171
- "type": "number"
2172
- },
2173
- {
2174
- "code": "FinalValue",
2175
- "description": "",
2176
- "type": "number"
2177
- }
2178
- ],
2179
- "extends": null,
2180
- "description": ""
2181
- },
2182
- {
2183
- "name": "GetStatisticsLeaderboardResponseData",
2184
- "details": [
2185
- {
2186
- "code": "Results",
2187
- "description": "",
2188
- "type": "Array<GamePlayerLeaderboardResponseData>"
2189
- },
2190
- {
2191
- "code": "TsCreate",
2192
- "description": "",
2193
- "type": "number"
2194
- }
2195
- ],
2196
- "extends": null,
2197
- "description": ""
2198
- },
2199
- {
2200
- "name": "GetCurrencyLeaderboardResponseData",
2201
- "details": [
2202
- {
2203
- "code": "Results",
2204
- "description": "",
2205
- "type": "Array<GamePlayerLeaderboardResponseData>"
2206
- }
2207
- ],
2208
- "extends": null,
2209
- "description": ""
2210
- },
2211
- {
2212
- "name": "GetLastLoginLeaderboardResponseData",
2213
- "details": [
2214
- {
2215
- "code": "Results",
2216
- "description": "",
2217
- "type": "Array<GamePlayerLeaderboardResponseData>"
2218
- }
2219
- ],
2220
- "extends": null,
2221
- "description": ""
2222
- },
2223
- {
2224
- "name": "GetCreateLeaderboardResponseData",
2225
- "details": [
2226
- {
2227
- "code": "Results",
2228
- "description": "",
2229
- "type": "Array<GamePlayerLeaderboardResponseData>"
2230
- }
2231
- ],
2232
- "extends": null,
2233
- "description": ""
2234
- },
2235
- {
2236
- "name": "GamePlayersWithUserIdResponseData",
2237
- "details": [
2238
- {
2239
- "code": "Results",
2240
- "description": "",
2241
- "type": "Array<GamePlayerWithUserIdResponseData>"
2242
- }
2243
- ],
2244
- "extends": null,
2245
- "description": ""
2246
- },
2247
- {
2248
- "name": "OnlineStatusResponseData",
2249
- "details": [
2250
- {
2251
- "code": "TsLastLogin",
2252
- "description": "",
2253
- "type": "number"
2254
- },
2255
- {
2256
- "code": "SocketId",
2257
- "description": "",
2258
- "type": "string"
2259
- }
2260
- ],
2261
- "extends": null,
2262
- "description": ""
2263
- },
2264
- {
2265
- "name": "GetStatisticsLogResponseData",
2266
- "details": [
2267
- {
2268
- "code": "Results",
2269
- "description": "",
2270
- "type": "Array<GamePlayerLogResponseData>"
2271
- },
2272
- {
2273
- "code": "Token",
2274
- "description": "",
2275
- "type": "string"
2276
- }
2277
- ],
2278
- "extends": null,
2279
- "description": ""
2280
- },
2281
- {
2282
- "name": "GetCurrencyLogResponseData",
2283
- "details": [
2284
- {
2285
- "code": "Results",
2286
- "description": "",
2287
- "type": "Array<GamePlayerLogResponseData>"
2288
- },
2289
- {
2290
- "code": "Token",
2291
- "description": "",
2292
- "type": "string"
2293
- }
2294
- ],
2295
- "extends": null,
2296
- "description": ""
2297
- },
2298
- {
2299
- "name": "EmptyResponseData",
2300
- "details": [],
2301
- "extends": null,
2302
- "description": ""
2303
- }
2304
- ]
2305
- }