@xmobitea/gn-typescript-client 2.6.8 → 2.6.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/LICENSE +198 -5
  2. package/dist/gearn.js.client.js +3 -11
  3. package/dist/gearn.js.client.min.js +1 -1
  4. package/dist/index.js +3 -11
  5. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +0 -1
  6. package/dist/runtime/entity/models/DashboardModels.d.ts +7 -7
  7. package/dist/runtime/entity/models/GroupModels.d.ts +0 -1
  8. package/dist/runtime/entity/models/MultiplayerModels.d.ts +1 -1
  9. package/package.json +2 -2
  10. package/responseModel/chatgpt/Authenticate.json +724 -0
  11. package/responseModel/chatgpt/CharacterPlayer.json +1890 -0
  12. package/responseModel/chatgpt/CloudScript.json +254 -0
  13. package/responseModel/chatgpt/Content.json +273 -0
  14. package/responseModel/chatgpt/Dashboard.json +4110 -0
  15. package/responseModel/chatgpt/GamePlayer.json +2306 -0
  16. package/responseModel/chatgpt/Generic.json +253 -0
  17. package/responseModel/chatgpt/Group.json +1509 -0
  18. package/responseModel/chatgpt/Inventory.json +1211 -0
  19. package/responseModel/chatgpt/MasterPlayer.json +3801 -0
  20. package/responseModel/chatgpt/Multiplayer.json +634 -0
  21. package/responseModel/chatgpt/StoreInventory.json +1099 -0
  22. package/responseModel/clients/AuthenticateModels.json +271 -0
  23. package/responseModel/clients/CharacterPlayerModels.json +792 -0
  24. package/responseModel/clients/CloudScriptModels.json +191 -0
  25. package/responseModel/clients/ContentModels.json +178 -0
  26. package/responseModel/clients/DashboardModels.json +5423 -0
  27. package/responseModel/clients/GamePlayerModels.json +781 -0
  28. package/responseModel/clients/GenericModels.json +344 -0
  29. package/responseModel/clients/GroupModels.json +705 -0
  30. package/responseModel/clients/InventoryModels.json +568 -0
  31. package/responseModel/clients/MasterPlayerModels.json +1281 -0
  32. package/responseModel/clients/MultiplayerModels.json +439 -0
  33. package/responseModel/clients/StoreInventoryModels.json +971 -0
  34. package/responseModel/finalChatgpt/Authenticate.json +1475 -0
  35. package/responseModel/finalChatgpt/CharacterPlayer.json +4104 -0
  36. package/responseModel/finalChatgpt/CloudScript.json +515 -0
  37. package/responseModel/finalChatgpt/Content.json +536 -0
  38. package/responseModel/finalChatgpt/Dashboard.json +6712 -0
  39. package/responseModel/finalChatgpt/GamePlayer.json +5142 -0
  40. package/responseModel/finalChatgpt/Generic.json +333 -0
  41. package/responseModel/finalChatgpt/Group.json +3232 -0
  42. package/responseModel/finalChatgpt/Inventory.json +2606 -0
  43. package/responseModel/finalChatgpt/MasterPlayer.json +8385 -0
  44. package/responseModel/finalChatgpt/Multiplayer.json +1196 -0
  45. package/responseModel/finalChatgpt/StoreInventory.json +2085 -0
  46. package/responseModel/finals/Authenticate.json +1460 -0
  47. package/responseModel/finals/CharacterPlayer.json +3639 -0
  48. package/responseModel/finals/CloudScript.json +465 -0
  49. package/responseModel/finals/Content.json +479 -0
  50. package/responseModel/finals/Dashboard.json +6718 -0
  51. package/responseModel/finals/GamePlayer.json +4291 -0
  52. package/responseModel/finals/Generic.json +345 -0
  53. package/responseModel/finals/Group.json +2885 -0
  54. package/responseModel/finals/Inventory.json +2309 -0
  55. package/responseModel/finals/MasterPlayer.json +7018 -0
  56. package/responseModel/finals/Multiplayer.json +1082 -0
  57. package/responseModel/finals/StoreInventory.json +1979 -0
  58. package/responseModel/finalsShort/Authenticate.json +723 -0
  59. package/responseModel/finalsShort/CharacterPlayer.json +1889 -0
  60. package/responseModel/finalsShort/CloudScript.json +253 -0
  61. package/responseModel/finalsShort/Content.json +272 -0
  62. package/responseModel/finalsShort/Dashboard.json +4109 -0
  63. package/responseModel/finalsShort/GamePlayer.json +2305 -0
  64. package/responseModel/finalsShort/Generic.json +252 -0
  65. package/responseModel/finalsShort/Group.json +1508 -0
  66. package/responseModel/finalsShort/Inventory.json +1210 -0
  67. package/responseModel/finalsShort/MasterPlayer.json +3800 -0
  68. package/responseModel/finalsShort/Multiplayer.json +633 -0
  69. package/responseModel/finalsShort/StoreInventory.json +1098 -0
  70. package/responseModel/operationResponse/AuthenticateResponseModels.json +77 -0
  71. package/responseModel/operationResponse/CharacterPlayerResponseModels.json +217 -0
  72. package/responseModel/operationResponse/CloudScriptResponseModels.json +25 -0
  73. package/responseModel/operationResponse/ContentResponseModels.json +33 -0
  74. package/responseModel/operationResponse/DashboardResponseModels.json +109 -0
  75. package/responseModel/operationResponse/GamePlayerResponseModels.json +213 -0
  76. package/responseModel/operationResponse/GroupResponseModels.json +165 -0
  77. package/responseModel/operationResponse/InventoryResponseModels.json +141 -0
  78. package/responseModel/operationResponse/MasterPlayerResponseModels.json +349 -0
  79. package/responseModel/operationResponse/MultiplayerResponseModels.json +45 -0
  80. package/responseModel/operationResponse/StoreInventoryResponseModels.json +61 -0
  81. package/responseModel/servers/Authenticate.json +1328 -0
  82. package/responseModel/servers/CharacterPlayer.json +3199 -0
  83. package/responseModel/servers/CloudScript.json +278 -0
  84. package/responseModel/servers/Content.json +324 -0
  85. package/responseModel/servers/GamePlayer.json +3844 -0
  86. package/responseModel/servers/Group.json +2454 -0
  87. package/responseModel/servers/Inventory.json +1964 -0
  88. package/responseModel/servers/MasterAdmin.json +5569 -0
  89. package/responseModel/servers/MasterPlayer.json +5924 -0
  90. package/responseModel/servers/Multiplayer.json +545 -0
  91. package/responseModel/servers/StoreInventory.json +1290 -0
@@ -0,0 +1,568 @@
1
+ {
2
+ "path": "InventoryModels",
3
+ "models": [
4
+ {
5
+ "name": "CustomDataParam",
6
+ "details": [
7
+ {
8
+ "code": "Key",
9
+ "description": "",
10
+ "optional": false,
11
+ "type": "string",
12
+ "gnType": "String",
13
+ "conditions": {
14
+ "mustNonNull": true,
15
+ "minLength": 2,
16
+ "maxLength": 32
17
+ }
18
+ },
19
+ {
20
+ "code": "Value",
21
+ "description": "",
22
+ "optional": false,
23
+ "type": "any",
24
+ "gnType": "DataMember",
25
+ "conditions": {}
26
+ }
27
+ ],
28
+ "extends": null,
29
+ "description": ""
30
+ },
31
+ {
32
+ "name": "InfoRequestParam",
33
+ "details": [
34
+ {
35
+ "code": "CatalogId",
36
+ "description": "",
37
+ "optional": true,
38
+ "type": "boolean",
39
+ "gnType": "Boolean",
40
+ "defaultValue": "false",
41
+ "conditions": {}
42
+ },
43
+ {
44
+ "code": "ClassId",
45
+ "description": "",
46
+ "optional": true,
47
+ "type": "boolean",
48
+ "gnType": "Boolean",
49
+ "defaultValue": "false",
50
+ "conditions": {}
51
+ },
52
+ {
53
+ "code": "ItemType",
54
+ "description": "",
55
+ "optional": true,
56
+ "type": "boolean",
57
+ "gnType": "Boolean",
58
+ "defaultValue": "false",
59
+ "conditions": {}
60
+ },
61
+ {
62
+ "code": "Amount",
63
+ "description": "",
64
+ "optional": true,
65
+ "type": "boolean",
66
+ "gnType": "Boolean",
67
+ "defaultValue": "false",
68
+ "conditions": {}
69
+ },
70
+ {
71
+ "code": "Owner",
72
+ "description": "",
73
+ "optional": true,
74
+ "type": "boolean",
75
+ "gnType": "Boolean",
76
+ "defaultValue": "false",
77
+ "conditions": {}
78
+ },
79
+ {
80
+ "code": "RemoveStatus",
81
+ "description": "",
82
+ "optional": true,
83
+ "type": "boolean",
84
+ "gnType": "Boolean",
85
+ "defaultValue": "false",
86
+ "conditions": {}
87
+ },
88
+ {
89
+ "code": "Segments",
90
+ "description": "",
91
+ "optional": true,
92
+ "type": "boolean",
93
+ "gnType": "Boolean",
94
+ "defaultValue": "false",
95
+ "conditions": {}
96
+ },
97
+ {
98
+ "code": "CustomDatas",
99
+ "description": "",
100
+ "optional": true,
101
+ "type": "boolean",
102
+ "gnType": "Boolean",
103
+ "defaultValue": "false",
104
+ "conditions": {}
105
+ },
106
+ {
107
+ "code": "DisplayName",
108
+ "description": "",
109
+ "optional": true,
110
+ "type": "boolean",
111
+ "gnType": "Boolean",
112
+ "defaultValue": "false",
113
+ "conditions": {}
114
+ },
115
+ {
116
+ "code": "Avatar",
117
+ "description": "",
118
+ "optional": true,
119
+ "type": "boolean",
120
+ "gnType": "Boolean",
121
+ "defaultValue": "false",
122
+ "conditions": {}
123
+ },
124
+ {
125
+ "code": "TsCreate",
126
+ "description": "",
127
+ "optional": true,
128
+ "type": "boolean",
129
+ "gnType": "Boolean",
130
+ "defaultValue": "false",
131
+ "conditions": {}
132
+ },
133
+ {
134
+ "code": "Tags",
135
+ "description": "",
136
+ "optional": true,
137
+ "type": "boolean",
138
+ "gnType": "Boolean",
139
+ "defaultValue": "false",
140
+ "conditions": {}
141
+ },
142
+ {
143
+ "code": "ItemStatistics",
144
+ "description": "",
145
+ "optional": true,
146
+ "type": "boolean",
147
+ "gnType": "Boolean",
148
+ "defaultValue": "false",
149
+ "conditions": {}
150
+ },
151
+ {
152
+ "code": "ItemDatas",
153
+ "description": "",
154
+ "optional": true,
155
+ "type": "boolean",
156
+ "gnType": "Boolean",
157
+ "defaultValue": "false",
158
+ "conditions": {}
159
+ },
160
+ {
161
+ "code": "ItemDataKeys",
162
+ "description": "",
163
+ "optional": true,
164
+ "type": "string",
165
+ "gnType": "GNArray",
166
+ "conditions": {}
167
+ },
168
+ {
169
+ "code": "ItemStatisticsKeys",
170
+ "description": "",
171
+ "optional": true,
172
+ "type": "string",
173
+ "gnType": "GNArray",
174
+ "conditions": {}
175
+ },
176
+ {
177
+ "code": "CustomDataKeys",
178
+ "description": "",
179
+ "optional": true,
180
+ "type": "string",
181
+ "gnType": "GNArray",
182
+ "conditions": {}
183
+ },
184
+ {
185
+ "code": "TagKeys",
186
+ "description": "",
187
+ "optional": true,
188
+ "type": "string",
189
+ "gnType": "GNArray",
190
+ "conditions": {}
191
+ }
192
+ ],
193
+ "extends": null,
194
+ "description": ""
195
+ },
196
+ {
197
+ "name": "ItemDataParam",
198
+ "details": [
199
+ {
200
+ "code": "Key",
201
+ "description": "",
202
+ "optional": false,
203
+ "type": "string",
204
+ "gnType": "String",
205
+ "conditions": {
206
+ "mustNonNull": true,
207
+ "minLength": 2,
208
+ "maxLength": 32
209
+ }
210
+ },
211
+ {
212
+ "code": "Value",
213
+ "description": "",
214
+ "optional": false,
215
+ "type": "any",
216
+ "gnType": "DataMember",
217
+ "conditions": {}
218
+ }
219
+ ],
220
+ "extends": null,
221
+ "description": ""
222
+ },
223
+ {
224
+ "name": "ItemStatisticsParam",
225
+ "details": [
226
+ {
227
+ "code": "Key",
228
+ "description": "",
229
+ "optional": false,
230
+ "type": "string",
231
+ "gnType": "String",
232
+ "conditions": {
233
+ "mustNonNull": true,
234
+ "minLength": 2,
235
+ "maxLength": 32
236
+ }
237
+ },
238
+ {
239
+ "code": "Value",
240
+ "description": "",
241
+ "optional": false,
242
+ "type": "number",
243
+ "gnType": "Number",
244
+ "conditions": {}
245
+ }
246
+ ],
247
+ "extends": null,
248
+ "description": ""
249
+ },
250
+ {
251
+ "name": "InfoResponseParameters",
252
+ "details": [
253
+ {
254
+ "code": "CatalogId",
255
+ "description": "",
256
+ "optional": true,
257
+ "type": "string",
258
+ "gnType": "String",
259
+ "conditions": {}
260
+ },
261
+ {
262
+ "code": "ClassId",
263
+ "description": "",
264
+ "optional": true,
265
+ "type": "string",
266
+ "gnType": "String",
267
+ "conditions": {}
268
+ },
269
+ {
270
+ "code": "ItemType",
271
+ "description": "",
272
+ "optional": true,
273
+ "type": "number",
274
+ "gnType": "Number",
275
+ "conditions": {}
276
+ },
277
+ {
278
+ "code": "Amount",
279
+ "description": "",
280
+ "optional": true,
281
+ "type": "number",
282
+ "gnType": "Number",
283
+ "conditions": {}
284
+ },
285
+ {
286
+ "code": "Owner",
287
+ "description": "",
288
+ "optional": true,
289
+ "type": "GenericModels.OwnerItem",
290
+ "gnType": "GNHashtable",
291
+ "conditions": {}
292
+ },
293
+ {
294
+ "code": "RemoveStatus",
295
+ "description": "",
296
+ "optional": true,
297
+ "type": "GenericModels.RemoveStatusItem",
298
+ "gnType": "GNHashtable",
299
+ "conditions": {}
300
+ },
301
+ {
302
+ "code": "Segments",
303
+ "description": "",
304
+ "optional": true,
305
+ "type": "string",
306
+ "gnType": "GNArray",
307
+ "conditions": {}
308
+ },
309
+ {
310
+ "code": "CustomDatas",
311
+ "description": "",
312
+ "optional": true,
313
+ "type": "GenericModels.DataItem",
314
+ "gnType": "GNArray",
315
+ "conditions": {}
316
+ },
317
+ {
318
+ "code": "DisplayName",
319
+ "description": "",
320
+ "optional": true,
321
+ "type": "string",
322
+ "gnType": "String",
323
+ "conditions": {}
324
+ },
325
+ {
326
+ "code": "Avatar",
327
+ "description": "",
328
+ "optional": true,
329
+ "type": "GenericModels.AvatarItem",
330
+ "gnType": "GNHashtable",
331
+ "conditions": {}
332
+ },
333
+ {
334
+ "code": "TsCreate",
335
+ "description": "",
336
+ "optional": true,
337
+ "type": "number",
338
+ "gnType": "Number",
339
+ "conditions": {}
340
+ },
341
+ {
342
+ "code": "Tags",
343
+ "description": "",
344
+ "optional": true,
345
+ "type": "GenericModels.TagItem",
346
+ "gnType": "GNArray",
347
+ "conditions": {}
348
+ },
349
+ {
350
+ "code": "ItemDatas",
351
+ "description": "",
352
+ "optional": true,
353
+ "type": "GenericModels.DataItem",
354
+ "gnType": "GNArray",
355
+ "conditions": {}
356
+ },
357
+ {
358
+ "code": "ItemStatistics",
359
+ "description": "",
360
+ "optional": true,
361
+ "type": "GenericModels.StatisticsItem",
362
+ "gnType": "GNArray",
363
+ "conditions": {}
364
+ }
365
+ ],
366
+ "extends": null,
367
+ "description": ""
368
+ },
369
+ {
370
+ "name": "InventoryResponseData",
371
+ "details": [
372
+ {
373
+ "code": "InfoResponseParameters",
374
+ "description": "",
375
+ "optional": false,
376
+ "type": "InfoResponseParameters",
377
+ "gnType": "GNHashtable",
378
+ "conditions": {}
379
+ }
380
+ ],
381
+ "extends": null,
382
+ "description": ""
383
+ },
384
+ {
385
+ "name": "InventoryWithItemIdResponseData",
386
+ "details": [
387
+ {
388
+ "code": "ItemId",
389
+ "description": "",
390
+ "optional": false,
391
+ "type": "string",
392
+ "gnType": "String",
393
+ "conditions": {}
394
+ }
395
+ ],
396
+ "extends": "InventoryResponseData",
397
+ "description": ""
398
+ },
399
+ {
400
+ "name": "InventoryLeaderboardResponseData",
401
+ "details": [
402
+ {
403
+ "code": "Position",
404
+ "description": "",
405
+ "optional": false,
406
+ "type": "number",
407
+ "gnType": "Number",
408
+ "conditions": {}
409
+ },
410
+ {
411
+ "code": "BackupValue",
412
+ "description": "",
413
+ "optional": true,
414
+ "type": "number",
415
+ "gnType": "Number",
416
+ "conditions": {}
417
+ }
418
+ ],
419
+ "extends": "InventoryWithItemIdResponseData",
420
+ "description": ""
421
+ },
422
+ {
423
+ "name": "InventoryLogResponseData",
424
+ "details": [
425
+ {
426
+ "code": "ItemId",
427
+ "description": "",
428
+ "optional": false,
429
+ "type": "string",
430
+ "gnType": "String",
431
+ "conditions": {}
432
+ },
433
+ {
434
+ "code": "TsCreate",
435
+ "description": "",
436
+ "optional": false,
437
+ "type": "number",
438
+ "gnType": "Number",
439
+ "conditions": {}
440
+ },
441
+ {
442
+ "code": "Log",
443
+ "description": "",
444
+ "optional": false,
445
+ "type": "string",
446
+ "gnType": "String",
447
+ "conditions": {}
448
+ },
449
+ {
450
+ "code": "Key",
451
+ "description": "",
452
+ "optional": false,
453
+ "type": "string",
454
+ "gnType": "String",
455
+ "conditions": {}
456
+ },
457
+ {
458
+ "code": "Amount",
459
+ "description": "",
460
+ "optional": false,
461
+ "type": "number",
462
+ "gnType": "Number",
463
+ "conditions": {}
464
+ },
465
+ {
466
+ "code": "StartValue",
467
+ "description": "",
468
+ "optional": false,
469
+ "type": "number",
470
+ "gnType": "Number",
471
+ "conditions": {}
472
+ },
473
+ {
474
+ "code": "FinalValue",
475
+ "description": "",
476
+ "optional": false,
477
+ "type": "number",
478
+ "gnType": "Number",
479
+ "conditions": {}
480
+ }
481
+ ],
482
+ "extends": null,
483
+ "description": ""
484
+ },
485
+ {
486
+ "name": "GetStatisticsLeaderboardResponseData",
487
+ "details": [
488
+ {
489
+ "code": "Results",
490
+ "description": "",
491
+ "optional": false,
492
+ "type": "InventoryLeaderboardResponseData",
493
+ "gnType": "GNArray",
494
+ "conditions": {}
495
+ },
496
+ {
497
+ "code": "TsCreate",
498
+ "description": "",
499
+ "optional": true,
500
+ "type": "number",
501
+ "gnType": "Number",
502
+ "conditions": {}
503
+ }
504
+ ],
505
+ "extends": null,
506
+ "description": ""
507
+ },
508
+ {
509
+ "name": "InventoriesWithItemIdResponseData",
510
+ "details": [
511
+ {
512
+ "code": "Results",
513
+ "description": "",
514
+ "optional": false,
515
+ "type": "InventoryWithItemIdResponseData",
516
+ "gnType": "GNArray",
517
+ "conditions": {}
518
+ }
519
+ ],
520
+ "extends": null,
521
+ "description": ""
522
+ },
523
+ {
524
+ "name": "GetCreateLeaderboardResponseData",
525
+ "details": [
526
+ {
527
+ "code": "Results",
528
+ "description": "",
529
+ "optional": false,
530
+ "type": "InventoryLeaderboardResponseData",
531
+ "gnType": "GNArray",
532
+ "conditions": {}
533
+ }
534
+ ],
535
+ "extends": null,
536
+ "description": ""
537
+ },
538
+ {
539
+ "name": "GetStatisticsLogResponseData",
540
+ "details": [
541
+ {
542
+ "code": "Results",
543
+ "description": "",
544
+ "optional": false,
545
+ "type": "InventoryLogResponseData",
546
+ "gnType": "GNArray",
547
+ "conditions": {}
548
+ },
549
+ {
550
+ "code": "Token",
551
+ "description": "",
552
+ "optional": true,
553
+ "type": "string",
554
+ "gnType": "String",
555
+ "conditions": {}
556
+ }
557
+ ],
558
+ "extends": null,
559
+ "description": ""
560
+ },
561
+ {
562
+ "name": "EmptyResponseData",
563
+ "details": [],
564
+ "extends": null,
565
+ "description": ""
566
+ }
567
+ ]
568
+ }