@xmobitea/gn-typescript-client 2.6.8-tsc → 2.6.9-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 (91) hide show
  1. package/LICENSE +198 -5
  2. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +0 -1
  3. package/dist/runtime/entity/models/CharacterPlayerModels.js +1 -5
  4. package/dist/runtime/entity/models/DashboardModels.d.ts +7 -7
  5. package/dist/runtime/entity/models/DashboardModels.js +2 -2
  6. package/dist/runtime/entity/models/GroupModels.d.ts +0 -1
  7. package/dist/runtime/entity/models/GroupModels.js +0 -4
  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,1508 @@
1
+ {
2
+ "requestType": "Group",
3
+ "operations": [
4
+ {
5
+ "operationCode": "AddMember",
6
+ "details": [
7
+ {
8
+ "role": "Client",
9
+ "requestData": [
10
+ {
11
+ "code": "UserId",
12
+ "description": "",
13
+ "type": "string"
14
+ },
15
+ {
16
+ "code": "GroupId",
17
+ "description": "",
18
+ "type": "string"
19
+ }
20
+ ]
21
+ }
22
+ ],
23
+ "description": ""
24
+ },
25
+ {
26
+ "operationCode": "AddSegment",
27
+ "details": [
28
+ {
29
+ "role": "Client",
30
+ "requestData": [
31
+ {
32
+ "code": "GroupId",
33
+ "description": "",
34
+ "type": "string"
35
+ },
36
+ {
37
+ "code": "Value",
38
+ "description": "",
39
+ "type": "string"
40
+ }
41
+ ]
42
+ }
43
+ ],
44
+ "description": ""
45
+ },
46
+ {
47
+ "operationCode": "ChangeGroupCurrency",
48
+ "details": [
49
+ {
50
+ "role": "Client",
51
+ "requestData": [
52
+ {
53
+ "code": "GroupId",
54
+ "description": "",
55
+ "type": "string"
56
+ },
57
+ {
58
+ "code": "GroupCurrencies",
59
+ "description": "",
60
+ "type": "Array<GroupCurrencyParam>"
61
+ },
62
+ {
63
+ "code": "Log",
64
+ "description": "",
65
+ "type": "string"
66
+ }
67
+ ]
68
+ }
69
+ ],
70
+ "description": ""
71
+ },
72
+ {
73
+ "operationCode": "ChangeGroupStatistics",
74
+ "details": [
75
+ {
76
+ "role": "Client",
77
+ "requestData": [
78
+ {
79
+ "code": "GroupId",
80
+ "description": "",
81
+ "type": "string"
82
+ },
83
+ {
84
+ "code": "GroupStatistics",
85
+ "description": "",
86
+ "type": "Array<GroupStatisticsParam>"
87
+ },
88
+ {
89
+ "code": "Log",
90
+ "description": "",
91
+ "type": "string"
92
+ }
93
+ ]
94
+ }
95
+ ],
96
+ "description": ""
97
+ },
98
+ {
99
+ "operationCode": "CreateGroupItem",
100
+ "details": [
101
+ {
102
+ "role": "Client",
103
+ "requestData": [
104
+ {
105
+ "code": "GroupId",
106
+ "description": "",
107
+ "type": "string"
108
+ },
109
+ {
110
+ "code": "CatalogId",
111
+ "description": "",
112
+ "type": "string"
113
+ },
114
+ {
115
+ "code": "ClassId",
116
+ "description": "",
117
+ "type": "string"
118
+ },
119
+ {
120
+ "code": "DisplayName",
121
+ "description": "",
122
+ "type": "string",
123
+ "defaultValue": "\"\""
124
+ },
125
+ {
126
+ "code": "Amount",
127
+ "description": "",
128
+ "type": "number",
129
+ "defaultValue": "1"
130
+ }
131
+ ]
132
+ }
133
+ ],
134
+ "description": ""
135
+ },
136
+ {
137
+ "operationCode": "GetAvatar",
138
+ "details": [
139
+ {
140
+ "role": "Client",
141
+ "requestData": [
142
+ {
143
+ "code": "GroupId",
144
+ "description": "",
145
+ "type": "string"
146
+ }
147
+ ]
148
+ }
149
+ ],
150
+ "description": ""
151
+ },
152
+ {
153
+ "operationCode": "GetCatalogId",
154
+ "details": [
155
+ {
156
+ "role": "Client",
157
+ "requestData": [
158
+ {
159
+ "code": "GroupId",
160
+ "description": "",
161
+ "type": "string"
162
+ }
163
+ ]
164
+ }
165
+ ],
166
+ "description": ""
167
+ },
168
+ {
169
+ "operationCode": "GetCreateLeaderboard",
170
+ "details": [
171
+ {
172
+ "role": "Client",
173
+ "requestData": [
174
+ {
175
+ "code": "InfoRequestParam",
176
+ "description": "",
177
+ "type": "InfoRequestParam"
178
+ },
179
+ {
180
+ "code": "Skip",
181
+ "description": "",
182
+ "type": "number",
183
+ "defaultValue": "0"
184
+ },
185
+ {
186
+ "code": "Limit",
187
+ "description": "",
188
+ "type": "number",
189
+ "defaultValue": "10"
190
+ },
191
+ {
192
+ "code": "LoadFromCache",
193
+ "description": "",
194
+ "type": "boolean",
195
+ "defaultValue": "true"
196
+ }
197
+ ]
198
+ }
199
+ ],
200
+ "description": ""
201
+ },
202
+ {
203
+ "operationCode": "GetCurrencyLeaderboard",
204
+ "details": [
205
+ {
206
+ "role": "Client",
207
+ "requestData": [
208
+ {
209
+ "code": "Key",
210
+ "description": "",
211
+ "type": "string"
212
+ },
213
+ {
214
+ "code": "InfoRequestParam",
215
+ "description": "",
216
+ "type": "InfoRequestParam"
217
+ },
218
+ {
219
+ "code": "Skip",
220
+ "description": "",
221
+ "type": "number",
222
+ "defaultValue": "0"
223
+ },
224
+ {
225
+ "code": "Limit",
226
+ "description": "",
227
+ "type": "number",
228
+ "defaultValue": "10"
229
+ },
230
+ {
231
+ "code": "LoadFromCache",
232
+ "description": "",
233
+ "type": "boolean",
234
+ "defaultValue": "true"
235
+ },
236
+ {
237
+ "code": "CatalogId",
238
+ "description": "",
239
+ "type": "string"
240
+ }
241
+ ]
242
+ }
243
+ ],
244
+ "description": ""
245
+ },
246
+ {
247
+ "operationCode": "GetCurrencyLog",
248
+ "details": [
249
+ {
250
+ "role": "Client",
251
+ "requestData": [
252
+ {
253
+ "code": "Keys",
254
+ "description": "",
255
+ "type": "Array<string>"
256
+ },
257
+ {
258
+ "code": "GroupId",
259
+ "description": "",
260
+ "type": "string"
261
+ },
262
+ {
263
+ "code": "Limit",
264
+ "description": "",
265
+ "type": "number",
266
+ "defaultValue": "10"
267
+ },
268
+ {
269
+ "code": "Token",
270
+ "description": "",
271
+ "type": "string"
272
+ }
273
+ ]
274
+ }
275
+ ],
276
+ "description": ""
277
+ },
278
+ {
279
+ "operationCode": "GetCustomData",
280
+ "details": [
281
+ {
282
+ "role": "Client",
283
+ "requestData": [
284
+ {
285
+ "code": "GroupId",
286
+ "description": "",
287
+ "type": "string"
288
+ },
289
+ {
290
+ "code": "CustomDataKeys",
291
+ "description": "",
292
+ "type": "Array<string>"
293
+ }
294
+ ]
295
+ }
296
+ ],
297
+ "description": ""
298
+ },
299
+ {
300
+ "operationCode": "GetDisplayName",
301
+ "details": [
302
+ {
303
+ "role": "Client",
304
+ "requestData": [
305
+ {
306
+ "code": "GroupId",
307
+ "description": "",
308
+ "type": "string"
309
+ }
310
+ ]
311
+ }
312
+ ],
313
+ "description": ""
314
+ },
315
+ {
316
+ "operationCode": "GetGroupCurrency",
317
+ "details": [
318
+ {
319
+ "role": "Client",
320
+ "requestData": [
321
+ {
322
+ "code": "GroupId",
323
+ "description": "",
324
+ "type": "string"
325
+ },
326
+ {
327
+ "code": "GroupCurrencyKeys",
328
+ "description": "",
329
+ "type": "Array<string>"
330
+ }
331
+ ]
332
+ }
333
+ ],
334
+ "description": ""
335
+ },
336
+ {
337
+ "operationCode": "GetGroupData",
338
+ "details": [
339
+ {
340
+ "role": "Client",
341
+ "requestData": [
342
+ {
343
+ "code": "GroupId",
344
+ "description": "",
345
+ "type": "string"
346
+ },
347
+ {
348
+ "code": "GroupDataKeys",
349
+ "description": "",
350
+ "type": "Array<string>"
351
+ }
352
+ ]
353
+ }
354
+ ],
355
+ "description": ""
356
+ },
357
+ {
358
+ "operationCode": "GetGroupInformation",
359
+ "details": [
360
+ {
361
+ "role": "Client",
362
+ "requestData": [
363
+ {
364
+ "code": "GroupId",
365
+ "description": "",
366
+ "type": "string"
367
+ },
368
+ {
369
+ "code": "InfoRequestParam",
370
+ "description": "",
371
+ "type": "InfoRequestParam"
372
+ }
373
+ ]
374
+ }
375
+ ],
376
+ "description": ""
377
+ },
378
+ {
379
+ "operationCode": "GetGroupInventory",
380
+ "details": [
381
+ {
382
+ "role": "Client",
383
+ "requestData": [
384
+ {
385
+ "code": "GroupId",
386
+ "description": "",
387
+ "type": "string"
388
+ },
389
+ {
390
+ "code": "ItemCatalogIds",
391
+ "description": "",
392
+ "type": "Array<string>"
393
+ }
394
+ ]
395
+ }
396
+ ],
397
+ "description": ""
398
+ },
399
+ {
400
+ "operationCode": "GetGroupMessage",
401
+ "details": [
402
+ {
403
+ "role": "Client",
404
+ "requestData": [
405
+ {
406
+ "code": "GroupId",
407
+ "description": "",
408
+ "type": "string"
409
+ },
410
+ {
411
+ "code": "Skip",
412
+ "description": "",
413
+ "type": "number",
414
+ "defaultValue": "0"
415
+ },
416
+ {
417
+ "code": "Limit",
418
+ "description": "",
419
+ "type": "number",
420
+ "defaultValue": "10"
421
+ }
422
+ ]
423
+ }
424
+ ],
425
+ "description": ""
426
+ },
427
+ {
428
+ "operationCode": "GetGroupStatistics",
429
+ "details": [
430
+ {
431
+ "role": "Client",
432
+ "requestData": [
433
+ {
434
+ "code": "GroupId",
435
+ "description": "",
436
+ "type": "string"
437
+ },
438
+ {
439
+ "code": "StatisticsKeys",
440
+ "description": "",
441
+ "type": "Array<string>"
442
+ }
443
+ ]
444
+ }
445
+ ],
446
+ "description": ""
447
+ },
448
+ {
449
+ "operationCode": "GetGroupsWithDisplayName",
450
+ "details": [
451
+ {
452
+ "role": "Client",
453
+ "requestData": [
454
+ {
455
+ "code": "Keyword",
456
+ "description": "",
457
+ "type": "string"
458
+ },
459
+ {
460
+ "code": "InfoRequestParam",
461
+ "description": "",
462
+ "type": "InfoRequestParam"
463
+ },
464
+ {
465
+ "code": "Skip",
466
+ "description": "",
467
+ "type": "number",
468
+ "defaultValue": "0"
469
+ },
470
+ {
471
+ "code": "Limit",
472
+ "description": "",
473
+ "type": "number",
474
+ "defaultValue": "10"
475
+ }
476
+ ]
477
+ }
478
+ ],
479
+ "description": ""
480
+ },
481
+ {
482
+ "operationCode": "GetGroupsWithSegment",
483
+ "details": [
484
+ {
485
+ "role": "Client",
486
+ "requestData": [
487
+ {
488
+ "code": "Value",
489
+ "description": "",
490
+ "type": "string"
491
+ },
492
+ {
493
+ "code": "InfoRequestParam",
494
+ "description": "",
495
+ "type": "InfoRequestParam"
496
+ },
497
+ {
498
+ "code": "Skip",
499
+ "description": "",
500
+ "type": "number",
501
+ "defaultValue": "0"
502
+ },
503
+ {
504
+ "code": "Limit",
505
+ "description": "",
506
+ "type": "number",
507
+ "defaultValue": "10"
508
+ }
509
+ ]
510
+ }
511
+ ],
512
+ "description": ""
513
+ },
514
+ {
515
+ "operationCode": "GetGroupsWithTag",
516
+ "details": [
517
+ {
518
+ "role": "Client",
519
+ "requestData": [
520
+ {
521
+ "code": "Key",
522
+ "description": "",
523
+ "type": "string"
524
+ },
525
+ {
526
+ "code": "Value",
527
+ "description": "",
528
+ "type": "string"
529
+ },
530
+ {
531
+ "code": "InfoRequestParam",
532
+ "description": "",
533
+ "type": "InfoRequestParam"
534
+ },
535
+ {
536
+ "code": "Skip",
537
+ "description": "",
538
+ "type": "number",
539
+ "defaultValue": "0"
540
+ },
541
+ {
542
+ "code": "Limit",
543
+ "description": "",
544
+ "type": "number",
545
+ "defaultValue": "10"
546
+ }
547
+ ]
548
+ }
549
+ ],
550
+ "description": ""
551
+ },
552
+ {
553
+ "operationCode": "GetMembers",
554
+ "details": [
555
+ {
556
+ "role": "Client",
557
+ "requestData": [
558
+ {
559
+ "code": "GroupId",
560
+ "description": "",
561
+ "type": "string"
562
+ }
563
+ ]
564
+ }
565
+ ],
566
+ "description": ""
567
+ },
568
+ {
569
+ "operationCode": "GetRemoveStatus",
570
+ "details": [
571
+ {
572
+ "role": "Client",
573
+ "requestData": [
574
+ {
575
+ "code": "GroupId",
576
+ "description": "",
577
+ "type": "string"
578
+ }
579
+ ]
580
+ }
581
+ ],
582
+ "description": ""
583
+ },
584
+ {
585
+ "operationCode": "GetSegment",
586
+ "details": [
587
+ {
588
+ "role": "Client",
589
+ "requestData": [
590
+ {
591
+ "code": "GroupId",
592
+ "description": "",
593
+ "type": "string"
594
+ }
595
+ ]
596
+ }
597
+ ],
598
+ "description": ""
599
+ },
600
+ {
601
+ "operationCode": "GetStatisticsLeaderboardAroundGroup",
602
+ "details": [
603
+ {
604
+ "role": "Client",
605
+ "requestData": [
606
+ {
607
+ "code": "GroupId",
608
+ "description": "",
609
+ "type": "string"
610
+ },
611
+ {
612
+ "code": "Key",
613
+ "description": "",
614
+ "type": "string"
615
+ },
616
+ {
617
+ "code": "InfoRequestParam",
618
+ "description": "",
619
+ "type": "InfoRequestParam"
620
+ },
621
+ {
622
+ "code": "Skip",
623
+ "description": "",
624
+ "type": "number",
625
+ "defaultValue": "0"
626
+ },
627
+ {
628
+ "code": "Limit",
629
+ "description": "",
630
+ "type": "number",
631
+ "defaultValue": "10"
632
+ },
633
+ {
634
+ "code": "LoadFromCache",
635
+ "description": "",
636
+ "type": "boolean",
637
+ "defaultValue": "true"
638
+ },
639
+ {
640
+ "code": "CatalogId",
641
+ "description": "",
642
+ "type": "string"
643
+ }
644
+ ]
645
+ }
646
+ ],
647
+ "description": ""
648
+ },
649
+ {
650
+ "operationCode": "GetStatisticsLeaderboard",
651
+ "details": [
652
+ {
653
+ "role": "Client",
654
+ "requestData": [
655
+ {
656
+ "code": "Key",
657
+ "description": "",
658
+ "type": "string"
659
+ },
660
+ {
661
+ "code": "InfoRequestParam",
662
+ "description": "",
663
+ "type": "InfoRequestParam"
664
+ },
665
+ {
666
+ "code": "Skip",
667
+ "description": "",
668
+ "type": "number",
669
+ "defaultValue": "0"
670
+ },
671
+ {
672
+ "code": "Limit",
673
+ "description": "",
674
+ "type": "number",
675
+ "defaultValue": "10"
676
+ },
677
+ {
678
+ "code": "LoadFromCache",
679
+ "description": "",
680
+ "type": "boolean",
681
+ "defaultValue": "true"
682
+ },
683
+ {
684
+ "code": "Version",
685
+ "description": "",
686
+ "type": "string"
687
+ },
688
+ {
689
+ "code": "CatalogId",
690
+ "description": "",
691
+ "type": "string"
692
+ }
693
+ ]
694
+ }
695
+ ],
696
+ "description": ""
697
+ },
698
+ {
699
+ "operationCode": "GetStatisticsLog",
700
+ "details": [
701
+ {
702
+ "role": "Client",
703
+ "requestData": [
704
+ {
705
+ "code": "Keys",
706
+ "description": "",
707
+ "type": "Array<string>"
708
+ },
709
+ {
710
+ "code": "GroupId",
711
+ "description": "",
712
+ "type": "string"
713
+ },
714
+ {
715
+ "code": "Limit",
716
+ "description": "",
717
+ "type": "number",
718
+ "defaultValue": "10"
719
+ },
720
+ {
721
+ "code": "Token",
722
+ "description": "",
723
+ "type": "string"
724
+ }
725
+ ]
726
+ }
727
+ ],
728
+ "description": ""
729
+ },
730
+ {
731
+ "operationCode": "GetTag",
732
+ "details": [
733
+ {
734
+ "role": "Client",
735
+ "requestData": [
736
+ {
737
+ "code": "GroupId",
738
+ "description": "",
739
+ "type": "string"
740
+ },
741
+ {
742
+ "code": "TagKeys",
743
+ "description": "",
744
+ "type": "Array<string>"
745
+ }
746
+ ]
747
+ }
748
+ ],
749
+ "description": ""
750
+ },
751
+ {
752
+ "operationCode": "GetTsCreate",
753
+ "details": [
754
+ {
755
+ "role": "Client",
756
+ "requestData": [
757
+ {
758
+ "code": "GroupId",
759
+ "description": "",
760
+ "type": "string"
761
+ }
762
+ ]
763
+ }
764
+ ],
765
+ "description": ""
766
+ },
767
+ {
768
+ "operationCode": "RemoveGroupItem",
769
+ "details": [
770
+ {
771
+ "role": "Client",
772
+ "requestData": [
773
+ {
774
+ "code": "GroupId",
775
+ "description": "",
776
+ "type": "string"
777
+ },
778
+ {
779
+ "code": "ItemId",
780
+ "description": "",
781
+ "type": "string"
782
+ }
783
+ ]
784
+ }
785
+ ],
786
+ "description": ""
787
+ },
788
+ {
789
+ "operationCode": "RemoveMember",
790
+ "details": [
791
+ {
792
+ "role": "Client",
793
+ "requestData": [
794
+ {
795
+ "code": "UserId",
796
+ "description": "",
797
+ "type": "string"
798
+ },
799
+ {
800
+ "code": "GroupId",
801
+ "description": "",
802
+ "type": "string"
803
+ }
804
+ ]
805
+ }
806
+ ],
807
+ "description": ""
808
+ },
809
+ {
810
+ "operationCode": "RemoveSegment",
811
+ "details": [
812
+ {
813
+ "role": "Client",
814
+ "requestData": [
815
+ {
816
+ "code": "GroupId",
817
+ "description": "",
818
+ "type": "string"
819
+ },
820
+ {
821
+ "code": "Value",
822
+ "description": "",
823
+ "type": "string"
824
+ }
825
+ ]
826
+ }
827
+ ],
828
+ "description": ""
829
+ },
830
+ {
831
+ "operationCode": "RemoveTag",
832
+ "details": [
833
+ {
834
+ "role": "Client",
835
+ "requestData": [
836
+ {
837
+ "code": "GroupId",
838
+ "description": "",
839
+ "type": "string"
840
+ },
841
+ {
842
+ "code": "Key",
843
+ "description": "",
844
+ "type": "string"
845
+ }
846
+ ]
847
+ }
848
+ ],
849
+ "description": ""
850
+ },
851
+ {
852
+ "operationCode": "SendGroupMessage",
853
+ "details": [
854
+ {
855
+ "role": "Client",
856
+ "requestData": [
857
+ {
858
+ "code": "SenderId",
859
+ "description": "",
860
+ "type": "string"
861
+ },
862
+ {
863
+ "code": "GroupId",
864
+ "description": "",
865
+ "type": "string"
866
+ },
867
+ {
868
+ "code": "Message",
869
+ "description": "",
870
+ "type": "string"
871
+ }
872
+ ]
873
+ }
874
+ ],
875
+ "description": ""
876
+ },
877
+ {
878
+ "operationCode": "SetAvatar",
879
+ "details": [
880
+ {
881
+ "role": "Client",
882
+ "requestData": [
883
+ {
884
+ "code": "GroupId",
885
+ "description": "",
886
+ "type": "string"
887
+ },
888
+ {
889
+ "code": "Type",
890
+ "description": "",
891
+ "type": "number"
892
+ },
893
+ {
894
+ "code": "Value",
895
+ "description": "",
896
+ "type": "string"
897
+ }
898
+ ]
899
+ }
900
+ ],
901
+ "description": ""
902
+ },
903
+ {
904
+ "operationCode": "SetCustomData",
905
+ "details": [
906
+ {
907
+ "role": "Client",
908
+ "requestData": [
909
+ {
910
+ "code": "GroupId",
911
+ "description": "",
912
+ "type": "string"
913
+ },
914
+ {
915
+ "code": "CustomDatas",
916
+ "description": "",
917
+ "type": "Array<CustomDataParam>"
918
+ }
919
+ ]
920
+ }
921
+ ],
922
+ "description": ""
923
+ },
924
+ {
925
+ "operationCode": "SetDisplayName",
926
+ "details": [
927
+ {
928
+ "role": "Client",
929
+ "requestData": [
930
+ {
931
+ "code": "GroupId",
932
+ "description": "",
933
+ "type": "string"
934
+ },
935
+ {
936
+ "code": "DisplayName",
937
+ "description": "",
938
+ "type": "string"
939
+ }
940
+ ]
941
+ }
942
+ ],
943
+ "description": ""
944
+ },
945
+ {
946
+ "operationCode": "SetGroupData",
947
+ "details": [
948
+ {
949
+ "role": "Client",
950
+ "requestData": [
951
+ {
952
+ "code": "GroupId",
953
+ "description": "",
954
+ "type": "string"
955
+ },
956
+ {
957
+ "code": "GroupDatas",
958
+ "description": "",
959
+ "type": "Array<GroupDataParam>"
960
+ }
961
+ ]
962
+ }
963
+ ],
964
+ "description": ""
965
+ },
966
+ {
967
+ "operationCode": "SetRemoveStatus",
968
+ "details": [
969
+ {
970
+ "role": "Client",
971
+ "requestData": [
972
+ {
973
+ "code": "GroupId",
974
+ "description": "",
975
+ "type": "string"
976
+ },
977
+ {
978
+ "code": "Reason",
979
+ "description": "",
980
+ "type": "string",
981
+ "defaultValue": "\"\""
982
+ }
983
+ ]
984
+ }
985
+ ],
986
+ "description": ""
987
+ },
988
+ {
989
+ "operationCode": "SetTag",
990
+ "details": [
991
+ {
992
+ "role": "Client",
993
+ "requestData": [
994
+ {
995
+ "code": "GroupId",
996
+ "description": "",
997
+ "type": "string"
998
+ },
999
+ {
1000
+ "code": "Key",
1001
+ "description": "",
1002
+ "type": "string"
1003
+ },
1004
+ {
1005
+ "code": "Value",
1006
+ "description": "",
1007
+ "type": "string"
1008
+ }
1009
+ ]
1010
+ }
1011
+ ],
1012
+ "description": ""
1013
+ }
1014
+ ],
1015
+ "models": [
1016
+ {
1017
+ "name": "CustomDataParam",
1018
+ "details": [
1019
+ {
1020
+ "code": "Key",
1021
+ "description": "",
1022
+ "type": "string"
1023
+ },
1024
+ {
1025
+ "code": "Value",
1026
+ "description": "",
1027
+ "type": "any"
1028
+ }
1029
+ ],
1030
+ "description": ""
1031
+ },
1032
+ {
1033
+ "name": "GroupCurrencyParam",
1034
+ "details": [
1035
+ {
1036
+ "code": "Key",
1037
+ "description": "",
1038
+ "type": "string"
1039
+ },
1040
+ {
1041
+ "code": "Amount",
1042
+ "description": "",
1043
+ "type": "number"
1044
+ }
1045
+ ],
1046
+ "description": ""
1047
+ },
1048
+ {
1049
+ "name": "GroupDataParam",
1050
+ "details": [
1051
+ {
1052
+ "code": "Key",
1053
+ "description": "",
1054
+ "type": "string"
1055
+ },
1056
+ {
1057
+ "code": "Value",
1058
+ "description": "",
1059
+ "type": "any"
1060
+ }
1061
+ ],
1062
+ "description": ""
1063
+ },
1064
+ {
1065
+ "name": "GroupMemberParam",
1066
+ "details": [
1067
+ {
1068
+ "code": "UserId",
1069
+ "description": "",
1070
+ "type": "string"
1071
+ }
1072
+ ],
1073
+ "description": ""
1074
+ },
1075
+ {
1076
+ "name": "GroupStatisticsParam",
1077
+ "details": [
1078
+ {
1079
+ "code": "Key",
1080
+ "description": "",
1081
+ "type": "string"
1082
+ },
1083
+ {
1084
+ "code": "Value",
1085
+ "description": "",
1086
+ "type": "number"
1087
+ }
1088
+ ],
1089
+ "description": ""
1090
+ },
1091
+ {
1092
+ "name": "InfoRequestParam",
1093
+ "details": [
1094
+ {
1095
+ "code": "CatalogId",
1096
+ "description": "",
1097
+ "type": "boolean",
1098
+ "defaultValue": "false"
1099
+ },
1100
+ {
1101
+ "code": "Members",
1102
+ "description": "",
1103
+ "type": "boolean",
1104
+ "defaultValue": "false"
1105
+ },
1106
+ {
1107
+ "code": "RemoveStatus",
1108
+ "description": "",
1109
+ "type": "boolean",
1110
+ "defaultValue": "false"
1111
+ },
1112
+ {
1113
+ "code": "Segments",
1114
+ "description": "",
1115
+ "type": "boolean",
1116
+ "defaultValue": "false"
1117
+ },
1118
+ {
1119
+ "code": "CustomDatas",
1120
+ "description": "",
1121
+ "type": "boolean",
1122
+ "defaultValue": "false"
1123
+ },
1124
+ {
1125
+ "code": "DisplayName",
1126
+ "description": "",
1127
+ "type": "boolean",
1128
+ "defaultValue": "false"
1129
+ },
1130
+ {
1131
+ "code": "Avatar",
1132
+ "description": "",
1133
+ "type": "boolean",
1134
+ "defaultValue": "false"
1135
+ },
1136
+ {
1137
+ "code": "TsCreate",
1138
+ "description": "",
1139
+ "type": "boolean",
1140
+ "defaultValue": "false"
1141
+ },
1142
+ {
1143
+ "code": "Tags",
1144
+ "description": "",
1145
+ "type": "boolean",
1146
+ "defaultValue": "false"
1147
+ },
1148
+ {
1149
+ "code": "GroupCurrencies",
1150
+ "description": "",
1151
+ "type": "boolean",
1152
+ "defaultValue": "false"
1153
+ },
1154
+ {
1155
+ "code": "GroupStatistics",
1156
+ "description": "",
1157
+ "type": "boolean",
1158
+ "defaultValue": "false"
1159
+ },
1160
+ {
1161
+ "code": "GroupDatas",
1162
+ "description": "",
1163
+ "type": "boolean",
1164
+ "defaultValue": "false"
1165
+ },
1166
+ {
1167
+ "code": "GroupInventories",
1168
+ "description": "",
1169
+ "type": "boolean",
1170
+ "defaultValue": "false"
1171
+ },
1172
+ {
1173
+ "code": "GroupDataKeys",
1174
+ "description": "",
1175
+ "type": "Array<string>"
1176
+ },
1177
+ {
1178
+ "code": "GroupCurrencyKeys",
1179
+ "description": "",
1180
+ "type": "Array<string>"
1181
+ },
1182
+ {
1183
+ "code": "GroupStatisticsKeys",
1184
+ "description": "",
1185
+ "type": "Array<string>"
1186
+ },
1187
+ {
1188
+ "code": "CustomDataKeys",
1189
+ "description": "",
1190
+ "type": "Array<string>"
1191
+ },
1192
+ {
1193
+ "code": "TagKeys",
1194
+ "description": "",
1195
+ "type": "Array<string>"
1196
+ },
1197
+ {
1198
+ "code": "ItemCatalogIds",
1199
+ "description": "",
1200
+ "type": "Array<string>"
1201
+ }
1202
+ ],
1203
+ "description": ""
1204
+ },
1205
+ {
1206
+ "name": "InfoResponseParameters",
1207
+ "details": [
1208
+ {
1209
+ "code": "CatalogId",
1210
+ "description": "",
1211
+ "type": "string"
1212
+ },
1213
+ {
1214
+ "code": "Members",
1215
+ "description": "",
1216
+ "type": "Array<GenericModels.MemberItem>"
1217
+ },
1218
+ {
1219
+ "code": "RemoveStatus",
1220
+ "description": "",
1221
+ "type": "GenericModels.RemoveStatusItem"
1222
+ },
1223
+ {
1224
+ "code": "Segments",
1225
+ "description": "",
1226
+ "type": "Array<string>"
1227
+ },
1228
+ {
1229
+ "code": "CustomDatas",
1230
+ "description": "",
1231
+ "type": "Array<GenericModels.DataItem>"
1232
+ },
1233
+ {
1234
+ "code": "DisplayName",
1235
+ "description": "",
1236
+ "type": "string"
1237
+ },
1238
+ {
1239
+ "code": "Avatar",
1240
+ "description": "",
1241
+ "type": "GenericModels.AvatarItem"
1242
+ },
1243
+ {
1244
+ "code": "TsCreate",
1245
+ "description": "",
1246
+ "type": "number"
1247
+ },
1248
+ {
1249
+ "code": "Tags",
1250
+ "description": "",
1251
+ "type": "Array<GenericModels.TagItem>"
1252
+ },
1253
+ {
1254
+ "code": "GroupDatas",
1255
+ "description": "",
1256
+ "type": "Array<GenericModels.DataItem>"
1257
+ },
1258
+ {
1259
+ "code": "GroupCurrencies",
1260
+ "description": "",
1261
+ "type": "Array<GenericModels.CurrencyItem>"
1262
+ },
1263
+ {
1264
+ "code": "GroupStatistics",
1265
+ "description": "",
1266
+ "type": "Array<GenericModels.StatisticsItem>"
1267
+ },
1268
+ {
1269
+ "code": "GroupInventories",
1270
+ "description": "",
1271
+ "type": "Array<GenericModels.InventoryItem>"
1272
+ }
1273
+ ],
1274
+ "extends": null,
1275
+ "description": ""
1276
+ },
1277
+ {
1278
+ "name": "GroupResponseData",
1279
+ "details": [
1280
+ {
1281
+ "code": "InfoResponseParameters",
1282
+ "description": "",
1283
+ "type": "InfoResponseParameters"
1284
+ }
1285
+ ],
1286
+ "extends": null,
1287
+ "description": ""
1288
+ },
1289
+ {
1290
+ "name": "GroupWithGroupIdResponseData",
1291
+ "details": [
1292
+ {
1293
+ "code": "GroupId",
1294
+ "description": "",
1295
+ "type": "string"
1296
+ },
1297
+ {
1298
+ "code": "InfoResponseParameters",
1299
+ "description": "",
1300
+ "type": "InfoResponseParameters"
1301
+ }
1302
+ ],
1303
+ "extends": null,
1304
+ "description": ""
1305
+ },
1306
+ {
1307
+ "name": "GroupLeaderboardResponseData",
1308
+ "details": [
1309
+ {
1310
+ "code": "Position",
1311
+ "description": "",
1312
+ "type": "number"
1313
+ },
1314
+ {
1315
+ "code": "BackupValue",
1316
+ "description": "",
1317
+ "type": "number"
1318
+ },
1319
+ {
1320
+ "code": "GroupId",
1321
+ "description": "",
1322
+ "type": "string"
1323
+ },
1324
+ {
1325
+ "code": "InfoResponseParameters",
1326
+ "description": "",
1327
+ "type": "InfoResponseParameters"
1328
+ }
1329
+ ],
1330
+ "extends": null,
1331
+ "description": ""
1332
+ },
1333
+ {
1334
+ "name": "GroupLogResponseData",
1335
+ "details": [
1336
+ {
1337
+ "code": "GroupId",
1338
+ "description": "",
1339
+ "type": "string"
1340
+ },
1341
+ {
1342
+ "code": "TsCreate",
1343
+ "description": "",
1344
+ "type": "number"
1345
+ },
1346
+ {
1347
+ "code": "Log",
1348
+ "description": "",
1349
+ "type": "string"
1350
+ },
1351
+ {
1352
+ "code": "Key",
1353
+ "description": "",
1354
+ "type": "string"
1355
+ },
1356
+ {
1357
+ "code": "Amount",
1358
+ "description": "",
1359
+ "type": "number"
1360
+ },
1361
+ {
1362
+ "code": "StartValue",
1363
+ "description": "",
1364
+ "type": "number"
1365
+ },
1366
+ {
1367
+ "code": "FinalValue",
1368
+ "description": "",
1369
+ "type": "number"
1370
+ }
1371
+ ],
1372
+ "extends": null,
1373
+ "description": ""
1374
+ },
1375
+ {
1376
+ "name": "GetStatisticsLeaderboardResponseData",
1377
+ "details": [
1378
+ {
1379
+ "code": "Results",
1380
+ "description": "",
1381
+ "type": "Array<GroupLeaderboardResponseData>"
1382
+ },
1383
+ {
1384
+ "code": "TsCreate",
1385
+ "description": "",
1386
+ "type": "number"
1387
+ }
1388
+ ],
1389
+ "extends": null,
1390
+ "description": ""
1391
+ },
1392
+ {
1393
+ "name": "GroupsWithGroupIdResponseData",
1394
+ "details": [
1395
+ {
1396
+ "code": "Results",
1397
+ "description": "",
1398
+ "type": "Array<GroupWithGroupIdResponseData>"
1399
+ }
1400
+ ],
1401
+ "extends": null,
1402
+ "description": ""
1403
+ },
1404
+ {
1405
+ "name": "GroupMessageResponseData",
1406
+ "details": [
1407
+ {
1408
+ "code": "Message",
1409
+ "description": "",
1410
+ "type": "string"
1411
+ },
1412
+ {
1413
+ "code": "SenderId",
1414
+ "description": "",
1415
+ "type": "string"
1416
+ },
1417
+ {
1418
+ "code": "SenderType",
1419
+ "description": "",
1420
+ "type": "number"
1421
+ },
1422
+ {
1423
+ "code": "TsCreate",
1424
+ "description": "",
1425
+ "type": "number"
1426
+ }
1427
+ ],
1428
+ "extends": null,
1429
+ "description": ""
1430
+ },
1431
+ {
1432
+ "name": "GroupMessagesResponseData",
1433
+ "details": [
1434
+ {
1435
+ "code": "GroupMessages",
1436
+ "description": "",
1437
+ "type": "Array<GroupMessageResponseData>"
1438
+ }
1439
+ ],
1440
+ "extends": null,
1441
+ "description": ""
1442
+ },
1443
+ {
1444
+ "name": "GetCurrencyLeaderboardResponseData",
1445
+ "details": [
1446
+ {
1447
+ "code": "Results",
1448
+ "description": "",
1449
+ "type": "Array<GroupLeaderboardResponseData>"
1450
+ }
1451
+ ],
1452
+ "extends": null,
1453
+ "description": ""
1454
+ },
1455
+ {
1456
+ "name": "GetCreateLeaderboardResponseData",
1457
+ "details": [
1458
+ {
1459
+ "code": "Results",
1460
+ "description": "",
1461
+ "type": "Array<GroupLeaderboardResponseData>"
1462
+ }
1463
+ ],
1464
+ "extends": null,
1465
+ "description": ""
1466
+ },
1467
+ {
1468
+ "name": "GetStatisticsLogResponseData",
1469
+ "details": [
1470
+ {
1471
+ "code": "Results",
1472
+ "description": "",
1473
+ "type": "Array<GroupLogResponseData>"
1474
+ },
1475
+ {
1476
+ "code": "Token",
1477
+ "description": "",
1478
+ "type": "string"
1479
+ }
1480
+ ],
1481
+ "extends": null,
1482
+ "description": ""
1483
+ },
1484
+ {
1485
+ "name": "GetCurrencyLogResponseData",
1486
+ "details": [
1487
+ {
1488
+ "code": "Results",
1489
+ "description": "",
1490
+ "type": "Array<GroupLogResponseData>"
1491
+ },
1492
+ {
1493
+ "code": "Token",
1494
+ "description": "",
1495
+ "type": "string"
1496
+ }
1497
+ ],
1498
+ "extends": null,
1499
+ "description": ""
1500
+ },
1501
+ {
1502
+ "name": "EmptyResponseData",
1503
+ "details": [],
1504
+ "extends": null,
1505
+ "description": ""
1506
+ }
1507
+ ]
1508
+ }