@xmobitea/gn-typescript-client 2.6.13-tsc → 2.6.14

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 (400) hide show
  1. package/AGENTS.md +37 -0
  2. package/README.MD +420 -1
  3. package/dist/gearn.js.client.js +71354 -0
  4. package/dist/gearn.js.client.min.js +2 -0
  5. package/dist/gearn.js.client.min.js.LICENSE.txt +14 -0
  6. package/dist/index.d.ts +30 -0
  7. package/dist/index.js +58386 -339
  8. package/dist/runtime/GNNetwork.d.ts +687 -3
  9. package/dist/runtime/GNNetworkAuthenticateApi.d.ts +327 -0
  10. package/dist/runtime/GNNetworkCharacterPlayerApi.d.ts +1026 -0
  11. package/dist/runtime/GNNetworkCloudScriptApi.d.ts +141 -0
  12. package/dist/runtime/GNNetworkContentApi.d.ts +243 -0
  13. package/dist/runtime/GNNetworkDashboardApi.d.ts +221 -0
  14. package/dist/runtime/GNNetworkGamePlayerApi.d.ts +1033 -0
  15. package/dist/runtime/GNNetworkGroupApi.d.ts +783 -0
  16. package/dist/runtime/GNNetworkInventoryApi.d.ts +673 -0
  17. package/dist/runtime/GNNetworkMasterPlayerApi.d.ts +1614 -6
  18. package/dist/runtime/GNNetworkMultiplayerApi.d.ts +234 -0
  19. package/dist/runtime/GNNetworkStoreInventoryApi.d.ts +309 -0
  20. package/dist/runtime/common/Action0.d.ts +30 -0
  21. package/dist/runtime/common/Action1.d.ts +32 -0
  22. package/dist/runtime/common/Action2.d.ts +21 -0
  23. package/dist/runtime/common/Action3.d.ts +16 -0
  24. package/dist/runtime/common/Action4.d.ts +17 -0
  25. package/dist/runtime/common/GNData.d.ts +368 -0
  26. package/dist/runtime/config/GNServerSettings.d.ts +442 -12
  27. package/dist/runtime/constant/Commands.d.ts +80 -0
  28. package/dist/runtime/constant/EventCode.d.ts +48 -0
  29. package/dist/runtime/constant/OperationCode.d.ts +74 -1
  30. package/dist/runtime/constant/ReturnCode.d.ts +72 -0
  31. package/dist/runtime/constant/enumType/ExecuteResponseStatus.d.ts +31 -0
  32. package/dist/runtime/constant/enumType/FriendStatus.d.ts +39 -0
  33. package/dist/runtime/constant/enumType/GoogleLoginType.d.ts +23 -0
  34. package/dist/runtime/constant/enumType/GroupStatus.d.ts +32 -0
  35. package/dist/runtime/constant/enumType/InvalidMemberType.d.ts +75 -0
  36. package/dist/runtime/constant/enumType/ItemType.d.ts +23 -0
  37. package/dist/runtime/constant/enumType/MatchStatus.d.ts +30 -0
  38. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.d.ts +24 -0
  39. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.d.ts +34 -0
  40. package/dist/runtime/constant/enumType/OwnerType.d.ts +40 -0
  41. package/dist/runtime/constant/enumType/PermissionDataItem.d.ts +22 -0
  42. package/dist/runtime/constant/enumType/PushPlatformType.d.ts +18 -0
  43. package/dist/runtime/constant/enumType/RequestRole.d.ts +32 -0
  44. package/dist/runtime/constant/enumType/RequestType.d.ts +70 -0
  45. package/dist/runtime/constant/enumType/StoreItemType.d.ts +21 -0
  46. package/dist/runtime/constant/enumType/StoreReceiveType.d.ts +30 -0
  47. package/dist/runtime/constant/errorCode/ErrorCode.d.ts +190 -8
  48. package/dist/runtime/constant/parameterCode/ParameterCode.d.ts +35 -5
  49. package/dist/runtime/entity/DataMember.d.ts +338 -0
  50. package/dist/runtime/entity/GNMetadata.d.ts +101 -0
  51. package/dist/runtime/entity/InvalidMember.d.ts +28 -0
  52. package/dist/runtime/entity/OperationEvent.d.ts +49 -0
  53. package/dist/runtime/entity/OperationRequest.d.ts +108 -0
  54. package/dist/runtime/entity/OperationResponse.d.ts +110 -0
  55. package/dist/runtime/entity/models/AuthenticateModels.d.ts +115 -0
  56. package/dist/runtime/entity/models/AuthenticateRequestModels.d.ts +131 -0
  57. package/dist/runtime/entity/models/AuthenticateResponseModels.d.ts +131 -0
  58. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +625 -1
  59. package/dist/runtime/entity/models/CharacterPlayerRequestModels.d.ts +972 -0
  60. package/dist/runtime/entity/models/CharacterPlayerResponseModels.d.ts +332 -0
  61. package/dist/runtime/entity/models/CloudScriptModels.d.ts +109 -0
  62. package/dist/runtime/entity/models/CloudScriptRequestModels.d.ts +107 -0
  63. package/dist/runtime/entity/models/CloudScriptResponseModels.d.ts +46 -0
  64. package/dist/runtime/entity/models/ContentModels.d.ts +124 -0
  65. package/dist/runtime/entity/models/ContentRequestModels.d.ts +152 -0
  66. package/dist/runtime/entity/models/ContentResponseModels.d.ts +58 -0
  67. package/dist/runtime/entity/models/DashboardModels.d.ts +371 -8
  68. package/dist/runtime/entity/models/DashboardRequestModels.d.ts +172 -0
  69. package/dist/runtime/entity/models/DashboardResponseModels.d.ts +170 -0
  70. package/dist/runtime/entity/models/GamePlayerModels.d.ts +644 -1
  71. package/dist/runtime/entity/models/GamePlayerRequestModels.d.ts +959 -0
  72. package/dist/runtime/entity/models/GamePlayerResponseModels.d.ts +333 -1
  73. package/dist/runtime/entity/models/GenericModels.d.ts +94 -0
  74. package/dist/runtime/entity/models/GroupModels.d.ts +484 -2
  75. package/dist/runtime/entity/models/GroupRequestModels.d.ts +737 -0
  76. package/dist/runtime/entity/models/GroupResponseModels.d.ts +254 -0
  77. package/dist/runtime/entity/models/InventoryModels.d.ts +415 -0
  78. package/dist/runtime/entity/models/InventoryRequestModels.d.ts +629 -0
  79. package/dist/runtime/entity/models/InventoryResponseModels.d.ts +218 -0
  80. package/dist/runtime/entity/models/MasterPlayerModels.d.ts +1065 -3
  81. package/dist/runtime/entity/models/MasterPlayerRequestModels.d.ts +1560 -6
  82. package/dist/runtime/entity/models/MasterPlayerResponseModels.d.ts +532 -1
  83. package/dist/runtime/entity/models/MultiplayerModels.d.ts +199 -0
  84. package/dist/runtime/entity/models/MultiplayerRequestModels.d.ts +196 -0
  85. package/dist/runtime/entity/models/MultiplayerResponseModels.d.ts +74 -0
  86. package/dist/runtime/entity/models/StoreInventoryModels.d.ts +262 -0
  87. package/dist/runtime/entity/models/StoreInventoryRequestModels.d.ts +268 -0
  88. package/dist/runtime/entity/models/StoreInventoryResponseModels.d.ts +98 -0
  89. package/dist/runtime/entity/request/CustomOperationRequest.d.ts +99 -0
  90. package/dist/runtime/entity/response/CustomOperationResponse.d.ts +118 -0
  91. package/dist/runtime/entity/response/GetAuthInfoResponse.d.ts +53 -0
  92. package/dist/runtime/entity/response/HealthCheckResponse.d.ts +56 -0
  93. package/dist/runtime/entity/response/UploadFileResponse.d.ts +19 -0
  94. package/dist/runtime/helper/CodeHelper.d.ts +122 -0
  95. package/dist/runtime/helper/ConverterService.d.ts +74 -0
  96. package/dist/runtime/helper/EnumUtility.d.ts +63 -0
  97. package/dist/runtime/helper/GNSupport.d.ts +64 -4
  98. package/dist/runtime/helper/GNUtils.d.ts +54 -0
  99. package/dist/runtime/helper/MessagePackConverterService.d.ts +48 -0
  100. package/dist/runtime/helper/OperationHelper.d.ts +51 -0
  101. package/dist/runtime/helper/StorageService.d.ts +48 -8
  102. package/dist/runtime/logger/GNDebug.d.ts +117 -0
  103. package/dist/runtime/networking/AuthenticateStatus.d.ts +64 -0
  104. package/dist/runtime/networking/IPeer.d.ts +83 -0
  105. package/dist/runtime/networking/NetworkingPeer.d.ts +256 -1
  106. package/dist/runtime/networking/OperationPending.d.ts +112 -0
  107. package/dist/runtime/networking/PeerBase.d.ts +231 -0
  108. package/dist/runtime/networking/handler/IServerEventHandler.d.ts +84 -0
  109. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.d.ts +69 -0
  110. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.d.ts +49 -0
  111. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.d.ts +50 -0
  112. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.d.ts +41 -0
  113. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.d.ts +47 -0
  114. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.d.ts +46 -0
  115. package/dist/runtime/networking/http/HttpPeer.d.ts +173 -0
  116. package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +87 -0
  117. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.d.ts +113 -0
  118. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.d.ts +145 -0
  119. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.d.ts +198 -0
  120. package/dist/runtime/networking/socket/SocketPeer.d.ts +155 -0
  121. package/dist/runtime/typescript/ServiceUpdate.d.ts +46 -0
  122. package/docs/AI_CHEATSHEET.md +211 -0
  123. package/docs/COOKBOOK.md +912 -0
  124. package/docs/RULES.md +307 -0
  125. package/docs/ai-manifest.json +725 -0
  126. package/docs/guides/AUTHENTICATE.md +246 -0
  127. package/docs/guides/CHARACTER_PLAYER.md +439 -0
  128. package/docs/guides/CLOUDSCRIPT.md +335 -0
  129. package/docs/guides/COCOS_CREATOR_INTEGRATION.md +150 -0
  130. package/docs/guides/CONTENT.md +291 -0
  131. package/docs/guides/DASHBOARD.md +262 -0
  132. package/docs/guides/GAME_PLAYER.md +473 -0
  133. package/docs/guides/GROUP.md +412 -0
  134. package/docs/guides/INVENTORY.md +375 -0
  135. package/docs/guides/MASTER_PLAYER.md +458 -0
  136. package/docs/guides/MULTIPLAYER.md +303 -0
  137. package/docs/guides/STORE_INVENTORY.md +313 -0
  138. package/docs/llms-full.txt +43 -0
  139. package/docs/reference/API_AUTHENTICATE.md +75 -0
  140. package/docs/reference/API_CHARACTER_PLAYER.md +226 -0
  141. package/docs/reference/API_CLOUDSCRIPT.md +82 -0
  142. package/docs/reference/API_CONTENT.md +88 -0
  143. package/docs/reference/API_DASHBOARD.md +82 -0
  144. package/docs/reference/API_GAME_PLAYER.md +223 -0
  145. package/docs/reference/API_GROUP.md +187 -0
  146. package/docs/reference/API_INDEX.md +57 -0
  147. package/docs/reference/API_INVENTORY.md +169 -0
  148. package/docs/reference/API_MASTER_PLAYER.md +323 -0
  149. package/docs/reference/API_MULTIPLAYER.md +97 -0
  150. package/docs/reference/API_STORE_INVENTORY.md +109 -0
  151. package/docs/reference/CONFIG.md +107 -0
  152. package/docs/reference/DTO_INDEX.md +2543 -0
  153. package/docs/reference/ENUMS.md +433 -0
  154. package/docs/reference/ERROR_HANDLING.md +159 -0
  155. package/docs/reference/EVENTS.md +188 -0
  156. package/docs/reference/PERMISSION_RULES.md +55 -0
  157. package/docs/reference/dto/AUTHENTICATE.md +619 -0
  158. package/docs/reference/dto/CHARACTER_PLAYER.md +3686 -0
  159. package/docs/reference/dto/CLOUDSCRIPT.md +400 -0
  160. package/docs/reference/dto/CONTENT.md +548 -0
  161. package/docs/reference/dto/DASHBOARD.md +1980 -0
  162. package/docs/reference/dto/GAME_PLAYER.md +3631 -0
  163. package/docs/reference/dto/GENERIC.md +151 -0
  164. package/docs/reference/dto/GROUP.md +2842 -0
  165. package/docs/reference/dto/INVENTORY.md +2385 -0
  166. package/docs/reference/dto/MASTER_PLAYER.md +6024 -0
  167. package/docs/reference/dto/MULTIPLAYER.md +850 -0
  168. package/docs/reference/dto/STORE_INVENTORY.md +1262 -0
  169. package/llms.txt +47 -0
  170. package/package.json +11 -2
  171. package/GNServerSettings.debug.json +0 -21
  172. package/dist/runtime/GNNetwork.js +0 -273
  173. package/dist/runtime/GNNetworkAuthenticateApi.js +0 -122
  174. package/dist/runtime/GNNetworkCharacterPlayerApi.js +0 -968
  175. package/dist/runtime/GNNetworkCloudScriptApi.js +0 -104
  176. package/dist/runtime/GNNetworkContentApi.js +0 -140
  177. package/dist/runtime/GNNetworkDashboardApi.js +0 -170
  178. package/dist/runtime/GNNetworkGamePlayerApi.js +0 -950
  179. package/dist/runtime/GNNetworkGroupApi.js +0 -734
  180. package/dist/runtime/GNNetworkInventoryApi.js +0 -626
  181. package/dist/runtime/GNNetworkMasterPlayerApi.js +0 -1550
  182. package/dist/runtime/GNNetworkMultiplayerApi.js +0 -194
  183. package/dist/runtime/GNNetworkStoreInventoryApi.js +0 -266
  184. package/dist/runtime/common/Action0.js +0 -1
  185. package/dist/runtime/common/Action1.js +0 -1
  186. package/dist/runtime/common/Action2.js +0 -1
  187. package/dist/runtime/common/Action3.js +0 -1
  188. package/dist/runtime/common/Action4.js +0 -1
  189. package/dist/runtime/common/GNData.js +0 -209
  190. package/dist/runtime/config/GNServerSettings.js +0 -156
  191. package/dist/runtime/constant/Commands.js +0 -20
  192. package/dist/runtime/constant/EventCode.js +0 -8
  193. package/dist/runtime/constant/OperationCode.js +0 -221
  194. package/dist/runtime/constant/ReturnCode.js +0 -14
  195. package/dist/runtime/constant/enumType/ExecuteResponseStatus.js +0 -8
  196. package/dist/runtime/constant/enumType/FriendStatus.js +0 -7
  197. package/dist/runtime/constant/enumType/GoogleLoginType.js +0 -5
  198. package/dist/runtime/constant/enumType/GroupStatus.js +0 -7
  199. package/dist/runtime/constant/enumType/InvalidMemberType.js +0 -18
  200. package/dist/runtime/constant/enumType/ItemType.js +0 -5
  201. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +0 -6
  202. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +0 -8
  203. package/dist/runtime/constant/enumType/OwnerType.js +0 -9
  204. package/dist/runtime/constant/enumType/PermissionDataItem.js +0 -5
  205. package/dist/runtime/constant/enumType/PushPlatformType.js +0 -5
  206. package/dist/runtime/constant/enumType/RequestRole.js +0 -6
  207. package/dist/runtime/constant/enumType/RequestType.js +0 -15
  208. package/dist/runtime/constant/enumType/StoreItemType.js +0 -5
  209. package/dist/runtime/constant/enumType/StoreReceiveType.js +0 -8
  210. package/dist/runtime/constant/errorCode/ErrorCode.js +0 -52
  211. package/dist/runtime/constant/parameterCode/ParameterCode.js +0 -617
  212. package/dist/runtime/entity/DataMember.js +0 -208
  213. package/dist/runtime/entity/GNMetadata.js +0 -11
  214. package/dist/runtime/entity/InvalidMember.js +0 -1
  215. package/dist/runtime/entity/OperationEvent.js +0 -24
  216. package/dist/runtime/entity/OperationRequest.js +0 -42
  217. package/dist/runtime/entity/OperationResponse.js +0 -73
  218. package/dist/runtime/entity/models/AuthenticateModels.js +0 -426
  219. package/dist/runtime/entity/models/AuthenticateRequestModels.js +0 -188
  220. package/dist/runtime/entity/models/AuthenticateResponseModels.js +0 -131
  221. package/dist/runtime/entity/models/CharacterPlayerModels.js +0 -1433
  222. package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +0 -1386
  223. package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +0 -376
  224. package/dist/runtime/entity/models/CloudScriptModels.js +0 -197
  225. package/dist/runtime/entity/models/CloudScriptRequestModels.js +0 -138
  226. package/dist/runtime/entity/models/CloudScriptResponseModels.js +0 -40
  227. package/dist/runtime/entity/models/ContentModels.js +0 -203
  228. package/dist/runtime/entity/models/ContentRequestModels.js +0 -190
  229. package/dist/runtime/entity/models/ContentResponseModels.js +0 -54
  230. package/dist/runtime/entity/models/DashboardModels.js +0 -3002
  231. package/dist/runtime/entity/models/DashboardRequestModels.js +0 -268
  232. package/dist/runtime/entity/models/DashboardResponseModels.js +0 -187
  233. package/dist/runtime/entity/models/GamePlayerModels.js +0 -1591
  234. package/dist/runtime/entity/models/GamePlayerRequestModels.js +0 -1360
  235. package/dist/runtime/entity/models/GamePlayerResponseModels.js +0 -369
  236. package/dist/runtime/entity/models/GenericModels.js +0 -177
  237. package/dist/runtime/entity/models/GroupModels.js +0 -1135
  238. package/dist/runtime/entity/models/GroupRequestModels.js +0 -1048
  239. package/dist/runtime/entity/models/GroupResponseModels.js +0 -285
  240. package/dist/runtime/entity/models/InventoryModels.js +0 -915
  241. package/dist/runtime/entity/models/InventoryRequestModels.js +0 -892
  242. package/dist/runtime/entity/models/InventoryResponseModels.js +0 -243
  243. package/dist/runtime/entity/models/MasterPlayerModels.js +0 -2573
  244. package/dist/runtime/entity/models/MasterPlayerRequestModels.js +0 -2228
  245. package/dist/runtime/entity/models/MasterPlayerResponseModels.js +0 -607
  246. package/dist/runtime/entity/models/MultiplayerModels.js +0 -404
  247. package/dist/runtime/entity/models/MultiplayerRequestModels.js +0 -268
  248. package/dist/runtime/entity/models/MultiplayerResponseModels.js +0 -75
  249. package/dist/runtime/entity/models/StoreInventoryModels.js +0 -797
  250. package/dist/runtime/entity/models/StoreInventoryRequestModels.js +0 -372
  251. package/dist/runtime/entity/models/StoreInventoryResponseModels.js +0 -103
  252. package/dist/runtime/entity/request/CustomOperationRequest.js +0 -24
  253. package/dist/runtime/entity/response/CustomOperationResponse.js +0 -29
  254. package/dist/runtime/entity/response/GetAuthInfoResponse.js +0 -2
  255. package/dist/runtime/entity/response/HealthCheckResponse.js +0 -2
  256. package/dist/runtime/entity/response/UploadFileResponse.js +0 -2
  257. package/dist/runtime/helper/CodeHelper.js +0 -63
  258. package/dist/runtime/helper/ConverterService.js +0 -275
  259. package/dist/runtime/helper/EnumUtility.js +0 -33
  260. package/dist/runtime/helper/GNSupport.js +0 -47
  261. package/dist/runtime/helper/GNUtils.js +0 -72
  262. package/dist/runtime/helper/MessagePackConverterService.js +0 -9
  263. package/dist/runtime/helper/OperationHelper.js +0 -24
  264. package/dist/runtime/helper/StorageService.js +0 -62
  265. package/dist/runtime/logger/GNDebug.js +0 -29
  266. package/dist/runtime/networking/AuthenticateStatus.js +0 -14
  267. package/dist/runtime/networking/IPeer.js +0 -1
  268. package/dist/runtime/networking/NetworkingPeer.js +0 -210
  269. package/dist/runtime/networking/OperationPending.js +0 -53
  270. package/dist/runtime/networking/PeerBase.js +0 -161
  271. package/dist/runtime/networking/handler/IServerEventHandler.js +0 -13
  272. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +0 -39
  273. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +0 -39
  274. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +0 -39
  275. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +0 -39
  276. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +0 -35
  277. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +0 -43
  278. package/dist/runtime/networking/http/HttpPeer.js +0 -123
  279. package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +0 -9
  280. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +0 -179
  281. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +0 -130
  282. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +0 -165
  283. package/dist/runtime/networking/socket/SocketPeer.js +0 -115
  284. package/dist/runtime/typescript/ServiceUpdate.js +0 -22
  285. package/docs/COCOS_CREATOR_INTEGRATION.md +0 -116
  286. package/examples/cocos-creator/GearNExample.ts.txt +0 -176
  287. package/srcSwift/Package.swift +0 -32
  288. package/srcSwift/Sources/GearN/runtime/GNNetwork.swift +0 -530
  289. package/srcSwift/Sources/GearN/runtime/GNNetworkAuthenticateApi.swift +0 -178
  290. package/srcSwift/Sources/GearN/runtime/GNNetworkCharacterPlayerApi.swift +0 -1162
  291. package/srcSwift/Sources/GearN/runtime/GNNetworkCloudScriptApi.swift +0 -154
  292. package/srcSwift/Sources/GearN/runtime/GNNetworkContentApi.swift +0 -208
  293. package/srcSwift/Sources/GearN/runtime/GNNetworkDashboardApi.swift +0 -240
  294. package/srcSwift/Sources/GearN/runtime/GNNetworkGamePlayerApi.swift +0 -1369
  295. package/srcSwift/Sources/GearN/runtime/GNNetworkGroupApi.swift +0 -1100
  296. package/srcSwift/Sources/GearN/runtime/GNNetworkInventoryApi.swift +0 -937
  297. package/srcSwift/Sources/GearN/runtime/GNNetworkMasterPlayerApi.swift +0 -2323
  298. package/srcSwift/Sources/GearN/runtime/GNNetworkMultiplayerApi.swift +0 -298
  299. package/srcSwift/Sources/GearN/runtime/GNNetworkStoreInventoryApi.swift +0 -397
  300. package/srcSwift/Sources/GearN/runtime/common/Action0.swift +0 -3
  301. package/srcSwift/Sources/GearN/runtime/common/Action1.swift +0 -3
  302. package/srcSwift/Sources/GearN/runtime/common/Action2.swift +0 -3
  303. package/srcSwift/Sources/GearN/runtime/common/Action3.swift +0 -3
  304. package/srcSwift/Sources/GearN/runtime/common/Action4.swift +0 -3
  305. package/srcSwift/Sources/GearN/runtime/common/GNArray.swift +0 -204
  306. package/srcSwift/Sources/GearN/runtime/common/GNData.swift +0 -108
  307. package/srcSwift/Sources/GearN/runtime/common/GNHashtable.swift +0 -200
  308. package/srcSwift/Sources/GearN/runtime/config/GNServerSettings.swift +0 -95
  309. package/srcSwift/Sources/GearN/runtime/constant/Commands.swift +0 -28
  310. package/srcSwift/Sources/GearN/runtime/constant/EventCode.swift +0 -10
  311. package/srcSwift/Sources/GearN/runtime/constant/OperationCode.swift +0 -252
  312. package/srcSwift/Sources/GearN/runtime/constant/ReturnCode.swift +0 -19
  313. package/srcSwift/Sources/GearN/runtime/constant/enumType/ExecuteResponseStatus.swift +0 -9
  314. package/srcSwift/Sources/GearN/runtime/constant/enumType/FriendStatus.swift +0 -8
  315. package/srcSwift/Sources/GearN/runtime/constant/enumType/GoogleLoginType.swift +0 -6
  316. package/srcSwift/Sources/GearN/runtime/constant/enumType/GroupStatus.swift +0 -8
  317. package/srcSwift/Sources/GearN/runtime/constant/enumType/InvalidMemberType.swift +0 -19
  318. package/srcSwift/Sources/GearN/runtime/constant/enumType/ItemType.swift +0 -6
  319. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingMemberStatus.swift +0 -7
  320. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingTicketStatus.swift +0 -9
  321. package/srcSwift/Sources/GearN/runtime/constant/enumType/OwnerType.swift +0 -10
  322. package/srcSwift/Sources/GearN/runtime/constant/enumType/PermissionDataItem.swift +0 -6
  323. package/srcSwift/Sources/GearN/runtime/constant/enumType/PushPlatformType.swift +0 -6
  324. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestRole.swift +0 -7
  325. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestType.swift +0 -16
  326. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreItemType.swift +0 -6
  327. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreReceiveType.swift +0 -9
  328. package/srcSwift/Sources/GearN/runtime/constant/errorCode/ErrorCode.swift +0 -58
  329. package/srcSwift/Sources/GearN/runtime/constant/parameterCode/ParameterCode.swift +0 -672
  330. package/srcSwift/Sources/GearN/runtime/entity/DataMember.swift +0 -196
  331. package/srcSwift/Sources/GearN/runtime/entity/GNMetadata.swift +0 -9
  332. package/srcSwift/Sources/GearN/runtime/entity/InvalidMember.swift +0 -11
  333. package/srcSwift/Sources/GearN/runtime/entity/OperationEvent.swift +0 -38
  334. package/srcSwift/Sources/GearN/runtime/entity/OperationHelper.swift +0 -28
  335. package/srcSwift/Sources/GearN/runtime/entity/OperationRequest.swift +0 -62
  336. package/srcSwift/Sources/GearN/runtime/entity/OperationResponse.swift +0 -98
  337. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateModels.swift +0 -351
  338. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateRequestModels.swift +0 -81
  339. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateResponseModels.swift +0 -108
  340. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerModels.swift +0 -1045
  341. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerRequestModels.swift +0 -821
  342. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerResponseModels.swift +0 -588
  343. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptModels.swift +0 -187
  344. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptRequestModels.swift +0 -84
  345. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptResponseModels.swift +0 -59
  346. package/srcSwift/Sources/GearN/runtime/entity/models/ContentModels.swift +0 -195
  347. package/srcSwift/Sources/GearN/runtime/entity/models/ContentRequestModels.swift +0 -116
  348. package/srcSwift/Sources/GearN/runtime/entity/models/ContentResponseModels.swift +0 -81
  349. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardModels.swift +0 -426
  350. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardRequestModels.swift +0 -160
  351. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardResponseModels.swift +0 -82
  352. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerModels.swift +0 -1334
  353. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerRequestModels.swift +0 -643
  354. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerResponseModels.swift +0 -213
  355. package/srcSwift/Sources/GearN/runtime/entity/models/GenericModels.swift +0 -171
  356. package/srcSwift/Sources/GearN/runtime/entity/models/GroupModels.swift +0 -850
  357. package/srcSwift/Sources/GearN/runtime/entity/models/GroupRequestModels.swift +0 -485
  358. package/srcSwift/Sources/GearN/runtime/entity/models/GroupResponseModels.swift +0 -165
  359. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryModels.swift +0 -679
  360. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryRequestModels.swift +0 -413
  361. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryResponseModels.swift +0 -141
  362. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerModels.swift +0 -378
  363. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerRequestModels.swift +0 -147
  364. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerResponseModels.swift +0 -318
  365. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerModels.swift +0 -319
  366. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerRequestModels.swift +0 -125
  367. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerResponseModels.swift +0 -45
  368. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryModels.swift +0 -633
  369. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryRequestModels.swift +0 -173
  370. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryResponseModels.swift +0 -61
  371. package/srcSwift/Sources/GearN/runtime/entity/request/CustomOperationRequest.swift +0 -42
  372. package/srcSwift/Sources/GearN/runtime/entity/response/CustomOperationResponse.swift +0 -49
  373. package/srcSwift/Sources/GearN/runtime/entity/response/GetAuthInfoResponse.swift +0 -43
  374. package/srcSwift/Sources/GearN/runtime/entity/response/HealthCheckResponse.swift +0 -86
  375. package/srcSwift/Sources/GearN/runtime/entity/response/UploadFileResponse.swift +0 -15
  376. package/srcSwift/Sources/GearN/runtime/helper/CodeHelper.swift +0 -107
  377. package/srcSwift/Sources/GearN/runtime/helper/ConverterService.swift +0 -98
  378. package/srcSwift/Sources/GearN/runtime/helper/EnumUtility.swift +0 -34
  379. package/srcSwift/Sources/GearN/runtime/helper/GNSupport.swift +0 -41
  380. package/srcSwift/Sources/GearN/runtime/helper/GNUtils.swift +0 -66
  381. package/srcSwift/Sources/GearN/runtime/helper/MessagePackConverterService.swift +0 -21
  382. package/srcSwift/Sources/GearN/runtime/helper/StorageService.swift +0 -29
  383. package/srcSwift/Sources/GearN/runtime/logger/GNDebug.swift +0 -33
  384. package/srcSwift/Sources/GearN/runtime/networking/AuthenticateStatus.swift +0 -24
  385. package/srcSwift/Sources/GearN/runtime/networking/IPeer.swift +0 -8
  386. package/srcSwift/Sources/GearN/runtime/networking/NetworkingPeer.swift +0 -368
  387. package/srcSwift/Sources/GearN/runtime/networking/OperationPending.swift +0 -81
  388. package/srcSwift/Sources/GearN/runtime/networking/PeerBase.swift +0 -228
  389. package/srcSwift/Sources/GearN/runtime/networking/handler/IServerEventHandler.swift +0 -20
  390. package/srcSwift/Sources/GearN/runtime/networking/http/HttpPeer.swift +0 -226
  391. package/srcSwift/Sources/GearN/runtime/networking/http/HttpTypes.swift +0 -24
  392. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingHttpPeerBase.swift +0 -13
  393. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingPeerUrlSession.swift +0 -125
  394. package/srcSwift/Sources/GearN/runtime/networking/request/NetRequest.swift +0 -19
  395. package/srcSwift/Sources/GearN/runtime/networking/response/NetResponse.swift +0 -13
  396. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingPeerSocketIOClient.swift +0 -244
  397. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingSocketPeerBase.swift +0 -59
  398. package/srcSwift/Sources/GearN/runtime/networking/socket/SocketPeer.swift +0 -136
  399. package/tsconfig-build.cocos.json +0 -31
  400. package/webpack.config.cocos.mjs +0 -78
@@ -2,733 +2,1692 @@ import { RequestRole } from "./../../constant/enumType/RequestRole";
2
2
  import { RequestType } from "./../../constant/enumType/RequestType";
3
3
  import { CustomOperationRequestAbstract } from "./../request/CustomOperationRequest";
4
4
  import { GamePlayerModels } from "./GamePlayerModels";
5
+ /**
6
+ * Typed request wrappers for the GamePlayer domain.
7
+ *
8
+ * Each class extends {@link CustomOperationRequestAbstract} and
9
+ * binds a typed `*RequestData` DTO from
10
+ * {@link GamePlayerModels} to:
11
+ * - the matching {@link OperationCode};
12
+ * - the {@link RequestType.GamePlayer} domain;
13
+ * - the appropriate {@link RequestRole} (Client / Server /
14
+ * Admin) based on the wrapper name prefix.
15
+ *
16
+ * Wrapper naming convention:
17
+ * - `XxxOperationRequest` — Client role, used by
18
+ * `GNNetwork.gamePlayer.*`.
19
+ * - `ServerXxxOperationRequest` — Server role, used by
20
+ * `GNNetwork.gamePlayer.server.*`.
21
+ * - `AdminXxxOperationRequest` — Admin role, used by
22
+ * `GNNetwork.gamePlayer.admin.*`.
23
+ *
24
+ * Application code rarely instantiates these directly — the
25
+ * `GNNetwork.gamePlayer.*` helpers in {@link GamePlayerApi}
26
+ * build them under the hood.
27
+ */
5
28
  export declare namespace GamePlayerRequestModels {
29
+ /**
30
+ * Maps the AddPlayerFriend operation to a typed request wrapper.
31
+ */
6
32
  class AddPlayerFriendOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.AddPlayerFriendRequestData> {
7
33
  protected operationCode: string;
8
34
  protected requestType: RequestType;
9
35
  protected role: RequestRole;
36
+ /**
37
+ * Creates a new AddPlayerFriendOperationRequest instance.
38
+ */
10
39
  constructor(requestData: GamePlayerModels.AddPlayerFriendRequestData, timeout: number);
11
40
  }
41
+ /**
42
+ * Maps the ServerAddPlayerFriend operation to a typed request wrapper.
43
+ */
12
44
  class ServerAddPlayerFriendOperationRequest extends AddPlayerFriendOperationRequest {
13
45
  protected role: RequestRole;
46
+ /**
47
+ * Creates a new ServerAddPlayerFriendOperationRequest instance.
48
+ */
14
49
  constructor(requestData: GamePlayerModels.ServerAddPlayerFriendRequestData, timeout: number);
15
50
  }
51
+ /**
52
+ * Maps the AdminAddPlayerFriend operation to a typed request wrapper.
53
+ */
16
54
  class AdminAddPlayerFriendOperationRequest extends AddPlayerFriendOperationRequest {
17
55
  protected role: RequestRole;
56
+ /**
57
+ * Creates a new AdminAddPlayerFriendOperationRequest instance.
58
+ */
18
59
  constructor(requestData: GamePlayerModels.AdminAddPlayerFriendRequestData, timeout: number);
19
60
  }
61
+ /**
62
+ * Maps the AddSegment operation to a typed request wrapper.
63
+ */
20
64
  class AddSegmentOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.AddSegmentRequestData> {
21
65
  protected operationCode: string;
22
66
  protected requestType: RequestType;
23
67
  protected role: RequestRole;
68
+ /**
69
+ * Creates a new AddSegmentOperationRequest instance.
70
+ */
24
71
  constructor(requestData: GamePlayerModels.AddSegmentRequestData, timeout: number);
25
72
  }
73
+ /**
74
+ * Maps the ServerAddSegment operation to a typed request wrapper.
75
+ */
26
76
  class ServerAddSegmentOperationRequest extends AddSegmentOperationRequest {
27
77
  protected role: RequestRole;
78
+ /**
79
+ * Creates a new ServerAddSegmentOperationRequest instance.
80
+ */
28
81
  constructor(requestData: GamePlayerModels.ServerAddSegmentRequestData, timeout: number);
29
82
  }
83
+ /**
84
+ * Maps the AdminAddSegment operation to a typed request wrapper.
85
+ */
30
86
  class AdminAddSegmentOperationRequest extends AddSegmentOperationRequest {
31
87
  protected role: RequestRole;
88
+ /**
89
+ * Creates a new AdminAddSegmentOperationRequest instance.
90
+ */
32
91
  constructor(requestData: GamePlayerModels.AdminAddSegmentRequestData, timeout: number);
33
92
  }
93
+ /**
94
+ * Maps the GetAvatar operation to a typed request wrapper.
95
+ */
34
96
  class GetAvatarOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetAvatarRequestData> {
35
97
  protected operationCode: string;
36
98
  protected requestType: RequestType;
37
99
  protected role: RequestRole;
100
+ /**
101
+ * Creates a new GetAvatarOperationRequest instance.
102
+ */
38
103
  constructor(requestData: GamePlayerModels.GetAvatarRequestData, timeout: number);
39
104
  }
105
+ /**
106
+ * Maps the ServerGetAvatar operation to a typed request wrapper.
107
+ */
40
108
  class ServerGetAvatarOperationRequest extends GetAvatarOperationRequest {
41
109
  protected role: RequestRole;
110
+ /**
111
+ * Creates a new ServerGetAvatarOperationRequest instance.
112
+ */
42
113
  constructor(requestData: GamePlayerModels.ServerGetAvatarRequestData, timeout: number);
43
114
  }
115
+ /**
116
+ * Maps the AdminGetAvatar operation to a typed request wrapper.
117
+ */
44
118
  class AdminGetAvatarOperationRequest extends GetAvatarOperationRequest {
45
119
  protected role: RequestRole;
120
+ /**
121
+ * Creates a new AdminGetAvatarOperationRequest instance.
122
+ */
46
123
  constructor(requestData: GamePlayerModels.AdminGetAvatarRequestData, timeout: number);
47
124
  }
125
+ /**
126
+ * Maps the GetCountryCode operation to a typed request wrapper.
127
+ */
48
128
  class GetCountryCodeOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetCountryCodeRequestData> {
49
129
  protected operationCode: string;
50
130
  protected requestType: RequestType;
51
131
  protected role: RequestRole;
132
+ /**
133
+ * Creates a new GetCountryCodeOperationRequest instance.
134
+ */
52
135
  constructor(requestData: GamePlayerModels.GetCountryCodeRequestData, timeout: number);
53
136
  }
137
+ /**
138
+ * Maps the ServerGetCountryCode operation to a typed request wrapper.
139
+ */
54
140
  class ServerGetCountryCodeOperationRequest extends GetCountryCodeOperationRequest {
55
141
  protected role: RequestRole;
142
+ /**
143
+ * Creates a new ServerGetCountryCodeOperationRequest instance.
144
+ */
56
145
  constructor(requestData: GamePlayerModels.ServerGetCountryCodeRequestData, timeout: number);
57
146
  }
147
+ /**
148
+ * Maps the AdminGetCountryCode operation to a typed request wrapper.
149
+ */
58
150
  class AdminGetCountryCodeOperationRequest extends GetCountryCodeOperationRequest {
59
151
  protected role: RequestRole;
152
+ /**
153
+ * Creates a new AdminGetCountryCodeOperationRequest instance.
154
+ */
60
155
  constructor(requestData: GamePlayerModels.AdminGetCountryCodeRequestData, timeout: number);
61
156
  }
157
+ /**
158
+ * Maps the GetCustomData operation to a typed request wrapper.
159
+ */
62
160
  class GetCustomDataOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetCustomDataRequestData> {
63
161
  protected operationCode: string;
64
162
  protected requestType: RequestType;
65
163
  protected role: RequestRole;
164
+ /**
165
+ * Creates a new GetCustomDataOperationRequest instance.
166
+ */
66
167
  constructor(requestData: GamePlayerModels.GetCustomDataRequestData, timeout: number);
67
168
  }
169
+ /**
170
+ * Maps the ServerGetCustomData operation to a typed request wrapper.
171
+ */
68
172
  class ServerGetCustomDataOperationRequest extends GetCustomDataOperationRequest {
69
173
  protected role: RequestRole;
174
+ /**
175
+ * Creates a new ServerGetCustomDataOperationRequest instance.
176
+ */
70
177
  constructor(requestData: GamePlayerModels.ServerGetCustomDataRequestData, timeout: number);
71
178
  }
179
+ /**
180
+ * Maps the AdminGetCustomData operation to a typed request wrapper.
181
+ */
72
182
  class AdminGetCustomDataOperationRequest extends GetCustomDataOperationRequest {
73
183
  protected role: RequestRole;
184
+ /**
185
+ * Creates a new AdminGetCustomDataOperationRequest instance.
186
+ */
74
187
  constructor(requestData: GamePlayerModels.AdminGetCustomDataRequestData, timeout: number);
75
188
  }
189
+ /**
190
+ * Maps the GetDisplayName operation to a typed request wrapper.
191
+ */
76
192
  class GetDisplayNameOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetDisplayNameRequestData> {
77
193
  protected operationCode: string;
78
194
  protected requestType: RequestType;
79
195
  protected role: RequestRole;
196
+ /**
197
+ * Creates a new GetDisplayNameOperationRequest instance.
198
+ */
80
199
  constructor(requestData: GamePlayerModels.GetDisplayNameRequestData, timeout: number);
81
200
  }
201
+ /**
202
+ * Maps the ServerGetDisplayName operation to a typed request wrapper.
203
+ */
82
204
  class ServerGetDisplayNameOperationRequest extends GetDisplayNameOperationRequest {
83
205
  protected role: RequestRole;
206
+ /**
207
+ * Creates a new ServerGetDisplayNameOperationRequest instance.
208
+ */
84
209
  constructor(requestData: GamePlayerModels.ServerGetDisplayNameRequestData, timeout: number);
85
210
  }
211
+ /**
212
+ * Maps the AdminGetDisplayName operation to a typed request wrapper.
213
+ */
86
214
  class AdminGetDisplayNameOperationRequest extends GetDisplayNameOperationRequest {
87
215
  protected role: RequestRole;
216
+ /**
217
+ * Creates a new AdminGetDisplayNameOperationRequest instance.
218
+ */
88
219
  constructor(requestData: GamePlayerModels.AdminGetDisplayNameRequestData, timeout: number);
89
220
  }
221
+ /**
222
+ * Maps the GetFriendStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
223
+ */
90
224
  class GetFriendStatisticsLeaderboardAroundPlayerOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetFriendStatisticsLeaderboardAroundPlayerRequestData> {
91
225
  protected operationCode: string;
92
226
  protected requestType: RequestType;
93
227
  protected role: RequestRole;
228
+ /**
229
+ * Creates a new GetFriendStatisticsLeaderboardAroundPlayerOperationRequest instance.
230
+ */
94
231
  constructor(requestData: GamePlayerModels.GetFriendStatisticsLeaderboardAroundPlayerRequestData, timeout: number);
95
232
  }
233
+ /**
234
+ * Maps the ServerGetFriendStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
235
+ */
96
236
  class ServerGetFriendStatisticsLeaderboardAroundPlayerOperationRequest extends GetFriendStatisticsLeaderboardAroundPlayerOperationRequest {
97
237
  protected role: RequestRole;
238
+ /**
239
+ * Creates a new ServerGetFriendStatisticsLeaderboardAroundPlayerOperationRequest instance.
240
+ */
98
241
  constructor(requestData: GamePlayerModels.ServerGetFriendStatisticsLeaderboardAroundPlayerRequestData, timeout: number);
99
242
  }
243
+ /**
244
+ * Maps the AdminGetFriendStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
245
+ */
100
246
  class AdminGetFriendStatisticsLeaderboardAroundPlayerOperationRequest extends GetFriendStatisticsLeaderboardAroundPlayerOperationRequest {
101
247
  protected role: RequestRole;
248
+ /**
249
+ * Creates a new AdminGetFriendStatisticsLeaderboardAroundPlayerOperationRequest instance.
250
+ */
102
251
  constructor(requestData: GamePlayerModels.AdminGetFriendStatisticsLeaderboardAroundPlayerRequestData, timeout: number);
103
252
  }
253
+ /**
254
+ * Maps the GetFriendStatisticsLeaderboard operation to a typed request wrapper.
255
+ */
104
256
  class GetFriendStatisticsLeaderboardOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetFriendStatisticsLeaderboardRequestData> {
105
257
  protected operationCode: string;
106
258
  protected requestType: RequestType;
107
259
  protected role: RequestRole;
260
+ /**
261
+ * Creates a new GetFriendStatisticsLeaderboardOperationRequest instance.
262
+ */
108
263
  constructor(requestData: GamePlayerModels.GetFriendStatisticsLeaderboardRequestData, timeout: number);
109
264
  }
265
+ /**
266
+ * Maps the ServerGetFriendStatisticsLeaderboard operation to a typed request wrapper.
267
+ */
110
268
  class ServerGetFriendStatisticsLeaderboardOperationRequest extends GetFriendStatisticsLeaderboardOperationRequest {
111
269
  protected role: RequestRole;
270
+ /**
271
+ * Creates a new ServerGetFriendStatisticsLeaderboardOperationRequest instance.
272
+ */
112
273
  constructor(requestData: GamePlayerModels.ServerGetFriendStatisticsLeaderboardRequestData, timeout: number);
113
274
  }
275
+ /**
276
+ * Maps the AdminGetFriendStatisticsLeaderboard operation to a typed request wrapper.
277
+ */
114
278
  class AdminGetFriendStatisticsLeaderboardOperationRequest extends GetFriendStatisticsLeaderboardOperationRequest {
115
279
  protected role: RequestRole;
280
+ /**
281
+ * Creates a new AdminGetFriendStatisticsLeaderboardOperationRequest instance.
282
+ */
116
283
  constructor(requestData: GamePlayerModels.AdminGetFriendStatisticsLeaderboardRequestData, timeout: number);
117
284
  }
285
+ /**
286
+ * Maps the GetIpAddressCreate operation to a typed request wrapper.
287
+ */
118
288
  class GetIpAddressCreateOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetIpAddressCreateRequestData> {
119
289
  protected operationCode: string;
120
290
  protected requestType: RequestType;
121
291
  protected role: RequestRole;
292
+ /**
293
+ * Creates a new GetIpAddressCreateOperationRequest instance.
294
+ */
122
295
  constructor(requestData: GamePlayerModels.GetIpAddressCreateRequestData, timeout: number);
123
296
  }
297
+ /**
298
+ * Maps the ServerGetIpAddressCreate operation to a typed request wrapper.
299
+ */
124
300
  class ServerGetIpAddressCreateOperationRequest extends GetIpAddressCreateOperationRequest {
125
301
  protected role: RequestRole;
302
+ /**
303
+ * Creates a new ServerGetIpAddressCreateOperationRequest instance.
304
+ */
126
305
  constructor(requestData: GamePlayerModels.ServerGetIpAddressCreateRequestData, timeout: number);
127
306
  }
307
+ /**
308
+ * Maps the AdminGetIpAddressCreate operation to a typed request wrapper.
309
+ */
128
310
  class AdminGetIpAddressCreateOperationRequest extends GetIpAddressCreateOperationRequest {
129
311
  protected role: RequestRole;
312
+ /**
313
+ * Creates a new AdminGetIpAddressCreateOperationRequest instance.
314
+ */
130
315
  constructor(requestData: GamePlayerModels.AdminGetIpAddressCreateRequestData, timeout: number);
131
316
  }
317
+ /**
318
+ * Maps the GetOnlineStatus operation to a typed request wrapper.
319
+ */
132
320
  class GetOnlineStatusOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetOnlineStatusRequestData> {
133
321
  protected operationCode: string;
134
322
  protected requestType: RequestType;
135
323
  protected role: RequestRole;
324
+ /**
325
+ * Creates a new GetOnlineStatusOperationRequest instance.
326
+ */
136
327
  constructor(requestData: GamePlayerModels.GetOnlineStatusRequestData, timeout: number);
137
328
  }
329
+ /**
330
+ * Maps the ServerGetOnlineStatus operation to a typed request wrapper.
331
+ */
138
332
  class ServerGetOnlineStatusOperationRequest extends GetOnlineStatusOperationRequest {
139
333
  protected role: RequestRole;
334
+ /**
335
+ * Creates a new ServerGetOnlineStatusOperationRequest instance.
336
+ */
140
337
  constructor(requestData: GamePlayerModels.ServerGetOnlineStatusRequestData, timeout: number);
141
338
  }
339
+ /**
340
+ * Maps the AdminGetOnlineStatus operation to a typed request wrapper.
341
+ */
142
342
  class AdminGetOnlineStatusOperationRequest extends GetOnlineStatusOperationRequest {
143
343
  protected role: RequestRole;
344
+ /**
345
+ * Creates a new AdminGetOnlineStatusOperationRequest instance.
346
+ */
144
347
  constructor(requestData: GamePlayerModels.AdminGetOnlineStatusRequestData, timeout: number);
145
348
  }
349
+ /**
350
+ * Maps the GetPlayerBan operation to a typed request wrapper.
351
+ */
146
352
  class GetPlayerBanOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetPlayerBanRequestData> {
147
353
  protected operationCode: string;
148
354
  protected requestType: RequestType;
149
355
  protected role: RequestRole;
356
+ /**
357
+ * Creates a new GetPlayerBanOperationRequest instance.
358
+ */
150
359
  constructor(requestData: GamePlayerModels.GetPlayerBanRequestData, timeout: number);
151
360
  }
361
+ /**
362
+ * Maps the ServerGetPlayerBan operation to a typed request wrapper.
363
+ */
152
364
  class ServerGetPlayerBanOperationRequest extends GetPlayerBanOperationRequest {
153
365
  protected role: RequestRole;
366
+ /**
367
+ * Creates a new ServerGetPlayerBanOperationRequest instance.
368
+ */
154
369
  constructor(requestData: GamePlayerModels.ServerGetPlayerBanRequestData, timeout: number);
155
370
  }
371
+ /**
372
+ * Maps the AdminGetPlayerBan operation to a typed request wrapper.
373
+ */
156
374
  class AdminGetPlayerBanOperationRequest extends GetPlayerBanOperationRequest {
157
375
  protected role: RequestRole;
376
+ /**
377
+ * Creates a new AdminGetPlayerBanOperationRequest instance.
378
+ */
158
379
  constructor(requestData: GamePlayerModels.AdminGetPlayerBanRequestData, timeout: number);
159
380
  }
381
+ /**
382
+ * Maps the GetPlayerCharacter operation to a typed request wrapper.
383
+ */
160
384
  class GetPlayerCharacterOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetPlayerCharacterRequestData> {
161
385
  protected operationCode: string;
162
386
  protected requestType: RequestType;
163
387
  protected role: RequestRole;
388
+ /**
389
+ * Creates a new GetPlayerCharacterOperationRequest instance.
390
+ */
164
391
  constructor(requestData: GamePlayerModels.GetPlayerCharacterRequestData, timeout: number);
165
392
  }
393
+ /**
394
+ * Maps the ServerGetPlayerCharacter operation to a typed request wrapper.
395
+ */
166
396
  class ServerGetPlayerCharacterOperationRequest extends GetPlayerCharacterOperationRequest {
167
397
  protected role: RequestRole;
398
+ /**
399
+ * Creates a new ServerGetPlayerCharacterOperationRequest instance.
400
+ */
168
401
  constructor(requestData: GamePlayerModels.ServerGetPlayerCharacterRequestData, timeout: number);
169
402
  }
403
+ /**
404
+ * Maps the AdminGetPlayerCharacter operation to a typed request wrapper.
405
+ */
170
406
  class AdminGetPlayerCharacterOperationRequest extends GetPlayerCharacterOperationRequest {
171
407
  protected role: RequestRole;
408
+ /**
409
+ * Creates a new AdminGetPlayerCharacterOperationRequest instance.
410
+ */
172
411
  constructor(requestData: GamePlayerModels.AdminGetPlayerCharacterRequestData, timeout: number);
173
412
  }
413
+ /**
414
+ * Maps the GetPlayerCurrency operation to a typed request wrapper.
415
+ */
174
416
  class GetPlayerCurrencyOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetPlayerCurrencyRequestData> {
175
417
  protected operationCode: string;
176
418
  protected requestType: RequestType;
177
419
  protected role: RequestRole;
420
+ /**
421
+ * Creates a new GetPlayerCurrencyOperationRequest instance.
422
+ */
178
423
  constructor(requestData: GamePlayerModels.GetPlayerCurrencyRequestData, timeout: number);
179
424
  }
425
+ /**
426
+ * Maps the ServerGetPlayerCurrency operation to a typed request wrapper.
427
+ */
180
428
  class ServerGetPlayerCurrencyOperationRequest extends GetPlayerCurrencyOperationRequest {
181
429
  protected role: RequestRole;
430
+ /**
431
+ * Creates a new ServerGetPlayerCurrencyOperationRequest instance.
432
+ */
182
433
  constructor(requestData: GamePlayerModels.ServerGetPlayerCurrencyRequestData, timeout: number);
183
434
  }
435
+ /**
436
+ * Maps the AdminGetPlayerCurrency operation to a typed request wrapper.
437
+ */
184
438
  class AdminGetPlayerCurrencyOperationRequest extends GetPlayerCurrencyOperationRequest {
185
439
  protected role: RequestRole;
440
+ /**
441
+ * Creates a new AdminGetPlayerCurrencyOperationRequest instance.
442
+ */
186
443
  constructor(requestData: GamePlayerModels.AdminGetPlayerCurrencyRequestData, timeout: number);
187
444
  }
445
+ /**
446
+ * Maps the GetPlayerData operation to a typed request wrapper.
447
+ */
188
448
  class GetPlayerDataOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetPlayerDataRequestData> {
189
449
  protected operationCode: string;
190
450
  protected requestType: RequestType;
191
451
  protected role: RequestRole;
452
+ /**
453
+ * Creates a new GetPlayerDataOperationRequest instance.
454
+ */
192
455
  constructor(requestData: GamePlayerModels.GetPlayerDataRequestData, timeout: number);
193
456
  }
457
+ /**
458
+ * Maps the ServerGetPlayerData operation to a typed request wrapper.
459
+ */
194
460
  class ServerGetPlayerDataOperationRequest extends GetPlayerDataOperationRequest {
195
461
  protected role: RequestRole;
462
+ /**
463
+ * Creates a new ServerGetPlayerDataOperationRequest instance.
464
+ */
196
465
  constructor(requestData: GamePlayerModels.ServerGetPlayerDataRequestData, timeout: number);
197
466
  }
467
+ /**
468
+ * Maps the AdminGetPlayerData operation to a typed request wrapper.
469
+ */
198
470
  class AdminGetPlayerDataOperationRequest extends GetPlayerDataOperationRequest {
199
471
  protected role: RequestRole;
472
+ /**
473
+ * Creates a new AdminGetPlayerDataOperationRequest instance.
474
+ */
200
475
  constructor(requestData: GamePlayerModels.AdminGetPlayerDataRequestData, timeout: number);
201
476
  }
477
+ /**
478
+ * Maps the GetPlayerFriend operation to a typed request wrapper.
479
+ */
202
480
  class GetPlayerFriendOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetPlayerFriendRequestData> {
203
481
  protected operationCode: string;
204
482
  protected requestType: RequestType;
205
483
  protected role: RequestRole;
484
+ /**
485
+ * Creates a new GetPlayerFriendOperationRequest instance.
486
+ */
206
487
  constructor(requestData: GamePlayerModels.GetPlayerFriendRequestData, timeout: number);
207
488
  }
489
+ /**
490
+ * Maps the ServerGetPlayerFriend operation to a typed request wrapper.
491
+ */
208
492
  class ServerGetPlayerFriendOperationRequest extends GetPlayerFriendOperationRequest {
209
493
  protected role: RequestRole;
494
+ /**
495
+ * Creates a new ServerGetPlayerFriendOperationRequest instance.
496
+ */
210
497
  constructor(requestData: GamePlayerModels.ServerGetPlayerFriendRequestData, timeout: number);
211
498
  }
499
+ /**
500
+ * Maps the AdminGetPlayerFriend operation to a typed request wrapper.
501
+ */
212
502
  class AdminGetPlayerFriendOperationRequest extends GetPlayerFriendOperationRequest {
213
503
  protected role: RequestRole;
504
+ /**
505
+ * Creates a new AdminGetPlayerFriendOperationRequest instance.
506
+ */
214
507
  constructor(requestData: GamePlayerModels.AdminGetPlayerFriendRequestData, timeout: number);
215
508
  }
509
+ /**
510
+ * Maps the GetPlayerGroup operation to a typed request wrapper.
511
+ */
216
512
  class GetPlayerGroupOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetPlayerGroupRequestData> {
217
513
  protected operationCode: string;
218
514
  protected requestType: RequestType;
219
515
  protected role: RequestRole;
516
+ /**
517
+ * Creates a new GetPlayerGroupOperationRequest instance.
518
+ */
220
519
  constructor(requestData: GamePlayerModels.GetPlayerGroupRequestData, timeout: number);
221
520
  }
521
+ /**
522
+ * Maps the ServerGetPlayerGroup operation to a typed request wrapper.
523
+ */
222
524
  class ServerGetPlayerGroupOperationRequest extends GetPlayerGroupOperationRequest {
223
525
  protected role: RequestRole;
526
+ /**
527
+ * Creates a new ServerGetPlayerGroupOperationRequest instance.
528
+ */
224
529
  constructor(requestData: GamePlayerModels.ServerGetPlayerGroupRequestData, timeout: number);
225
530
  }
531
+ /**
532
+ * Maps the AdminGetPlayerGroup operation to a typed request wrapper.
533
+ */
226
534
  class AdminGetPlayerGroupOperationRequest extends GetPlayerGroupOperationRequest {
227
535
  protected role: RequestRole;
536
+ /**
537
+ * Creates a new AdminGetPlayerGroupOperationRequest instance.
538
+ */
228
539
  constructor(requestData: GamePlayerModels.AdminGetPlayerGroupRequestData, timeout: number);
229
540
  }
541
+ /**
542
+ * Maps the GetPlayerInformation operation to a typed request wrapper.
543
+ */
230
544
  class GetPlayerInformationOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetPlayerInformationRequestData> {
231
545
  protected operationCode: string;
232
546
  protected requestType: RequestType;
233
547
  protected role: RequestRole;
548
+ /**
549
+ * Creates a new GetPlayerInformationOperationRequest instance.
550
+ */
234
551
  constructor(requestData: GamePlayerModels.GetPlayerInformationRequestData, timeout: number);
235
552
  }
553
+ /**
554
+ * Maps the ServerGetPlayerInformation operation to a typed request wrapper.
555
+ */
236
556
  class ServerGetPlayerInformationOperationRequest extends GetPlayerInformationOperationRequest {
237
557
  protected role: RequestRole;
558
+ /**
559
+ * Creates a new ServerGetPlayerInformationOperationRequest instance.
560
+ */
238
561
  constructor(requestData: GamePlayerModels.ServerGetPlayerInformationRequestData, timeout: number);
239
562
  }
563
+ /**
564
+ * Maps the AdminGetPlayerInformation operation to a typed request wrapper.
565
+ */
240
566
  class AdminGetPlayerInformationOperationRequest extends GetPlayerInformationOperationRequest {
241
567
  protected role: RequestRole;
568
+ /**
569
+ * Creates a new AdminGetPlayerInformationOperationRequest instance.
570
+ */
242
571
  constructor(requestData: GamePlayerModels.AdminGetPlayerInformationRequestData, timeout: number);
243
572
  }
573
+ /**
574
+ * Maps the GetPlayerInventory operation to a typed request wrapper.
575
+ */
244
576
  class GetPlayerInventoryOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetPlayerInventoryRequestData> {
245
577
  protected operationCode: string;
246
578
  protected requestType: RequestType;
247
579
  protected role: RequestRole;
580
+ /**
581
+ * Creates a new GetPlayerInventoryOperationRequest instance.
582
+ */
248
583
  constructor(requestData: GamePlayerModels.GetPlayerInventoryRequestData, timeout: number);
249
584
  }
585
+ /**
586
+ * Maps the ServerGetPlayerInventory operation to a typed request wrapper.
587
+ */
250
588
  class ServerGetPlayerInventoryOperationRequest extends GetPlayerInventoryOperationRequest {
251
589
  protected role: RequestRole;
590
+ /**
591
+ * Creates a new ServerGetPlayerInventoryOperationRequest instance.
592
+ */
252
593
  constructor(requestData: GamePlayerModels.ServerGetPlayerInventoryRequestData, timeout: number);
253
594
  }
595
+ /**
596
+ * Maps the AdminGetPlayerInventory operation to a typed request wrapper.
597
+ */
254
598
  class AdminGetPlayerInventoryOperationRequest extends GetPlayerInventoryOperationRequest {
255
599
  protected role: RequestRole;
600
+ /**
601
+ * Creates a new AdminGetPlayerInventoryOperationRequest instance.
602
+ */
256
603
  constructor(requestData: GamePlayerModels.AdminGetPlayerInventoryRequestData, timeout: number);
257
604
  }
605
+ /**
606
+ * Maps the GetPlayerStatistics operation to a typed request wrapper.
607
+ */
258
608
  class GetPlayerStatisticsOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetPlayerStatisticsRequestData> {
259
609
  protected operationCode: string;
260
610
  protected requestType: RequestType;
261
611
  protected role: RequestRole;
612
+ /**
613
+ * Creates a new GetPlayerStatisticsOperationRequest instance.
614
+ */
262
615
  constructor(requestData: GamePlayerModels.GetPlayerStatisticsRequestData, timeout: number);
263
616
  }
617
+ /**
618
+ * Maps the ServerGetPlayerStatistics operation to a typed request wrapper.
619
+ */
264
620
  class ServerGetPlayerStatisticsOperationRequest extends GetPlayerStatisticsOperationRequest {
265
621
  protected role: RequestRole;
622
+ /**
623
+ * Creates a new ServerGetPlayerStatisticsOperationRequest instance.
624
+ */
266
625
  constructor(requestData: GamePlayerModels.ServerGetPlayerStatisticsRequestData, timeout: number);
267
626
  }
627
+ /**
628
+ * Maps the AdminGetPlayerStatistics operation to a typed request wrapper.
629
+ */
268
630
  class AdminGetPlayerStatisticsOperationRequest extends GetPlayerStatisticsOperationRequest {
269
631
  protected role: RequestRole;
632
+ /**
633
+ * Creates a new AdminGetPlayerStatisticsOperationRequest instance.
634
+ */
270
635
  constructor(requestData: GamePlayerModels.AdminGetPlayerStatisticsRequestData, timeout: number);
271
636
  }
637
+ /**
638
+ * Maps the GetPlayersWithDisplayName operation to a typed request wrapper.
639
+ */
272
640
  class GetPlayersWithDisplayNameOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetPlayersWithDisplayNameRequestData> {
273
641
  protected operationCode: string;
274
642
  protected requestType: RequestType;
275
643
  protected role: RequestRole;
644
+ /**
645
+ * Creates a new GetPlayersWithDisplayNameOperationRequest instance.
646
+ */
276
647
  constructor(requestData: GamePlayerModels.GetPlayersWithDisplayNameRequestData, timeout: number);
277
648
  }
649
+ /**
650
+ * Maps the ServerGetPlayersWithDisplayName operation to a typed request wrapper.
651
+ */
278
652
  class ServerGetPlayersWithDisplayNameOperationRequest extends GetPlayersWithDisplayNameOperationRequest {
279
653
  protected role: RequestRole;
654
+ /**
655
+ * Creates a new ServerGetPlayersWithDisplayNameOperationRequest instance.
656
+ */
280
657
  constructor(requestData: GamePlayerModels.ServerGetPlayersWithDisplayNameRequestData, timeout: number);
281
658
  }
659
+ /**
660
+ * Maps the AdminGetPlayersWithDisplayName operation to a typed request wrapper.
661
+ */
282
662
  class AdminGetPlayersWithDisplayNameOperationRequest extends GetPlayersWithDisplayNameOperationRequest {
283
663
  protected role: RequestRole;
664
+ /**
665
+ * Creates a new AdminGetPlayersWithDisplayNameOperationRequest instance.
666
+ */
284
667
  constructor(requestData: GamePlayerModels.AdminGetPlayersWithDisplayNameRequestData, timeout: number);
285
668
  }
669
+ /**
670
+ * Maps the GetPlayersWithSegment operation to a typed request wrapper.
671
+ */
286
672
  class GetPlayersWithSegmentOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetPlayersWithSegmentRequestData> {
287
673
  protected operationCode: string;
288
674
  protected requestType: RequestType;
289
675
  protected role: RequestRole;
676
+ /**
677
+ * Creates a new GetPlayersWithSegmentOperationRequest instance.
678
+ */
290
679
  constructor(requestData: GamePlayerModels.GetPlayersWithSegmentRequestData, timeout: number);
291
680
  }
681
+ /**
682
+ * Maps the ServerGetPlayersWithSegment operation to a typed request wrapper.
683
+ */
292
684
  class ServerGetPlayersWithSegmentOperationRequest extends GetPlayersWithSegmentOperationRequest {
293
685
  protected role: RequestRole;
686
+ /**
687
+ * Creates a new ServerGetPlayersWithSegmentOperationRequest instance.
688
+ */
294
689
  constructor(requestData: GamePlayerModels.ServerGetPlayersWithSegmentRequestData, timeout: number);
295
690
  }
691
+ /**
692
+ * Maps the AdminGetPlayersWithSegment operation to a typed request wrapper.
693
+ */
296
694
  class AdminGetPlayersWithSegmentOperationRequest extends GetPlayersWithSegmentOperationRequest {
297
695
  protected role: RequestRole;
696
+ /**
697
+ * Creates a new AdminGetPlayersWithSegmentOperationRequest instance.
698
+ */
298
699
  constructor(requestData: GamePlayerModels.AdminGetPlayersWithSegmentRequestData, timeout: number);
299
700
  }
701
+ /**
702
+ * Maps the GetPlayersWithTag operation to a typed request wrapper.
703
+ */
300
704
  class GetPlayersWithTagOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetPlayersWithTagRequestData> {
301
705
  protected operationCode: string;
302
706
  protected requestType: RequestType;
303
707
  protected role: RequestRole;
708
+ /**
709
+ * Creates a new GetPlayersWithTagOperationRequest instance.
710
+ */
304
711
  constructor(requestData: GamePlayerModels.GetPlayersWithTagRequestData, timeout: number);
305
712
  }
713
+ /**
714
+ * Maps the ServerGetPlayersWithTag operation to a typed request wrapper.
715
+ */
306
716
  class ServerGetPlayersWithTagOperationRequest extends GetPlayersWithTagOperationRequest {
307
717
  protected role: RequestRole;
718
+ /**
719
+ * Creates a new ServerGetPlayersWithTagOperationRequest instance.
720
+ */
308
721
  constructor(requestData: GamePlayerModels.ServerGetPlayersWithTagRequestData, timeout: number);
309
722
  }
723
+ /**
724
+ * Maps the AdminGetPlayersWithTag operation to a typed request wrapper.
725
+ */
310
726
  class AdminGetPlayersWithTagOperationRequest extends GetPlayersWithTagOperationRequest {
311
727
  protected role: RequestRole;
728
+ /**
729
+ * Creates a new AdminGetPlayersWithTagOperationRequest instance.
730
+ */
312
731
  constructor(requestData: GamePlayerModels.AdminGetPlayersWithTagRequestData, timeout: number);
313
732
  }
733
+ /**
734
+ * Maps the GetSegment operation to a typed request wrapper.
735
+ */
314
736
  class GetSegmentOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetSegmentRequestData> {
315
737
  protected operationCode: string;
316
738
  protected requestType: RequestType;
317
739
  protected role: RequestRole;
740
+ /**
741
+ * Creates a new GetSegmentOperationRequest instance.
742
+ */
318
743
  constructor(requestData: GamePlayerModels.GetSegmentRequestData, timeout: number);
319
744
  }
745
+ /**
746
+ * Maps the ServerGetSegment operation to a typed request wrapper.
747
+ */
320
748
  class ServerGetSegmentOperationRequest extends GetSegmentOperationRequest {
321
749
  protected role: RequestRole;
750
+ /**
751
+ * Creates a new ServerGetSegmentOperationRequest instance.
752
+ */
322
753
  constructor(requestData: GamePlayerModels.ServerGetSegmentRequestData, timeout: number);
323
754
  }
755
+ /**
756
+ * Maps the AdminGetSegment operation to a typed request wrapper.
757
+ */
324
758
  class AdminGetSegmentOperationRequest extends GetSegmentOperationRequest {
325
759
  protected role: RequestRole;
760
+ /**
761
+ * Creates a new AdminGetSegmentOperationRequest instance.
762
+ */
326
763
  constructor(requestData: GamePlayerModels.AdminGetSegmentRequestData, timeout: number);
327
764
  }
765
+ /**
766
+ * Maps the GetStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
767
+ */
328
768
  class GetStatisticsLeaderboardAroundPlayerOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData> {
329
769
  protected operationCode: string;
330
770
  protected requestType: RequestType;
331
771
  protected role: RequestRole;
772
+ /**
773
+ * Creates a new GetStatisticsLeaderboardAroundPlayerOperationRequest instance.
774
+ */
332
775
  constructor(requestData: GamePlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData, timeout: number);
333
776
  }
777
+ /**
778
+ * Maps the ServerGetStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
779
+ */
334
780
  class ServerGetStatisticsLeaderboardAroundPlayerOperationRequest extends GetStatisticsLeaderboardAroundPlayerOperationRequest {
335
781
  protected role: RequestRole;
782
+ /**
783
+ * Creates a new ServerGetStatisticsLeaderboardAroundPlayerOperationRequest instance.
784
+ */
336
785
  constructor(requestData: GamePlayerModels.ServerGetStatisticsLeaderboardAroundPlayerRequestData, timeout: number);
337
786
  }
787
+ /**
788
+ * Maps the AdminGetStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
789
+ */
338
790
  class AdminGetStatisticsLeaderboardAroundPlayerOperationRequest extends GetStatisticsLeaderboardAroundPlayerOperationRequest {
339
791
  protected role: RequestRole;
792
+ /**
793
+ * Creates a new AdminGetStatisticsLeaderboardAroundPlayerOperationRequest instance.
794
+ */
340
795
  constructor(requestData: GamePlayerModels.AdminGetStatisticsLeaderboardAroundPlayerRequestData, timeout: number);
341
796
  }
797
+ /**
798
+ * Maps the GetStatisticsLeaderboard operation to a typed request wrapper.
799
+ */
342
800
  class GetStatisticsLeaderboardOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetStatisticsLeaderboardRequestData> {
343
801
  protected operationCode: string;
344
802
  protected requestType: RequestType;
345
803
  protected role: RequestRole;
804
+ /**
805
+ * Creates a new GetStatisticsLeaderboardOperationRequest instance.
806
+ */
346
807
  constructor(requestData: GamePlayerModels.GetStatisticsLeaderboardRequestData, timeout: number);
347
808
  }
809
+ /**
810
+ * Maps the ServerGetStatisticsLeaderboard operation to a typed request wrapper.
811
+ */
348
812
  class ServerGetStatisticsLeaderboardOperationRequest extends GetStatisticsLeaderboardOperationRequest {
349
813
  protected role: RequestRole;
814
+ /**
815
+ * Creates a new ServerGetStatisticsLeaderboardOperationRequest instance.
816
+ */
350
817
  constructor(requestData: GamePlayerModels.ServerGetStatisticsLeaderboardRequestData, timeout: number);
351
818
  }
819
+ /**
820
+ * Maps the AdminGetStatisticsLeaderboard operation to a typed request wrapper.
821
+ */
352
822
  class AdminGetStatisticsLeaderboardOperationRequest extends GetStatisticsLeaderboardOperationRequest {
353
823
  protected role: RequestRole;
824
+ /**
825
+ * Creates a new AdminGetStatisticsLeaderboardOperationRequest instance.
826
+ */
354
827
  constructor(requestData: GamePlayerModels.AdminGetStatisticsLeaderboardRequestData, timeout: number);
355
828
  }
829
+ /**
830
+ * Maps the GetTag operation to a typed request wrapper.
831
+ */
356
832
  class GetTagOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetTagRequestData> {
357
833
  protected operationCode: string;
358
834
  protected requestType: RequestType;
359
835
  protected role: RequestRole;
836
+ /**
837
+ * Creates a new GetTagOperationRequest instance.
838
+ */
360
839
  constructor(requestData: GamePlayerModels.GetTagRequestData, timeout: number);
361
840
  }
841
+ /**
842
+ * Maps the ServerGetTag operation to a typed request wrapper.
843
+ */
362
844
  class ServerGetTagOperationRequest extends GetTagOperationRequest {
363
845
  protected role: RequestRole;
846
+ /**
847
+ * Creates a new ServerGetTagOperationRequest instance.
848
+ */
364
849
  constructor(requestData: GamePlayerModels.ServerGetTagRequestData, timeout: number);
365
850
  }
851
+ /**
852
+ * Maps the AdminGetTag operation to a typed request wrapper.
853
+ */
366
854
  class AdminGetTagOperationRequest extends GetTagOperationRequest {
367
855
  protected role: RequestRole;
856
+ /**
857
+ * Creates a new AdminGetTagOperationRequest instance.
858
+ */
368
859
  constructor(requestData: GamePlayerModels.AdminGetTagRequestData, timeout: number);
369
860
  }
861
+ /**
862
+ * Maps the GetTsCreate operation to a typed request wrapper.
863
+ */
370
864
  class GetTsCreateOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetTsCreateRequestData> {
371
865
  protected operationCode: string;
372
866
  protected requestType: RequestType;
373
867
  protected role: RequestRole;
868
+ /**
869
+ * Creates a new GetTsCreateOperationRequest instance.
870
+ */
374
871
  constructor(requestData: GamePlayerModels.GetTsCreateRequestData, timeout: number);
375
872
  }
873
+ /**
874
+ * Maps the ServerGetTsCreate operation to a typed request wrapper.
875
+ */
376
876
  class ServerGetTsCreateOperationRequest extends GetTsCreateOperationRequest {
377
877
  protected role: RequestRole;
878
+ /**
879
+ * Creates a new ServerGetTsCreateOperationRequest instance.
880
+ */
378
881
  constructor(requestData: GamePlayerModels.ServerGetTsCreateRequestData, timeout: number);
379
882
  }
883
+ /**
884
+ * Maps the AdminGetTsCreate operation to a typed request wrapper.
885
+ */
380
886
  class AdminGetTsCreateOperationRequest extends GetTsCreateOperationRequest {
381
887
  protected role: RequestRole;
888
+ /**
889
+ * Creates a new AdminGetTsCreateOperationRequest instance.
890
+ */
382
891
  constructor(requestData: GamePlayerModels.AdminGetTsCreateRequestData, timeout: number);
383
892
  }
893
+ /**
894
+ * Maps the GetTsLastLogin operation to a typed request wrapper.
895
+ */
384
896
  class GetTsLastLoginOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetTsLastLoginRequestData> {
385
897
  protected operationCode: string;
386
898
  protected requestType: RequestType;
387
899
  protected role: RequestRole;
900
+ /**
901
+ * Creates a new GetTsLastLoginOperationRequest instance.
902
+ */
388
903
  constructor(requestData: GamePlayerModels.GetTsLastLoginRequestData, timeout: number);
389
904
  }
905
+ /**
906
+ * Maps the ServerGetTsLastLogin operation to a typed request wrapper.
907
+ */
390
908
  class ServerGetTsLastLoginOperationRequest extends GetTsLastLoginOperationRequest {
391
909
  protected role: RequestRole;
910
+ /**
911
+ * Creates a new ServerGetTsLastLoginOperationRequest instance.
912
+ */
392
913
  constructor(requestData: GamePlayerModels.ServerGetTsLastLoginRequestData, timeout: number);
393
914
  }
915
+ /**
916
+ * Maps the AdminGetTsLastLogin operation to a typed request wrapper.
917
+ */
394
918
  class AdminGetTsLastLoginOperationRequest extends GetTsLastLoginOperationRequest {
395
919
  protected role: RequestRole;
920
+ /**
921
+ * Creates a new AdminGetTsLastLoginOperationRequest instance.
922
+ */
396
923
  constructor(requestData: GamePlayerModels.AdminGetTsLastLoginRequestData, timeout: number);
397
924
  }
925
+ /**
926
+ * Maps the CreateGroup operation to a typed request wrapper.
927
+ */
398
928
  class CreateGroupOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.CreateGroupRequestData> {
399
929
  protected operationCode: string;
400
930
  protected requestType: RequestType;
401
931
  protected role: RequestRole;
932
+ /**
933
+ * Creates a new CreateGroupOperationRequest instance.
934
+ */
402
935
  constructor(requestData: GamePlayerModels.CreateGroupRequestData, timeout: number);
403
936
  }
937
+ /**
938
+ * Maps the ServerCreateGroup operation to a typed request wrapper.
939
+ */
404
940
  class ServerCreateGroupOperationRequest extends CreateGroupOperationRequest {
405
941
  protected role: RequestRole;
942
+ /**
943
+ * Creates a new ServerCreateGroupOperationRequest instance.
944
+ */
406
945
  constructor(requestData: GamePlayerModels.ServerCreateGroupRequestData, timeout: number);
407
946
  }
947
+ /**
948
+ * Maps the AdminCreateGroup operation to a typed request wrapper.
949
+ */
408
950
  class AdminCreateGroupOperationRequest extends CreateGroupOperationRequest {
409
951
  protected role: RequestRole;
952
+ /**
953
+ * Creates a new AdminCreateGroupOperationRequest instance.
954
+ */
410
955
  constructor(requestData: GamePlayerModels.AdminCreateGroupRequestData, timeout: number);
411
956
  }
957
+ /**
958
+ * Maps the CreatePlayerCharacter operation to a typed request wrapper.
959
+ */
412
960
  class CreatePlayerCharacterOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.CreatePlayerCharacterRequestData> {
413
961
  protected operationCode: string;
414
962
  protected requestType: RequestType;
415
963
  protected role: RequestRole;
964
+ /**
965
+ * Creates a new CreatePlayerCharacterOperationRequest instance.
966
+ */
416
967
  constructor(requestData: GamePlayerModels.CreatePlayerCharacterRequestData, timeout: number);
417
968
  }
969
+ /**
970
+ * Maps the ServerCreatePlayerCharacter operation to a typed request wrapper.
971
+ */
418
972
  class ServerCreatePlayerCharacterOperationRequest extends CreatePlayerCharacterOperationRequest {
419
973
  protected role: RequestRole;
974
+ /**
975
+ * Creates a new ServerCreatePlayerCharacterOperationRequest instance.
976
+ */
420
977
  constructor(requestData: GamePlayerModels.ServerCreatePlayerCharacterRequestData, timeout: number);
421
978
  }
979
+ /**
980
+ * Maps the AdminCreatePlayerCharacter operation to a typed request wrapper.
981
+ */
422
982
  class AdminCreatePlayerCharacterOperationRequest extends CreatePlayerCharacterOperationRequest {
423
983
  protected role: RequestRole;
984
+ /**
985
+ * Creates a new AdminCreatePlayerCharacterOperationRequest instance.
986
+ */
424
987
  constructor(requestData: GamePlayerModels.AdminCreatePlayerCharacterRequestData, timeout: number);
425
988
  }
989
+ /**
990
+ * Maps the CreatePlayerItem operation to a typed request wrapper.
991
+ */
426
992
  class CreatePlayerItemOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.CreatePlayerItemRequestData> {
427
993
  protected operationCode: string;
428
994
  protected requestType: RequestType;
429
995
  protected role: RequestRole;
996
+ /**
997
+ * Creates a new CreatePlayerItemOperationRequest instance.
998
+ */
430
999
  constructor(requestData: GamePlayerModels.CreatePlayerItemRequestData, timeout: number);
431
1000
  }
1001
+ /**
1002
+ * Maps the ServerCreatePlayerItem operation to a typed request wrapper.
1003
+ */
432
1004
  class ServerCreatePlayerItemOperationRequest extends CreatePlayerItemOperationRequest {
433
1005
  protected role: RequestRole;
1006
+ /**
1007
+ * Creates a new ServerCreatePlayerItemOperationRequest instance.
1008
+ */
434
1009
  constructor(requestData: GamePlayerModels.ServerCreatePlayerItemRequestData, timeout: number);
435
1010
  }
1011
+ /**
1012
+ * Maps the AdminCreatePlayerItem operation to a typed request wrapper.
1013
+ */
436
1014
  class AdminCreatePlayerItemOperationRequest extends CreatePlayerItemOperationRequest {
437
1015
  protected role: RequestRole;
1016
+ /**
1017
+ * Creates a new AdminCreatePlayerItemOperationRequest instance.
1018
+ */
438
1019
  constructor(requestData: GamePlayerModels.AdminCreatePlayerItemRequestData, timeout: number);
439
1020
  }
1021
+ /**
1022
+ * Maps the JoinGroup operation to a typed request wrapper.
1023
+ */
440
1024
  class JoinGroupOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.JoinGroupRequestData> {
441
1025
  protected operationCode: string;
442
1026
  protected requestType: RequestType;
443
1027
  protected role: RequestRole;
1028
+ /**
1029
+ * Creates a new JoinGroupOperationRequest instance.
1030
+ */
444
1031
  constructor(requestData: GamePlayerModels.JoinGroupRequestData, timeout: number);
445
1032
  }
1033
+ /**
1034
+ * Maps the ServerJoinGroup operation to a typed request wrapper.
1035
+ */
446
1036
  class ServerJoinGroupOperationRequest extends JoinGroupOperationRequest {
447
1037
  protected role: RequestRole;
1038
+ /**
1039
+ * Creates a new ServerJoinGroupOperationRequest instance.
1040
+ */
448
1041
  constructor(requestData: GamePlayerModels.ServerJoinGroupRequestData, timeout: number);
449
1042
  }
1043
+ /**
1044
+ * Maps the AdminJoinGroup operation to a typed request wrapper.
1045
+ */
450
1046
  class AdminJoinGroupOperationRequest extends JoinGroupOperationRequest {
451
1047
  protected role: RequestRole;
1048
+ /**
1049
+ * Creates a new AdminJoinGroupOperationRequest instance.
1050
+ */
452
1051
  constructor(requestData: GamePlayerModels.AdminJoinGroupRequestData, timeout: number);
453
1052
  }
1053
+ /**
1054
+ * Maps the LeaveGroup operation to a typed request wrapper.
1055
+ */
454
1056
  class LeaveGroupOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.LeaveGroupRequestData> {
455
1057
  protected operationCode: string;
456
1058
  protected requestType: RequestType;
457
1059
  protected role: RequestRole;
1060
+ /**
1061
+ * Creates a new LeaveGroupOperationRequest instance.
1062
+ */
458
1063
  constructor(requestData: GamePlayerModels.LeaveGroupRequestData, timeout: number);
459
1064
  }
1065
+ /**
1066
+ * Maps the ServerLeaveGroup operation to a typed request wrapper.
1067
+ */
460
1068
  class ServerLeaveGroupOperationRequest extends LeaveGroupOperationRequest {
461
1069
  protected role: RequestRole;
1070
+ /**
1071
+ * Creates a new ServerLeaveGroupOperationRequest instance.
1072
+ */
462
1073
  constructor(requestData: GamePlayerModels.ServerLeaveGroupRequestData, timeout: number);
463
1074
  }
1075
+ /**
1076
+ * Maps the AdminLeaveGroup operation to a typed request wrapper.
1077
+ */
464
1078
  class AdminLeaveGroupOperationRequest extends LeaveGroupOperationRequest {
465
1079
  protected role: RequestRole;
1080
+ /**
1081
+ * Creates a new AdminLeaveGroupOperationRequest instance.
1082
+ */
466
1083
  constructor(requestData: GamePlayerModels.AdminLeaveGroupRequestData, timeout: number);
467
1084
  }
1085
+ /**
1086
+ * Maps the RemovePlayerCharacter operation to a typed request wrapper.
1087
+ */
468
1088
  class RemovePlayerCharacterOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.RemovePlayerCharacterRequestData> {
469
1089
  protected operationCode: string;
470
1090
  protected requestType: RequestType;
471
1091
  protected role: RequestRole;
1092
+ /**
1093
+ * Creates a new RemovePlayerCharacterOperationRequest instance.
1094
+ */
472
1095
  constructor(requestData: GamePlayerModels.RemovePlayerCharacterRequestData, timeout: number);
473
1096
  }
1097
+ /**
1098
+ * Maps the ServerRemovePlayerCharacter operation to a typed request wrapper.
1099
+ */
474
1100
  class ServerRemovePlayerCharacterOperationRequest extends RemovePlayerCharacterOperationRequest {
475
1101
  protected role: RequestRole;
1102
+ /**
1103
+ * Creates a new ServerRemovePlayerCharacterOperationRequest instance.
1104
+ */
476
1105
  constructor(requestData: GamePlayerModels.ServerRemovePlayerCharacterRequestData, timeout: number);
477
1106
  }
1107
+ /**
1108
+ * Maps the AdminRemovePlayerCharacter operation to a typed request wrapper.
1109
+ */
478
1110
  class AdminRemovePlayerCharacterOperationRequest extends RemovePlayerCharacterOperationRequest {
479
1111
  protected role: RequestRole;
1112
+ /**
1113
+ * Creates a new AdminRemovePlayerCharacterOperationRequest instance.
1114
+ */
480
1115
  constructor(requestData: GamePlayerModels.AdminRemovePlayerCharacterRequestData, timeout: number);
481
1116
  }
1117
+ /**
1118
+ * Maps the RemovePlayerFriend operation to a typed request wrapper.
1119
+ */
482
1120
  class RemovePlayerFriendOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.RemovePlayerFriendRequestData> {
483
1121
  protected operationCode: string;
484
1122
  protected requestType: RequestType;
485
1123
  protected role: RequestRole;
1124
+ /**
1125
+ * Creates a new RemovePlayerFriendOperationRequest instance.
1126
+ */
486
1127
  constructor(requestData: GamePlayerModels.RemovePlayerFriendRequestData, timeout: number);
487
1128
  }
1129
+ /**
1130
+ * Maps the ServerRemovePlayerFriend operation to a typed request wrapper.
1131
+ */
488
1132
  class ServerRemovePlayerFriendOperationRequest extends RemovePlayerFriendOperationRequest {
489
1133
  protected role: RequestRole;
1134
+ /**
1135
+ * Creates a new ServerRemovePlayerFriendOperationRequest instance.
1136
+ */
490
1137
  constructor(requestData: GamePlayerModels.ServerRemovePlayerFriendRequestData, timeout: number);
491
1138
  }
1139
+ /**
1140
+ * Maps the AdminRemovePlayerFriend operation to a typed request wrapper.
1141
+ */
492
1142
  class AdminRemovePlayerFriendOperationRequest extends RemovePlayerFriendOperationRequest {
493
1143
  protected role: RequestRole;
1144
+ /**
1145
+ * Creates a new AdminRemovePlayerFriendOperationRequest instance.
1146
+ */
494
1147
  constructor(requestData: GamePlayerModels.AdminRemovePlayerFriendRequestData, timeout: number);
495
1148
  }
1149
+ /**
1150
+ * Maps the RemovePlayerItem operation to a typed request wrapper.
1151
+ */
496
1152
  class RemovePlayerItemOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.RemovePlayerItemRequestData> {
497
1153
  protected operationCode: string;
498
1154
  protected requestType: RequestType;
499
1155
  protected role: RequestRole;
1156
+ /**
1157
+ * Creates a new RemovePlayerItemOperationRequest instance.
1158
+ */
500
1159
  constructor(requestData: GamePlayerModels.RemovePlayerItemRequestData, timeout: number);
501
1160
  }
1161
+ /**
1162
+ * Maps the ServerRemovePlayerItem operation to a typed request wrapper.
1163
+ */
502
1164
  class ServerRemovePlayerItemOperationRequest extends RemovePlayerItemOperationRequest {
503
1165
  protected role: RequestRole;
1166
+ /**
1167
+ * Creates a new ServerRemovePlayerItemOperationRequest instance.
1168
+ */
504
1169
  constructor(requestData: GamePlayerModels.ServerRemovePlayerItemRequestData, timeout: number);
505
1170
  }
1171
+ /**
1172
+ * Maps the AdminRemovePlayerItem operation to a typed request wrapper.
1173
+ */
506
1174
  class AdminRemovePlayerItemOperationRequest extends RemovePlayerItemOperationRequest {
507
1175
  protected role: RequestRole;
1176
+ /**
1177
+ * Creates a new AdminRemovePlayerItemOperationRequest instance.
1178
+ */
508
1179
  constructor(requestData: GamePlayerModels.AdminRemovePlayerItemRequestData, timeout: number);
509
1180
  }
1181
+ /**
1182
+ * Maps the RemoveSegment operation to a typed request wrapper.
1183
+ */
510
1184
  class RemoveSegmentOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.RemoveSegmentRequestData> {
511
1185
  protected operationCode: string;
512
1186
  protected requestType: RequestType;
513
1187
  protected role: RequestRole;
1188
+ /**
1189
+ * Creates a new RemoveSegmentOperationRequest instance.
1190
+ */
514
1191
  constructor(requestData: GamePlayerModels.RemoveSegmentRequestData, timeout: number);
515
1192
  }
1193
+ /**
1194
+ * Maps the ServerRemoveSegment operation to a typed request wrapper.
1195
+ */
516
1196
  class ServerRemoveSegmentOperationRequest extends RemoveSegmentOperationRequest {
517
1197
  protected role: RequestRole;
1198
+ /**
1199
+ * Creates a new ServerRemoveSegmentOperationRequest instance.
1200
+ */
518
1201
  constructor(requestData: GamePlayerModels.ServerRemoveSegmentRequestData, timeout: number);
519
1202
  }
1203
+ /**
1204
+ * Maps the AdminRemoveSegment operation to a typed request wrapper.
1205
+ */
520
1206
  class AdminRemoveSegmentOperationRequest extends RemoveSegmentOperationRequest {
521
1207
  protected role: RequestRole;
1208
+ /**
1209
+ * Creates a new AdminRemoveSegmentOperationRequest instance.
1210
+ */
522
1211
  constructor(requestData: GamePlayerModels.AdminRemoveSegmentRequestData, timeout: number);
523
1212
  }
1213
+ /**
1214
+ * Maps the RemoveTag operation to a typed request wrapper.
1215
+ */
524
1216
  class RemoveTagOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.RemoveTagRequestData> {
525
1217
  protected operationCode: string;
526
1218
  protected requestType: RequestType;
527
1219
  protected role: RequestRole;
1220
+ /**
1221
+ * Creates a new RemoveTagOperationRequest instance.
1222
+ */
528
1223
  constructor(requestData: GamePlayerModels.RemoveTagRequestData, timeout: number);
529
1224
  }
1225
+ /**
1226
+ * Maps the ServerRemoveTag operation to a typed request wrapper.
1227
+ */
530
1228
  class ServerRemoveTagOperationRequest extends RemoveTagOperationRequest {
531
1229
  protected role: RequestRole;
1230
+ /**
1231
+ * Creates a new ServerRemoveTagOperationRequest instance.
1232
+ */
532
1233
  constructor(requestData: GamePlayerModels.ServerRemoveTagRequestData, timeout: number);
533
1234
  }
1235
+ /**
1236
+ * Maps the AdminRemoveTag operation to a typed request wrapper.
1237
+ */
534
1238
  class AdminRemoveTagOperationRequest extends RemoveTagOperationRequest {
535
1239
  protected role: RequestRole;
1240
+ /**
1241
+ * Creates a new AdminRemoveTagOperationRequest instance.
1242
+ */
536
1243
  constructor(requestData: GamePlayerModels.AdminRemoveTagRequestData, timeout: number);
537
1244
  }
1245
+ /**
1246
+ * Maps the SetAvatar operation to a typed request wrapper.
1247
+ */
538
1248
  class SetAvatarOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.SetAvatarRequestData> {
539
1249
  protected operationCode: string;
540
1250
  protected requestType: RequestType;
541
1251
  protected role: RequestRole;
1252
+ /**
1253
+ * Creates a new SetAvatarOperationRequest instance.
1254
+ */
542
1255
  constructor(requestData: GamePlayerModels.SetAvatarRequestData, timeout: number);
543
1256
  }
1257
+ /**
1258
+ * Maps the ServerSetAvatar operation to a typed request wrapper.
1259
+ */
544
1260
  class ServerSetAvatarOperationRequest extends SetAvatarOperationRequest {
545
1261
  protected role: RequestRole;
1262
+ /**
1263
+ * Creates a new ServerSetAvatarOperationRequest instance.
1264
+ */
546
1265
  constructor(requestData: GamePlayerModels.ServerSetAvatarRequestData, timeout: number);
547
1266
  }
1267
+ /**
1268
+ * Maps the AdminSetAvatar operation to a typed request wrapper.
1269
+ */
548
1270
  class AdminSetAvatarOperationRequest extends SetAvatarOperationRequest {
549
1271
  protected role: RequestRole;
1272
+ /**
1273
+ * Creates a new AdminSetAvatarOperationRequest instance.
1274
+ */
550
1275
  constructor(requestData: GamePlayerModels.AdminSetAvatarRequestData, timeout: number);
551
1276
  }
1277
+ /**
1278
+ * Maps the SetCountryCode operation to a typed request wrapper.
1279
+ */
552
1280
  class SetCountryCodeOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.SetCountryCodeRequestData> {
553
1281
  protected operationCode: string;
554
1282
  protected requestType: RequestType;
555
1283
  protected role: RequestRole;
1284
+ /**
1285
+ * Creates a new SetCountryCodeOperationRequest instance.
1286
+ */
556
1287
  constructor(requestData: GamePlayerModels.SetCountryCodeRequestData, timeout: number);
557
1288
  }
1289
+ /**
1290
+ * Maps the ServerSetCountryCode operation to a typed request wrapper.
1291
+ */
558
1292
  class ServerSetCountryCodeOperationRequest extends SetCountryCodeOperationRequest {
559
1293
  protected role: RequestRole;
1294
+ /**
1295
+ * Creates a new ServerSetCountryCodeOperationRequest instance.
1296
+ */
560
1297
  constructor(requestData: GamePlayerModels.ServerSetCountryCodeRequestData, timeout: number);
561
1298
  }
1299
+ /**
1300
+ * Maps the AdminSetCountryCode operation to a typed request wrapper.
1301
+ */
562
1302
  class AdminSetCountryCodeOperationRequest extends SetCountryCodeOperationRequest {
563
1303
  protected role: RequestRole;
1304
+ /**
1305
+ * Creates a new AdminSetCountryCodeOperationRequest instance.
1306
+ */
564
1307
  constructor(requestData: GamePlayerModels.AdminSetCountryCodeRequestData, timeout: number);
565
1308
  }
1309
+ /**
1310
+ * Maps the SetCustomData operation to a typed request wrapper.
1311
+ */
566
1312
  class SetCustomDataOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.SetCustomDataRequestData> {
567
1313
  protected operationCode: string;
568
1314
  protected requestType: RequestType;
569
1315
  protected role: RequestRole;
1316
+ /**
1317
+ * Creates a new SetCustomDataOperationRequest instance.
1318
+ */
570
1319
  constructor(requestData: GamePlayerModels.SetCustomDataRequestData, timeout: number);
571
1320
  }
1321
+ /**
1322
+ * Maps the ServerSetCustomData operation to a typed request wrapper.
1323
+ */
572
1324
  class ServerSetCustomDataOperationRequest extends SetCustomDataOperationRequest {
573
1325
  protected role: RequestRole;
1326
+ /**
1327
+ * Creates a new ServerSetCustomDataOperationRequest instance.
1328
+ */
574
1329
  constructor(requestData: GamePlayerModels.ServerSetCustomDataRequestData, timeout: number);
575
1330
  }
1331
+ /**
1332
+ * Maps the AdminSetCustomData operation to a typed request wrapper.
1333
+ */
576
1334
  class AdminSetCustomDataOperationRequest extends SetCustomDataOperationRequest {
577
1335
  protected role: RequestRole;
1336
+ /**
1337
+ * Creates a new AdminSetCustomDataOperationRequest instance.
1338
+ */
578
1339
  constructor(requestData: GamePlayerModels.AdminSetCustomDataRequestData, timeout: number);
579
1340
  }
1341
+ /**
1342
+ * Maps the SetDisplayName operation to a typed request wrapper.
1343
+ */
580
1344
  class SetDisplayNameOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.SetDisplayNameRequestData> {
581
1345
  protected operationCode: string;
582
1346
  protected requestType: RequestType;
583
1347
  protected role: RequestRole;
1348
+ /**
1349
+ * Creates a new SetDisplayNameOperationRequest instance.
1350
+ */
584
1351
  constructor(requestData: GamePlayerModels.SetDisplayNameRequestData, timeout: number);
585
1352
  }
1353
+ /**
1354
+ * Maps the ServerSetDisplayName operation to a typed request wrapper.
1355
+ */
586
1356
  class ServerSetDisplayNameOperationRequest extends SetDisplayNameOperationRequest {
587
1357
  protected role: RequestRole;
1358
+ /**
1359
+ * Creates a new ServerSetDisplayNameOperationRequest instance.
1360
+ */
588
1361
  constructor(requestData: GamePlayerModels.ServerSetDisplayNameRequestData, timeout: number);
589
1362
  }
1363
+ /**
1364
+ * Maps the AdminSetDisplayName operation to a typed request wrapper.
1365
+ */
590
1366
  class AdminSetDisplayNameOperationRequest extends SetDisplayNameOperationRequest {
591
1367
  protected role: RequestRole;
1368
+ /**
1369
+ * Creates a new AdminSetDisplayNameOperationRequest instance.
1370
+ */
592
1371
  constructor(requestData: GamePlayerModels.AdminSetDisplayNameRequestData, timeout: number);
593
1372
  }
1373
+ /**
1374
+ * Maps the SetPlayerBan operation to a typed request wrapper.
1375
+ */
594
1376
  class SetPlayerBanOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.SetPlayerBanRequestData> {
595
1377
  protected operationCode: string;
596
1378
  protected requestType: RequestType;
597
1379
  protected role: RequestRole;
1380
+ /**
1381
+ * Creates a new SetPlayerBanOperationRequest instance.
1382
+ */
598
1383
  constructor(requestData: GamePlayerModels.SetPlayerBanRequestData, timeout: number);
599
1384
  }
1385
+ /**
1386
+ * Maps the ServerSetPlayerBan operation to a typed request wrapper.
1387
+ */
600
1388
  class ServerSetPlayerBanOperationRequest extends SetPlayerBanOperationRequest {
601
1389
  protected role: RequestRole;
1390
+ /**
1391
+ * Creates a new ServerSetPlayerBanOperationRequest instance.
1392
+ */
602
1393
  constructor(requestData: GamePlayerModels.ServerSetPlayerBanRequestData, timeout: number);
603
1394
  }
1395
+ /**
1396
+ * Maps the AdminSetPlayerBan operation to a typed request wrapper.
1397
+ */
604
1398
  class AdminSetPlayerBanOperationRequest extends SetPlayerBanOperationRequest {
605
1399
  protected role: RequestRole;
1400
+ /**
1401
+ * Creates a new AdminSetPlayerBanOperationRequest instance.
1402
+ */
606
1403
  constructor(requestData: GamePlayerModels.AdminSetPlayerBanRequestData, timeout: number);
607
1404
  }
1405
+ /**
1406
+ * Maps the ChangePlayerCurrency operation to a typed request wrapper.
1407
+ */
608
1408
  class ChangePlayerCurrencyOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.ChangePlayerCurrencyRequestData> {
609
1409
  protected operationCode: string;
610
1410
  protected requestType: RequestType;
611
1411
  protected role: RequestRole;
1412
+ /**
1413
+ * Creates a new ChangePlayerCurrencyOperationRequest instance.
1414
+ */
612
1415
  constructor(requestData: GamePlayerModels.ChangePlayerCurrencyRequestData, timeout: number);
613
1416
  }
1417
+ /**
1418
+ * Maps the ServerChangePlayerCurrency operation to a typed request wrapper.
1419
+ */
614
1420
  class ServerChangePlayerCurrencyOperationRequest extends ChangePlayerCurrencyOperationRequest {
615
1421
  protected role: RequestRole;
1422
+ /**
1423
+ * Creates a new ServerChangePlayerCurrencyOperationRequest instance.
1424
+ */
616
1425
  constructor(requestData: GamePlayerModels.ServerChangePlayerCurrencyRequestData, timeout: number);
617
1426
  }
1427
+ /**
1428
+ * Maps the AdminChangePlayerCurrency operation to a typed request wrapper.
1429
+ */
618
1430
  class AdminChangePlayerCurrencyOperationRequest extends ChangePlayerCurrencyOperationRequest {
619
1431
  protected role: RequestRole;
1432
+ /**
1433
+ * Creates a new AdminChangePlayerCurrencyOperationRequest instance.
1434
+ */
620
1435
  constructor(requestData: GamePlayerModels.AdminChangePlayerCurrencyRequestData, timeout: number);
621
1436
  }
1437
+ /**
1438
+ * Maps the SetPlayerData operation to a typed request wrapper.
1439
+ */
622
1440
  class SetPlayerDataOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.SetPlayerDataRequestData> {
623
1441
  protected operationCode: string;
624
1442
  protected requestType: RequestType;
625
1443
  protected role: RequestRole;
1444
+ /**
1445
+ * Creates a new SetPlayerDataOperationRequest instance.
1446
+ */
626
1447
  constructor(requestData: GamePlayerModels.SetPlayerDataRequestData, timeout: number);
627
1448
  }
1449
+ /**
1450
+ * Maps the ServerSetPlayerData operation to a typed request wrapper.
1451
+ */
628
1452
  class ServerSetPlayerDataOperationRequest extends SetPlayerDataOperationRequest {
629
1453
  protected role: RequestRole;
1454
+ /**
1455
+ * Creates a new ServerSetPlayerDataOperationRequest instance.
1456
+ */
630
1457
  constructor(requestData: GamePlayerModels.ServerSetPlayerDataRequestData, timeout: number);
631
1458
  }
1459
+ /**
1460
+ * Maps the AdminSetPlayerData operation to a typed request wrapper.
1461
+ */
632
1462
  class AdminSetPlayerDataOperationRequest extends SetPlayerDataOperationRequest {
633
1463
  protected role: RequestRole;
1464
+ /**
1465
+ * Creates a new AdminSetPlayerDataOperationRequest instance.
1466
+ */
634
1467
  constructor(requestData: GamePlayerModels.AdminSetPlayerDataRequestData, timeout: number);
635
1468
  }
1469
+ /**
1470
+ * Maps the ChangePlayerStatistics operation to a typed request wrapper.
1471
+ */
636
1472
  class ChangePlayerStatisticsOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.ChangePlayerStatisticsRequestData> {
637
1473
  protected operationCode: string;
638
1474
  protected requestType: RequestType;
639
1475
  protected role: RequestRole;
1476
+ /**
1477
+ * Creates a new ChangePlayerStatisticsOperationRequest instance.
1478
+ */
640
1479
  constructor(requestData: GamePlayerModels.ChangePlayerStatisticsRequestData, timeout: number);
641
1480
  }
1481
+ /**
1482
+ * Maps the ServerChangePlayerStatistics operation to a typed request wrapper.
1483
+ */
642
1484
  class ServerChangePlayerStatisticsOperationRequest extends ChangePlayerStatisticsOperationRequest {
643
1485
  protected role: RequestRole;
1486
+ /**
1487
+ * Creates a new ServerChangePlayerStatisticsOperationRequest instance.
1488
+ */
644
1489
  constructor(requestData: GamePlayerModels.ServerChangePlayerStatisticsRequestData, timeout: number);
645
1490
  }
1491
+ /**
1492
+ * Maps the AdminChangePlayerStatistics operation to a typed request wrapper.
1493
+ */
646
1494
  class AdminChangePlayerStatisticsOperationRequest extends ChangePlayerStatisticsOperationRequest {
647
1495
  protected role: RequestRole;
1496
+ /**
1497
+ * Creates a new AdminChangePlayerStatisticsOperationRequest instance.
1498
+ */
648
1499
  constructor(requestData: GamePlayerModels.AdminChangePlayerStatisticsRequestData, timeout: number);
649
1500
  }
1501
+ /**
1502
+ * Maps the SetTag operation to a typed request wrapper.
1503
+ */
650
1504
  class SetTagOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.SetTagRequestData> {
651
1505
  protected operationCode: string;
652
1506
  protected requestType: RequestType;
653
1507
  protected role: RequestRole;
1508
+ /**
1509
+ * Creates a new SetTagOperationRequest instance.
1510
+ */
654
1511
  constructor(requestData: GamePlayerModels.SetTagRequestData, timeout: number);
655
1512
  }
1513
+ /**
1514
+ * Maps the ServerSetTag operation to a typed request wrapper.
1515
+ */
656
1516
  class ServerSetTagOperationRequest extends SetTagOperationRequest {
657
1517
  protected role: RequestRole;
1518
+ /**
1519
+ * Creates a new ServerSetTagOperationRequest instance.
1520
+ */
658
1521
  constructor(requestData: GamePlayerModels.ServerSetTagRequestData, timeout: number);
659
1522
  }
1523
+ /**
1524
+ * Maps the AdminSetTag operation to a typed request wrapper.
1525
+ */
660
1526
  class AdminSetTagOperationRequest extends SetTagOperationRequest {
661
1527
  protected role: RequestRole;
1528
+ /**
1529
+ * Creates a new AdminSetTagOperationRequest instance.
1530
+ */
662
1531
  constructor(requestData: GamePlayerModels.AdminSetTagRequestData, timeout: number);
663
1532
  }
1533
+ /**
1534
+ * Maps the GetCurrencyLeaderboard operation to a typed request wrapper.
1535
+ */
664
1536
  class GetCurrencyLeaderboardOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetCurrencyLeaderboardRequestData> {
665
1537
  protected operationCode: string;
666
1538
  protected requestType: RequestType;
667
1539
  protected role: RequestRole;
1540
+ /**
1541
+ * Creates a new GetCurrencyLeaderboardOperationRequest instance.
1542
+ */
668
1543
  constructor(requestData: GamePlayerModels.GetCurrencyLeaderboardRequestData, timeout: number);
669
1544
  }
1545
+ /**
1546
+ * Maps the ServerGetCurrencyLeaderboard operation to a typed request wrapper.
1547
+ */
670
1548
  class ServerGetCurrencyLeaderboardOperationRequest extends GetCurrencyLeaderboardOperationRequest {
671
1549
  protected role: RequestRole;
1550
+ /**
1551
+ * Creates a new ServerGetCurrencyLeaderboardOperationRequest instance.
1552
+ */
672
1553
  constructor(requestData: GamePlayerModels.ServerGetCurrencyLeaderboardRequestData, timeout: number);
673
1554
  }
1555
+ /**
1556
+ * Maps the AdminGetCurrencyLeaderboard operation to a typed request wrapper.
1557
+ */
674
1558
  class AdminGetCurrencyLeaderboardOperationRequest extends GetCurrencyLeaderboardOperationRequest {
675
1559
  protected role: RequestRole;
1560
+ /**
1561
+ * Creates a new AdminGetCurrencyLeaderboardOperationRequest instance.
1562
+ */
676
1563
  constructor(requestData: GamePlayerModels.AdminGetCurrencyLeaderboardRequestData, timeout: number);
677
1564
  }
1565
+ /**
1566
+ * Maps the GetLastLoginLeaderboard operation to a typed request wrapper.
1567
+ */
678
1568
  class GetLastLoginLeaderboardOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetLastLoginLeaderboardRequestData> {
679
1569
  protected operationCode: string;
680
1570
  protected requestType: RequestType;
681
1571
  protected role: RequestRole;
1572
+ /**
1573
+ * Creates a new GetLastLoginLeaderboardOperationRequest instance.
1574
+ */
682
1575
  constructor(requestData: GamePlayerModels.GetLastLoginLeaderboardRequestData, timeout: number);
683
1576
  }
1577
+ /**
1578
+ * Maps the ServerGetLastLoginLeaderboard operation to a typed request wrapper.
1579
+ */
684
1580
  class ServerGetLastLoginLeaderboardOperationRequest extends GetLastLoginLeaderboardOperationRequest {
685
1581
  protected role: RequestRole;
1582
+ /**
1583
+ * Creates a new ServerGetLastLoginLeaderboardOperationRequest instance.
1584
+ */
686
1585
  constructor(requestData: GamePlayerModels.ServerGetLastLoginLeaderboardRequestData, timeout: number);
687
1586
  }
1587
+ /**
1588
+ * Maps the AdminGetLastLoginLeaderboard operation to a typed request wrapper.
1589
+ */
688
1590
  class AdminGetLastLoginLeaderboardOperationRequest extends GetLastLoginLeaderboardOperationRequest {
689
1591
  protected role: RequestRole;
1592
+ /**
1593
+ * Creates a new AdminGetLastLoginLeaderboardOperationRequest instance.
1594
+ */
690
1595
  constructor(requestData: GamePlayerModels.AdminGetLastLoginLeaderboardRequestData, timeout: number);
691
1596
  }
1597
+ /**
1598
+ * Maps the GetCreateLeaderboard operation to a typed request wrapper.
1599
+ */
692
1600
  class GetCreateLeaderboardOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetCreateLeaderboardRequestData> {
693
1601
  protected operationCode: string;
694
1602
  protected requestType: RequestType;
695
1603
  protected role: RequestRole;
1604
+ /**
1605
+ * Creates a new GetCreateLeaderboardOperationRequest instance.
1606
+ */
696
1607
  constructor(requestData: GamePlayerModels.GetCreateLeaderboardRequestData, timeout: number);
697
1608
  }
1609
+ /**
1610
+ * Maps the ServerGetCreateLeaderboard operation to a typed request wrapper.
1611
+ */
698
1612
  class ServerGetCreateLeaderboardOperationRequest extends GetCreateLeaderboardOperationRequest {
699
1613
  protected role: RequestRole;
1614
+ /**
1615
+ * Creates a new ServerGetCreateLeaderboardOperationRequest instance.
1616
+ */
700
1617
  constructor(requestData: GamePlayerModels.ServerGetCreateLeaderboardRequestData, timeout: number);
701
1618
  }
1619
+ /**
1620
+ * Maps the AdminGetCreateLeaderboard operation to a typed request wrapper.
1621
+ */
702
1622
  class AdminGetCreateLeaderboardOperationRequest extends GetCreateLeaderboardOperationRequest {
703
1623
  protected role: RequestRole;
1624
+ /**
1625
+ * Creates a new AdminGetCreateLeaderboardOperationRequest instance.
1626
+ */
704
1627
  constructor(requestData: GamePlayerModels.AdminGetCreateLeaderboardRequestData, timeout: number);
705
1628
  }
1629
+ /**
1630
+ * Maps the GetStatisticsLog operation to a typed request wrapper.
1631
+ */
706
1632
  class GetStatisticsLogOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetStatisticsLogRequestData> {
707
1633
  protected operationCode: string;
708
1634
  protected requestType: RequestType;
709
1635
  protected role: RequestRole;
1636
+ /**
1637
+ * Creates a new GetStatisticsLogOperationRequest instance.
1638
+ */
710
1639
  constructor(requestData: GamePlayerModels.GetStatisticsLogRequestData, timeout: number);
711
1640
  }
1641
+ /**
1642
+ * Maps the ServerGetStatisticsLog operation to a typed request wrapper.
1643
+ */
712
1644
  class ServerGetStatisticsLogOperationRequest extends GetStatisticsLogOperationRequest {
713
1645
  protected role: RequestRole;
1646
+ /**
1647
+ * Creates a new ServerGetStatisticsLogOperationRequest instance.
1648
+ */
714
1649
  constructor(requestData: GamePlayerModels.ServerGetStatisticsLogRequestData, timeout: number);
715
1650
  }
1651
+ /**
1652
+ * Maps the AdminGetStatisticsLog operation to a typed request wrapper.
1653
+ */
716
1654
  class AdminGetStatisticsLogOperationRequest extends GetStatisticsLogOperationRequest {
717
1655
  protected role: RequestRole;
1656
+ /**
1657
+ * Creates a new AdminGetStatisticsLogOperationRequest instance.
1658
+ */
718
1659
  constructor(requestData: GamePlayerModels.AdminGetStatisticsLogRequestData, timeout: number);
719
1660
  }
1661
+ /**
1662
+ * Maps the GetCurrencyLog operation to a typed request wrapper.
1663
+ */
720
1664
  class GetCurrencyLogOperationRequest extends CustomOperationRequestAbstract<GamePlayerModels.GetCurrencyLogRequestData> {
721
1665
  protected operationCode: string;
722
1666
  protected requestType: RequestType;
723
1667
  protected role: RequestRole;
1668
+ /**
1669
+ * Creates a new GetCurrencyLogOperationRequest instance.
1670
+ */
724
1671
  constructor(requestData: GamePlayerModels.GetCurrencyLogRequestData, timeout: number);
725
1672
  }
1673
+ /**
1674
+ * Maps the ServerGetCurrencyLog operation to a typed request wrapper.
1675
+ */
726
1676
  class ServerGetCurrencyLogOperationRequest extends GetCurrencyLogOperationRequest {
727
1677
  protected role: RequestRole;
1678
+ /**
1679
+ * Creates a new ServerGetCurrencyLogOperationRequest instance.
1680
+ */
728
1681
  constructor(requestData: GamePlayerModels.ServerGetCurrencyLogRequestData, timeout: number);
729
1682
  }
1683
+ /**
1684
+ * Maps the AdminGetCurrencyLog operation to a typed request wrapper.
1685
+ */
730
1686
  class AdminGetCurrencyLogOperationRequest extends GetCurrencyLogOperationRequest {
731
1687
  protected role: RequestRole;
1688
+ /**
1689
+ * Creates a new AdminGetCurrencyLogOperationRequest instance.
1690
+ */
732
1691
  constructor(requestData: GamePlayerModels.AdminGetCurrencyLogRequestData, timeout: number);
733
1692
  }
734
1693
  }