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