@xmobitea/gn-typescript-client 2.6.8 → 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 (203) hide show
  1. package/LICENSE +198 -5
  2. package/dist/index.js +337 -34170
  3. package/dist/runtime/GNNetwork.js +250 -0
  4. package/dist/runtime/GNNetworkAuthenticateApi.js +122 -0
  5. package/dist/runtime/GNNetworkCharacterPlayerApi.js +968 -0
  6. package/dist/runtime/GNNetworkCloudScriptApi.js +104 -0
  7. package/dist/runtime/GNNetworkContentApi.js +140 -0
  8. package/dist/runtime/GNNetworkDashboardApi.js +170 -0
  9. package/dist/runtime/GNNetworkGamePlayerApi.js +950 -0
  10. package/dist/runtime/GNNetworkGroupApi.js +734 -0
  11. package/dist/runtime/GNNetworkInventoryApi.js +626 -0
  12. package/dist/runtime/GNNetworkMasterPlayerApi.js +1550 -0
  13. package/dist/runtime/GNNetworkMultiplayerApi.js +194 -0
  14. package/dist/runtime/GNNetworkStoreInventoryApi.js +266 -0
  15. package/dist/runtime/common/Action0.js +1 -0
  16. package/dist/runtime/common/Action1.js +1 -0
  17. package/dist/runtime/common/Action2.js +1 -0
  18. package/dist/runtime/common/Action3.js +1 -0
  19. package/dist/runtime/common/Action4.js +1 -0
  20. package/dist/runtime/common/GNData.js +211 -0
  21. package/dist/runtime/config/GNServerSettings.js +149 -0
  22. package/dist/runtime/constant/Commands.js +19 -0
  23. package/dist/runtime/constant/EventCode.js +8 -0
  24. package/dist/runtime/constant/OperationCode.js +221 -0
  25. package/dist/runtime/constant/ReturnCode.js +14 -0
  26. package/dist/runtime/constant/enumType/ExecuteResponseStatus.js +8 -0
  27. package/dist/runtime/constant/enumType/FriendStatus.js +7 -0
  28. package/dist/runtime/constant/enumType/GoogleLoginType.js +5 -0
  29. package/dist/runtime/constant/enumType/GroupStatus.js +7 -0
  30. package/dist/runtime/constant/enumType/InvalidMemberType.js +18 -0
  31. package/dist/runtime/constant/enumType/ItemType.js +5 -0
  32. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +6 -0
  33. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +8 -0
  34. package/dist/runtime/constant/enumType/OwnerType.js +9 -0
  35. package/dist/runtime/constant/enumType/PermissionDataItem.js +5 -0
  36. package/dist/runtime/constant/enumType/PushPlatformType.js +5 -0
  37. package/dist/runtime/constant/enumType/RequestRole.js +6 -0
  38. package/dist/runtime/constant/enumType/RequestType.js +15 -0
  39. package/dist/runtime/constant/enumType/StoreItemType.js +5 -0
  40. package/dist/runtime/constant/enumType/StoreReceiveType.js +8 -0
  41. package/dist/runtime/constant/errorCode/ErrorCode.js +52 -0
  42. package/dist/runtime/constant/parameterCode/ParameterCode.js +617 -0
  43. package/dist/runtime/entity/DataMember.js +208 -0
  44. package/dist/runtime/entity/GNMetadata.js +11 -0
  45. package/dist/runtime/entity/InvalidMember.js +1 -0
  46. package/dist/runtime/entity/OperationEvent.js +24 -0
  47. package/dist/runtime/entity/OperationHelper.js +24 -0
  48. package/dist/runtime/entity/OperationRequest.js +42 -0
  49. package/dist/runtime/entity/OperationResponse.js +73 -0
  50. package/dist/runtime/entity/models/AuthenticateModels.js +426 -0
  51. package/dist/runtime/entity/models/AuthenticateRequestModels.js +188 -0
  52. package/dist/runtime/entity/models/AuthenticateResponseModels.js +131 -0
  53. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +0 -1
  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.d.ts +7 -7
  64. package/dist/runtime/entity/models/DashboardModels.js +3002 -0
  65. package/dist/runtime/entity/models/DashboardRequestModels.js +268 -0
  66. package/dist/runtime/entity/models/DashboardResponseModels.js +187 -0
  67. package/dist/runtime/entity/models/GamePlayerModels.js +1591 -0
  68. package/dist/runtime/entity/models/GamePlayerRequestModels.js +1360 -0
  69. package/dist/runtime/entity/models/GamePlayerResponseModels.js +369 -0
  70. package/dist/runtime/entity/models/GenericModels.js +177 -0
  71. package/dist/runtime/entity/models/GroupModels.d.ts +0 -1
  72. package/dist/runtime/entity/models/GroupModels.js +1135 -0
  73. package/dist/runtime/entity/models/GroupRequestModels.js +1048 -0
  74. package/dist/runtime/entity/models/GroupResponseModels.js +285 -0
  75. package/dist/runtime/entity/models/InventoryModels.js +915 -0
  76. package/dist/runtime/entity/models/InventoryRequestModels.js +892 -0
  77. package/dist/runtime/entity/models/InventoryResponseModels.js +243 -0
  78. package/dist/runtime/entity/models/MasterPlayerModels.js +2573 -0
  79. package/dist/runtime/entity/models/MasterPlayerRequestModels.js +2228 -0
  80. package/dist/runtime/entity/models/MasterPlayerResponseModels.js +607 -0
  81. package/dist/runtime/entity/models/MultiplayerModels.d.ts +1 -1
  82. package/dist/runtime/entity/models/MultiplayerModels.js +404 -0
  83. package/dist/runtime/entity/models/MultiplayerRequestModels.js +268 -0
  84. package/dist/runtime/entity/models/MultiplayerResponseModels.js +75 -0
  85. package/dist/runtime/entity/models/StoreInventoryModels.js +797 -0
  86. package/dist/runtime/entity/models/StoreInventoryRequestModels.js +372 -0
  87. package/dist/runtime/entity/models/StoreInventoryResponseModels.js +103 -0
  88. package/dist/runtime/entity/request/CustomOperationRequest.js +24 -0
  89. package/dist/runtime/entity/response/CustomOperationResponse.js +29 -0
  90. package/dist/runtime/entity/response/GetAuthInfoResponse.js +2 -0
  91. package/dist/runtime/entity/response/UploadFileResponse.js +2 -0
  92. package/dist/runtime/helper/CodeHelper.js +63 -0
  93. package/dist/runtime/helper/ConverterService.js +275 -0
  94. package/dist/runtime/helper/EnumUtility.js +33 -0
  95. package/dist/runtime/helper/GNSupport.js +8 -0
  96. package/dist/runtime/helper/GNUtils.js +72 -0
  97. package/dist/runtime/helper/MessagePackConverterService.js +9 -0
  98. package/dist/runtime/logger/GNDebug.js +29 -0
  99. package/dist/runtime/networking/AuthenticateStatus.js +14 -0
  100. package/dist/runtime/networking/IPeer.js +1 -0
  101. package/dist/runtime/networking/NetworkingPeer.js +178 -0
  102. package/dist/runtime/networking/OperationPending.js +53 -0
  103. package/dist/runtime/networking/PeerBase.js +161 -0
  104. package/dist/runtime/networking/handler/IServerEventHandler.js +13 -0
  105. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +39 -0
  106. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +39 -0
  107. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +39 -0
  108. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +39 -0
  109. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +35 -0
  110. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +43 -0
  111. package/dist/runtime/networking/http/HttpPeer.js +122 -0
  112. package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +6 -0
  113. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +164 -0
  114. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +130 -0
  115. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +165 -0
  116. package/dist/runtime/networking/socket/SocketPeer.js +115 -0
  117. package/dist/runtime/typescript/ServiceUpdate.js +12 -0
  118. package/package.json +2 -2
  119. package/responseModel/chatgpt/Authenticate.json +724 -0
  120. package/responseModel/chatgpt/CharacterPlayer.json +1890 -0
  121. package/responseModel/chatgpt/CloudScript.json +254 -0
  122. package/responseModel/chatgpt/Content.json +273 -0
  123. package/responseModel/chatgpt/Dashboard.json +4110 -0
  124. package/responseModel/chatgpt/GamePlayer.json +2306 -0
  125. package/responseModel/chatgpt/Generic.json +253 -0
  126. package/responseModel/chatgpt/Group.json +1509 -0
  127. package/responseModel/chatgpt/Inventory.json +1211 -0
  128. package/responseModel/chatgpt/MasterPlayer.json +3801 -0
  129. package/responseModel/chatgpt/Multiplayer.json +634 -0
  130. package/responseModel/chatgpt/StoreInventory.json +1099 -0
  131. package/responseModel/clients/AuthenticateModels.json +271 -0
  132. package/responseModel/clients/CharacterPlayerModels.json +792 -0
  133. package/responseModel/clients/CloudScriptModels.json +191 -0
  134. package/responseModel/clients/ContentModels.json +178 -0
  135. package/responseModel/clients/DashboardModels.json +5423 -0
  136. package/responseModel/clients/GamePlayerModels.json +781 -0
  137. package/responseModel/clients/GenericModels.json +344 -0
  138. package/responseModel/clients/GroupModels.json +705 -0
  139. package/responseModel/clients/InventoryModels.json +568 -0
  140. package/responseModel/clients/MasterPlayerModels.json +1281 -0
  141. package/responseModel/clients/MultiplayerModels.json +439 -0
  142. package/responseModel/clients/StoreInventoryModels.json +971 -0
  143. package/responseModel/finalChatgpt/Authenticate.json +1475 -0
  144. package/responseModel/finalChatgpt/CharacterPlayer.json +4104 -0
  145. package/responseModel/finalChatgpt/CloudScript.json +515 -0
  146. package/responseModel/finalChatgpt/Content.json +536 -0
  147. package/responseModel/finalChatgpt/Dashboard.json +6712 -0
  148. package/responseModel/finalChatgpt/GamePlayer.json +5142 -0
  149. package/responseModel/finalChatgpt/Generic.json +333 -0
  150. package/responseModel/finalChatgpt/Group.json +3232 -0
  151. package/responseModel/finalChatgpt/Inventory.json +2606 -0
  152. package/responseModel/finalChatgpt/MasterPlayer.json +8385 -0
  153. package/responseModel/finalChatgpt/Multiplayer.json +1196 -0
  154. package/responseModel/finalChatgpt/StoreInventory.json +2085 -0
  155. package/responseModel/finals/Authenticate.json +1460 -0
  156. package/responseModel/finals/CharacterPlayer.json +3639 -0
  157. package/responseModel/finals/CloudScript.json +465 -0
  158. package/responseModel/finals/Content.json +479 -0
  159. package/responseModel/finals/Dashboard.json +6718 -0
  160. package/responseModel/finals/GamePlayer.json +4291 -0
  161. package/responseModel/finals/Generic.json +345 -0
  162. package/responseModel/finals/Group.json +2885 -0
  163. package/responseModel/finals/Inventory.json +2309 -0
  164. package/responseModel/finals/MasterPlayer.json +7018 -0
  165. package/responseModel/finals/Multiplayer.json +1082 -0
  166. package/responseModel/finals/StoreInventory.json +1979 -0
  167. package/responseModel/finalsShort/Authenticate.json +723 -0
  168. package/responseModel/finalsShort/CharacterPlayer.json +1889 -0
  169. package/responseModel/finalsShort/CloudScript.json +253 -0
  170. package/responseModel/finalsShort/Content.json +272 -0
  171. package/responseModel/finalsShort/Dashboard.json +4109 -0
  172. package/responseModel/finalsShort/GamePlayer.json +2305 -0
  173. package/responseModel/finalsShort/Generic.json +252 -0
  174. package/responseModel/finalsShort/Group.json +1508 -0
  175. package/responseModel/finalsShort/Inventory.json +1210 -0
  176. package/responseModel/finalsShort/MasterPlayer.json +3800 -0
  177. package/responseModel/finalsShort/Multiplayer.json +633 -0
  178. package/responseModel/finalsShort/StoreInventory.json +1098 -0
  179. package/responseModel/operationResponse/AuthenticateResponseModels.json +77 -0
  180. package/responseModel/operationResponse/CharacterPlayerResponseModels.json +217 -0
  181. package/responseModel/operationResponse/CloudScriptResponseModels.json +25 -0
  182. package/responseModel/operationResponse/ContentResponseModels.json +33 -0
  183. package/responseModel/operationResponse/DashboardResponseModels.json +109 -0
  184. package/responseModel/operationResponse/GamePlayerResponseModels.json +213 -0
  185. package/responseModel/operationResponse/GroupResponseModels.json +165 -0
  186. package/responseModel/operationResponse/InventoryResponseModels.json +141 -0
  187. package/responseModel/operationResponse/MasterPlayerResponseModels.json +349 -0
  188. package/responseModel/operationResponse/MultiplayerResponseModels.json +45 -0
  189. package/responseModel/operationResponse/StoreInventoryResponseModels.json +61 -0
  190. package/responseModel/servers/Authenticate.json +1328 -0
  191. package/responseModel/servers/CharacterPlayer.json +3199 -0
  192. package/responseModel/servers/CloudScript.json +278 -0
  193. package/responseModel/servers/Content.json +324 -0
  194. package/responseModel/servers/GamePlayer.json +3844 -0
  195. package/responseModel/servers/Group.json +2454 -0
  196. package/responseModel/servers/Inventory.json +1964 -0
  197. package/responseModel/servers/MasterAdmin.json +5569 -0
  198. package/responseModel/servers/MasterPlayer.json +5924 -0
  199. package/responseModel/servers/Multiplayer.json +545 -0
  200. package/responseModel/servers/StoreInventory.json +1290 -0
  201. package/dist/gearn.js.client.js +0 -46892
  202. package/dist/gearn.js.client.min.js +0 -2
  203. package/dist/gearn.js.client.min.js.LICENSE.txt +0 -14
@@ -0,0 +1,1328 @@
1
+ {
2
+ "requestType": "Authenticate",
3
+ "operations": [
4
+ {
5
+ "operationCode": "LoginByAccount",
6
+ "details": [
7
+ {
8
+ "role": "Client",
9
+ "requestData": [
10
+ {
11
+ "code": "Username",
12
+ "description": "",
13
+ "optional": false,
14
+ "type": "string",
15
+ "gnType": "String",
16
+ "conditions": {
17
+ "mustNonNull": true,
18
+ "minLength": 6,
19
+ "maxLength": 32
20
+ }
21
+ },
22
+ {
23
+ "code": "Password",
24
+ "description": "",
25
+ "optional": false,
26
+ "type": "string",
27
+ "gnType": "String",
28
+ "conditions": {
29
+ "mustNonNull": true,
30
+ "minLength": 6,
31
+ "maxLength": 64
32
+ }
33
+ },
34
+ {
35
+ "code": "InfoRequestParam",
36
+ "description": "",
37
+ "optional": false,
38
+ "type": "InfoRequestParam",
39
+ "gnType": "GNHashtable",
40
+ "conditions": {
41
+ "mustNonNull": true
42
+ }
43
+ }
44
+ ]
45
+ }
46
+ ],
47
+ "responseData": [
48
+ {
49
+ "code": "ErrorCode",
50
+ "value": [
51
+ "AccountNotFound",
52
+ "AccountPasswordWrong",
53
+ "Ok"
54
+ ]
55
+ },
56
+ {
57
+ "code": "UserId"
58
+ },
59
+ {
60
+ "code": "InfoResponseParameters"
61
+ }
62
+ ],
63
+ "description": ""
64
+ },
65
+ {
66
+ "operationCode": "LoginByAndroidDeviceId",
67
+ "details": [
68
+ {
69
+ "role": "Client",
70
+ "requestData": [
71
+ {
72
+ "code": "AndroidDeviceId",
73
+ "description": "",
74
+ "optional": false,
75
+ "type": "string",
76
+ "gnType": "String",
77
+ "conditions": {
78
+ "mustNonNull": true,
79
+ "minLength": 6,
80
+ "maxLength": 64
81
+ }
82
+ },
83
+ {
84
+ "code": "CreatePlayerIfNotExists",
85
+ "description": "",
86
+ "optional": true,
87
+ "type": "boolean",
88
+ "gnType": "Boolean",
89
+ "defaultValue": "false",
90
+ "conditions": {}
91
+ },
92
+ {
93
+ "code": "InfoRequestParam",
94
+ "description": "",
95
+ "optional": false,
96
+ "type": "InfoRequestParam",
97
+ "gnType": "GNHashtable",
98
+ "conditions": {
99
+ "mustNonNull": true
100
+ }
101
+ }
102
+ ]
103
+ }
104
+ ],
105
+ "responseData": [
106
+ {
107
+ "code": "ErrorCode",
108
+ "value": [
109
+ "AccountNotFound",
110
+ "Ok"
111
+ ]
112
+ },
113
+ {
114
+ "code": "NewlyCreated"
115
+ },
116
+ {
117
+ "code": "UserId"
118
+ },
119
+ {
120
+ "code": "InfoResponseParameters"
121
+ }
122
+ ],
123
+ "description": ""
124
+ },
125
+ {
126
+ "operationCode": "LoginByApple",
127
+ "details": [
128
+ {
129
+ "role": "Client",
130
+ "requestData": [
131
+ {
132
+ "code": "Token",
133
+ "description": "",
134
+ "optional": false,
135
+ "type": "string",
136
+ "gnType": "String",
137
+ "conditions": {
138
+ "mustNonNull": true,
139
+ "minLength": 32,
140
+ "maxLength": 2048
141
+ }
142
+ },
143
+ {
144
+ "code": "CreatePlayerIfNotExists",
145
+ "description": "",
146
+ "optional": true,
147
+ "type": "boolean",
148
+ "gnType": "Boolean",
149
+ "defaultValue": "false",
150
+ "conditions": {}
151
+ },
152
+ {
153
+ "code": "InfoRequestParam",
154
+ "description": "",
155
+ "optional": false,
156
+ "type": "InfoRequestParam",
157
+ "gnType": "GNHashtable",
158
+ "conditions": {
159
+ "mustNonNull": true
160
+ }
161
+ }
162
+ ]
163
+ }
164
+ ],
165
+ "responseData": [
166
+ {
167
+ "code": "ErrorCode",
168
+ "value": [
169
+ "VerifyTokenError",
170
+ "AccountNotFound",
171
+ "Ok"
172
+ ]
173
+ },
174
+ {
175
+ "code": "NewlyCreated"
176
+ },
177
+ {
178
+ "code": "UserId"
179
+ },
180
+ {
181
+ "code": "InfoResponseParameters"
182
+ }
183
+ ],
184
+ "description": ""
185
+ },
186
+ {
187
+ "operationCode": "LoginByCustomDeviceId",
188
+ "details": [
189
+ {
190
+ "role": "Client",
191
+ "requestData": [
192
+ {
193
+ "code": "CustomDeviceId",
194
+ "description": "",
195
+ "optional": false,
196
+ "type": "string",
197
+ "gnType": "String",
198
+ "conditions": {
199
+ "mustNonNull": true,
200
+ "minLength": 6,
201
+ "maxLength": 64
202
+ }
203
+ },
204
+ {
205
+ "code": "CreatePlayerIfNotExists",
206
+ "description": "",
207
+ "optional": true,
208
+ "type": "boolean",
209
+ "gnType": "Boolean",
210
+ "defaultValue": "false",
211
+ "conditions": {}
212
+ },
213
+ {
214
+ "code": "InfoRequestParam",
215
+ "description": "",
216
+ "optional": false,
217
+ "type": "InfoRequestParam",
218
+ "gnType": "GNHashtable",
219
+ "conditions": {
220
+ "mustNonNull": true
221
+ }
222
+ }
223
+ ]
224
+ }
225
+ ],
226
+ "responseData": [
227
+ {
228
+ "code": "ErrorCode",
229
+ "value": [
230
+ "AccountNotFound",
231
+ "Ok"
232
+ ]
233
+ },
234
+ {
235
+ "code": "NewlyCreated"
236
+ },
237
+ {
238
+ "code": "UserId"
239
+ },
240
+ {
241
+ "code": "InfoResponseParameters"
242
+ }
243
+ ],
244
+ "description": ""
245
+ },
246
+ {
247
+ "operationCode": "LoginByCustomId",
248
+ "details": [
249
+ {
250
+ "role": "Client",
251
+ "requestData": [
252
+ {
253
+ "code": "CustomId",
254
+ "description": "",
255
+ "optional": false,
256
+ "type": "string",
257
+ "gnType": "String",
258
+ "conditions": {
259
+ "mustNonNull": true,
260
+ "minLength": 6,
261
+ "maxLength": 64
262
+ }
263
+ },
264
+ {
265
+ "code": "CreatePlayerIfNotExists",
266
+ "description": "",
267
+ "optional": true,
268
+ "type": "boolean",
269
+ "gnType": "Boolean",
270
+ "defaultValue": "false",
271
+ "conditions": {}
272
+ },
273
+ {
274
+ "code": "InfoRequestParam",
275
+ "description": "",
276
+ "optional": false,
277
+ "type": "InfoRequestParam",
278
+ "gnType": "GNHashtable",
279
+ "conditions": {
280
+ "mustNonNull": true
281
+ }
282
+ }
283
+ ]
284
+ }
285
+ ],
286
+ "responseData": [
287
+ {
288
+ "code": "ErrorCode",
289
+ "value": [
290
+ "AccountNotFound",
291
+ "Ok"
292
+ ]
293
+ },
294
+ {
295
+ "code": "NewlyCreated"
296
+ },
297
+ {
298
+ "code": "UserId"
299
+ },
300
+ {
301
+ "code": "InfoResponseParameters"
302
+ }
303
+ ],
304
+ "description": ""
305
+ },
306
+ {
307
+ "operationCode": "LoginByEditorDeviceId",
308
+ "details": [
309
+ {
310
+ "role": "Client",
311
+ "requestData": [
312
+ {
313
+ "code": "EditorDeviceId",
314
+ "description": "",
315
+ "optional": false,
316
+ "type": "string",
317
+ "gnType": "String",
318
+ "conditions": {
319
+ "mustNonNull": true,
320
+ "minLength": 6,
321
+ "maxLength": 64
322
+ }
323
+ },
324
+ {
325
+ "code": "CreatePlayerIfNotExists",
326
+ "description": "",
327
+ "optional": true,
328
+ "type": "boolean",
329
+ "gnType": "Boolean",
330
+ "defaultValue": "false",
331
+ "conditions": {}
332
+ },
333
+ {
334
+ "code": "InfoRequestParam",
335
+ "description": "",
336
+ "optional": false,
337
+ "type": "InfoRequestParam",
338
+ "gnType": "GNHashtable",
339
+ "conditions": {
340
+ "mustNonNull": true
341
+ }
342
+ }
343
+ ]
344
+ }
345
+ ],
346
+ "responseData": [
347
+ {
348
+ "code": "ErrorCode",
349
+ "value": [
350
+ "AccountNotFound",
351
+ "Ok"
352
+ ]
353
+ },
354
+ {
355
+ "code": "NewlyCreated"
356
+ },
357
+ {
358
+ "code": "UserId"
359
+ },
360
+ {
361
+ "code": "InfoResponseParameters"
362
+ }
363
+ ],
364
+ "description": ""
365
+ },
366
+ {
367
+ "operationCode": "LoginByFacebook",
368
+ "details": [
369
+ {
370
+ "role": "Client",
371
+ "requestData": [
372
+ {
373
+ "code": "Token",
374
+ "description": "",
375
+ "optional": false,
376
+ "type": "string",
377
+ "gnType": "String",
378
+ "conditions": {
379
+ "mustNonNull": true,
380
+ "minLength": 32,
381
+ "maxLength": 2048
382
+ }
383
+ },
384
+ {
385
+ "code": "CreatePlayerIfNotExists",
386
+ "description": "",
387
+ "optional": true,
388
+ "type": "boolean",
389
+ "gnType": "Boolean",
390
+ "defaultValue": "false",
391
+ "conditions": {}
392
+ },
393
+ {
394
+ "code": "InfoRequestParam",
395
+ "description": "",
396
+ "optional": false,
397
+ "type": "InfoRequestParam",
398
+ "gnType": "GNHashtable",
399
+ "conditions": {
400
+ "mustNonNull": true
401
+ }
402
+ }
403
+ ]
404
+ }
405
+ ],
406
+ "responseData": [
407
+ {
408
+ "code": "ErrorCode",
409
+ "value": [
410
+ "VerifyTokenError",
411
+ "AccountNotFound",
412
+ "Ok"
413
+ ]
414
+ },
415
+ {
416
+ "code": "NewlyCreated"
417
+ },
418
+ {
419
+ "code": "UserId"
420
+ },
421
+ {
422
+ "code": "InfoResponseParameters"
423
+ }
424
+ ],
425
+ "description": ""
426
+ },
427
+ {
428
+ "operationCode": "LoginByGameCenter",
429
+ "details": [
430
+ {
431
+ "role": "Client",
432
+ "requestData": [
433
+ {
434
+ "code": "PlayerId",
435
+ "description": "",
436
+ "optional": false,
437
+ "type": "string",
438
+ "gnType": "String",
439
+ "conditions": {
440
+ "mustNonNull": true,
441
+ "minLength": 2,
442
+ "maxLength": 64
443
+ }
444
+ },
445
+ {
446
+ "code": "Name",
447
+ "description": "",
448
+ "optional": false,
449
+ "type": "string",
450
+ "gnType": "String",
451
+ "conditions": {
452
+ "mustNonNull": true,
453
+ "minLength": 2,
454
+ "maxLength": 128
455
+ }
456
+ },
457
+ {
458
+ "code": "PublicKeyUrl",
459
+ "description": "",
460
+ "optional": false,
461
+ "type": "string",
462
+ "gnType": "String",
463
+ "conditions": {
464
+ "mustNonNull": true,
465
+ "minLength": 2,
466
+ "maxLength": 2048
467
+ }
468
+ },
469
+ {
470
+ "code": "Signature",
471
+ "description": "",
472
+ "optional": false,
473
+ "type": "string",
474
+ "gnType": "String",
475
+ "conditions": {
476
+ "mustNonNull": true,
477
+ "minLength": 2,
478
+ "maxLength": 2048
479
+ }
480
+ },
481
+ {
482
+ "code": "Salt",
483
+ "description": "",
484
+ "optional": false,
485
+ "type": "string",
486
+ "gnType": "String",
487
+ "conditions": {
488
+ "mustNonNull": true,
489
+ "minLength": 2,
490
+ "maxLength": 256
491
+ }
492
+ },
493
+ {
494
+ "code": "Timestamp",
495
+ "description": "",
496
+ "optional": false,
497
+ "type": "number",
498
+ "gnType": "Number",
499
+ "conditions": {}
500
+ },
501
+ {
502
+ "code": "CreatePlayerIfNotExists",
503
+ "description": "",
504
+ "optional": true,
505
+ "type": "boolean",
506
+ "gnType": "Boolean",
507
+ "defaultValue": "false",
508
+ "conditions": {}
509
+ },
510
+ {
511
+ "code": "InfoRequestParam",
512
+ "description": "",
513
+ "optional": false,
514
+ "type": "InfoRequestParam",
515
+ "gnType": "GNHashtable",
516
+ "conditions": {
517
+ "mustNonNull": true
518
+ }
519
+ }
520
+ ]
521
+ }
522
+ ],
523
+ "responseData": [
524
+ {
525
+ "code": "ErrorCode",
526
+ "value": [
527
+ "VerifyTokenError",
528
+ "AccountNotFound",
529
+ "Ok"
530
+ ]
531
+ },
532
+ {
533
+ "code": "NewlyCreated"
534
+ },
535
+ {
536
+ "code": "UserId"
537
+ },
538
+ {
539
+ "code": "InfoResponseParameters"
540
+ }
541
+ ],
542
+ "description": ""
543
+ },
544
+ {
545
+ "operationCode": "LoginByGenericService",
546
+ "details": [
547
+ {
548
+ "role": "Client",
549
+ "requestData": [
550
+ {
551
+ "code": "ServiceName",
552
+ "description": "",
553
+ "optional": false,
554
+ "type": "string",
555
+ "gnType": "String",
556
+ "conditions": {
557
+ "mustNonNull": true,
558
+ "minLength": 6,
559
+ "maxLength": 32
560
+ }
561
+ },
562
+ {
563
+ "code": "ServiceData",
564
+ "description": "",
565
+ "optional": false,
566
+ "type": "GNHashtable",
567
+ "gnType": "GNHashtable",
568
+ "conditions": {
569
+ "mustNonNull": true
570
+ }
571
+ },
572
+ {
573
+ "code": "CreatePlayerIfNotExists",
574
+ "description": "",
575
+ "optional": true,
576
+ "type": "boolean",
577
+ "gnType": "Boolean",
578
+ "defaultValue": "false",
579
+ "conditions": {}
580
+ },
581
+ {
582
+ "code": "InfoRequestParam",
583
+ "description": "",
584
+ "optional": false,
585
+ "type": "InfoRequestParam",
586
+ "gnType": "GNHashtable",
587
+ "conditions": {
588
+ "mustNonNull": true
589
+ }
590
+ }
591
+ ]
592
+ }
593
+ ],
594
+ "responseData": [
595
+ {
596
+ "code": "ErrorCode",
597
+ "value": [
598
+ "VerifyFailed",
599
+ "AccountNotFound",
600
+ "Ok"
601
+ ]
602
+ },
603
+ {
604
+ "code": "ErrorMessage"
605
+ },
606
+ {
607
+ "code": "NewlyCreated"
608
+ },
609
+ {
610
+ "code": "UserId"
611
+ },
612
+ {
613
+ "code": "InfoResponseParameters"
614
+ }
615
+ ],
616
+ "description": ""
617
+ },
618
+ {
619
+ "operationCode": "LoginByGooglePlayGameService",
620
+ "details": [
621
+ {
622
+ "role": "Client",
623
+ "requestData": [
624
+ {
625
+ "code": "Token",
626
+ "description": "",
627
+ "optional": false,
628
+ "type": "string",
629
+ "gnType": "String",
630
+ "conditions": {
631
+ "mustNonNull": true,
632
+ "minLength": 32,
633
+ "maxLength": 2048
634
+ }
635
+ },
636
+ {
637
+ "code": "CreatePlayerIfNotExists",
638
+ "description": "",
639
+ "optional": true,
640
+ "type": "boolean",
641
+ "gnType": "Boolean",
642
+ "defaultValue": "false",
643
+ "conditions": {}
644
+ },
645
+ {
646
+ "code": "InfoRequestParam",
647
+ "description": "",
648
+ "optional": false,
649
+ "type": "InfoRequestParam",
650
+ "gnType": "GNHashtable",
651
+ "conditions": {
652
+ "mustNonNull": true
653
+ }
654
+ }
655
+ ]
656
+ }
657
+ ],
658
+ "responseData": [
659
+ {
660
+ "code": "ErrorCode",
661
+ "value": [
662
+ "VerifyTokenError",
663
+ "AccountNotFound",
664
+ "Ok"
665
+ ]
666
+ },
667
+ {
668
+ "code": "NewlyCreated"
669
+ },
670
+ {
671
+ "code": "UserId"
672
+ },
673
+ {
674
+ "code": "InfoResponseParameters"
675
+ }
676
+ ],
677
+ "description": ""
678
+ },
679
+ {
680
+ "operationCode": "LoginByGoogle",
681
+ "details": [
682
+ {
683
+ "role": "Client",
684
+ "requestData": [
685
+ {
686
+ "code": "Token",
687
+ "description": "",
688
+ "optional": false,
689
+ "type": "string",
690
+ "gnType": "String",
691
+ "conditions": {
692
+ "mustNonNull": true,
693
+ "minLength": 32,
694
+ "maxLength": 2048
695
+ }
696
+ },
697
+ {
698
+ "code": "Type",
699
+ "description": "",
700
+ "optional": false,
701
+ "type": "number",
702
+ "gnType": "Number",
703
+ "conditions": {
704
+ "mustInt": true,
705
+ "minValue": 1,
706
+ "maxValue": 2
707
+ }
708
+ },
709
+ {
710
+ "code": "CreatePlayerIfNotExists",
711
+ "description": "",
712
+ "optional": true,
713
+ "type": "boolean",
714
+ "gnType": "Boolean",
715
+ "defaultValue": "false",
716
+ "conditions": {}
717
+ },
718
+ {
719
+ "code": "InfoRequestParam",
720
+ "description": "",
721
+ "optional": false,
722
+ "type": "InfoRequestParam",
723
+ "gnType": "GNHashtable",
724
+ "conditions": {
725
+ "mustNonNull": true
726
+ }
727
+ }
728
+ ]
729
+ }
730
+ ],
731
+ "responseData": [
732
+ {
733
+ "code": "ErrorCode",
734
+ "value": [
735
+ "VerifyTokenError",
736
+ "AccountNotFound",
737
+ "Ok"
738
+ ]
739
+ },
740
+ {
741
+ "code": "NewlyCreated"
742
+ },
743
+ {
744
+ "code": "UserId"
745
+ },
746
+ {
747
+ "code": "InfoResponseParameters"
748
+ }
749
+ ],
750
+ "description": ""
751
+ },
752
+ {
753
+ "operationCode": "LoginByiOSDeviceId",
754
+ "details": [
755
+ {
756
+ "role": "Client",
757
+ "requestData": [
758
+ {
759
+ "code": "iOSDeviceId",
760
+ "description": "",
761
+ "optional": false,
762
+ "type": "string",
763
+ "gnType": "String",
764
+ "conditions": {
765
+ "mustNonNull": true,
766
+ "minLength": 6,
767
+ "maxLength": 64
768
+ }
769
+ },
770
+ {
771
+ "code": "CreatePlayerIfNotExists",
772
+ "description": "",
773
+ "optional": true,
774
+ "type": "boolean",
775
+ "gnType": "Boolean",
776
+ "defaultValue": "false",
777
+ "conditions": {}
778
+ },
779
+ {
780
+ "code": "InfoRequestParam",
781
+ "description": "",
782
+ "optional": false,
783
+ "type": "InfoRequestParam",
784
+ "gnType": "GNHashtable",
785
+ "conditions": {
786
+ "mustNonNull": true
787
+ }
788
+ }
789
+ ]
790
+ }
791
+ ],
792
+ "responseData": [
793
+ {
794
+ "code": "ErrorCode",
795
+ "value": [
796
+ "AccountNotFound",
797
+ "Ok"
798
+ ]
799
+ },
800
+ {
801
+ "code": "NewlyCreated"
802
+ },
803
+ {
804
+ "code": "UserId"
805
+ },
806
+ {
807
+ "code": "InfoResponseParameters"
808
+ }
809
+ ],
810
+ "description": ""
811
+ },
812
+ {
813
+ "operationCode": "LoginByLinuxDeviceId",
814
+ "details": [
815
+ {
816
+ "role": "Client",
817
+ "requestData": [
818
+ {
819
+ "code": "LinuxDeviceId",
820
+ "description": "",
821
+ "optional": false,
822
+ "type": "string",
823
+ "gnType": "String",
824
+ "conditions": {
825
+ "mustNonNull": true,
826
+ "minLength": 6,
827
+ "maxLength": 64
828
+ }
829
+ },
830
+ {
831
+ "code": "CreatePlayerIfNotExists",
832
+ "description": "",
833
+ "optional": true,
834
+ "type": "boolean",
835
+ "gnType": "Boolean",
836
+ "defaultValue": "false",
837
+ "conditions": {}
838
+ },
839
+ {
840
+ "code": "InfoRequestParam",
841
+ "description": "",
842
+ "optional": false,
843
+ "type": "InfoRequestParam",
844
+ "gnType": "GNHashtable",
845
+ "conditions": {
846
+ "mustNonNull": true
847
+ }
848
+ }
849
+ ]
850
+ }
851
+ ],
852
+ "responseData": [
853
+ {
854
+ "code": "ErrorCode",
855
+ "value": [
856
+ "AccountNotFound",
857
+ "Ok"
858
+ ]
859
+ },
860
+ {
861
+ "code": "NewlyCreated"
862
+ },
863
+ {
864
+ "code": "UserId"
865
+ },
866
+ {
867
+ "code": "InfoResponseParameters"
868
+ }
869
+ ],
870
+ "description": ""
871
+ },
872
+ {
873
+ "operationCode": "LoginByMacOSDeviceId",
874
+ "details": [
875
+ {
876
+ "role": "Client",
877
+ "requestData": [
878
+ {
879
+ "code": "MacOSDeviceId",
880
+ "description": "",
881
+ "optional": false,
882
+ "type": "string",
883
+ "gnType": "String",
884
+ "conditions": {
885
+ "mustNonNull": true,
886
+ "minLength": 6,
887
+ "maxLength": 64
888
+ }
889
+ },
890
+ {
891
+ "code": "CreatePlayerIfNotExists",
892
+ "description": "",
893
+ "optional": true,
894
+ "type": "boolean",
895
+ "gnType": "Boolean",
896
+ "defaultValue": "false",
897
+ "conditions": {}
898
+ },
899
+ {
900
+ "code": "InfoRequestParam",
901
+ "description": "",
902
+ "optional": false,
903
+ "type": "InfoRequestParam",
904
+ "gnType": "GNHashtable",
905
+ "conditions": {
906
+ "mustNonNull": true
907
+ }
908
+ }
909
+ ]
910
+ }
911
+ ],
912
+ "responseData": [
913
+ {
914
+ "code": "ErrorCode",
915
+ "value": [
916
+ "AccountNotFound",
917
+ "Ok"
918
+ ]
919
+ },
920
+ {
921
+ "code": "NewlyCreated"
922
+ },
923
+ {
924
+ "code": "UserId"
925
+ },
926
+ {
927
+ "code": "InfoResponseParameters"
928
+ }
929
+ ],
930
+ "description": ""
931
+ },
932
+ {
933
+ "operationCode": "LoginByWindowsDeviceId",
934
+ "details": [
935
+ {
936
+ "role": "Client",
937
+ "requestData": [
938
+ {
939
+ "code": "WindowsDeviceId",
940
+ "description": "",
941
+ "optional": false,
942
+ "type": "string",
943
+ "gnType": "String",
944
+ "conditions": {
945
+ "mustNonNull": true,
946
+ "minLength": 6,
947
+ "maxLength": 64
948
+ }
949
+ },
950
+ {
951
+ "code": "CreatePlayerIfNotExists",
952
+ "description": "",
953
+ "optional": true,
954
+ "type": "boolean",
955
+ "gnType": "Boolean",
956
+ "defaultValue": "false",
957
+ "conditions": {}
958
+ },
959
+ {
960
+ "code": "InfoRequestParam",
961
+ "description": "",
962
+ "optional": false,
963
+ "type": "InfoRequestParam",
964
+ "gnType": "GNHashtable",
965
+ "conditions": {
966
+ "mustNonNull": true
967
+ }
968
+ }
969
+ ]
970
+ }
971
+ ],
972
+ "responseData": [
973
+ {
974
+ "code": "ErrorCode",
975
+ "value": [
976
+ "AccountNotFound",
977
+ "Ok"
978
+ ]
979
+ },
980
+ {
981
+ "code": "NewlyCreated"
982
+ },
983
+ {
984
+ "code": "UserId"
985
+ },
986
+ {
987
+ "code": "InfoResponseParameters"
988
+ }
989
+ ],
990
+ "description": ""
991
+ },
992
+ {
993
+ "operationCode": "LoginByWindowsPhoneDeviceId",
994
+ "details": [
995
+ {
996
+ "role": "Client",
997
+ "requestData": [
998
+ {
999
+ "code": "WindowsPhoneDeviceId",
1000
+ "description": "",
1001
+ "optional": false,
1002
+ "type": "string",
1003
+ "gnType": "String",
1004
+ "conditions": {
1005
+ "mustNonNull": true,
1006
+ "minLength": 6,
1007
+ "maxLength": 64
1008
+ }
1009
+ },
1010
+ {
1011
+ "code": "CreatePlayerIfNotExists",
1012
+ "description": "",
1013
+ "optional": true,
1014
+ "type": "boolean",
1015
+ "gnType": "Boolean",
1016
+ "defaultValue": "false",
1017
+ "conditions": {}
1018
+ },
1019
+ {
1020
+ "code": "InfoRequestParam",
1021
+ "description": "",
1022
+ "optional": false,
1023
+ "type": "InfoRequestParam",
1024
+ "gnType": "GNHashtable",
1025
+ "conditions": {
1026
+ "mustNonNull": true
1027
+ }
1028
+ }
1029
+ ]
1030
+ }
1031
+ ],
1032
+ "responseData": [
1033
+ {
1034
+ "code": "ErrorCode",
1035
+ "value": [
1036
+ "AccountNotFound",
1037
+ "Ok"
1038
+ ]
1039
+ },
1040
+ {
1041
+ "code": "NewlyCreated"
1042
+ },
1043
+ {
1044
+ "code": "UserId"
1045
+ },
1046
+ {
1047
+ "code": "InfoResponseParameters"
1048
+ }
1049
+ ],
1050
+ "description": ""
1051
+ },
1052
+ {
1053
+ "operationCode": "RefreshAuthToken",
1054
+ "details": [],
1055
+ "responseData": [
1056
+ {
1057
+ "code": "ErrorCode",
1058
+ "value": [
1059
+ "AccountNotFound",
1060
+ "PlayerBan",
1061
+ "Ok"
1062
+ ]
1063
+ },
1064
+ {
1065
+ "code": "PlayerBan"
1066
+ },
1067
+ {
1068
+ "code": "AuthToken"
1069
+ }
1070
+ ],
1071
+ "description": ""
1072
+ },
1073
+ {
1074
+ "operationCode": "RegisterAccount",
1075
+ "details": [
1076
+ {
1077
+ "role": "Client",
1078
+ "requestData": [
1079
+ {
1080
+ "code": "Username",
1081
+ "description": "",
1082
+ "optional": false,
1083
+ "type": "string",
1084
+ "gnType": "String",
1085
+ "conditions": {
1086
+ "mustNonNull": true,
1087
+ "minLength": 6,
1088
+ "maxLength": 32
1089
+ }
1090
+ },
1091
+ {
1092
+ "code": "Password",
1093
+ "description": "",
1094
+ "optional": false,
1095
+ "type": "string",
1096
+ "gnType": "String",
1097
+ "conditions": {
1098
+ "mustNonNull": true,
1099
+ "minLength": 6,
1100
+ "maxLength": 64
1101
+ }
1102
+ },
1103
+ {
1104
+ "code": "InfoRequestParam",
1105
+ "description": "",
1106
+ "optional": false,
1107
+ "type": "InfoRequestParam",
1108
+ "gnType": "GNHashtable",
1109
+ "conditions": {
1110
+ "mustNonNull": true
1111
+ }
1112
+ }
1113
+ ]
1114
+ }
1115
+ ],
1116
+ "responseData": [
1117
+ {
1118
+ "code": "ErrorCode",
1119
+ "value": [
1120
+ "AccountUsernameExists",
1121
+ "Ok"
1122
+ ]
1123
+ },
1124
+ {
1125
+ "code": "UserId"
1126
+ },
1127
+ {
1128
+ "code": "InfoResponseParameters"
1129
+ },
1130
+ {
1131
+ "code": "NewlyCreated"
1132
+ }
1133
+ ],
1134
+ "description": ""
1135
+ }
1136
+ ],
1137
+ "models": [
1138
+ {
1139
+ "name": "InfoRequestParam",
1140
+ "details": [
1141
+ {
1142
+ "code": "External",
1143
+ "description": "",
1144
+ "optional": true,
1145
+ "type": "boolean",
1146
+ "gnType": "Boolean",
1147
+ "defaultValue": "false",
1148
+ "conditions": {}
1149
+ },
1150
+ {
1151
+ "code": "Segments",
1152
+ "description": "",
1153
+ "optional": true,
1154
+ "type": "boolean",
1155
+ "gnType": "Boolean",
1156
+ "defaultValue": "false",
1157
+ "conditions": {}
1158
+ },
1159
+ {
1160
+ "code": "CustomDatas",
1161
+ "description": "",
1162
+ "optional": true,
1163
+ "type": "boolean",
1164
+ "gnType": "Boolean",
1165
+ "defaultValue": "false",
1166
+ "conditions": {}
1167
+ },
1168
+ {
1169
+ "code": "DisplayName",
1170
+ "description": "",
1171
+ "optional": true,
1172
+ "type": "boolean",
1173
+ "gnType": "Boolean",
1174
+ "defaultValue": "false",
1175
+ "conditions": {}
1176
+ },
1177
+ {
1178
+ "code": "Avatar",
1179
+ "description": "",
1180
+ "optional": true,
1181
+ "type": "boolean",
1182
+ "gnType": "Boolean",
1183
+ "defaultValue": "false",
1184
+ "conditions": {}
1185
+ },
1186
+ {
1187
+ "code": "TsCreate",
1188
+ "description": "",
1189
+ "optional": true,
1190
+ "type": "boolean",
1191
+ "gnType": "Boolean",
1192
+ "defaultValue": "false",
1193
+ "conditions": {}
1194
+ },
1195
+ {
1196
+ "code": "Tags",
1197
+ "description": "",
1198
+ "optional": true,
1199
+ "type": "boolean",
1200
+ "gnType": "Boolean",
1201
+ "defaultValue": "false",
1202
+ "conditions": {}
1203
+ },
1204
+ {
1205
+ "code": "PlayerBan",
1206
+ "description": "",
1207
+ "optional": true,
1208
+ "type": "boolean",
1209
+ "gnType": "Boolean",
1210
+ "defaultValue": "false",
1211
+ "conditions": {}
1212
+ },
1213
+ {
1214
+ "code": "PlayerCurrencies",
1215
+ "description": "",
1216
+ "optional": true,
1217
+ "type": "boolean",
1218
+ "gnType": "Boolean",
1219
+ "defaultValue": "false",
1220
+ "conditions": {}
1221
+ },
1222
+ {
1223
+ "code": "PlayerStatistics",
1224
+ "description": "",
1225
+ "optional": true,
1226
+ "type": "boolean",
1227
+ "gnType": "Boolean",
1228
+ "defaultValue": "false",
1229
+ "conditions": {}
1230
+ },
1231
+ {
1232
+ "code": "PlayerDatas",
1233
+ "description": "",
1234
+ "optional": true,
1235
+ "type": "boolean",
1236
+ "gnType": "Boolean",
1237
+ "defaultValue": "false",
1238
+ "conditions": {}
1239
+ },
1240
+ {
1241
+ "code": "IpAddressCreate",
1242
+ "description": "",
1243
+ "optional": true,
1244
+ "type": "boolean",
1245
+ "gnType": "Boolean",
1246
+ "defaultValue": "false",
1247
+ "conditions": {}
1248
+ },
1249
+ {
1250
+ "code": "CountryCode",
1251
+ "description": "",
1252
+ "optional": true,
1253
+ "type": "boolean",
1254
+ "gnType": "Boolean",
1255
+ "defaultValue": "false",
1256
+ "conditions": {}
1257
+ },
1258
+ {
1259
+ "code": "Email",
1260
+ "description": "",
1261
+ "optional": true,
1262
+ "type": "boolean",
1263
+ "gnType": "Boolean",
1264
+ "defaultValue": "false",
1265
+ "conditions": {}
1266
+ },
1267
+ {
1268
+ "code": "TsLastLogin",
1269
+ "description": "",
1270
+ "optional": true,
1271
+ "type": "boolean",
1272
+ "gnType": "Boolean",
1273
+ "defaultValue": "false",
1274
+ "conditions": {}
1275
+ },
1276
+ {
1277
+ "code": "PushNotifications",
1278
+ "description": "",
1279
+ "optional": true,
1280
+ "type": "boolean",
1281
+ "gnType": "Boolean",
1282
+ "defaultValue": "false",
1283
+ "conditions": {}
1284
+ },
1285
+ {
1286
+ "code": "PlayerDataKeys",
1287
+ "description": "",
1288
+ "optional": true,
1289
+ "type": "string",
1290
+ "gnType": "GNArray",
1291
+ "conditions": {}
1292
+ },
1293
+ {
1294
+ "code": "PlayerCurrencyKeys",
1295
+ "description": "",
1296
+ "optional": true,
1297
+ "type": "string",
1298
+ "gnType": "GNArray",
1299
+ "conditions": {}
1300
+ },
1301
+ {
1302
+ "code": "PlayerStatisticsKeys",
1303
+ "description": "",
1304
+ "optional": true,
1305
+ "type": "string",
1306
+ "gnType": "GNArray",
1307
+ "conditions": {}
1308
+ },
1309
+ {
1310
+ "code": "CustomDataKeys",
1311
+ "description": "",
1312
+ "optional": true,
1313
+ "type": "string",
1314
+ "gnType": "GNArray",
1315
+ "conditions": {}
1316
+ },
1317
+ {
1318
+ "code": "TagKeys",
1319
+ "description": "",
1320
+ "optional": true,
1321
+ "type": "string",
1322
+ "gnType": "GNArray",
1323
+ "conditions": {}
1324
+ }
1325
+ ]
1326
+ }
1327
+ ]
1328
+ }