@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,344 @@
1
+ {
2
+ "path": "GenericModels",
3
+ "models": [
4
+ {
5
+ "name": "AvatarItem",
6
+ "details": [
7
+ {
8
+ "code": "Type",
9
+ "description": "",
10
+ "optional": false,
11
+ "type": "number",
12
+ "gnType": "Number",
13
+ "conditions": {}
14
+ },
15
+ {
16
+ "code": "Value",
17
+ "description": "",
18
+ "optional": false,
19
+ "type": "string",
20
+ "gnType": "String",
21
+ "conditions": {}
22
+ }
23
+ ],
24
+ "extends": null,
25
+ "description": ""
26
+ },
27
+ {
28
+ "name": "TagItem",
29
+ "details": [
30
+ {
31
+ "code": "Key",
32
+ "description": "",
33
+ "optional": false,
34
+ "type": "string",
35
+ "gnType": "String",
36
+ "conditions": {}
37
+ },
38
+ {
39
+ "code": "Value",
40
+ "description": "",
41
+ "optional": false,
42
+ "type": "string",
43
+ "gnType": "String",
44
+ "conditions": {}
45
+ }
46
+ ],
47
+ "extends": null,
48
+ "description": ""
49
+ },
50
+ {
51
+ "name": "BanItem",
52
+ "details": [
53
+ {
54
+ "code": "TsExpire",
55
+ "description": "",
56
+ "optional": false,
57
+ "type": "number",
58
+ "gnType": "Number",
59
+ "conditions": {}
60
+ },
61
+ {
62
+ "code": "Reason",
63
+ "description": "",
64
+ "optional": false,
65
+ "type": "string",
66
+ "gnType": "String",
67
+ "conditions": {}
68
+ }
69
+ ],
70
+ "extends": null,
71
+ "description": ""
72
+ },
73
+ {
74
+ "name": "DataItem",
75
+ "details": [
76
+ {
77
+ "code": "Key",
78
+ "description": "",
79
+ "optional": false,
80
+ "type": "string",
81
+ "gnType": "String",
82
+ "conditions": {}
83
+ },
84
+ {
85
+ "code": "Value",
86
+ "description": "",
87
+ "optional": false,
88
+ "type": "any",
89
+ "gnType": "DataMember",
90
+ "conditions": {}
91
+ }
92
+ ],
93
+ "extends": null,
94
+ "description": ""
95
+ },
96
+ {
97
+ "name": "CurrencyItem",
98
+ "details": [
99
+ {
100
+ "code": "Key",
101
+ "description": "",
102
+ "optional": false,
103
+ "type": "string",
104
+ "gnType": "String",
105
+ "conditions": {}
106
+ },
107
+ {
108
+ "code": "Value",
109
+ "description": "",
110
+ "optional": false,
111
+ "type": "number",
112
+ "gnType": "Number",
113
+ "conditions": {}
114
+ }
115
+ ],
116
+ "extends": null,
117
+ "description": ""
118
+ },
119
+ {
120
+ "name": "StatisticsItem",
121
+ "details": [
122
+ {
123
+ "code": "Key",
124
+ "description": "",
125
+ "optional": false,
126
+ "type": "string",
127
+ "gnType": "String",
128
+ "conditions": {}
129
+ },
130
+ {
131
+ "code": "Value",
132
+ "description": "",
133
+ "optional": false,
134
+ "type": "number",
135
+ "gnType": "Number",
136
+ "conditions": {}
137
+ }
138
+ ],
139
+ "extends": null,
140
+ "description": ""
141
+ },
142
+ {
143
+ "name": "CharacterItem",
144
+ "details": [
145
+ {
146
+ "code": "CharacterId",
147
+ "description": "",
148
+ "optional": false,
149
+ "type": "string",
150
+ "gnType": "String",
151
+ "conditions": {}
152
+ },
153
+ {
154
+ "code": "CatalogId",
155
+ "description": "",
156
+ "optional": false,
157
+ "type": "string",
158
+ "gnType": "String",
159
+ "conditions": {}
160
+ }
161
+ ],
162
+ "extends": null,
163
+ "description": ""
164
+ },
165
+ {
166
+ "name": "OwnerItem",
167
+ "details": [
168
+ {
169
+ "code": "Type",
170
+ "description": "",
171
+ "optional": false,
172
+ "type": "number",
173
+ "gnType": "Number",
174
+ "conditions": {}
175
+ },
176
+ {
177
+ "code": "Id",
178
+ "description": "",
179
+ "optional": false,
180
+ "type": "string",
181
+ "gnType": "String",
182
+ "conditions": {}
183
+ }
184
+ ],
185
+ "extends": null,
186
+ "description": ""
187
+ },
188
+ {
189
+ "name": "RemoveStatusItem",
190
+ "details": [
191
+ {
192
+ "code": "TsRemove",
193
+ "description": "",
194
+ "optional": false,
195
+ "type": "number",
196
+ "gnType": "Number",
197
+ "conditions": {}
198
+ },
199
+ {
200
+ "code": "Reason",
201
+ "description": "",
202
+ "optional": true,
203
+ "type": "string",
204
+ "gnType": "String",
205
+ "conditions": {}
206
+ }
207
+ ],
208
+ "extends": null,
209
+ "description": ""
210
+ },
211
+ {
212
+ "name": "InventoryItem",
213
+ "details": [
214
+ {
215
+ "code": "ItemId",
216
+ "description": "",
217
+ "optional": false,
218
+ "type": "string",
219
+ "gnType": "String",
220
+ "conditions": {}
221
+ },
222
+ {
223
+ "code": "CatalogId",
224
+ "description": "",
225
+ "optional": false,
226
+ "type": "string",
227
+ "gnType": "String",
228
+ "conditions": {}
229
+ },
230
+ {
231
+ "code": "ClassId",
232
+ "description": "",
233
+ "optional": false,
234
+ "type": "string",
235
+ "gnType": "String",
236
+ "conditions": {}
237
+ }
238
+ ],
239
+ "extends": null,
240
+ "description": ""
241
+ },
242
+ {
243
+ "name": "GroupItem",
244
+ "details": [
245
+ {
246
+ "code": "GroupId",
247
+ "description": "",
248
+ "optional": false,
249
+ "type": "string",
250
+ "gnType": "String",
251
+ "conditions": {}
252
+ },
253
+ {
254
+ "code": "CatalogId",
255
+ "description": "",
256
+ "optional": false,
257
+ "type": "string",
258
+ "gnType": "String",
259
+ "conditions": {}
260
+ },
261
+ {
262
+ "code": "Status",
263
+ "description": "",
264
+ "optional": false,
265
+ "type": "number",
266
+ "gnType": "Number",
267
+ "conditions": {}
268
+ },
269
+ {
270
+ "code": "TsLastStatusUpdate",
271
+ "description": "",
272
+ "optional": false,
273
+ "type": "number",
274
+ "gnType": "Number",
275
+ "conditions": {}
276
+ }
277
+ ],
278
+ "extends": null,
279
+ "description": ""
280
+ },
281
+ {
282
+ "name": "FriendItem",
283
+ "details": [
284
+ {
285
+ "code": "FriendId",
286
+ "description": "",
287
+ "optional": false,
288
+ "type": "string",
289
+ "gnType": "String",
290
+ "conditions": {}
291
+ },
292
+ {
293
+ "code": "CatalogId",
294
+ "description": "",
295
+ "optional": false,
296
+ "type": "string",
297
+ "gnType": "String",
298
+ "conditions": {}
299
+ },
300
+ {
301
+ "code": "Status",
302
+ "description": "",
303
+ "optional": false,
304
+ "type": "number",
305
+ "gnType": "Number",
306
+ "conditions": {}
307
+ },
308
+ {
309
+ "code": "TsLastStatusUpdate",
310
+ "description": "",
311
+ "optional": false,
312
+ "type": "number",
313
+ "gnType": "Number",
314
+ "conditions": {}
315
+ }
316
+ ],
317
+ "extends": null,
318
+ "description": ""
319
+ },
320
+ {
321
+ "name": "MemberItem",
322
+ "details": [
323
+ {
324
+ "code": "MemberId",
325
+ "description": "",
326
+ "optional": false,
327
+ "type": "string",
328
+ "gnType": "String",
329
+ "conditions": {}
330
+ },
331
+ {
332
+ "code": "Status",
333
+ "description": "",
334
+ "optional": false,
335
+ "type": "number",
336
+ "gnType": "Number",
337
+ "conditions": {}
338
+ }
339
+ ],
340
+ "extends": null,
341
+ "description": ""
342
+ }
343
+ ]
344
+ }