@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,1210 +0,0 @@
1
- {
2
- "requestType": "Inventory",
3
- "operations": [
4
- {
5
- "operationCode": "AddSegment",
6
- "details": [
7
- {
8
- "role": "Client",
9
- "requestData": [
10
- {
11
- "code": "ItemId",
12
- "description": "",
13
- "type": "string"
14
- },
15
- {
16
- "code": "Value",
17
- "description": "",
18
- "type": "string"
19
- }
20
- ]
21
- }
22
- ],
23
- "description": ""
24
- },
25
- {
26
- "operationCode": "ChangeItemStatistics",
27
- "details": [
28
- {
29
- "role": "Client",
30
- "requestData": [
31
- {
32
- "code": "ItemId",
33
- "description": "",
34
- "type": "string"
35
- },
36
- {
37
- "code": "ItemStatistics",
38
- "description": "",
39
- "type": "Array<ItemStatisticsParam>"
40
- },
41
- {
42
- "code": "Log",
43
- "description": "",
44
- "type": "string"
45
- }
46
- ]
47
- }
48
- ],
49
- "description": ""
50
- },
51
- {
52
- "operationCode": "GetAmount",
53
- "details": [
54
- {
55
- "role": "Client",
56
- "requestData": [
57
- {
58
- "code": "ItemId",
59
- "description": "",
60
- "type": "string"
61
- }
62
- ]
63
- }
64
- ],
65
- "description": ""
66
- },
67
- {
68
- "operationCode": "GetAvatar",
69
- "details": [
70
- {
71
- "role": "Client",
72
- "requestData": [
73
- {
74
- "code": "ItemId",
75
- "description": "",
76
- "type": "string"
77
- }
78
- ]
79
- }
80
- ],
81
- "description": ""
82
- },
83
- {
84
- "operationCode": "GetCatalogId",
85
- "details": [
86
- {
87
- "role": "Client",
88
- "requestData": [
89
- {
90
- "code": "ItemId",
91
- "description": "",
92
- "type": "string"
93
- }
94
- ]
95
- }
96
- ],
97
- "description": ""
98
- },
99
- {
100
- "operationCode": "GetClassId",
101
- "details": [
102
- {
103
- "role": "Client",
104
- "requestData": [
105
- {
106
- "code": "ItemId",
107
- "description": "",
108
- "type": "string"
109
- }
110
- ]
111
- }
112
- ],
113
- "description": ""
114
- },
115
- {
116
- "operationCode": "GetCreateLeaderboard",
117
- "details": [
118
- {
119
- "role": "Client",
120
- "requestData": [
121
- {
122
- "code": "InfoRequestParam",
123
- "description": "",
124
- "type": "InfoRequestParam"
125
- },
126
- {
127
- "code": "Skip",
128
- "description": "",
129
- "type": "number",
130
- "defaultValue": "0"
131
- },
132
- {
133
- "code": "Limit",
134
- "description": "",
135
- "type": "number",
136
- "defaultValue": "10"
137
- },
138
- {
139
- "code": "LoadFromCache",
140
- "description": "",
141
- "type": "boolean",
142
- "defaultValue": "true"
143
- }
144
- ]
145
- }
146
- ],
147
- "description": ""
148
- },
149
- {
150
- "operationCode": "GetCustomData",
151
- "details": [
152
- {
153
- "role": "Client",
154
- "requestData": [
155
- {
156
- "code": "ItemId",
157
- "description": "",
158
- "type": "string"
159
- },
160
- {
161
- "code": "CustomDataKeys",
162
- "description": "",
163
- "type": "Array<string>"
164
- }
165
- ]
166
- }
167
- ],
168
- "description": ""
169
- },
170
- {
171
- "operationCode": "GetDisplayName",
172
- "details": [
173
- {
174
- "role": "Client",
175
- "requestData": [
176
- {
177
- "code": "ItemId",
178
- "description": "",
179
- "type": "string"
180
- }
181
- ]
182
- }
183
- ],
184
- "description": ""
185
- },
186
- {
187
- "operationCode": "GetItemData",
188
- "details": [
189
- {
190
- "role": "Client",
191
- "requestData": [
192
- {
193
- "code": "ItemId",
194
- "description": "",
195
- "type": "string"
196
- },
197
- {
198
- "code": "ItemDataKeys",
199
- "description": "",
200
- "type": "Array<string>"
201
- }
202
- ]
203
- }
204
- ],
205
- "description": ""
206
- },
207
- {
208
- "operationCode": "GetItemInformation",
209
- "details": [
210
- {
211
- "role": "Client",
212
- "requestData": [
213
- {
214
- "code": "ItemId",
215
- "description": "",
216
- "type": "string"
217
- },
218
- {
219
- "code": "InfoRequestParam",
220
- "description": "",
221
- "type": "InfoRequestParam"
222
- }
223
- ]
224
- }
225
- ],
226
- "description": ""
227
- },
228
- {
229
- "operationCode": "GetItemStatistics",
230
- "details": [
231
- {
232
- "role": "Client",
233
- "requestData": [
234
- {
235
- "code": "ItemId",
236
- "description": "",
237
- "type": "string"
238
- },
239
- {
240
- "code": "StatisticsKeys",
241
- "description": "",
242
- "type": "Array<string>"
243
- }
244
- ]
245
- }
246
- ],
247
- "description": ""
248
- },
249
- {
250
- "operationCode": "GetItemsWithDisplayName",
251
- "details": [
252
- {
253
- "role": "Client",
254
- "requestData": [
255
- {
256
- "code": "Keyword",
257
- "description": "",
258
- "type": "string"
259
- },
260
- {
261
- "code": "InfoRequestParam",
262
- "description": "",
263
- "type": "InfoRequestParam"
264
- },
265
- {
266
- "code": "Skip",
267
- "description": "",
268
- "type": "number",
269
- "defaultValue": "0"
270
- },
271
- {
272
- "code": "Limit",
273
- "description": "",
274
- "type": "number",
275
- "defaultValue": "10"
276
- }
277
- ]
278
- }
279
- ],
280
- "description": ""
281
- },
282
- {
283
- "operationCode": "GetItemsWithSegment",
284
- "details": [
285
- {
286
- "role": "Client",
287
- "requestData": [
288
- {
289
- "code": "Value",
290
- "description": "",
291
- "type": "string"
292
- },
293
- {
294
- "code": "InfoRequestParam",
295
- "description": "",
296
- "type": "InfoRequestParam"
297
- },
298
- {
299
- "code": "Skip",
300
- "description": "",
301
- "type": "number",
302
- "defaultValue": "0"
303
- },
304
- {
305
- "code": "Limit",
306
- "description": "",
307
- "type": "number",
308
- "defaultValue": "10"
309
- }
310
- ]
311
- }
312
- ],
313
- "description": ""
314
- },
315
- {
316
- "operationCode": "GetItemsWithTag",
317
- "details": [
318
- {
319
- "role": "Client",
320
- "requestData": [
321
- {
322
- "code": "Key",
323
- "description": "",
324
- "type": "string"
325
- },
326
- {
327
- "code": "Value",
328
- "description": "",
329
- "type": "string"
330
- },
331
- {
332
- "code": "InfoRequestParam",
333
- "description": "",
334
- "type": "InfoRequestParam"
335
- },
336
- {
337
- "code": "Skip",
338
- "description": "",
339
- "type": "number",
340
- "defaultValue": "0"
341
- },
342
- {
343
- "code": "Limit",
344
- "description": "",
345
- "type": "number",
346
- "defaultValue": "10"
347
- }
348
- ]
349
- }
350
- ],
351
- "description": ""
352
- },
353
- {
354
- "operationCode": "GetItemType",
355
- "details": [
356
- {
357
- "role": "Client",
358
- "requestData": [
359
- {
360
- "code": "ItemId",
361
- "description": "",
362
- "type": "string"
363
- }
364
- ]
365
- }
366
- ],
367
- "description": ""
368
- },
369
- {
370
- "operationCode": "GetOwner",
371
- "details": [
372
- {
373
- "role": "Client",
374
- "requestData": [
375
- {
376
- "code": "ItemId",
377
- "description": "",
378
- "type": "string"
379
- }
380
- ]
381
- }
382
- ],
383
- "description": ""
384
- },
385
- {
386
- "operationCode": "GetRemoveStatus",
387
- "details": [
388
- {
389
- "role": "Client",
390
- "requestData": [
391
- {
392
- "code": "ItemId",
393
- "description": "",
394
- "type": "string"
395
- }
396
- ]
397
- }
398
- ],
399
- "description": ""
400
- },
401
- {
402
- "operationCode": "GetSegment",
403
- "details": [
404
- {
405
- "role": "Client",
406
- "requestData": [
407
- {
408
- "code": "ItemId",
409
- "description": "",
410
- "type": "string"
411
- }
412
- ]
413
- }
414
- ],
415
- "description": ""
416
- },
417
- {
418
- "operationCode": "GetStatisticsLeaderboardAroundItem",
419
- "details": [
420
- {
421
- "role": "Client",
422
- "requestData": [
423
- {
424
- "code": "ItemId",
425
- "description": "",
426
- "type": "string"
427
- },
428
- {
429
- "code": "Key",
430
- "description": "",
431
- "type": "string"
432
- },
433
- {
434
- "code": "InfoRequestParam",
435
- "description": "",
436
- "type": "InfoRequestParam"
437
- },
438
- {
439
- "code": "Skip",
440
- "description": "",
441
- "type": "number",
442
- "defaultValue": "0"
443
- },
444
- {
445
- "code": "Limit",
446
- "description": "",
447
- "type": "number",
448
- "defaultValue": "10"
449
- },
450
- {
451
- "code": "LoadFromCache",
452
- "description": "",
453
- "type": "boolean",
454
- "defaultValue": "true"
455
- },
456
- {
457
- "code": "CatalogId",
458
- "description": "",
459
- "type": "string"
460
- }
461
- ]
462
- }
463
- ],
464
- "description": ""
465
- },
466
- {
467
- "operationCode": "GetStatisticsLeaderboard",
468
- "details": [
469
- {
470
- "role": "Client",
471
- "requestData": [
472
- {
473
- "code": "Key",
474
- "description": "",
475
- "type": "string"
476
- },
477
- {
478
- "code": "InfoRequestParam",
479
- "description": "",
480
- "type": "InfoRequestParam"
481
- },
482
- {
483
- "code": "Skip",
484
- "description": "",
485
- "type": "number",
486
- "defaultValue": "0"
487
- },
488
- {
489
- "code": "Limit",
490
- "description": "",
491
- "type": "number",
492
- "defaultValue": "10"
493
- },
494
- {
495
- "code": "LoadFromCache",
496
- "description": "",
497
- "type": "boolean",
498
- "defaultValue": "true"
499
- },
500
- {
501
- "code": "Version",
502
- "description": "",
503
- "type": "string"
504
- },
505
- {
506
- "code": "CatalogId",
507
- "description": "",
508
- "type": "string"
509
- }
510
- ]
511
- }
512
- ],
513
- "description": ""
514
- },
515
- {
516
- "operationCode": "GetStatisticsLog",
517
- "details": [
518
- {
519
- "role": "Client",
520
- "requestData": [
521
- {
522
- "code": "Keys",
523
- "description": "",
524
- "type": "Array<string>"
525
- },
526
- {
527
- "code": "ItemId",
528
- "description": "",
529
- "type": "string"
530
- },
531
- {
532
- "code": "Limit",
533
- "description": "",
534
- "type": "number",
535
- "defaultValue": "10"
536
- },
537
- {
538
- "code": "Token",
539
- "description": "",
540
- "type": "string"
541
- }
542
- ]
543
- }
544
- ],
545
- "description": ""
546
- },
547
- {
548
- "operationCode": "GetTag",
549
- "details": [
550
- {
551
- "role": "Client",
552
- "requestData": [
553
- {
554
- "code": "ItemId",
555
- "description": "",
556
- "type": "string"
557
- },
558
- {
559
- "code": "TagKeys",
560
- "description": "",
561
- "type": "Array<string>"
562
- }
563
- ]
564
- }
565
- ],
566
- "description": ""
567
- },
568
- {
569
- "operationCode": "GetTsCreate",
570
- "details": [
571
- {
572
- "role": "Client",
573
- "requestData": [
574
- {
575
- "code": "ItemId",
576
- "description": "",
577
- "type": "string"
578
- }
579
- ]
580
- }
581
- ],
582
- "description": ""
583
- },
584
- {
585
- "operationCode": "RemoveSegment",
586
- "details": [
587
- {
588
- "role": "Client",
589
- "requestData": [
590
- {
591
- "code": "ItemId",
592
- "description": "",
593
- "type": "string"
594
- },
595
- {
596
- "code": "Value",
597
- "description": "",
598
- "type": "string"
599
- }
600
- ]
601
- }
602
- ],
603
- "description": ""
604
- },
605
- {
606
- "operationCode": "RemoveTag",
607
- "details": [
608
- {
609
- "role": "Client",
610
- "requestData": [
611
- {
612
- "code": "ItemId",
613
- "description": "",
614
- "type": "string"
615
- },
616
- {
617
- "code": "Key",
618
- "description": "",
619
- "type": "string"
620
- }
621
- ]
622
- }
623
- ],
624
- "description": ""
625
- },
626
- {
627
- "operationCode": "SetAmount",
628
- "details": [
629
- {
630
- "role": "Client",
631
- "requestData": [
632
- {
633
- "code": "ItemId",
634
- "description": "",
635
- "type": "string"
636
- },
637
- {
638
- "code": "Amount",
639
- "description": "",
640
- "type": "number"
641
- }
642
- ]
643
- }
644
- ],
645
- "description": ""
646
- },
647
- {
648
- "operationCode": "SetAvatar",
649
- "details": [
650
- {
651
- "role": "Client",
652
- "requestData": [
653
- {
654
- "code": "ItemId",
655
- "description": "",
656
- "type": "string"
657
- },
658
- {
659
- "code": "Type",
660
- "description": "",
661
- "type": "number"
662
- },
663
- {
664
- "code": "Value",
665
- "description": "",
666
- "type": "string"
667
- }
668
- ]
669
- }
670
- ],
671
- "description": ""
672
- },
673
- {
674
- "operationCode": "SetCustomData",
675
- "details": [
676
- {
677
- "role": "Client",
678
- "requestData": [
679
- {
680
- "code": "ItemId",
681
- "description": "",
682
- "type": "string"
683
- },
684
- {
685
- "code": "CustomDatas",
686
- "description": "",
687
- "type": "Array<CustomDataParam>"
688
- }
689
- ]
690
- }
691
- ],
692
- "description": ""
693
- },
694
- {
695
- "operationCode": "SetDisplayName",
696
- "details": [
697
- {
698
- "role": "Client",
699
- "requestData": [
700
- {
701
- "code": "ItemId",
702
- "description": "",
703
- "type": "string"
704
- },
705
- {
706
- "code": "DisplayName",
707
- "description": "",
708
- "type": "string"
709
- }
710
- ]
711
- }
712
- ],
713
- "description": ""
714
- },
715
- {
716
- "operationCode": "SetItemData",
717
- "details": [
718
- {
719
- "role": "Client",
720
- "requestData": [
721
- {
722
- "code": "ItemId",
723
- "description": "",
724
- "type": "string"
725
- },
726
- {
727
- "code": "ItemDatas",
728
- "description": "",
729
- "type": "Array<ItemDataParam>"
730
- }
731
- ]
732
- }
733
- ],
734
- "description": ""
735
- },
736
- {
737
- "operationCode": "SetOwner",
738
- "details": [
739
- {
740
- "role": "Client",
741
- "requestData": [
742
- {
743
- "code": "ItemId",
744
- "description": "",
745
- "type": "string"
746
- },
747
- {
748
- "code": "NewOwnerId",
749
- "description": "",
750
- "type": "string"
751
- },
752
- {
753
- "code": "NewOwnerType",
754
- "description": "",
755
- "type": "number"
756
- }
757
- ]
758
- }
759
- ],
760
- "description": ""
761
- },
762
- {
763
- "operationCode": "SetRemoveStatus",
764
- "details": [
765
- {
766
- "role": "Client",
767
- "requestData": [
768
- {
769
- "code": "ItemId",
770
- "description": "",
771
- "type": "string"
772
- },
773
- {
774
- "code": "Reason",
775
- "description": "",
776
- "type": "string",
777
- "defaultValue": "\"\""
778
- }
779
- ]
780
- }
781
- ],
782
- "description": ""
783
- },
784
- {
785
- "operationCode": "SetTag",
786
- "details": [
787
- {
788
- "role": "Client",
789
- "requestData": [
790
- {
791
- "code": "ItemId",
792
- "description": "",
793
- "type": "string"
794
- },
795
- {
796
- "code": "Key",
797
- "description": "",
798
- "type": "string"
799
- },
800
- {
801
- "code": "Value",
802
- "description": "",
803
- "type": "string"
804
- }
805
- ]
806
- }
807
- ],
808
- "description": ""
809
- }
810
- ],
811
- "models": [
812
- {
813
- "name": "CustomDataParam",
814
- "details": [
815
- {
816
- "code": "Key",
817
- "description": "",
818
- "type": "string"
819
- },
820
- {
821
- "code": "Value",
822
- "description": "",
823
- "type": "any"
824
- }
825
- ],
826
- "description": ""
827
- },
828
- {
829
- "name": "InfoRequestParam",
830
- "details": [
831
- {
832
- "code": "CatalogId",
833
- "description": "",
834
- "type": "boolean",
835
- "defaultValue": "false"
836
- },
837
- {
838
- "code": "ClassId",
839
- "description": "",
840
- "type": "boolean",
841
- "defaultValue": "false"
842
- },
843
- {
844
- "code": "ItemType",
845
- "description": "",
846
- "type": "boolean",
847
- "defaultValue": "false"
848
- },
849
- {
850
- "code": "Amount",
851
- "description": "",
852
- "type": "boolean",
853
- "defaultValue": "false"
854
- },
855
- {
856
- "code": "Owner",
857
- "description": "",
858
- "type": "boolean",
859
- "defaultValue": "false"
860
- },
861
- {
862
- "code": "RemoveStatus",
863
- "description": "",
864
- "type": "boolean",
865
- "defaultValue": "false"
866
- },
867
- {
868
- "code": "Segments",
869
- "description": "",
870
- "type": "boolean",
871
- "defaultValue": "false"
872
- },
873
- {
874
- "code": "CustomDatas",
875
- "description": "",
876
- "type": "boolean",
877
- "defaultValue": "false"
878
- },
879
- {
880
- "code": "DisplayName",
881
- "description": "",
882
- "type": "boolean",
883
- "defaultValue": "false"
884
- },
885
- {
886
- "code": "Avatar",
887
- "description": "",
888
- "type": "boolean",
889
- "defaultValue": "false"
890
- },
891
- {
892
- "code": "TsCreate",
893
- "description": "",
894
- "type": "boolean",
895
- "defaultValue": "false"
896
- },
897
- {
898
- "code": "Tags",
899
- "description": "",
900
- "type": "boolean",
901
- "defaultValue": "false"
902
- },
903
- {
904
- "code": "ItemStatistics",
905
- "description": "",
906
- "type": "boolean",
907
- "defaultValue": "false"
908
- },
909
- {
910
- "code": "ItemDatas",
911
- "description": "",
912
- "type": "boolean",
913
- "defaultValue": "false"
914
- },
915
- {
916
- "code": "ItemDataKeys",
917
- "description": "",
918
- "type": "Array<string>"
919
- },
920
- {
921
- "code": "ItemStatisticsKeys",
922
- "description": "",
923
- "type": "Array<string>"
924
- },
925
- {
926
- "code": "CustomDataKeys",
927
- "description": "",
928
- "type": "Array<string>"
929
- },
930
- {
931
- "code": "TagKeys",
932
- "description": "",
933
- "type": "Array<string>"
934
- }
935
- ],
936
- "description": ""
937
- },
938
- {
939
- "name": "ItemDataParam",
940
- "details": [
941
- {
942
- "code": "Key",
943
- "description": "",
944
- "type": "string"
945
- },
946
- {
947
- "code": "Value",
948
- "description": "",
949
- "type": "any"
950
- }
951
- ],
952
- "description": ""
953
- },
954
- {
955
- "name": "ItemStatisticsParam",
956
- "details": [
957
- {
958
- "code": "Key",
959
- "description": "",
960
- "type": "string"
961
- },
962
- {
963
- "code": "Value",
964
- "description": "",
965
- "type": "number"
966
- }
967
- ],
968
- "description": ""
969
- },
970
- {
971
- "name": "InfoResponseParameters",
972
- "details": [
973
- {
974
- "code": "CatalogId",
975
- "description": "",
976
- "type": "string"
977
- },
978
- {
979
- "code": "ClassId",
980
- "description": "",
981
- "type": "string"
982
- },
983
- {
984
- "code": "ItemType",
985
- "description": "",
986
- "type": "number"
987
- },
988
- {
989
- "code": "Amount",
990
- "description": "",
991
- "type": "number"
992
- },
993
- {
994
- "code": "Owner",
995
- "description": "",
996
- "type": "GenericModels.OwnerItem"
997
- },
998
- {
999
- "code": "RemoveStatus",
1000
- "description": "",
1001
- "type": "GenericModels.RemoveStatusItem"
1002
- },
1003
- {
1004
- "code": "Segments",
1005
- "description": "",
1006
- "type": "Array<string>"
1007
- },
1008
- {
1009
- "code": "CustomDatas",
1010
- "description": "",
1011
- "type": "Array<GenericModels.DataItem>"
1012
- },
1013
- {
1014
- "code": "DisplayName",
1015
- "description": "",
1016
- "type": "string"
1017
- },
1018
- {
1019
- "code": "Avatar",
1020
- "description": "",
1021
- "type": "GenericModels.AvatarItem"
1022
- },
1023
- {
1024
- "code": "TsCreate",
1025
- "description": "",
1026
- "type": "number"
1027
- },
1028
- {
1029
- "code": "Tags",
1030
- "description": "",
1031
- "type": "Array<GenericModels.TagItem>"
1032
- },
1033
- {
1034
- "code": "ItemDatas",
1035
- "description": "",
1036
- "type": "Array<GenericModels.DataItem>"
1037
- },
1038
- {
1039
- "code": "ItemStatistics",
1040
- "description": "",
1041
- "type": "Array<GenericModels.StatisticsItem>"
1042
- }
1043
- ],
1044
- "extends": null,
1045
- "description": ""
1046
- },
1047
- {
1048
- "name": "InventoryResponseData",
1049
- "details": [
1050
- {
1051
- "code": "InfoResponseParameters",
1052
- "description": "",
1053
- "type": "InfoResponseParameters"
1054
- }
1055
- ],
1056
- "extends": null,
1057
- "description": ""
1058
- },
1059
- {
1060
- "name": "InventoryWithItemIdResponseData",
1061
- "details": [
1062
- {
1063
- "code": "ItemId",
1064
- "description": "",
1065
- "type": "string"
1066
- },
1067
- {
1068
- "code": "InfoResponseParameters",
1069
- "description": "",
1070
- "type": "InfoResponseParameters"
1071
- }
1072
- ],
1073
- "extends": null,
1074
- "description": ""
1075
- },
1076
- {
1077
- "name": "InventoryLeaderboardResponseData",
1078
- "details": [
1079
- {
1080
- "code": "Position",
1081
- "description": "",
1082
- "type": "number"
1083
- },
1084
- {
1085
- "code": "BackupValue",
1086
- "description": "",
1087
- "type": "number"
1088
- },
1089
- {
1090
- "code": "ItemId",
1091
- "description": "",
1092
- "type": "string"
1093
- },
1094
- {
1095
- "code": "InfoResponseParameters",
1096
- "description": "",
1097
- "type": "InfoResponseParameters"
1098
- }
1099
- ],
1100
- "extends": null,
1101
- "description": ""
1102
- },
1103
- {
1104
- "name": "InventoryLogResponseData",
1105
- "details": [
1106
- {
1107
- "code": "ItemId",
1108
- "description": "",
1109
- "type": "string"
1110
- },
1111
- {
1112
- "code": "TsCreate",
1113
- "description": "",
1114
- "type": "number"
1115
- },
1116
- {
1117
- "code": "Log",
1118
- "description": "",
1119
- "type": "string"
1120
- },
1121
- {
1122
- "code": "Key",
1123
- "description": "",
1124
- "type": "string"
1125
- },
1126
- {
1127
- "code": "Amount",
1128
- "description": "",
1129
- "type": "number"
1130
- },
1131
- {
1132
- "code": "StartValue",
1133
- "description": "",
1134
- "type": "number"
1135
- },
1136
- {
1137
- "code": "FinalValue",
1138
- "description": "",
1139
- "type": "number"
1140
- }
1141
- ],
1142
- "extends": null,
1143
- "description": ""
1144
- },
1145
- {
1146
- "name": "GetStatisticsLeaderboardResponseData",
1147
- "details": [
1148
- {
1149
- "code": "Results",
1150
- "description": "",
1151
- "type": "Array<InventoryLeaderboardResponseData>"
1152
- },
1153
- {
1154
- "code": "TsCreate",
1155
- "description": "",
1156
- "type": "number"
1157
- }
1158
- ],
1159
- "extends": null,
1160
- "description": ""
1161
- },
1162
- {
1163
- "name": "InventoriesWithItemIdResponseData",
1164
- "details": [
1165
- {
1166
- "code": "Results",
1167
- "description": "",
1168
- "type": "Array<InventoryWithItemIdResponseData>"
1169
- }
1170
- ],
1171
- "extends": null,
1172
- "description": ""
1173
- },
1174
- {
1175
- "name": "GetCreateLeaderboardResponseData",
1176
- "details": [
1177
- {
1178
- "code": "Results",
1179
- "description": "",
1180
- "type": "Array<InventoryLeaderboardResponseData>"
1181
- }
1182
- ],
1183
- "extends": null,
1184
- "description": ""
1185
- },
1186
- {
1187
- "name": "GetStatisticsLogResponseData",
1188
- "details": [
1189
- {
1190
- "code": "Results",
1191
- "description": "",
1192
- "type": "Array<InventoryLogResponseData>"
1193
- },
1194
- {
1195
- "code": "Token",
1196
- "description": "",
1197
- "type": "string"
1198
- }
1199
- ],
1200
- "extends": null,
1201
- "description": ""
1202
- },
1203
- {
1204
- "name": "EmptyResponseData",
1205
- "details": [],
1206
- "extends": null,
1207
- "description": ""
1208
- }
1209
- ]
1210
- }