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