@xmobitea/gn-typescript-client 2.6.8 → 2.6.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/LICENSE +198 -5
  2. package/dist/gearn.js.client.js +3 -11
  3. package/dist/gearn.js.client.min.js +1 -1
  4. package/dist/index.js +3 -11
  5. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +0 -1
  6. package/dist/runtime/entity/models/DashboardModels.d.ts +7 -7
  7. package/dist/runtime/entity/models/GroupModels.d.ts +0 -1
  8. package/dist/runtime/entity/models/MultiplayerModels.d.ts +1 -1
  9. package/package.json +2 -2
  10. package/responseModel/chatgpt/Authenticate.json +724 -0
  11. package/responseModel/chatgpt/CharacterPlayer.json +1890 -0
  12. package/responseModel/chatgpt/CloudScript.json +254 -0
  13. package/responseModel/chatgpt/Content.json +273 -0
  14. package/responseModel/chatgpt/Dashboard.json +4110 -0
  15. package/responseModel/chatgpt/GamePlayer.json +2306 -0
  16. package/responseModel/chatgpt/Generic.json +253 -0
  17. package/responseModel/chatgpt/Group.json +1509 -0
  18. package/responseModel/chatgpt/Inventory.json +1211 -0
  19. package/responseModel/chatgpt/MasterPlayer.json +3801 -0
  20. package/responseModel/chatgpt/Multiplayer.json +634 -0
  21. package/responseModel/chatgpt/StoreInventory.json +1099 -0
  22. package/responseModel/clients/AuthenticateModels.json +271 -0
  23. package/responseModel/clients/CharacterPlayerModels.json +792 -0
  24. package/responseModel/clients/CloudScriptModels.json +191 -0
  25. package/responseModel/clients/ContentModels.json +178 -0
  26. package/responseModel/clients/DashboardModels.json +5423 -0
  27. package/responseModel/clients/GamePlayerModels.json +781 -0
  28. package/responseModel/clients/GenericModels.json +344 -0
  29. package/responseModel/clients/GroupModels.json +705 -0
  30. package/responseModel/clients/InventoryModels.json +568 -0
  31. package/responseModel/clients/MasterPlayerModels.json +1281 -0
  32. package/responseModel/clients/MultiplayerModels.json +439 -0
  33. package/responseModel/clients/StoreInventoryModels.json +971 -0
  34. package/responseModel/finalChatgpt/Authenticate.json +1475 -0
  35. package/responseModel/finalChatgpt/CharacterPlayer.json +4104 -0
  36. package/responseModel/finalChatgpt/CloudScript.json +515 -0
  37. package/responseModel/finalChatgpt/Content.json +536 -0
  38. package/responseModel/finalChatgpt/Dashboard.json +6712 -0
  39. package/responseModel/finalChatgpt/GamePlayer.json +5142 -0
  40. package/responseModel/finalChatgpt/Generic.json +333 -0
  41. package/responseModel/finalChatgpt/Group.json +3232 -0
  42. package/responseModel/finalChatgpt/Inventory.json +2606 -0
  43. package/responseModel/finalChatgpt/MasterPlayer.json +8385 -0
  44. package/responseModel/finalChatgpt/Multiplayer.json +1196 -0
  45. package/responseModel/finalChatgpt/StoreInventory.json +2085 -0
  46. package/responseModel/finals/Authenticate.json +1460 -0
  47. package/responseModel/finals/CharacterPlayer.json +3639 -0
  48. package/responseModel/finals/CloudScript.json +465 -0
  49. package/responseModel/finals/Content.json +479 -0
  50. package/responseModel/finals/Dashboard.json +6718 -0
  51. package/responseModel/finals/GamePlayer.json +4291 -0
  52. package/responseModel/finals/Generic.json +345 -0
  53. package/responseModel/finals/Group.json +2885 -0
  54. package/responseModel/finals/Inventory.json +2309 -0
  55. package/responseModel/finals/MasterPlayer.json +7018 -0
  56. package/responseModel/finals/Multiplayer.json +1082 -0
  57. package/responseModel/finals/StoreInventory.json +1979 -0
  58. package/responseModel/finalsShort/Authenticate.json +723 -0
  59. package/responseModel/finalsShort/CharacterPlayer.json +1889 -0
  60. package/responseModel/finalsShort/CloudScript.json +253 -0
  61. package/responseModel/finalsShort/Content.json +272 -0
  62. package/responseModel/finalsShort/Dashboard.json +4109 -0
  63. package/responseModel/finalsShort/GamePlayer.json +2305 -0
  64. package/responseModel/finalsShort/Generic.json +252 -0
  65. package/responseModel/finalsShort/Group.json +1508 -0
  66. package/responseModel/finalsShort/Inventory.json +1210 -0
  67. package/responseModel/finalsShort/MasterPlayer.json +3800 -0
  68. package/responseModel/finalsShort/Multiplayer.json +633 -0
  69. package/responseModel/finalsShort/StoreInventory.json +1098 -0
  70. package/responseModel/operationResponse/AuthenticateResponseModels.json +77 -0
  71. package/responseModel/operationResponse/CharacterPlayerResponseModels.json +217 -0
  72. package/responseModel/operationResponse/CloudScriptResponseModels.json +25 -0
  73. package/responseModel/operationResponse/ContentResponseModels.json +33 -0
  74. package/responseModel/operationResponse/DashboardResponseModels.json +109 -0
  75. package/responseModel/operationResponse/GamePlayerResponseModels.json +213 -0
  76. package/responseModel/operationResponse/GroupResponseModels.json +165 -0
  77. package/responseModel/operationResponse/InventoryResponseModels.json +141 -0
  78. package/responseModel/operationResponse/MasterPlayerResponseModels.json +349 -0
  79. package/responseModel/operationResponse/MultiplayerResponseModels.json +45 -0
  80. package/responseModel/operationResponse/StoreInventoryResponseModels.json +61 -0
  81. package/responseModel/servers/Authenticate.json +1328 -0
  82. package/responseModel/servers/CharacterPlayer.json +3199 -0
  83. package/responseModel/servers/CloudScript.json +278 -0
  84. package/responseModel/servers/Content.json +324 -0
  85. package/responseModel/servers/GamePlayer.json +3844 -0
  86. package/responseModel/servers/Group.json +2454 -0
  87. package/responseModel/servers/Inventory.json +1964 -0
  88. package/responseModel/servers/MasterAdmin.json +5569 -0
  89. package/responseModel/servers/MasterPlayer.json +5924 -0
  90. package/responseModel/servers/Multiplayer.json +545 -0
  91. package/responseModel/servers/StoreInventory.json +1290 -0
@@ -0,0 +1,792 @@
1
+ {
2
+ "path": "CharacterPlayerModels",
3
+ "models": [
4
+ {
5
+ "name": "InfoRequestParam",
6
+ "details": [
7
+ {
8
+ "code": "CatalogId",
9
+ "description": "",
10
+ "optional": true,
11
+ "type": "boolean",
12
+ "gnType": "Boolean",
13
+ "defaultValue": "false",
14
+ "conditions": {}
15
+ },
16
+ {
17
+ "code": "Owner",
18
+ "description": "",
19
+ "optional": true,
20
+ "type": "boolean",
21
+ "gnType": "Boolean",
22
+ "defaultValue": "false",
23
+ "conditions": {}
24
+ },
25
+ {
26
+ "code": "RemoveStatus",
27
+ "description": "",
28
+ "optional": true,
29
+ "type": "boolean",
30
+ "gnType": "Boolean",
31
+ "defaultValue": "false",
32
+ "conditions": {}
33
+ },
34
+ {
35
+ "code": "Segments",
36
+ "description": "",
37
+ "optional": true,
38
+ "type": "boolean",
39
+ "gnType": "Boolean",
40
+ "defaultValue": "false",
41
+ "conditions": {}
42
+ },
43
+ {
44
+ "code": "CustomDatas",
45
+ "description": "",
46
+ "optional": true,
47
+ "type": "boolean",
48
+ "gnType": "Boolean",
49
+ "defaultValue": "false",
50
+ "conditions": {}
51
+ },
52
+ {
53
+ "code": "DisplayName",
54
+ "description": "",
55
+ "optional": true,
56
+ "type": "boolean",
57
+ "gnType": "Boolean",
58
+ "defaultValue": "false",
59
+ "conditions": {}
60
+ },
61
+ {
62
+ "code": "Avatar",
63
+ "description": "",
64
+ "optional": true,
65
+ "type": "boolean",
66
+ "gnType": "Boolean",
67
+ "defaultValue": "false",
68
+ "conditions": {}
69
+ },
70
+ {
71
+ "code": "TsCreate",
72
+ "description": "",
73
+ "optional": true,
74
+ "type": "boolean",
75
+ "gnType": "Boolean",
76
+ "defaultValue": "false",
77
+ "conditions": {}
78
+ },
79
+ {
80
+ "code": "Tags",
81
+ "description": "",
82
+ "optional": true,
83
+ "type": "boolean",
84
+ "gnType": "Boolean",
85
+ "defaultValue": "false",
86
+ "conditions": {}
87
+ },
88
+ {
89
+ "code": "PlayerBan",
90
+ "description": "",
91
+ "optional": true,
92
+ "type": "boolean",
93
+ "gnType": "Boolean",
94
+ "defaultValue": "false",
95
+ "conditions": {}
96
+ },
97
+ {
98
+ "code": "PlayerCurrencies",
99
+ "description": "",
100
+ "optional": true,
101
+ "type": "boolean",
102
+ "gnType": "Boolean",
103
+ "defaultValue": "false",
104
+ "conditions": {}
105
+ },
106
+ {
107
+ "code": "PlayerStatistics",
108
+ "description": "",
109
+ "optional": true,
110
+ "type": "boolean",
111
+ "gnType": "Boolean",
112
+ "defaultValue": "false",
113
+ "conditions": {}
114
+ },
115
+ {
116
+ "code": "PlayerDatas",
117
+ "description": "",
118
+ "optional": true,
119
+ "type": "boolean",
120
+ "gnType": "Boolean",
121
+ "defaultValue": "false",
122
+ "conditions": {}
123
+ },
124
+ {
125
+ "code": "IpAddressCreate",
126
+ "description": "",
127
+ "optional": true,
128
+ "type": "boolean",
129
+ "gnType": "Boolean",
130
+ "defaultValue": "false",
131
+ "conditions": {}
132
+ },
133
+ {
134
+ "code": "CountryCode",
135
+ "description": "",
136
+ "optional": true,
137
+ "type": "boolean",
138
+ "gnType": "Boolean",
139
+ "defaultValue": "false",
140
+ "conditions": {}
141
+ },
142
+ {
143
+ "code": "TsLastLogin",
144
+ "description": "",
145
+ "optional": true,
146
+ "type": "boolean",
147
+ "gnType": "Boolean",
148
+ "defaultValue": "false",
149
+ "conditions": {}
150
+ },
151
+ {
152
+ "code": "PlayerInventories",
153
+ "description": "",
154
+ "optional": true,
155
+ "type": "boolean",
156
+ "gnType": "Boolean",
157
+ "defaultValue": "false",
158
+ "conditions": {}
159
+ },
160
+ {
161
+ "code": "PlayerGroups",
162
+ "description": "",
163
+ "optional": true,
164
+ "type": "boolean",
165
+ "gnType": "Boolean",
166
+ "defaultValue": "false",
167
+ "conditions": {}
168
+ },
169
+ {
170
+ "code": "PlayerFriends",
171
+ "description": "",
172
+ "optional": true,
173
+ "type": "boolean",
174
+ "gnType": "Boolean",
175
+ "defaultValue": "false",
176
+ "conditions": {}
177
+ },
178
+ {
179
+ "code": "PlayerDataKeys",
180
+ "description": "",
181
+ "optional": true,
182
+ "type": "string",
183
+ "gnType": "GNArray",
184
+ "conditions": {}
185
+ },
186
+ {
187
+ "code": "PlayerCurrencyKeys",
188
+ "description": "",
189
+ "optional": true,
190
+ "type": "string",
191
+ "gnType": "GNArray",
192
+ "conditions": {}
193
+ },
194
+ {
195
+ "code": "PlayerStatisticsKeys",
196
+ "description": "",
197
+ "optional": true,
198
+ "type": "string",
199
+ "gnType": "GNArray",
200
+ "conditions": {}
201
+ },
202
+ {
203
+ "code": "CustomDataKeys",
204
+ "description": "",
205
+ "optional": true,
206
+ "type": "string",
207
+ "gnType": "GNArray",
208
+ "conditions": {}
209
+ },
210
+ {
211
+ "code": "TagKeys",
212
+ "description": "",
213
+ "optional": true,
214
+ "type": "string",
215
+ "gnType": "GNArray",
216
+ "conditions": {}
217
+ },
218
+ {
219
+ "code": "CharacterCatalogIds",
220
+ "description": "",
221
+ "optional": true,
222
+ "type": "string",
223
+ "gnType": "GNArray",
224
+ "conditions": {}
225
+ },
226
+ {
227
+ "code": "ItemCatalogIds",
228
+ "description": "",
229
+ "optional": true,
230
+ "type": "string",
231
+ "gnType": "GNArray",
232
+ "conditions": {}
233
+ },
234
+ {
235
+ "code": "GroupCatalogIds",
236
+ "description": "",
237
+ "optional": true,
238
+ "type": "string",
239
+ "gnType": "GNArray",
240
+ "conditions": {}
241
+ },
242
+ {
243
+ "code": "FriendCatalogIds",
244
+ "description": "",
245
+ "optional": true,
246
+ "type": "string",
247
+ "gnType": "GNArray",
248
+ "conditions": {}
249
+ }
250
+ ],
251
+ "extends": null,
252
+ "description": ""
253
+ },
254
+ {
255
+ "name": "PlayerStatisticsParam",
256
+ "details": [
257
+ {
258
+ "code": "Key",
259
+ "description": "",
260
+ "optional": false,
261
+ "type": "string",
262
+ "gnType": "String",
263
+ "conditions": {
264
+ "mustNonNull": true,
265
+ "minLength": 2,
266
+ "maxLength": 32
267
+ }
268
+ },
269
+ {
270
+ "code": "Value",
271
+ "description": "",
272
+ "optional": false,
273
+ "type": "number",
274
+ "gnType": "Number",
275
+ "conditions": {}
276
+ }
277
+ ],
278
+ "extends": null,
279
+ "description": ""
280
+ },
281
+ {
282
+ "name": "PlayerDataParam",
283
+ "details": [
284
+ {
285
+ "code": "Key",
286
+ "description": "",
287
+ "optional": false,
288
+ "type": "string",
289
+ "gnType": "String",
290
+ "conditions": {
291
+ "mustNonNull": true,
292
+ "minLength": 2,
293
+ "maxLength": 32
294
+ }
295
+ },
296
+ {
297
+ "code": "Value",
298
+ "description": "",
299
+ "optional": false,
300
+ "type": "any",
301
+ "gnType": "DataMember",
302
+ "conditions": {}
303
+ }
304
+ ],
305
+ "extends": null,
306
+ "description": ""
307
+ },
308
+ {
309
+ "name": "PlayerCurrencyParam",
310
+ "details": [
311
+ {
312
+ "code": "Key",
313
+ "description": "",
314
+ "optional": false,
315
+ "type": "string",
316
+ "gnType": "String",
317
+ "conditions": {
318
+ "mustNonNull": true,
319
+ "minLength": 2,
320
+ "maxLength": 32
321
+ }
322
+ },
323
+ {
324
+ "code": "Amount",
325
+ "description": "",
326
+ "optional": false,
327
+ "type": "number",
328
+ "gnType": "Number",
329
+ "conditions": {}
330
+ }
331
+ ],
332
+ "extends": null,
333
+ "description": ""
334
+ },
335
+ {
336
+ "name": "CustomDataParam",
337
+ "details": [
338
+ {
339
+ "code": "Key",
340
+ "description": "",
341
+ "optional": false,
342
+ "type": "string",
343
+ "gnType": "String",
344
+ "conditions": {
345
+ "mustNonNull": true,
346
+ "minLength": 2,
347
+ "maxLength": 32
348
+ }
349
+ },
350
+ {
351
+ "code": "Value",
352
+ "description": "",
353
+ "optional": false,
354
+ "type": "any",
355
+ "gnType": "DataMember",
356
+ "conditions": {}
357
+ }
358
+ ],
359
+ "extends": null,
360
+ "description": ""
361
+ },
362
+ {
363
+ "name": "GroupMemberParam",
364
+ "details": [
365
+ {
366
+ "code": "UserId",
367
+ "description": "",
368
+ "optional": false,
369
+ "type": "string",
370
+ "gnType": "String",
371
+ "conditions": {
372
+ "mustNonNull": true,
373
+ "minLength": 11,
374
+ "maxLength": 11
375
+ }
376
+ }
377
+ ],
378
+ "extends": null,
379
+ "description": ""
380
+ },
381
+ {
382
+ "name": "InfoResponseParameters",
383
+ "details": [
384
+ {
385
+ "code": "CatalogId",
386
+ "description": "",
387
+ "optional": true,
388
+ "type": "string",
389
+ "gnType": "String",
390
+ "conditions": {}
391
+ },
392
+ {
393
+ "code": "Owner",
394
+ "description": "",
395
+ "optional": true,
396
+ "type": "GenericModels.OwnerItem",
397
+ "gnType": "GNHashtable",
398
+ "conditions": {}
399
+ },
400
+ {
401
+ "code": "RemoveStatus",
402
+ "description": "",
403
+ "optional": true,
404
+ "type": "GenericModels.RemoveStatusItem",
405
+ "gnType": "GNHashtable",
406
+ "conditions": {}
407
+ },
408
+ {
409
+ "code": "Segments",
410
+ "description": "",
411
+ "optional": true,
412
+ "type": "string",
413
+ "gnType": "GNArray",
414
+ "conditions": {}
415
+ },
416
+ {
417
+ "code": "CustomDatas",
418
+ "description": "",
419
+ "optional": true,
420
+ "type": "GenericModels.DataItem",
421
+ "gnType": "GNArray",
422
+ "conditions": {}
423
+ },
424
+ {
425
+ "code": "DisplayName",
426
+ "description": "",
427
+ "optional": true,
428
+ "type": "string",
429
+ "gnType": "String",
430
+ "conditions": {}
431
+ },
432
+ {
433
+ "code": "Avatar",
434
+ "description": "",
435
+ "optional": true,
436
+ "type": "GenericModels.AvatarItem",
437
+ "gnType": "GNHashtable",
438
+ "conditions": {}
439
+ },
440
+ {
441
+ "code": "TsCreate",
442
+ "description": "",
443
+ "optional": true,
444
+ "type": "number",
445
+ "gnType": "Number",
446
+ "conditions": {}
447
+ },
448
+ {
449
+ "code": "Tags",
450
+ "description": "",
451
+ "optional": true,
452
+ "type": "GenericModels.TagItem",
453
+ "gnType": "GNArray",
454
+ "conditions": {}
455
+ },
456
+ {
457
+ "code": "PlayerBan",
458
+ "description": "",
459
+ "optional": true,
460
+ "type": "GenericModels.BanItem",
461
+ "gnType": "GNHashtable",
462
+ "conditions": {}
463
+ },
464
+ {
465
+ "code": "PlayerDatas",
466
+ "description": "",
467
+ "optional": true,
468
+ "type": "GenericModels.DataItem",
469
+ "gnType": "GNArray",
470
+ "conditions": {}
471
+ },
472
+ {
473
+ "code": "PlayerCurrencies",
474
+ "description": "",
475
+ "optional": true,
476
+ "type": "GenericModels.CurrencyItem",
477
+ "gnType": "GNArray",
478
+ "conditions": {}
479
+ },
480
+ {
481
+ "code": "PlayerStatistics",
482
+ "description": "",
483
+ "optional": true,
484
+ "type": "GenericModels.StatisticsItem",
485
+ "gnType": "GNArray",
486
+ "conditions": {}
487
+ },
488
+ {
489
+ "code": "PlayerInventories",
490
+ "description": "",
491
+ "optional": true,
492
+ "type": "GenericModels.InventoryItem",
493
+ "gnType": "GNArray",
494
+ "conditions": {}
495
+ },
496
+ {
497
+ "code": "PlayerGroups",
498
+ "description": "",
499
+ "optional": true,
500
+ "type": "GenericModels.GroupItem",
501
+ "gnType": "GNArray",
502
+ "conditions": {}
503
+ },
504
+ {
505
+ "code": "PlayerFriends",
506
+ "description": "",
507
+ "optional": true,
508
+ "type": "GenericModels.FriendItem",
509
+ "gnType": "GNArray",
510
+ "conditions": {}
511
+ },
512
+ {
513
+ "code": "TsLastLogin",
514
+ "description": "",
515
+ "optional": true,
516
+ "type": "number",
517
+ "gnType": "Number",
518
+ "conditions": {}
519
+ },
520
+ {
521
+ "code": "IpAddressCreate",
522
+ "description": "",
523
+ "optional": true,
524
+ "type": "string",
525
+ "gnType": "String",
526
+ "conditions": {}
527
+ },
528
+ {
529
+ "code": "CountryCode",
530
+ "description": "",
531
+ "optional": true,
532
+ "type": "string",
533
+ "gnType": "String",
534
+ "conditions": {}
535
+ }
536
+ ],
537
+ "extends": null,
538
+ "description": ""
539
+ },
540
+ {
541
+ "name": "CharacterPlayerResponseData",
542
+ "details": [
543
+ {
544
+ "code": "InfoResponseParameters",
545
+ "description": "",
546
+ "optional": false,
547
+ "type": "InfoResponseParameters",
548
+ "gnType": "GNHashtable",
549
+ "conditions": {}
550
+ }
551
+ ],
552
+ "extends": null,
553
+ "description": ""
554
+ },
555
+ {
556
+ "name": "CharacterPlayerWithCharacterIdResponseData",
557
+ "details": [
558
+ {
559
+ "code": "CharacterId",
560
+ "description": "",
561
+ "optional": false,
562
+ "type": "string",
563
+ "gnType": "String",
564
+ "conditions": {}
565
+ }
566
+ ],
567
+ "extends": "CharacterPlayerResponseData",
568
+ "description": ""
569
+ },
570
+ {
571
+ "name": "CharacterPlayerLeaderboardResponseData",
572
+ "details": [
573
+ {
574
+ "code": "Position",
575
+ "description": "",
576
+ "optional": false,
577
+ "type": "number",
578
+ "gnType": "Number",
579
+ "conditions": {}
580
+ },
581
+ {
582
+ "code": "BackupValue",
583
+ "description": "",
584
+ "optional": true,
585
+ "type": "number",
586
+ "gnType": "Number",
587
+ "conditions": {}
588
+ }
589
+ ],
590
+ "extends": "CharacterPlayerWithCharacterIdResponseData",
591
+ "description": ""
592
+ },
593
+ {
594
+ "name": "CharacterPlayerLogResponseData",
595
+ "details": [
596
+ {
597
+ "code": "CharacterId",
598
+ "description": "",
599
+ "optional": false,
600
+ "type": "string",
601
+ "gnType": "String",
602
+ "conditions": {}
603
+ },
604
+ {
605
+ "code": "TsCreate",
606
+ "description": "",
607
+ "optional": false,
608
+ "type": "number",
609
+ "gnType": "Number",
610
+ "conditions": {}
611
+ },
612
+ {
613
+ "code": "Log",
614
+ "description": "",
615
+ "optional": false,
616
+ "type": "string",
617
+ "gnType": "String",
618
+ "conditions": {}
619
+ },
620
+ {
621
+ "code": "Key",
622
+ "description": "",
623
+ "optional": false,
624
+ "type": "string",
625
+ "gnType": "String",
626
+ "conditions": {}
627
+ },
628
+ {
629
+ "code": "Amount",
630
+ "description": "",
631
+ "optional": false,
632
+ "type": "number",
633
+ "gnType": "Number",
634
+ "conditions": {}
635
+ },
636
+ {
637
+ "code": "StartValue",
638
+ "description": "",
639
+ "optional": false,
640
+ "type": "number",
641
+ "gnType": "Number",
642
+ "conditions": {}
643
+ },
644
+ {
645
+ "code": "FinalValue",
646
+ "description": "",
647
+ "optional": false,
648
+ "type": "number",
649
+ "gnType": "Number",
650
+ "conditions": {}
651
+ }
652
+ ],
653
+ "extends": null,
654
+ "description": ""
655
+ },
656
+ {
657
+ "name": "GetStatisticsLeaderboardResponseData",
658
+ "details": [
659
+ {
660
+ "code": "Results",
661
+ "description": "",
662
+ "optional": false,
663
+ "type": "CharacterPlayerLeaderboardResponseData",
664
+ "gnType": "GNArray",
665
+ "conditions": {}
666
+ },
667
+ {
668
+ "code": "TsCreate",
669
+ "description": "",
670
+ "optional": true,
671
+ "type": "number",
672
+ "gnType": "Number",
673
+ "conditions": {}
674
+ }
675
+ ],
676
+ "extends": null,
677
+ "description": ""
678
+ },
679
+ {
680
+ "name": "CharacterPlayersWithCharacterIdResponseData",
681
+ "details": [
682
+ {
683
+ "code": "Results",
684
+ "description": "",
685
+ "optional": false,
686
+ "type": "CharacterPlayerWithCharacterIdResponseData",
687
+ "gnType": "GNArray",
688
+ "conditions": {}
689
+ }
690
+ ],
691
+ "extends": null,
692
+ "description": ""
693
+ },
694
+ {
695
+ "name": "GetCurrencyLeaderboardResponseData",
696
+ "details": [
697
+ {
698
+ "code": "Results",
699
+ "description": "",
700
+ "optional": false,
701
+ "type": "CharacterPlayerLeaderboardResponseData",
702
+ "gnType": "GNArray",
703
+ "conditions": {}
704
+ }
705
+ ],
706
+ "extends": null,
707
+ "description": ""
708
+ },
709
+ {
710
+ "name": "GetCreateLeaderboardResponseData",
711
+ "details": [
712
+ {
713
+ "code": "Results",
714
+ "description": "",
715
+ "optional": false,
716
+ "type": "CharacterPlayerLeaderboardResponseData",
717
+ "gnType": "GNArray",
718
+ "conditions": {}
719
+ }
720
+ ],
721
+ "extends": null,
722
+ "description": ""
723
+ },
724
+ {
725
+ "name": "GetLastLoginLeaderboardResponseData",
726
+ "details": [
727
+ {
728
+ "code": "Results",
729
+ "description": "",
730
+ "optional": false,
731
+ "type": "CharacterPlayerLeaderboardResponseData",
732
+ "gnType": "GNArray",
733
+ "conditions": {}
734
+ }
735
+ ],
736
+ "extends": null,
737
+ "description": ""
738
+ },
739
+ {
740
+ "name": "GetStatisticsLogResponseData",
741
+ "details": [
742
+ {
743
+ "code": "Results",
744
+ "description": "",
745
+ "optional": false,
746
+ "type": "CharacterPlayerLogResponseData",
747
+ "gnType": "GNArray",
748
+ "conditions": {}
749
+ },
750
+ {
751
+ "code": "Token",
752
+ "description": "",
753
+ "optional": true,
754
+ "type": "string",
755
+ "gnType": "String",
756
+ "conditions": {}
757
+ }
758
+ ],
759
+ "extends": null,
760
+ "description": ""
761
+ },
762
+ {
763
+ "name": "GetCurrencyLogResponseData",
764
+ "details": [
765
+ {
766
+ "code": "Results",
767
+ "description": "",
768
+ "optional": false,
769
+ "type": "CharacterPlayerLogResponseData",
770
+ "gnType": "GNArray",
771
+ "conditions": {}
772
+ },
773
+ {
774
+ "code": "Token",
775
+ "description": "",
776
+ "optional": true,
777
+ "type": "string",
778
+ "gnType": "String",
779
+ "conditions": {}
780
+ }
781
+ ],
782
+ "extends": null,
783
+ "description": ""
784
+ },
785
+ {
786
+ "name": "EmptyResponseData",
787
+ "details": [],
788
+ "extends": null,
789
+ "description": ""
790
+ }
791
+ ]
792
+ }