@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,253 @@
1
+ {
2
+ "requestType": "Generic",
3
+ "description": "",
4
+ "operations": [],
5
+ "models": [
6
+ {
7
+ "name": "AvatarItem",
8
+ "details": [
9
+ {
10
+ "code": "Type",
11
+ "description": "Type field in AvatarItem.",
12
+ "type": "number"
13
+ },
14
+ {
15
+ "code": "Value",
16
+ "description": "Value assigned to the specified key.",
17
+ "type": "string"
18
+ }
19
+ ],
20
+ "extends": null,
21
+ "description": "Represents avatar-related metadata such as image, icon, and background colors."
22
+ },
23
+ {
24
+ "name": "TagItem",
25
+ "details": [
26
+ {
27
+ "code": "Key",
28
+ "description": "Key used in a structured data pair.",
29
+ "type": "string"
30
+ },
31
+ {
32
+ "code": "Value",
33
+ "description": "Value assigned to the specified key.",
34
+ "type": "string"
35
+ }
36
+ ],
37
+ "extends": null,
38
+ "description": "Represents a tag or category label used for filtering or grouping entities."
39
+ },
40
+ {
41
+ "name": "BanItem",
42
+ "details": [
43
+ {
44
+ "code": "TsExpire",
45
+ "description": "TsExpire field in BanItem.",
46
+ "type": "number"
47
+ },
48
+ {
49
+ "code": "Reason",
50
+ "description": "Text explaining why the ban or action was applied.",
51
+ "type": "string"
52
+ }
53
+ ],
54
+ "extends": null,
55
+ "description": "Details information about a ban applied to a player or entity."
56
+ },
57
+ {
58
+ "name": "DataItem",
59
+ "details": [
60
+ {
61
+ "code": "Key",
62
+ "description": "Key used in a structured data pair.",
63
+ "type": "string"
64
+ },
65
+ {
66
+ "code": "Value",
67
+ "description": "Value assigned to the specified key.",
68
+ "type": "any"
69
+ }
70
+ ],
71
+ "extends": null,
72
+ "description": "Represents a structured key-value data pair stored in a player or group profile."
73
+ },
74
+ {
75
+ "name": "CurrencyItem",
76
+ "details": [
77
+ {
78
+ "code": "Key",
79
+ "description": "Key used in a structured data pair.",
80
+ "type": "string"
81
+ },
82
+ {
83
+ "code": "Value",
84
+ "description": "Value assigned to the specified key.",
85
+ "type": "number"
86
+ }
87
+ ],
88
+ "extends": null,
89
+ "description": "Defines a virtual currency identifier and its current amount."
90
+ },
91
+ {
92
+ "name": "StatisticsItem",
93
+ "details": [
94
+ {
95
+ "code": "Key",
96
+ "description": "Key used in a structured data pair.",
97
+ "type": "string"
98
+ },
99
+ {
100
+ "code": "Value",
101
+ "description": "Value assigned to the specified key.",
102
+ "type": "number"
103
+ }
104
+ ],
105
+ "extends": null,
106
+ "description": "Represents a named statistic and its numeric value."
107
+ },
108
+ {
109
+ "name": "CharacterItem",
110
+ "details": [
111
+ {
112
+ "code": "CharacterId",
113
+ "description": "Unique identifier of the character.",
114
+ "type": "string"
115
+ },
116
+ {
117
+ "code": "CatalogId",
118
+ "description": "CatalogId field in CharacterItem.",
119
+ "type": "string"
120
+ }
121
+ ],
122
+ "extends": null,
123
+ "description": "Describes a character entity associated with a player."
124
+ },
125
+ {
126
+ "name": "OwnerItem",
127
+ "details": [
128
+ {
129
+ "code": "Type",
130
+ "description": "Type field in OwnerItem.",
131
+ "type": "number"
132
+ },
133
+ {
134
+ "code": "Id",
135
+ "description": "Id field in OwnerItem.",
136
+ "type": "string"
137
+ }
138
+ ],
139
+ "extends": null,
140
+ "description": "Contains ownership metadata such as user and character identifiers."
141
+ },
142
+ {
143
+ "name": "RemoveStatusItem",
144
+ "details": [
145
+ {
146
+ "code": "TsRemove",
147
+ "description": "TsRemove field in RemoveStatusItem.",
148
+ "type": "number"
149
+ },
150
+ {
151
+ "code": "Reason",
152
+ "description": "Text explaining why the ban or action was applied.",
153
+ "type": "string"
154
+ }
155
+ ],
156
+ "extends": null,
157
+ "description": "Represents the removal state and related metadata for an entity."
158
+ },
159
+ {
160
+ "name": "InventoryItem",
161
+ "details": [
162
+ {
163
+ "code": "ItemId",
164
+ "description": "ItemId field in InventoryItem.",
165
+ "type": "string"
166
+ },
167
+ {
168
+ "code": "CatalogId",
169
+ "description": "CatalogId field in InventoryItem.",
170
+ "type": "string"
171
+ },
172
+ {
173
+ "code": "ClassId",
174
+ "description": "ClassId field in InventoryItem.",
175
+ "type": "string"
176
+ }
177
+ ],
178
+ "extends": null,
179
+ "description": "Summarizes the inventory contents and counts for a player or group."
180
+ },
181
+ {
182
+ "name": "GroupItem",
183
+ "details": [
184
+ {
185
+ "code": "GroupId",
186
+ "description": "Unique identifier of the group.",
187
+ "type": "string"
188
+ },
189
+ {
190
+ "code": "CatalogId",
191
+ "description": "CatalogId field in GroupItem.",
192
+ "type": "string"
193
+ },
194
+ {
195
+ "code": "Status",
196
+ "description": "Current state or flag representing the object’s availability.",
197
+ "type": "number"
198
+ },
199
+ {
200
+ "code": "TsLastStatusUpdate",
201
+ "description": "TsLastStatusUpdate field in GroupItem.",
202
+ "type": "number"
203
+ }
204
+ ],
205
+ "extends": null,
206
+ "description": "Basic reference information about a group entity."
207
+ },
208
+ {
209
+ "name": "FriendItem",
210
+ "details": [
211
+ {
212
+ "code": "FriendId",
213
+ "description": "FriendId field in FriendItem.",
214
+ "type": "string"
215
+ },
216
+ {
217
+ "code": "CatalogId",
218
+ "description": "CatalogId field in FriendItem.",
219
+ "type": "string"
220
+ },
221
+ {
222
+ "code": "Status",
223
+ "description": "Current state or flag representing the object’s availability.",
224
+ "type": "number"
225
+ },
226
+ {
227
+ "code": "TsLastStatusUpdate",
228
+ "description": "TsLastStatusUpdate field in FriendItem.",
229
+ "type": "number"
230
+ }
231
+ ],
232
+ "extends": null,
233
+ "description": "Represents a friendship relationship between players."
234
+ },
235
+ {
236
+ "name": "MemberItem",
237
+ "details": [
238
+ {
239
+ "code": "MemberId",
240
+ "description": "MemberId field in MemberItem.",
241
+ "type": "string"
242
+ },
243
+ {
244
+ "code": "Status",
245
+ "description": "Current state or flag representing the object’s availability.",
246
+ "type": "number"
247
+ }
248
+ ],
249
+ "extends": null,
250
+ "description": "Information about a member within a group, including role and status."
251
+ }
252
+ ]
253
+ }