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