@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,633 @@
1
+ {
2
+ "requestType": "Multiplayer",
3
+ "operations": [
4
+ {
5
+ "operationCode": "CancelAllMatchmakingTicket",
6
+ "details": [
7
+ {
8
+ "role": "Client",
9
+ "requestData": [
10
+ {
11
+ "code": "QueueName",
12
+ "description": "",
13
+ "type": "string"
14
+ }
15
+ ]
16
+ },
17
+ {
18
+ "role": "Server",
19
+ "requestData": [
20
+ {
21
+ "code": "UserId",
22
+ "description": "",
23
+ "type": "string"
24
+ }
25
+ ]
26
+ }
27
+ ],
28
+ "description": ""
29
+ },
30
+ {
31
+ "operationCode": "CancelMatchmakingTicket",
32
+ "details": [
33
+ {
34
+ "role": "Client",
35
+ "requestData": [
36
+ {
37
+ "code": "TicketId",
38
+ "description": "",
39
+ "type": "string"
40
+ }
41
+ ]
42
+ },
43
+ {
44
+ "role": "Server",
45
+ "requestData": [
46
+ {
47
+ "code": "UserId",
48
+ "description": "",
49
+ "type": "string"
50
+ }
51
+ ]
52
+ }
53
+ ],
54
+ "description": ""
55
+ },
56
+ {
57
+ "operationCode": "CreateMatchmakingTicket",
58
+ "details": [
59
+ {
60
+ "role": "Client",
61
+ "requestData": [
62
+ {
63
+ "code": "GiveUpAfterSeconds",
64
+ "description": "",
65
+ "type": "number"
66
+ },
67
+ {
68
+ "code": "QueueName",
69
+ "description": "",
70
+ "type": "string"
71
+ },
72
+ {
73
+ "code": "Attribute",
74
+ "description": "",
75
+ "type": "GNHashtable"
76
+ },
77
+ {
78
+ "code": "Members",
79
+ "description": "",
80
+ "type": "Array<string>"
81
+ }
82
+ ]
83
+ },
84
+ {
85
+ "role": "Server",
86
+ "requestData": [
87
+ {
88
+ "code": "UserId",
89
+ "description": "",
90
+ "type": "string"
91
+ }
92
+ ]
93
+ }
94
+ ],
95
+ "description": ""
96
+ },
97
+ {
98
+ "operationCode": "GetAllMatchmakingTicket",
99
+ "details": [
100
+ {
101
+ "role": "Client",
102
+ "requestData": [
103
+ {
104
+ "code": "Status",
105
+ "description": "",
106
+ "type": "number"
107
+ },
108
+ {
109
+ "code": "ReturnMember",
110
+ "description": "",
111
+ "type": "boolean",
112
+ "defaultValue": "false"
113
+ },
114
+ {
115
+ "code": "Skip",
116
+ "description": "",
117
+ "type": "number",
118
+ "defaultValue": "0"
119
+ },
120
+ {
121
+ "code": "Limit",
122
+ "description": "",
123
+ "type": "number",
124
+ "defaultValue": "10"
125
+ }
126
+ ]
127
+ }
128
+ ],
129
+ "description": ""
130
+ },
131
+ {
132
+ "operationCode": "GetAllMatch",
133
+ "details": [
134
+ {
135
+ "role": "Client",
136
+ "requestData": [
137
+ {
138
+ "code": "ReturnMember",
139
+ "description": "",
140
+ "type": "boolean",
141
+ "defaultValue": "false"
142
+ },
143
+ {
144
+ "code": "Skip",
145
+ "description": "",
146
+ "type": "number",
147
+ "defaultValue": "0"
148
+ },
149
+ {
150
+ "code": "Limit",
151
+ "description": "",
152
+ "type": "number",
153
+ "defaultValue": "10"
154
+ }
155
+ ]
156
+ }
157
+ ],
158
+ "description": ""
159
+ },
160
+ {
161
+ "operationCode": "GetMatchmakingTicket",
162
+ "details": [
163
+ {
164
+ "role": "Client",
165
+ "requestData": [
166
+ {
167
+ "code": "TicketId",
168
+ "description": "",
169
+ "type": "string"
170
+ },
171
+ {
172
+ "code": "ReturnMember",
173
+ "description": "",
174
+ "type": "boolean",
175
+ "defaultValue": "false"
176
+ }
177
+ ]
178
+ }
179
+ ],
180
+ "description": ""
181
+ },
182
+ {
183
+ "operationCode": "GetMatch",
184
+ "details": [
185
+ {
186
+ "role": "Client",
187
+ "requestData": [
188
+ {
189
+ "code": "MatchId",
190
+ "description": "",
191
+ "type": "string"
192
+ },
193
+ {
194
+ "code": "ReturnMember",
195
+ "description": "",
196
+ "type": "boolean",
197
+ "defaultValue": "false"
198
+ }
199
+ ]
200
+ }
201
+ ],
202
+ "description": ""
203
+ },
204
+ {
205
+ "operationCode": "GetQueueStatistics",
206
+ "details": [
207
+ {
208
+ "role": "Client",
209
+ "requestData": [
210
+ {
211
+ "code": "QueueName",
212
+ "description": "",
213
+ "type": "string"
214
+ },
215
+ {
216
+ "code": "TimeInSeconds",
217
+ "description": "",
218
+ "type": "number"
219
+ }
220
+ ]
221
+ }
222
+ ],
223
+ "description": ""
224
+ },
225
+ {
226
+ "operationCode": "JoinMatchmakingTicket",
227
+ "details": [
228
+ {
229
+ "role": "Client",
230
+ "requestData": [
231
+ {
232
+ "code": "TicketId",
233
+ "description": "",
234
+ "type": "string"
235
+ },
236
+ {
237
+ "code": "Attribute",
238
+ "description": "",
239
+ "type": "GNHashtable"
240
+ }
241
+ ]
242
+ },
243
+ {
244
+ "role": "Server",
245
+ "requestData": [
246
+ {
247
+ "code": "UserId",
248
+ "description": "",
249
+ "type": "string"
250
+ }
251
+ ]
252
+ }
253
+ ],
254
+ "description": ""
255
+ },
256
+ {
257
+ "operationCode": "ListMatchmakingTicketsForPlayer",
258
+ "details": [
259
+ {
260
+ "role": "Client",
261
+ "requestData": [
262
+ {
263
+ "code": "QueueName",
264
+ "description": "",
265
+ "type": "string"
266
+ }
267
+ ]
268
+ },
269
+ {
270
+ "role": "Server",
271
+ "requestData": [
272
+ {
273
+ "code": "UserId",
274
+ "description": "",
275
+ "type": "string"
276
+ }
277
+ ]
278
+ }
279
+ ],
280
+ "description": ""
281
+ }
282
+ ],
283
+ "models": [
284
+ {
285
+ "name": "CancelAllMatchmakingTicketResponseData",
286
+ "details": [
287
+ {
288
+ "code": "TicketIds",
289
+ "description": "",
290
+ "type": "Array<string>"
291
+ }
292
+ ],
293
+ "extends": null,
294
+ "description": ""
295
+ },
296
+ {
297
+ "name": "CreateMatchmakingTicketResponseData",
298
+ "details": [
299
+ {
300
+ "code": "TicketId",
301
+ "description": "",
302
+ "type": "string"
303
+ }
304
+ ],
305
+ "extends": null,
306
+ "description": ""
307
+ },
308
+ {
309
+ "name": "MatchmakingTicketMember",
310
+ "details": [
311
+ {
312
+ "code": "UserId",
313
+ "description": "",
314
+ "type": "string"
315
+ },
316
+ {
317
+ "code": "Status",
318
+ "description": "",
319
+ "type": "number"
320
+ },
321
+ {
322
+ "code": "Attribute",
323
+ "description": "",
324
+ "type": "GNHashtable"
325
+ }
326
+ ],
327
+ "extends": null,
328
+ "description": ""
329
+ },
330
+ {
331
+ "name": "MatchmakingTicketResponseData",
332
+ "details": [
333
+ {
334
+ "code": "TsCreate",
335
+ "description": "",
336
+ "type": "number"
337
+ },
338
+ {
339
+ "code": "CreatorId",
340
+ "description": "",
341
+ "type": "string"
342
+ },
343
+ {
344
+ "code": "GiveUpAfterSeconds",
345
+ "description": "",
346
+ "type": "number"
347
+ },
348
+ {
349
+ "code": "QueueName",
350
+ "description": "",
351
+ "type": "string"
352
+ },
353
+ {
354
+ "code": "Status",
355
+ "description": "",
356
+ "type": "number"
357
+ },
358
+ {
359
+ "code": "MatchId",
360
+ "description": "",
361
+ "type": "string"
362
+ },
363
+ {
364
+ "code": "Members",
365
+ "description": "",
366
+ "type": "Array<MatchmakingTicketMember>"
367
+ }
368
+ ],
369
+ "extends": null,
370
+ "description": ""
371
+ },
372
+ {
373
+ "name": "MatchmakingTicketWithTicketIdResponseData",
374
+ "details": [
375
+ {
376
+ "code": "TicketId",
377
+ "description": "",
378
+ "type": "string"
379
+ },
380
+ {
381
+ "code": "TsCreate",
382
+ "description": "",
383
+ "type": "number"
384
+ },
385
+ {
386
+ "code": "CreatorId",
387
+ "description": "",
388
+ "type": "string"
389
+ },
390
+ {
391
+ "code": "GiveUpAfterSeconds",
392
+ "description": "",
393
+ "type": "number"
394
+ },
395
+ {
396
+ "code": "QueueName",
397
+ "description": "",
398
+ "type": "string"
399
+ },
400
+ {
401
+ "code": "Status",
402
+ "description": "",
403
+ "type": "number"
404
+ },
405
+ {
406
+ "code": "MatchId",
407
+ "description": "",
408
+ "type": "string"
409
+ },
410
+ {
411
+ "code": "Members",
412
+ "description": "",
413
+ "type": "Array<MatchmakingTicketMember>"
414
+ }
415
+ ],
416
+ "extends": null,
417
+ "description": ""
418
+ },
419
+ {
420
+ "name": "GetMatchmakingTicketResponseData",
421
+ "details": [
422
+ {
423
+ "code": "MatchmakingTicket",
424
+ "description": "",
425
+ "type": "MatchmakingTicketResponseData"
426
+ }
427
+ ],
428
+ "extends": null,
429
+ "description": ""
430
+ },
431
+ {
432
+ "name": "MatchMember",
433
+ "details": [
434
+ {
435
+ "code": "UserId",
436
+ "description": "",
437
+ "type": "string"
438
+ },
439
+ {
440
+ "code": "TeamId",
441
+ "description": "",
442
+ "type": "string"
443
+ },
444
+ {
445
+ "code": "Attribute",
446
+ "description": "",
447
+ "type": "GNHashtable"
448
+ }
449
+ ],
450
+ "extends": null,
451
+ "description": ""
452
+ },
453
+ {
454
+ "name": "PortInfo",
455
+ "details": [
456
+ {
457
+ "code": "Name",
458
+ "description": "",
459
+ "type": "string"
460
+ },
461
+ {
462
+ "code": "PublicPort",
463
+ "description": "",
464
+ "type": "number"
465
+ },
466
+ {
467
+ "code": "PrivatePort",
468
+ "description": "",
469
+ "type": "number"
470
+ },
471
+ {
472
+ "code": "Protocol",
473
+ "description": "",
474
+ "type": "number"
475
+ }
476
+ ],
477
+ "extends": null,
478
+ "description": ""
479
+ },
480
+ {
481
+ "name": "ServerDetail",
482
+ "details": [
483
+ {
484
+ "code": "IpV4Address",
485
+ "description": "",
486
+ "type": "string"
487
+ },
488
+ {
489
+ "code": "Ports",
490
+ "description": "",
491
+ "type": "Array<PortInfo>"
492
+ }
493
+ ],
494
+ "extends": null,
495
+ "description": ""
496
+ },
497
+ {
498
+ "name": "MatchResponseData",
499
+ "details": [
500
+ {
501
+ "code": "TsCreate",
502
+ "description": "",
503
+ "type": "number"
504
+ },
505
+ {
506
+ "code": "QueueName",
507
+ "description": "",
508
+ "type": "string"
509
+ },
510
+ {
511
+ "code": "Members",
512
+ "description": "",
513
+ "type": "Array<MatchMember>"
514
+ },
515
+ {
516
+ "code": "TimeToMatchInSeconds",
517
+ "description": "",
518
+ "type": "number"
519
+ }
520
+ ],
521
+ "extends": null,
522
+ "description": ""
523
+ },
524
+ {
525
+ "name": "MatchWithMatchIdResponseData",
526
+ "details": [
527
+ {
528
+ "code": "MatchId",
529
+ "description": "",
530
+ "type": "string"
531
+ },
532
+ {
533
+ "code": "TsCreate",
534
+ "description": "",
535
+ "type": "number"
536
+ },
537
+ {
538
+ "code": "QueueName",
539
+ "description": "",
540
+ "type": "string"
541
+ },
542
+ {
543
+ "code": "Members",
544
+ "description": "",
545
+ "type": "Array<MatchMember>"
546
+ },
547
+ {
548
+ "code": "TimeToMatchInSeconds",
549
+ "description": "",
550
+ "type": "number"
551
+ }
552
+ ],
553
+ "extends": null,
554
+ "description": ""
555
+ },
556
+ {
557
+ "name": "GetMatchResponseData",
558
+ "details": [
559
+ {
560
+ "code": "Match",
561
+ "description": "",
562
+ "type": "MatchResponseData"
563
+ }
564
+ ],
565
+ "extends": null,
566
+ "description": ""
567
+ },
568
+ {
569
+ "name": "GetQueueStatisticsResponseData",
570
+ "details": [
571
+ {
572
+ "code": "PendingMemberCount",
573
+ "description": "",
574
+ "type": "number"
575
+ },
576
+ {
577
+ "code": "PendingTicketCount",
578
+ "description": "",
579
+ "type": "number"
580
+ },
581
+ {
582
+ "code": "AverageMatchmakingTimeInSeconds",
583
+ "description": "",
584
+ "type": "number"
585
+ }
586
+ ],
587
+ "extends": null,
588
+ "description": ""
589
+ },
590
+ {
591
+ "name": "ListMatchmakingTicketsForPlayerResponseData",
592
+ "details": [
593
+ {
594
+ "code": "TicketIds",
595
+ "description": "",
596
+ "type": "Array<string>"
597
+ }
598
+ ],
599
+ "extends": null,
600
+ "description": ""
601
+ },
602
+ {
603
+ "name": "GetAllMatchResponseData",
604
+ "details": [
605
+ {
606
+ "code": "Results",
607
+ "description": "",
608
+ "type": "Array<MatchWithMatchIdResponseData>"
609
+ }
610
+ ],
611
+ "extends": null,
612
+ "description": ""
613
+ },
614
+ {
615
+ "name": "GetAllMatchmakingTicketResponseData",
616
+ "details": [
617
+ {
618
+ "code": "Results",
619
+ "description": "",
620
+ "type": "Array<MatchmakingTicketWithTicketIdResponseData>"
621
+ }
622
+ ],
623
+ "extends": null,
624
+ "description": ""
625
+ },
626
+ {
627
+ "name": "EmptyResponseData",
628
+ "details": [],
629
+ "extends": null,
630
+ "description": ""
631
+ }
632
+ ]
633
+ }