@xmobitea/gn-typescript-client 2.6.9 → 2.6.10-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 (201) hide show
  1. package/dist/index.js +337 -34162
  2. package/dist/runtime/GNNetwork.js +250 -0
  3. package/dist/runtime/GNNetworkAuthenticateApi.js +122 -0
  4. package/dist/runtime/GNNetworkCharacterPlayerApi.js +968 -0
  5. package/dist/runtime/GNNetworkCloudScriptApi.js +104 -0
  6. package/dist/runtime/GNNetworkContentApi.js +140 -0
  7. package/dist/runtime/GNNetworkDashboardApi.js +170 -0
  8. package/dist/runtime/GNNetworkGamePlayerApi.js +950 -0
  9. package/dist/runtime/GNNetworkGroupApi.js +734 -0
  10. package/dist/runtime/GNNetworkInventoryApi.js +626 -0
  11. package/dist/runtime/GNNetworkMasterPlayerApi.js +1550 -0
  12. package/dist/runtime/GNNetworkMultiplayerApi.js +194 -0
  13. package/dist/runtime/GNNetworkStoreInventoryApi.js +266 -0
  14. package/dist/runtime/common/Action0.js +1 -0
  15. package/dist/runtime/common/Action1.js +1 -0
  16. package/dist/runtime/common/Action2.js +1 -0
  17. package/dist/runtime/common/Action3.js +1 -0
  18. package/dist/runtime/common/Action4.js +1 -0
  19. package/dist/runtime/common/GNData.js +211 -0
  20. package/dist/runtime/config/GNServerSettings.d.ts +3 -0
  21. package/dist/runtime/config/GNServerSettings.js +156 -0
  22. package/dist/runtime/constant/Commands.d.ts +1 -0
  23. package/dist/runtime/constant/Commands.js +20 -0
  24. package/dist/runtime/constant/EventCode.js +8 -0
  25. package/dist/runtime/constant/OperationCode.js +221 -0
  26. package/dist/runtime/constant/ReturnCode.js +14 -0
  27. package/dist/runtime/constant/enumType/ExecuteResponseStatus.js +8 -0
  28. package/dist/runtime/constant/enumType/FriendStatus.js +7 -0
  29. package/dist/runtime/constant/enumType/GoogleLoginType.js +5 -0
  30. package/dist/runtime/constant/enumType/GroupStatus.js +7 -0
  31. package/dist/runtime/constant/enumType/InvalidMemberType.js +18 -0
  32. package/dist/runtime/constant/enumType/ItemType.js +5 -0
  33. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +6 -0
  34. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +8 -0
  35. package/dist/runtime/constant/enumType/OwnerType.js +9 -0
  36. package/dist/runtime/constant/enumType/PermissionDataItem.js +5 -0
  37. package/dist/runtime/constant/enumType/PushPlatformType.js +5 -0
  38. package/dist/runtime/constant/enumType/RequestRole.js +6 -0
  39. package/dist/runtime/constant/enumType/RequestType.js +15 -0
  40. package/dist/runtime/constant/enumType/StoreItemType.js +5 -0
  41. package/dist/runtime/constant/enumType/StoreReceiveType.js +8 -0
  42. package/dist/runtime/constant/errorCode/ErrorCode.js +52 -0
  43. package/dist/runtime/constant/parameterCode/ParameterCode.js +617 -0
  44. package/dist/runtime/entity/DataMember.js +208 -0
  45. package/dist/runtime/entity/GNMetadata.js +11 -0
  46. package/dist/runtime/entity/InvalidMember.js +1 -0
  47. package/dist/runtime/entity/OperationEvent.js +24 -0
  48. package/dist/runtime/entity/OperationHelper.js +24 -0
  49. package/dist/runtime/entity/OperationRequest.js +42 -0
  50. package/dist/runtime/entity/OperationResponse.js +73 -0
  51. package/dist/runtime/entity/models/AuthenticateModels.js +426 -0
  52. package/dist/runtime/entity/models/AuthenticateRequestModels.js +188 -0
  53. package/dist/runtime/entity/models/AuthenticateResponseModels.js +131 -0
  54. package/dist/runtime/entity/models/CharacterPlayerModels.js +1433 -0
  55. package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +1386 -0
  56. package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +376 -0
  57. package/dist/runtime/entity/models/CloudScriptModels.js +197 -0
  58. package/dist/runtime/entity/models/CloudScriptRequestModels.js +138 -0
  59. package/dist/runtime/entity/models/CloudScriptResponseModels.js +40 -0
  60. package/dist/runtime/entity/models/ContentModels.js +203 -0
  61. package/dist/runtime/entity/models/ContentRequestModels.js +190 -0
  62. package/dist/runtime/entity/models/ContentResponseModels.js +54 -0
  63. package/dist/runtime/entity/models/DashboardModels.js +3002 -0
  64. package/dist/runtime/entity/models/DashboardRequestModels.js +268 -0
  65. package/dist/runtime/entity/models/DashboardResponseModels.js +187 -0
  66. package/dist/runtime/entity/models/GamePlayerModels.js +1591 -0
  67. package/dist/runtime/entity/models/GamePlayerRequestModels.js +1360 -0
  68. package/dist/runtime/entity/models/GamePlayerResponseModels.js +369 -0
  69. package/dist/runtime/entity/models/GenericModels.js +177 -0
  70. package/dist/runtime/entity/models/GroupModels.js +1135 -0
  71. package/dist/runtime/entity/models/GroupRequestModels.js +1048 -0
  72. package/dist/runtime/entity/models/GroupResponseModels.js +285 -0
  73. package/dist/runtime/entity/models/InventoryModels.js +915 -0
  74. package/dist/runtime/entity/models/InventoryRequestModels.js +892 -0
  75. package/dist/runtime/entity/models/InventoryResponseModels.js +243 -0
  76. package/dist/runtime/entity/models/MasterPlayerModels.js +2573 -0
  77. package/dist/runtime/entity/models/MasterPlayerRequestModels.js +2228 -0
  78. package/dist/runtime/entity/models/MasterPlayerResponseModels.js +607 -0
  79. package/dist/runtime/entity/models/MultiplayerModels.js +404 -0
  80. package/dist/runtime/entity/models/MultiplayerRequestModels.js +268 -0
  81. package/dist/runtime/entity/models/MultiplayerResponseModels.js +75 -0
  82. package/dist/runtime/entity/models/StoreInventoryModels.js +797 -0
  83. package/dist/runtime/entity/models/StoreInventoryRequestModels.js +372 -0
  84. package/dist/runtime/entity/models/StoreInventoryResponseModels.js +103 -0
  85. package/dist/runtime/entity/request/CustomOperationRequest.js +24 -0
  86. package/dist/runtime/entity/response/CustomOperationResponse.js +29 -0
  87. package/dist/runtime/entity/response/GetAuthInfoResponse.js +2 -0
  88. package/dist/runtime/entity/response/UploadFileResponse.js +2 -0
  89. package/dist/runtime/helper/CodeHelper.js +63 -0
  90. package/dist/runtime/helper/ConverterService.js +275 -0
  91. package/dist/runtime/helper/EnumUtility.js +33 -0
  92. package/dist/runtime/helper/GNSupport.js +8 -0
  93. package/dist/runtime/helper/GNUtils.js +72 -0
  94. package/dist/runtime/helper/MessagePackConverterService.js +9 -0
  95. package/dist/runtime/logger/GNDebug.js +29 -0
  96. package/dist/runtime/networking/AuthenticateStatus.js +14 -0
  97. package/dist/runtime/networking/IPeer.js +1 -0
  98. package/dist/runtime/networking/NetworkingPeer.js +178 -0
  99. package/dist/runtime/networking/OperationPending.js +53 -0
  100. package/dist/runtime/networking/PeerBase.js +161 -0
  101. package/dist/runtime/networking/handler/IServerEventHandler.js +13 -0
  102. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +39 -0
  103. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +39 -0
  104. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +39 -0
  105. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +39 -0
  106. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +35 -0
  107. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +43 -0
  108. package/dist/runtime/networking/http/HttpPeer.js +123 -0
  109. package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +2 -0
  110. package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +9 -0
  111. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +179 -0
  112. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +130 -0
  113. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +165 -0
  114. package/dist/runtime/networking/socket/SocketPeer.js +115 -0
  115. package/dist/runtime/typescript/ServiceUpdate.js +12 -0
  116. package/package.json +1 -1
  117. package/dist/gearn.js.client.js +0 -46884
  118. package/dist/gearn.js.client.min.js +0 -2
  119. package/dist/gearn.js.client.min.js.LICENSE.txt +0 -14
  120. package/responseModel/chatgpt/Authenticate.json +0 -724
  121. package/responseModel/chatgpt/CharacterPlayer.json +0 -1890
  122. package/responseModel/chatgpt/CloudScript.json +0 -254
  123. package/responseModel/chatgpt/Content.json +0 -273
  124. package/responseModel/chatgpt/Dashboard.json +0 -4110
  125. package/responseModel/chatgpt/GamePlayer.json +0 -2306
  126. package/responseModel/chatgpt/Generic.json +0 -253
  127. package/responseModel/chatgpt/Group.json +0 -1509
  128. package/responseModel/chatgpt/Inventory.json +0 -1211
  129. package/responseModel/chatgpt/MasterPlayer.json +0 -3801
  130. package/responseModel/chatgpt/Multiplayer.json +0 -634
  131. package/responseModel/chatgpt/StoreInventory.json +0 -1099
  132. package/responseModel/clients/AuthenticateModels.json +0 -271
  133. package/responseModel/clients/CharacterPlayerModels.json +0 -792
  134. package/responseModel/clients/CloudScriptModels.json +0 -191
  135. package/responseModel/clients/ContentModels.json +0 -178
  136. package/responseModel/clients/DashboardModels.json +0 -5423
  137. package/responseModel/clients/GamePlayerModels.json +0 -781
  138. package/responseModel/clients/GenericModels.json +0 -344
  139. package/responseModel/clients/GroupModels.json +0 -705
  140. package/responseModel/clients/InventoryModels.json +0 -568
  141. package/responseModel/clients/MasterPlayerModels.json +0 -1281
  142. package/responseModel/clients/MultiplayerModels.json +0 -439
  143. package/responseModel/clients/StoreInventoryModels.json +0 -971
  144. package/responseModel/finalChatgpt/Authenticate.json +0 -1475
  145. package/responseModel/finalChatgpt/CharacterPlayer.json +0 -4104
  146. package/responseModel/finalChatgpt/CloudScript.json +0 -515
  147. package/responseModel/finalChatgpt/Content.json +0 -536
  148. package/responseModel/finalChatgpt/Dashboard.json +0 -6712
  149. package/responseModel/finalChatgpt/GamePlayer.json +0 -5142
  150. package/responseModel/finalChatgpt/Generic.json +0 -333
  151. package/responseModel/finalChatgpt/Group.json +0 -3232
  152. package/responseModel/finalChatgpt/Inventory.json +0 -2606
  153. package/responseModel/finalChatgpt/MasterPlayer.json +0 -8385
  154. package/responseModel/finalChatgpt/Multiplayer.json +0 -1196
  155. package/responseModel/finalChatgpt/StoreInventory.json +0 -2085
  156. package/responseModel/finals/Authenticate.json +0 -1460
  157. package/responseModel/finals/CharacterPlayer.json +0 -3639
  158. package/responseModel/finals/CloudScript.json +0 -465
  159. package/responseModel/finals/Content.json +0 -479
  160. package/responseModel/finals/Dashboard.json +0 -6718
  161. package/responseModel/finals/GamePlayer.json +0 -4291
  162. package/responseModel/finals/Generic.json +0 -345
  163. package/responseModel/finals/Group.json +0 -2885
  164. package/responseModel/finals/Inventory.json +0 -2309
  165. package/responseModel/finals/MasterPlayer.json +0 -7018
  166. package/responseModel/finals/Multiplayer.json +0 -1082
  167. package/responseModel/finals/StoreInventory.json +0 -1979
  168. package/responseModel/finalsShort/Authenticate.json +0 -723
  169. package/responseModel/finalsShort/CharacterPlayer.json +0 -1889
  170. package/responseModel/finalsShort/CloudScript.json +0 -253
  171. package/responseModel/finalsShort/Content.json +0 -272
  172. package/responseModel/finalsShort/Dashboard.json +0 -4109
  173. package/responseModel/finalsShort/GamePlayer.json +0 -2305
  174. package/responseModel/finalsShort/Generic.json +0 -252
  175. package/responseModel/finalsShort/Group.json +0 -1508
  176. package/responseModel/finalsShort/Inventory.json +0 -1210
  177. package/responseModel/finalsShort/MasterPlayer.json +0 -3800
  178. package/responseModel/finalsShort/Multiplayer.json +0 -633
  179. package/responseModel/finalsShort/StoreInventory.json +0 -1098
  180. package/responseModel/operationResponse/AuthenticateResponseModels.json +0 -77
  181. package/responseModel/operationResponse/CharacterPlayerResponseModels.json +0 -217
  182. package/responseModel/operationResponse/CloudScriptResponseModels.json +0 -25
  183. package/responseModel/operationResponse/ContentResponseModels.json +0 -33
  184. package/responseModel/operationResponse/DashboardResponseModels.json +0 -109
  185. package/responseModel/operationResponse/GamePlayerResponseModels.json +0 -213
  186. package/responseModel/operationResponse/GroupResponseModels.json +0 -165
  187. package/responseModel/operationResponse/InventoryResponseModels.json +0 -141
  188. package/responseModel/operationResponse/MasterPlayerResponseModels.json +0 -349
  189. package/responseModel/operationResponse/MultiplayerResponseModels.json +0 -45
  190. package/responseModel/operationResponse/StoreInventoryResponseModels.json +0 -61
  191. package/responseModel/servers/Authenticate.json +0 -1328
  192. package/responseModel/servers/CharacterPlayer.json +0 -3199
  193. package/responseModel/servers/CloudScript.json +0 -278
  194. package/responseModel/servers/Content.json +0 -324
  195. package/responseModel/servers/GamePlayer.json +0 -3844
  196. package/responseModel/servers/Group.json +0 -2454
  197. package/responseModel/servers/Inventory.json +0 -1964
  198. package/responseModel/servers/MasterAdmin.json +0 -5569
  199. package/responseModel/servers/MasterPlayer.json +0 -5924
  200. package/responseModel/servers/Multiplayer.json +0 -545
  201. package/responseModel/servers/StoreInventory.json +0 -1290
@@ -1,971 +0,0 @@
1
- {
2
- "path": "StoreInventoryModels",
3
- "models": [
4
- {
5
- "name": "AvatarParam",
6
- "details": [
7
- {
8
- "code": "Type",
9
- "description": "",
10
- "optional": false,
11
- "type": "number",
12
- "gnType": "Number",
13
- "conditions": {
14
- "mustInt": true
15
- }
16
- },
17
- {
18
- "code": "Value",
19
- "description": "",
20
- "optional": false,
21
- "type": "string",
22
- "gnType": "String",
23
- "conditions": {
24
- "mustNonNull": true,
25
- "minLength": 1,
26
- "maxLength": 128
27
- }
28
- }
29
- ],
30
- "extends": null,
31
- "description": ""
32
- },
33
- {
34
- "name": "CurrencyParam",
35
- "details": [
36
- {
37
- "code": "Key",
38
- "description": "",
39
- "optional": false,
40
- "type": "string",
41
- "gnType": "String",
42
- "conditions": {
43
- "mustNonNull": true,
44
- "minLength": 2,
45
- "maxLength": 32
46
- }
47
- },
48
- {
49
- "code": "Value",
50
- "description": "",
51
- "optional": false,
52
- "type": "number",
53
- "gnType": "Number",
54
- "conditions": {}
55
- }
56
- ],
57
- "extends": null,
58
- "description": ""
59
- },
60
- {
61
- "name": "InAppPurchaseParam",
62
- "details": [
63
- {
64
- "code": "FacebookStoreId",
65
- "description": "",
66
- "optional": true,
67
- "type": "string",
68
- "gnType": "String",
69
- "conditions": {
70
- "mustNonNull": true,
71
- "minLength": 1,
72
- "maxLength": 128
73
- }
74
- },
75
- {
76
- "code": "GooglePlayStoreId",
77
- "description": "",
78
- "optional": true,
79
- "type": "string",
80
- "gnType": "String",
81
- "conditions": {
82
- "mustNonNull": true,
83
- "minLength": 1,
84
- "maxLength": 128
85
- }
86
- },
87
- {
88
- "code": "AppleAppStoreId",
89
- "description": "",
90
- "optional": true,
91
- "type": "string",
92
- "gnType": "String",
93
- "conditions": {
94
- "mustNonNull": true,
95
- "minLength": 1,
96
- "maxLength": 128
97
- }
98
- },
99
- {
100
- "code": "AnalyticsPrice",
101
- "description": "",
102
- "optional": true,
103
- "type": "number",
104
- "gnType": "Number",
105
- "conditions": {}
106
- }
107
- ],
108
- "extends": null,
109
- "description": ""
110
- },
111
- {
112
- "name": "InfoRequestParam",
113
- "details": [
114
- {
115
- "code": "StoreItems",
116
- "description": "",
117
- "optional": true,
118
- "type": "boolean",
119
- "gnType": "Boolean",
120
- "defaultValue": "false",
121
- "conditions": {}
122
- },
123
- {
124
- "code": "StoreItemType",
125
- "description": "",
126
- "optional": true,
127
- "type": "boolean",
128
- "gnType": "Boolean",
129
- "defaultValue": "false",
130
- "conditions": {}
131
- },
132
- {
133
- "code": "StoreCurrencies",
134
- "description": "",
135
- "optional": true,
136
- "type": "boolean",
137
- "gnType": "Boolean",
138
- "defaultValue": "false",
139
- "conditions": {}
140
- },
141
- {
142
- "code": "PriceCurrencies",
143
- "description": "",
144
- "optional": true,
145
- "type": "boolean",
146
- "gnType": "Boolean",
147
- "defaultValue": "false",
148
- "conditions": {}
149
- },
150
- {
151
- "code": "InAppPurchase",
152
- "description": "",
153
- "optional": true,
154
- "type": "boolean",
155
- "gnType": "Boolean",
156
- "defaultValue": "false",
157
- "conditions": {}
158
- },
159
- {
160
- "code": "RemoveStatus",
161
- "description": "",
162
- "optional": true,
163
- "type": "boolean",
164
- "gnType": "Boolean",
165
- "defaultValue": "false",
166
- "conditions": {}
167
- },
168
- {
169
- "code": "DisplayName",
170
- "description": "",
171
- "optional": true,
172
- "type": "boolean",
173
- "gnType": "Boolean",
174
- "defaultValue": "false",
175
- "conditions": {}
176
- },
177
- {
178
- "code": "Avatar",
179
- "description": "",
180
- "optional": true,
181
- "type": "boolean",
182
- "gnType": "Boolean",
183
- "defaultValue": "false",
184
- "conditions": {}
185
- },
186
- {
187
- "code": "TsCreate",
188
- "description": "",
189
- "optional": true,
190
- "type": "boolean",
191
- "gnType": "Boolean",
192
- "defaultValue": "false",
193
- "conditions": {}
194
- },
195
- {
196
- "code": "Tags",
197
- "description": "",
198
- "optional": true,
199
- "type": "boolean",
200
- "gnType": "Boolean",
201
- "defaultValue": "false",
202
- "conditions": {}
203
- },
204
- {
205
- "code": "StoreDatas",
206
- "description": "",
207
- "optional": true,
208
- "type": "boolean",
209
- "gnType": "Boolean",
210
- "defaultValue": "false",
211
- "conditions": {}
212
- }
213
- ],
214
- "extends": null,
215
- "description": ""
216
- },
217
- {
218
- "name": "StoreDataParam",
219
- "details": [
220
- {
221
- "code": "Key",
222
- "description": "",
223
- "optional": false,
224
- "type": "string",
225
- "gnType": "String",
226
- "conditions": {
227
- "mustNonNull": true,
228
- "minLength": 2,
229
- "maxLength": 32
230
- }
231
- },
232
- {
233
- "code": "Value",
234
- "description": "",
235
- "optional": false,
236
- "type": "any",
237
- "gnType": "DataMember",
238
- "conditions": {}
239
- }
240
- ],
241
- "extends": null,
242
- "description": ""
243
- },
244
- {
245
- "name": "StoreItemParam",
246
- "details": [
247
- {
248
- "code": "CatalogId",
249
- "description": "",
250
- "optional": false,
251
- "type": "string",
252
- "gnType": "String",
253
- "conditions": {
254
- "minLength": 2,
255
- "maxLength": 32
256
- }
257
- },
258
- {
259
- "code": "ClassId",
260
- "description": "",
261
- "optional": false,
262
- "type": "string",
263
- "gnType": "String",
264
- "conditions": {
265
- "minLength": 2,
266
- "maxLength": 32
267
- }
268
- },
269
- {
270
- "code": "Amount",
271
- "description": "",
272
- "optional": false,
273
- "type": "number",
274
- "gnType": "Number",
275
- "conditions": {}
276
- }
277
- ],
278
- "extends": null,
279
- "description": ""
280
- },
281
- {
282
- "name": "TagParam",
283
- "details": [
284
- {
285
- "code": "Key",
286
- "description": "",
287
- "optional": false,
288
- "type": "string",
289
- "gnType": "String",
290
- "conditions": {
291
- "mustNonNull": true,
292
- "minLength": 2,
293
- "maxLength": 32
294
- }
295
- },
296
- {
297
- "code": "Value",
298
- "description": "",
299
- "optional": false,
300
- "type": "string",
301
- "gnType": "String",
302
- "conditions": {
303
- "mustNonNull": true,
304
- "minLength": 2,
305
- "maxLength": 32
306
- }
307
- }
308
- ],
309
- "extends": null,
310
- "description": ""
311
- },
312
- {
313
- "name": "InAppPurchaseItem",
314
- "details": [
315
- {
316
- "code": "FacebookStoreId",
317
- "description": "",
318
- "optional": false,
319
- "type": "string",
320
- "gnType": "String",
321
- "conditions": {}
322
- },
323
- {
324
- "code": "AppleAppStoreId",
325
- "description": "",
326
- "optional": false,
327
- "type": "string",
328
- "gnType": "String",
329
- "conditions": {}
330
- },
331
- {
332
- "code": "GooglePlayStoreId",
333
- "description": "",
334
- "optional": false,
335
- "type": "string",
336
- "gnType": "String",
337
- "conditions": {}
338
- },
339
- {
340
- "code": "AnalyticsPrice",
341
- "description": "",
342
- "optional": false,
343
- "type": "number",
344
- "gnType": "Number",
345
- "conditions": {}
346
- }
347
- ],
348
- "extends": null,
349
- "description": ""
350
- },
351
- {
352
- "name": "PriceCurrencyItem",
353
- "details": [
354
- {
355
- "code": "Key",
356
- "description": "",
357
- "optional": false,
358
- "type": "string",
359
- "gnType": "String",
360
- "conditions": {}
361
- },
362
- {
363
- "code": "Value",
364
- "description": "",
365
- "optional": false,
366
- "type": "number",
367
- "gnType": "Number",
368
- "conditions": {}
369
- }
370
- ],
371
- "extends": null,
372
- "description": ""
373
- },
374
- {
375
- "name": "OwnerStoreInventoryItem",
376
- "details": [
377
- {
378
- "code": "ItemId",
379
- "description": "",
380
- "optional": false,
381
- "type": "string",
382
- "gnType": "String",
383
- "conditions": {}
384
- },
385
- {
386
- "code": "CatalogId",
387
- "description": "",
388
- "optional": false,
389
- "type": "string",
390
- "gnType": "String",
391
- "conditions": {}
392
- },
393
- {
394
- "code": "ClassId",
395
- "description": "",
396
- "optional": false,
397
- "type": "string",
398
- "gnType": "String",
399
- "conditions": {}
400
- }
401
- ],
402
- "extends": null,
403
- "description": ""
404
- },
405
- {
406
- "name": "StoreInventoryItem",
407
- "details": [
408
- {
409
- "code": "CatalogId",
410
- "description": "",
411
- "optional": false,
412
- "type": "string",
413
- "gnType": "String",
414
- "conditions": {}
415
- },
416
- {
417
- "code": "ClassId",
418
- "description": "",
419
- "optional": false,
420
- "type": "string",
421
- "gnType": "String",
422
- "conditions": {}
423
- },
424
- {
425
- "code": "Amount",
426
- "description": "",
427
- "optional": false,
428
- "type": "number",
429
- "gnType": "Number",
430
- "conditions": {}
431
- }
432
- ],
433
- "extends": null,
434
- "description": ""
435
- },
436
- {
437
- "name": "InfoResponseParameters",
438
- "details": [
439
- {
440
- "code": "StoreItems",
441
- "description": "",
442
- "optional": true,
443
- "type": "StoreInventoryItem",
444
- "gnType": "GNArray",
445
- "conditions": {}
446
- },
447
- {
448
- "code": "StoreItemType",
449
- "description": "",
450
- "optional": true,
451
- "type": "number",
452
- "gnType": "Number",
453
- "conditions": {}
454
- },
455
- {
456
- "code": "StoreCurrencies",
457
- "description": "",
458
- "optional": true,
459
- "type": "PriceCurrencyItem",
460
- "gnType": "GNArray",
461
- "conditions": {}
462
- },
463
- {
464
- "code": "PriceCurrencies",
465
- "description": "",
466
- "optional": true,
467
- "type": "PriceCurrencyItem",
468
- "gnType": "GNArray",
469
- "conditions": {}
470
- },
471
- {
472
- "code": "InAppPurchase",
473
- "description": "",
474
- "optional": true,
475
- "type": "InAppPurchaseItem",
476
- "gnType": "GNHashtable",
477
- "conditions": {}
478
- },
479
- {
480
- "code": "RemoveStatus",
481
- "description": "",
482
- "optional": true,
483
- "type": "GenericModels.RemoveStatusItem",
484
- "gnType": "GNHashtable",
485
- "conditions": {}
486
- },
487
- {
488
- "code": "DisplayName",
489
- "description": "",
490
- "optional": true,
491
- "type": "string",
492
- "gnType": "String",
493
- "conditions": {}
494
- },
495
- {
496
- "code": "Avatar",
497
- "description": "",
498
- "optional": true,
499
- "type": "GenericModels.AvatarItem",
500
- "gnType": "GNHashtable",
501
- "conditions": {}
502
- },
503
- {
504
- "code": "TsCreate",
505
- "description": "",
506
- "optional": true,
507
- "type": "number",
508
- "gnType": "Number",
509
- "conditions": {}
510
- },
511
- {
512
- "code": "Tags",
513
- "description": "",
514
- "optional": true,
515
- "type": "GenericModels.TagItem",
516
- "gnType": "GNArray",
517
- "conditions": {}
518
- },
519
- {
520
- "code": "StoreDatas",
521
- "description": "",
522
- "optional": true,
523
- "type": "GenericModels.DataItem",
524
- "gnType": "GNArray",
525
- "conditions": {}
526
- }
527
- ],
528
- "extends": null,
529
- "description": ""
530
- },
531
- {
532
- "name": "StoreInventoryResponseData",
533
- "details": [
534
- {
535
- "code": "InfoResponseParameters",
536
- "description": "",
537
- "optional": false,
538
- "type": "InfoResponseParameters",
539
- "gnType": "GNHashtable",
540
- "conditions": {}
541
- }
542
- ],
543
- "extends": null,
544
- "description": ""
545
- },
546
- {
547
- "name": "StoreInventoryWithStoreIdResponseData",
548
- "details": [
549
- {
550
- "code": "StoreId",
551
- "description": "",
552
- "optional": false,
553
- "type": "string",
554
- "gnType": "String",
555
- "conditions": {}
556
- }
557
- ],
558
- "extends": "StoreInventoryResponseData",
559
- "description": ""
560
- },
561
- {
562
- "name": "StoreInventoryLeaderboardResponseData",
563
- "details": [
564
- {
565
- "code": "Position",
566
- "description": "",
567
- "optional": false,
568
- "type": "number",
569
- "gnType": "Number",
570
- "conditions": {}
571
- }
572
- ],
573
- "extends": "StoreInventoryWithStoreIdResponseData",
574
- "description": ""
575
- },
576
- {
577
- "name": "StoreInventoriesWithStoreIdResponseData",
578
- "details": [
579
- {
580
- "code": "Results",
581
- "description": "",
582
- "optional": false,
583
- "type": "StoreInventoryWithStoreIdResponseData",
584
- "gnType": "GNArray",
585
- "conditions": {}
586
- }
587
- ],
588
- "extends": null,
589
- "description": ""
590
- },
591
- {
592
- "name": "CreateStoreItemResponseData",
593
- "details": [
594
- {
595
- "code": "StoreId",
596
- "description": "",
597
- "optional": false,
598
- "type": "string",
599
- "gnType": "String",
600
- "conditions": {}
601
- }
602
- ],
603
- "extends": null,
604
- "description": ""
605
- },
606
- {
607
- "name": "OwnerInfoResponseParameters",
608
- "details": [
609
- {
610
- "code": "Currencies",
611
- "description": "",
612
- "optional": true,
613
- "type": "PriceCurrencyItem",
614
- "gnType": "GNArray",
615
- "conditions": {}
616
- },
617
- {
618
- "code": "Inventories",
619
- "description": "",
620
- "optional": true,
621
- "type": "OwnerStoreInventoryItem",
622
- "gnType": "GNArray",
623
- "conditions": {}
624
- }
625
- ],
626
- "extends": null,
627
- "description": ""
628
- },
629
- {
630
- "name": "BuyStoreInventoryResponseData",
631
- "details": [
632
- {
633
- "code": "StoreCurrencies",
634
- "description": "",
635
- "optional": true,
636
- "type": "PriceCurrencyItem",
637
- "gnType": "GNArray",
638
- "conditions": {}
639
- },
640
- {
641
- "code": "StoreCurrencies",
642
- "description": "",
643
- "optional": true,
644
- "type": "PriceCurrencyItem",
645
- "gnType": "GNArray",
646
- "conditions": {}
647
- },
648
- {
649
- "code": "PriceCurrencies",
650
- "description": "",
651
- "optional": true,
652
- "type": "PriceCurrencyItem",
653
- "gnType": "GNArray",
654
- "conditions": {}
655
- },
656
- {
657
- "code": "InfoResponseParameters",
658
- "description": "",
659
- "optional": true,
660
- "type": "OwnerInfoResponseParameters",
661
- "gnType": "GNHashtable",
662
- "conditions": {}
663
- }
664
- ],
665
- "extends": null,
666
- "description": ""
667
- },
668
- {
669
- "name": "PresentStoreInventoryResponseData",
670
- "details": [
671
- {
672
- "code": "StoreCurrencies",
673
- "description": "",
674
- "optional": true,
675
- "type": "PriceCurrencyItem",
676
- "gnType": "GNArray",
677
- "conditions": {}
678
- },
679
- {
680
- "code": "StoreCurrencies",
681
- "description": "",
682
- "optional": true,
683
- "type": "PriceCurrencyItem",
684
- "gnType": "GNArray",
685
- "conditions": {}
686
- },
687
- {
688
- "code": "PriceCurrencies",
689
- "description": "",
690
- "optional": true,
691
- "type": "PriceCurrencyItem",
692
- "gnType": "GNArray",
693
- "conditions": {}
694
- },
695
- {
696
- "code": "InfoResponseParameters",
697
- "description": "",
698
- "optional": true,
699
- "type": "OwnerInfoResponseParameters",
700
- "gnType": "GNHashtable",
701
- "conditions": {}
702
- }
703
- ],
704
- "extends": null,
705
- "description": ""
706
- },
707
- {
708
- "name": "CurrencyResponseData",
709
- "details": [
710
- {
711
- "code": "Key",
712
- "description": "",
713
- "optional": false,
714
- "type": "string",
715
- "gnType": "String",
716
- "conditions": {}
717
- },
718
- {
719
- "code": "Value",
720
- "description": "",
721
- "optional": false,
722
- "type": "number",
723
- "gnType": "Number",
724
- "conditions": {}
725
- }
726
- ],
727
- "extends": null,
728
- "description": ""
729
- },
730
- {
731
- "name": "StoreItemResponseData",
732
- "details": [
733
- {
734
- "code": "CatalogId",
735
- "description": "",
736
- "optional": false,
737
- "type": "string",
738
- "gnType": "String",
739
- "conditions": {}
740
- },
741
- {
742
- "code": "ClassId",
743
- "description": "",
744
- "optional": false,
745
- "type": "string",
746
- "gnType": "String",
747
- "conditions": {}
748
- },
749
- {
750
- "code": "ItemId",
751
- "description": "",
752
- "optional": false,
753
- "type": "string",
754
- "gnType": "String",
755
- "conditions": {}
756
- }
757
- ],
758
- "extends": null,
759
- "description": ""
760
- },
761
- {
762
- "name": "StoreLogResponseData",
763
- "details": [
764
- {
765
- "code": "StoreId",
766
- "description": "",
767
- "optional": false,
768
- "type": "string",
769
- "gnType": "String",
770
- "conditions": {}
771
- },
772
- {
773
- "code": "OwnerId",
774
- "description": "",
775
- "optional": false,
776
- "type": "string",
777
- "gnType": "String",
778
- "conditions": {}
779
- },
780
- {
781
- "code": "OwnerType",
782
- "description": "",
783
- "optional": false,
784
- "type": "number",
785
- "gnType": "Number",
786
- "conditions": {}
787
- },
788
- {
789
- "code": "TransactionId",
790
- "description": "",
791
- "optional": true,
792
- "type": "string",
793
- "gnType": "String",
794
- "conditions": {}
795
- },
796
- {
797
- "code": "StoreReceiveType",
798
- "description": "",
799
- "optional": false,
800
- "type": "number",
801
- "gnType": "Number",
802
- "conditions": {}
803
- },
804
- {
805
- "code": "PriceCurrencyStartValues",
806
- "description": "",
807
- "optional": false,
808
- "type": "CurrencyResponseData",
809
- "gnType": "GNArray",
810
- "conditions": {}
811
- },
812
- {
813
- "code": "PriceCurrencyAmountValues",
814
- "description": "",
815
- "optional": false,
816
- "type": "CurrencyResponseData",
817
- "gnType": "GNArray",
818
- "conditions": {}
819
- },
820
- {
821
- "code": "PriceCurrencyFinalValues",
822
- "description": "",
823
- "optional": false,
824
- "type": "CurrencyResponseData",
825
- "gnType": "GNArray",
826
- "conditions": {}
827
- },
828
- {
829
- "code": "StoreCurrencyStartValues",
830
- "description": "",
831
- "optional": false,
832
- "type": "CurrencyResponseData",
833
- "gnType": "GNArray",
834
- "conditions": {}
835
- },
836
- {
837
- "code": "StoreCurrencyAmountValues",
838
- "description": "",
839
- "optional": false,
840
- "type": "CurrencyResponseData",
841
- "gnType": "GNArray",
842
- "conditions": {}
843
- },
844
- {
845
- "code": "StoreCurrencyFinalValues",
846
- "description": "",
847
- "optional": false,
848
- "type": "CurrencyResponseData",
849
- "gnType": "GNArray",
850
- "conditions": {}
851
- },
852
- {
853
- "code": "StoreItemFinalValues",
854
- "description": "",
855
- "optional": false,
856
- "type": "StoreItemResponseData",
857
- "gnType": "GNArray",
858
- "conditions": {}
859
- },
860
- {
861
- "code": "TsCreate",
862
- "description": "",
863
- "optional": false,
864
- "type": "number",
865
- "gnType": "Number",
866
- "conditions": {}
867
- },
868
- {
869
- "code": "Log",
870
- "description": "",
871
- "optional": false,
872
- "type": "string",
873
- "gnType": "String",
874
- "conditions": {}
875
- }
876
- ],
877
- "extends": null,
878
- "description": ""
879
- },
880
- {
881
- "name": "StoreUsedResponseData",
882
- "details": [
883
- {
884
- "code": "OwnerId",
885
- "description": "",
886
- "optional": false,
887
- "type": "string",
888
- "gnType": "String",
889
- "conditions": {}
890
- },
891
- {
892
- "code": "OwnerType",
893
- "description": "",
894
- "optional": false,
895
- "type": "number",
896
- "gnType": "Number",
897
- "conditions": {}
898
- },
899
- {
900
- "code": "TsCreate",
901
- "description": "",
902
- "optional": false,
903
- "type": "number",
904
- "gnType": "Number",
905
- "conditions": {}
906
- }
907
- ],
908
- "extends": null,
909
- "description": ""
910
- },
911
- {
912
- "name": "GetCreateLeaderboardResponseData",
913
- "details": [
914
- {
915
- "code": "Results",
916
- "description": "",
917
- "optional": false,
918
- "type": "StoreInventoryLeaderboardResponseData",
919
- "gnType": "GNArray",
920
- "conditions": {}
921
- }
922
- ],
923
- "extends": null,
924
- "description": ""
925
- },
926
- {
927
- "name": "GetStoreLogResponseData",
928
- "details": [
929
- {
930
- "code": "Results",
931
- "description": "",
932
- "optional": false,
933
- "type": "StoreLogResponseData",
934
- "gnType": "GNArray",
935
- "conditions": {}
936
- },
937
- {
938
- "code": "Token",
939
- "description": "",
940
- "optional": true,
941
- "type": "string",
942
- "gnType": "String",
943
- "conditions": {}
944
- }
945
- ],
946
- "extends": null,
947
- "description": ""
948
- },
949
- {
950
- "name": "GetStoreUsedResponseData",
951
- "details": [
952
- {
953
- "code": "Results",
954
- "description": "",
955
- "optional": false,
956
- "type": "StoreUsedResponseData",
957
- "gnType": "GNArray",
958
- "conditions": {}
959
- }
960
- ],
961
- "extends": null,
962
- "description": ""
963
- },
964
- {
965
- "name": "EmptyResponseData",
966
- "details": [],
967
- "extends": null,
968
- "description": ""
969
- }
970
- ]
971
- }