@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,329 +2,1355 @@ import { Action1 } from "./common/Action1";
2
2
  import { GNHashtable } from "./common/GNData";
3
3
  import { CharacterPlayerModels } from "./entity/models/CharacterPlayerModels";
4
4
  import { CharacterPlayerResponseModels } from "./entity/models/CharacterPlayerResponseModels";
5
+ /**
6
+ * Public client-scoped namespace for the CharacterPlayer domain.
7
+ *
8
+ * Reachable through {@link GNNetwork.characterPlayer} after
9
+ * {@link GNNetwork.init}. Manages the **per-character** profile
10
+ * (a single in-game character) layered above the
11
+ * account-level {@link GNNetwork.gamePlayer} record.
12
+ *
13
+ * Functional groupings (matching {@link OperationCode} prefixes):
14
+ *
15
+ * 1. **Identity & profile** — `getDisplayName`,
16
+ * `setDisplayName`, `getAvatar`, `setAvatar`,
17
+ * `getCharacterInformation`, `getOnlineStatus`,
18
+ * `getTsCreate`, `getTsLastLogin`, `getCharacterBan`.
19
+ * 2. **Custom data / tags / segments** — `getCustomData`,
20
+ * `setCustomData`, `getTag`, `setTag`, `getSegment`,
21
+ * `addSegment`, `removeSegment`, `getCharactersWithTag`,
22
+ * `getCharactersWithSegment`, `getCharactersWithDisplayName`.
23
+ * 3. **Currencies & statistics** — `getPlayerCurrency`,
24
+ * `setPlayerCurrency`, `addPlayerCurrency`,
25
+ * `subtractPlayerCurrency`, `getPlayerStatistics`,
26
+ * `setPlayerStatistics`, `addPlayerStatistics`,
27
+ * `getStatisticsLeaderboard`,
28
+ * `getStatisticsLeaderboardAroundPlayer`,
29
+ * `getFriendStatisticsLeaderboard`,
30
+ * `getFriendStatisticsLeaderboardAroundPlayer`.
31
+ * 4. **Friends (character-level social graph)** —
32
+ * `getPlayerFriend`, `addPlayerFriend`,
33
+ * `acceptPlayerFriend`, `rejectPlayerFriend`,
34
+ * `removePlayerFriend`,
35
+ * `removePlayerFriendRequestSent`, `getOtherPlayerFriend`.
36
+ * Real-time updates arrive through
37
+ * {@link OnCharacterPlayerFriendUpdateEventHandler}.
38
+ * 5. **Groups (character-level group membership)** —
39
+ * `getPlayerGroup`, `createGroup`, `acceptGroupMember`,
40
+ * `rejectGroupMember`, `leaveGroup`, `addGroupMember`,
41
+ * `removeGroupMember`, `cancelInviteGroupMember`. Real-time
42
+ * updates arrive through
43
+ * {@link OnCharacterPlayerGroupUpdateEventHandler}.
44
+ * 6. **Inventory (per-character)** — `getPlayerInventory` and
45
+ * related read-only helpers; mutations live on
46
+ * `GNNetwork.inventory`.
47
+ *
48
+ * Common contract: same as {@link GamePlayerApi} (HTTP /
49
+ * `RequestType.CharacterPlayer` / `RequestRole.Client`,
50
+ * callback + Promise variants per method, sub-namespaces
51
+ * `.server` and `.admin` for elevated callers).
52
+ */
5
53
  export declare class CharacterPlayerApi {
54
+ /** Server-scoped character-player operations for trusted backend callers. */
6
55
  server: ServerCharacterPlayerApi;
56
+ /** Admin-scoped character-player operations for dashboard, GM, or backoffice callers. */
7
57
  admin: AdminCharacterPlayerApi;
58
+ /**
59
+ * Sends the addPlayerFriend operation and returns the typed response via callback.
60
+ */
8
61
  addPlayerFriend(requestData: CharacterPlayerModels.AddPlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
62
+ /**
63
+ * Sends the addPlayerFriend operation and resolves with the typed response.
64
+ */
9
65
  addPlayerFriendAsync(requestData: CharacterPlayerModels.AddPlayerFriendRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse>;
66
+ /**
67
+ * Sends the addSegment operation and returns the typed response via callback.
68
+ */
10
69
  addSegment(requestData: CharacterPlayerModels.AddSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
70
+ /**
71
+ * Sends the addSegment operation and resolves with the typed response.
72
+ */
11
73
  addSegmentAsync(requestData: CharacterPlayerModels.AddSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.AddSegmentOperationResponse>;
74
+ /**
75
+ * Sends the getAvatar operation and returns the typed response via callback.
76
+ */
12
77
  getAvatar(requestData: CharacterPlayerModels.GetAvatarRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
78
+ /**
79
+ * Sends the getAvatar operation and resolves with the typed response.
80
+ */
13
81
  getAvatarAsync(requestData: CharacterPlayerModels.GetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetAvatarOperationResponse>;
82
+ /**
83
+ * Sends the getCatalogId operation and returns the typed response via callback.
84
+ */
14
85
  getCatalogId(requestData: CharacterPlayerModels.GetCatalogIdRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
86
+ /**
87
+ * Sends the getCatalogId operation and resolves with the typed response.
88
+ */
15
89
  getCatalogIdAsync(requestData: CharacterPlayerModels.GetCatalogIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCatalogIdOperationResponse>;
90
+ /**
91
+ * Sends the getCountryCode operation and returns the typed response via callback.
92
+ */
16
93
  getCountryCode(requestData: CharacterPlayerModels.GetCountryCodeRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
94
+ /**
95
+ * Sends the getCountryCode operation and resolves with the typed response.
96
+ */
17
97
  getCountryCodeAsync(requestData: CharacterPlayerModels.GetCountryCodeRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCountryCodeOperationResponse>;
98
+ /**
99
+ * Sends the getCustomData operation and returns the typed response via callback.
100
+ */
18
101
  getCustomData(requestData: CharacterPlayerModels.GetCustomDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
102
+ /**
103
+ * Sends the getCustomData operation and resolves with the typed response.
104
+ */
19
105
  getCustomDataAsync(requestData: CharacterPlayerModels.GetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCustomDataOperationResponse>;
106
+ /**
107
+ * Sends the getDisplayName operation and returns the typed response via callback.
108
+ */
20
109
  getDisplayName(requestData: CharacterPlayerModels.GetDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
110
+ /**
111
+ * Sends the getDisplayName operation and resolves with the typed response.
112
+ */
21
113
  getDisplayNameAsync(requestData: CharacterPlayerModels.GetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetDisplayNameOperationResponse>;
114
+ /**
115
+ * Sends the getFriendStatisticsLeaderboardAroundPlayer operation and returns the typed response via callback.
116
+ */
22
117
  getFriendStatisticsLeaderboardAroundPlayer(requestData: CharacterPlayerModels.GetFriendStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
118
+ /**
119
+ * Sends the getFriendStatisticsLeaderboardAroundPlayer operation and resolves with the typed response.
120
+ */
23
121
  getFriendStatisticsLeaderboardAroundPlayerAsync(requestData: CharacterPlayerModels.GetFriendStatisticsLeaderboardAroundPlayerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>;
122
+ /**
123
+ * Sends the getFriendStatisticsLeaderboard operation and returns the typed response via callback.
124
+ */
24
125
  getFriendStatisticsLeaderboard(requestData: CharacterPlayerModels.GetFriendStatisticsLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
126
+ /**
127
+ * Sends the getFriendStatisticsLeaderboard operation and resolves with the typed response.
128
+ */
25
129
  getFriendStatisticsLeaderboardAsync(requestData: CharacterPlayerModels.GetFriendStatisticsLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>;
130
+ /**
131
+ * Sends the getIpAddressCreate operation and returns the typed response via callback.
132
+ */
26
133
  getIpAddressCreate(requestData: CharacterPlayerModels.GetIpAddressCreateRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
134
+ /**
135
+ * Sends the getIpAddressCreate operation and resolves with the typed response.
136
+ */
27
137
  getIpAddressCreateAsync(requestData: CharacterPlayerModels.GetIpAddressCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse>;
138
+ /**
139
+ * Sends the getOwner operation and returns the typed response via callback.
140
+ */
28
141
  getOwner(requestData: CharacterPlayerModels.GetOwnerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
142
+ /**
143
+ * Sends the getOwner operation and resolves with the typed response.
144
+ */
29
145
  getOwnerAsync(requestData: CharacterPlayerModels.GetOwnerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetOwnerOperationResponse>;
146
+ /**
147
+ * Sends the getPlayerBan operation and returns the typed response via callback.
148
+ */
30
149
  getPlayerBan(requestData: CharacterPlayerModels.GetPlayerBanRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
150
+ /**
151
+ * Sends the getPlayerBan operation and resolves with the typed response.
152
+ */
31
153
  getPlayerBanAsync(requestData: CharacterPlayerModels.GetPlayerBanRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerBanOperationResponse>;
154
+ /**
155
+ * Sends the getPlayerCurrency operation and returns the typed response via callback.
156
+ */
32
157
  getPlayerCurrency(requestData: CharacterPlayerModels.GetPlayerCurrencyRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
158
+ /**
159
+ * Sends the getPlayerCurrency operation and resolves with the typed response.
160
+ */
33
161
  getPlayerCurrencyAsync(requestData: CharacterPlayerModels.GetPlayerCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse>;
162
+ /**
163
+ * Sends the getPlayerData operation and returns the typed response via callback.
164
+ */
34
165
  getPlayerData(requestData: CharacterPlayerModels.GetPlayerDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
166
+ /**
167
+ * Sends the getPlayerData operation and resolves with the typed response.
168
+ */
35
169
  getPlayerDataAsync(requestData: CharacterPlayerModels.GetPlayerDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerDataOperationResponse>;
170
+ /**
171
+ * Sends the getPlayerFriend operation and returns the typed response via callback.
172
+ */
36
173
  getPlayerFriend(requestData: CharacterPlayerModels.GetPlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
174
+ /**
175
+ * Sends the getPlayerFriend operation and resolves with the typed response.
176
+ */
37
177
  getPlayerFriendAsync(requestData: CharacterPlayerModels.GetPlayerFriendRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse>;
178
+ /**
179
+ * Sends the getPlayerGroup operation and returns the typed response via callback.
180
+ */
38
181
  getPlayerGroup(requestData: CharacterPlayerModels.GetPlayerGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
182
+ /**
183
+ * Sends the getPlayerGroup operation and resolves with the typed response.
184
+ */
39
185
  getPlayerGroupAsync(requestData: CharacterPlayerModels.GetPlayerGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse>;
186
+ /**
187
+ * Sends the getPlayerInformation operation and returns the typed response via callback.
188
+ */
40
189
  getPlayerInformation(requestData: CharacterPlayerModels.GetPlayerInformationRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
190
+ /**
191
+ * Sends the getPlayerInformation operation and resolves with the typed response.
192
+ */
41
193
  getPlayerInformationAsync(requestData: CharacterPlayerModels.GetPlayerInformationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse>;
194
+ /**
195
+ * Sends the getPlayerInventory operation and returns the typed response via callback.
196
+ */
42
197
  getPlayerInventory(requestData: CharacterPlayerModels.GetPlayerInventoryRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
198
+ /**
199
+ * Sends the getPlayerInventory operation and resolves with the typed response.
200
+ */
43
201
  getPlayerInventoryAsync(requestData: CharacterPlayerModels.GetPlayerInventoryRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse>;
202
+ /**
203
+ * Sends the getPlayerStatistics operation and returns the typed response via callback.
204
+ */
44
205
  getPlayerStatistics(requestData: CharacterPlayerModels.GetPlayerStatisticsRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
206
+ /**
207
+ * Sends the getPlayerStatistics operation and resolves with the typed response.
208
+ */
45
209
  getPlayerStatisticsAsync(requestData: CharacterPlayerModels.GetPlayerStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse>;
210
+ /**
211
+ * Sends the getPlayersWithDisplayName operation and returns the typed response via callback.
212
+ */
46
213
  getPlayersWithDisplayName(requestData: CharacterPlayerModels.GetPlayersWithDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
214
+ /**
215
+ * Sends the getPlayersWithDisplayName operation and resolves with the typed response.
216
+ */
47
217
  getPlayersWithDisplayNameAsync(requestData: CharacterPlayerModels.GetPlayersWithDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>;
218
+ /**
219
+ * Sends the getPlayersWithSegment operation and returns the typed response via callback.
220
+ */
48
221
  getPlayersWithSegment(requestData: CharacterPlayerModels.GetPlayersWithSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
222
+ /**
223
+ * Sends the getPlayersWithSegment operation and resolves with the typed response.
224
+ */
49
225
  getPlayersWithSegmentAsync(requestData: CharacterPlayerModels.GetPlayersWithSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>;
226
+ /**
227
+ * Sends the getPlayersWithTag operation and returns the typed response via callback.
228
+ */
50
229
  getPlayersWithTag(requestData: CharacterPlayerModels.GetPlayersWithTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
230
+ /**
231
+ * Sends the getPlayersWithTag operation and resolves with the typed response.
232
+ */
51
233
  getPlayersWithTagAsync(requestData: CharacterPlayerModels.GetPlayersWithTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse>;
234
+ /**
235
+ * Sends the getRemoveStatus operation and returns the typed response via callback.
236
+ */
52
237
  getRemoveStatus(requestData: CharacterPlayerModels.GetRemoveStatusRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
238
+ /**
239
+ * Sends the getRemoveStatus operation and resolves with the typed response.
240
+ */
53
241
  getRemoveStatusAsync(requestData: CharacterPlayerModels.GetRemoveStatusRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse>;
242
+ /**
243
+ * Sends the getSegment operation and returns the typed response via callback.
244
+ */
54
245
  getSegment(requestData: CharacterPlayerModels.GetSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
246
+ /**
247
+ * Sends the getSegment operation and resolves with the typed response.
248
+ */
55
249
  getSegmentAsync(requestData: CharacterPlayerModels.GetSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetSegmentOperationResponse>;
250
+ /**
251
+ * Sends the getStatisticsLeaderboardAroundPlayer operation and returns the typed response via callback.
252
+ */
56
253
  getStatisticsLeaderboardAroundPlayer(requestData: CharacterPlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
254
+ /**
255
+ * Sends the getStatisticsLeaderboardAroundPlayer operation and resolves with the typed response.
256
+ */
57
257
  getStatisticsLeaderboardAroundPlayerAsync(requestData: CharacterPlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>;
258
+ /**
259
+ * Sends the getStatisticsLeaderboard operation and returns the typed response via callback.
260
+ */
58
261
  getStatisticsLeaderboard(requestData: CharacterPlayerModels.GetStatisticsLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
262
+ /**
263
+ * Sends the getStatisticsLeaderboard operation and resolves with the typed response.
264
+ */
59
265
  getStatisticsLeaderboardAsync(requestData: CharacterPlayerModels.GetStatisticsLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>;
266
+ /**
267
+ * Sends the getTag operation and returns the typed response via callback.
268
+ */
60
269
  getTag(requestData: CharacterPlayerModels.GetTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
270
+ /**
271
+ * Sends the getTag operation and resolves with the typed response.
272
+ */
61
273
  getTagAsync(requestData: CharacterPlayerModels.GetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetTagOperationResponse>;
274
+ /**
275
+ * Sends the getTsCreate operation and returns the typed response via callback.
276
+ */
62
277
  getTsCreate(requestData: CharacterPlayerModels.GetTsCreateRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
278
+ /**
279
+ * Sends the getTsCreate operation and resolves with the typed response.
280
+ */
63
281
  getTsCreateAsync(requestData: CharacterPlayerModels.GetTsCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetTsCreateOperationResponse>;
282
+ /**
283
+ * Sends the getTsLastLogin operation and returns the typed response via callback.
284
+ */
64
285
  getTsLastLogin(requestData: CharacterPlayerModels.GetTsLastLoginRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
286
+ /**
287
+ * Sends the getTsLastLogin operation and resolves with the typed response.
288
+ */
65
289
  getTsLastLoginAsync(requestData: CharacterPlayerModels.GetTsLastLoginRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse>;
290
+ /**
291
+ * Sends the createGroup operation and returns the typed response via callback.
292
+ */
66
293
  createGroup(requestData: CharacterPlayerModels.CreateGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.CreateGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
294
+ /**
295
+ * Sends the createGroup operation and resolves with the typed response.
296
+ */
67
297
  createGroupAsync(requestData: CharacterPlayerModels.CreateGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.CreateGroupOperationResponse>;
298
+ /**
299
+ * Sends the createPlayerItem operation and returns the typed response via callback.
300
+ */
68
301
  createPlayerItem(requestData: CharacterPlayerModels.CreatePlayerItemRequestData, onResponse?: Action1<CharacterPlayerResponseModels.CreatePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
302
+ /**
303
+ * Sends the createPlayerItem operation and resolves with the typed response.
304
+ */
69
305
  createPlayerItemAsync(requestData: CharacterPlayerModels.CreatePlayerItemRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.CreatePlayerItemOperationResponse>;
306
+ /**
307
+ * Sends the joinGroup operation and returns the typed response via callback.
308
+ */
70
309
  joinGroup(requestData: CharacterPlayerModels.JoinGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.JoinGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
310
+ /**
311
+ * Sends the joinGroup operation and resolves with the typed response.
312
+ */
71
313
  joinGroupAsync(requestData: CharacterPlayerModels.JoinGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.JoinGroupOperationResponse>;
314
+ /**
315
+ * Sends the leaveGroup operation and returns the typed response via callback.
316
+ */
72
317
  leaveGroup(requestData: CharacterPlayerModels.LeaveGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.LeaveGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
318
+ /**
319
+ * Sends the leaveGroup operation and resolves with the typed response.
320
+ */
73
321
  leaveGroupAsync(requestData: CharacterPlayerModels.LeaveGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.LeaveGroupOperationResponse>;
322
+ /**
323
+ * Sends the removePlayerFriend operation and returns the typed response via callback.
324
+ */
74
325
  removePlayerFriend(requestData: CharacterPlayerModels.RemovePlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
326
+ /**
327
+ * Sends the removePlayerFriend operation and resolves with the typed response.
328
+ */
75
329
  removePlayerFriendAsync(requestData: CharacterPlayerModels.RemovePlayerFriendRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse>;
330
+ /**
331
+ * Sends the removePlayerItem operation and returns the typed response via callback.
332
+ */
76
333
  removePlayerItem(requestData: CharacterPlayerModels.RemovePlayerItemRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
334
+ /**
335
+ * Sends the removePlayerItem operation and resolves with the typed response.
336
+ */
77
337
  removePlayerItemAsync(requestData: CharacterPlayerModels.RemovePlayerItemRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse>;
338
+ /**
339
+ * Sends the removeSegment operation and returns the typed response via callback.
340
+ */
78
341
  removeSegment(requestData: CharacterPlayerModels.RemoveSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
342
+ /**
343
+ * Sends the removeSegment operation and resolves with the typed response.
344
+ */
79
345
  removeSegmentAsync(requestData: CharacterPlayerModels.RemoveSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.RemoveSegmentOperationResponse>;
346
+ /**
347
+ * Sends the removeTag operation and returns the typed response via callback.
348
+ */
80
349
  removeTag(requestData: CharacterPlayerModels.RemoveTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
350
+ /**
351
+ * Sends the removeTag operation and resolves with the typed response.
352
+ */
81
353
  removeTagAsync(requestData: CharacterPlayerModels.RemoveTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.RemoveTagOperationResponse>;
354
+ /**
355
+ * Sends the setAvatar operation and returns the typed response via callback.
356
+ */
82
357
  setAvatar(requestData: CharacterPlayerModels.SetAvatarRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
358
+ /**
359
+ * Sends the setAvatar operation and resolves with the typed response.
360
+ */
83
361
  setAvatarAsync(requestData: CharacterPlayerModels.SetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetAvatarOperationResponse>;
362
+ /**
363
+ * Sends the setCountryCode operation and returns the typed response via callback.
364
+ */
84
365
  setCountryCode(requestData: CharacterPlayerModels.SetCountryCodeRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
366
+ /**
367
+ * Sends the setCountryCode operation and resolves with the typed response.
368
+ */
85
369
  setCountryCodeAsync(requestData: CharacterPlayerModels.SetCountryCodeRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetCountryCodeOperationResponse>;
370
+ /**
371
+ * Sends the setCustomData operation and returns the typed response via callback.
372
+ */
86
373
  setCustomData(requestData: CharacterPlayerModels.SetCustomDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
374
+ /**
375
+ * Sends the setCustomData operation and resolves with the typed response.
376
+ */
87
377
  setCustomDataAsync(requestData: CharacterPlayerModels.SetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetCustomDataOperationResponse>;
378
+ /**
379
+ * Sends the setDisplayName operation and returns the typed response via callback.
380
+ */
88
381
  setDisplayName(requestData: CharacterPlayerModels.SetDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
382
+ /**
383
+ * Sends the setDisplayName operation and resolves with the typed response.
384
+ */
89
385
  setDisplayNameAsync(requestData: CharacterPlayerModels.SetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetDisplayNameOperationResponse>;
386
+ /**
387
+ * Sends the setOwner operation and returns the typed response via callback.
388
+ */
90
389
  setOwner(requestData: CharacterPlayerModels.SetOwnerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
390
+ /**
391
+ * Sends the setOwner operation and resolves with the typed response.
392
+ */
91
393
  setOwnerAsync(requestData: CharacterPlayerModels.SetOwnerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetOwnerOperationResponse>;
394
+ /**
395
+ * Sends the setPlayerBan operation and returns the typed response via callback.
396
+ */
92
397
  setPlayerBan(requestData: CharacterPlayerModels.SetPlayerBanRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
398
+ /**
399
+ * Sends the setPlayerBan operation and resolves with the typed response.
400
+ */
93
401
  setPlayerBanAsync(requestData: CharacterPlayerModels.SetPlayerBanRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetPlayerBanOperationResponse>;
402
+ /**
403
+ * Sends the changePlayerCurrency operation and returns the typed response via callback.
404
+ */
94
405
  changePlayerCurrency(requestData: CharacterPlayerModels.ChangePlayerCurrencyRequestData, onResponse?: Action1<CharacterPlayerResponseModels.ChangePlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
406
+ /**
407
+ * Sends the changePlayerCurrency operation and resolves with the typed response.
408
+ */
95
409
  changePlayerCurrencyAsync(requestData: CharacterPlayerModels.ChangePlayerCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.ChangePlayerCurrencyOperationResponse>;
410
+ /**
411
+ * Sends the setPlayerData operation and returns the typed response via callback.
412
+ */
96
413
  setPlayerData(requestData: CharacterPlayerModels.SetPlayerDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
414
+ /**
415
+ * Sends the setPlayerData operation and resolves with the typed response.
416
+ */
97
417
  setPlayerDataAsync(requestData: CharacterPlayerModels.SetPlayerDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetPlayerDataOperationResponse>;
418
+ /**
419
+ * Sends the changePlayerStatistics operation and returns the typed response via callback.
420
+ */
98
421
  changePlayerStatistics(requestData: CharacterPlayerModels.ChangePlayerStatisticsRequestData, onResponse?: Action1<CharacterPlayerResponseModels.ChangePlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
422
+ /**
423
+ * Sends the changePlayerStatistics operation and resolves with the typed response.
424
+ */
99
425
  changePlayerStatisticsAsync(requestData: CharacterPlayerModels.ChangePlayerStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.ChangePlayerStatisticsOperationResponse>;
426
+ /**
427
+ * Sends the setRemoveStatus operation and returns the typed response via callback.
428
+ */
100
429
  setRemoveStatus(requestData: CharacterPlayerModels.SetRemoveStatusRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
430
+ /**
431
+ * Sends the setRemoveStatus operation and resolves with the typed response.
432
+ */
101
433
  setRemoveStatusAsync(requestData: CharacterPlayerModels.SetRemoveStatusRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse>;
434
+ /**
435
+ * Sends the setTag operation and returns the typed response via callback.
436
+ */
102
437
  setTag(requestData: CharacterPlayerModels.SetTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
438
+ /**
439
+ * Sends the setTag operation and resolves with the typed response.
440
+ */
103
441
  setTagAsync(requestData: CharacterPlayerModels.SetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetTagOperationResponse>;
442
+ /**
443
+ * Sends the getCurrencyLeaderboard operation and returns the typed response via callback.
444
+ */
104
445
  getCurrencyLeaderboard(requestData: CharacterPlayerModels.GetCurrencyLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
446
+ /**
447
+ * Sends the getCurrencyLeaderboard operation and resolves with the typed response.
448
+ */
105
449
  getCurrencyLeaderboardAsync(requestData: CharacterPlayerModels.GetCurrencyLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>;
450
+ /**
451
+ * Sends the getCreateLeaderboard operation and returns the typed response via callback.
452
+ */
106
453
  getCreateLeaderboard(requestData: CharacterPlayerModels.GetCreateLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
454
+ /**
455
+ * Sends the getCreateLeaderboard operation and resolves with the typed response.
456
+ */
107
457
  getCreateLeaderboardAsync(requestData: CharacterPlayerModels.GetCreateLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse>;
458
+ /**
459
+ * Sends the getLastLoginLeaderboard operation and returns the typed response via callback.
460
+ */
108
461
  getLastLoginLeaderboard(requestData: CharacterPlayerModels.GetLastLoginLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
462
+ /**
463
+ * Sends the getLastLoginLeaderboard operation and resolves with the typed response.
464
+ */
109
465
  getLastLoginLeaderboardAsync(requestData: CharacterPlayerModels.GetLastLoginLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse>;
466
+ /**
467
+ * Sends the getStatisticsLog operation and returns the typed response via callback.
468
+ */
110
469
  getStatisticsLog(requestData: CharacterPlayerModels.GetStatisticsLogRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
470
+ /**
471
+ * Sends the getStatisticsLog operation and resolves with the typed response.
472
+ */
111
473
  getStatisticsLogAsync(requestData: CharacterPlayerModels.GetStatisticsLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetStatisticsLogOperationResponse>;
474
+ /**
475
+ * Sends the getCurrencyLog operation and returns the typed response via callback.
476
+ */
112
477
  getCurrencyLog(requestData: CharacterPlayerModels.GetCurrencyLogRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCurrencyLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
478
+ /**
479
+ * Sends the getCurrencyLog operation and resolves with the typed response.
480
+ */
113
481
  getCurrencyLogAsync(requestData: CharacterPlayerModels.GetCurrencyLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCurrencyLogOperationResponse>;
114
482
  }
483
+ /**
484
+ * Server-scoped CharacterPlayer namespace, reachable through
485
+ * `GNNetwork.characterPlayer.server`.
486
+ *
487
+ * Mirrors every method on {@link CharacterPlayerApi} but uses
488
+ * the `Server*RequestData` DTO variants. The server flavour
489
+ * accepts an explicit `characterId` (and usually `userId`) so a
490
+ * trusted backend can act on behalf of any character without
491
+ * holding the player's auth token. Always pass a valid
492
+ * server-side `secretKey`.
493
+ */
115
494
  export declare class ServerCharacterPlayerApi {
495
+ /**
496
+ * Sends the addPlayerFriend operation and returns the typed response via callback.
497
+ */
116
498
  addPlayerFriend(requestData: CharacterPlayerModels.ServerAddPlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
499
+ /**
500
+ * Sends the addPlayerFriend operation and resolves with the typed response.
501
+ */
117
502
  addPlayerFriendAsync(requestData: CharacterPlayerModels.ServerAddPlayerFriendRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse>;
503
+ /**
504
+ * Sends the addSegment operation and returns the typed response via callback.
505
+ */
118
506
  addSegment(requestData: CharacterPlayerModels.ServerAddSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
507
+ /**
508
+ * Sends the addSegment operation and resolves with the typed response.
509
+ */
119
510
  addSegmentAsync(requestData: CharacterPlayerModels.ServerAddSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.AddSegmentOperationResponse>;
511
+ /**
512
+ * Sends the getAvatar operation and returns the typed response via callback.
513
+ */
120
514
  getAvatar(requestData: CharacterPlayerModels.ServerGetAvatarRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
515
+ /**
516
+ * Sends the getAvatar operation and resolves with the typed response.
517
+ */
121
518
  getAvatarAsync(requestData: CharacterPlayerModels.ServerGetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetAvatarOperationResponse>;
519
+ /**
520
+ * Sends the getCatalogId operation and returns the typed response via callback.
521
+ */
122
522
  getCatalogId(requestData: CharacterPlayerModels.ServerGetCatalogIdRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
523
+ /**
524
+ * Sends the getCatalogId operation and resolves with the typed response.
525
+ */
123
526
  getCatalogIdAsync(requestData: CharacterPlayerModels.ServerGetCatalogIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCatalogIdOperationResponse>;
527
+ /**
528
+ * Sends the getCountryCode operation and returns the typed response via callback.
529
+ */
124
530
  getCountryCode(requestData: CharacterPlayerModels.ServerGetCountryCodeRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
531
+ /**
532
+ * Sends the getCountryCode operation and resolves with the typed response.
533
+ */
125
534
  getCountryCodeAsync(requestData: CharacterPlayerModels.ServerGetCountryCodeRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCountryCodeOperationResponse>;
535
+ /**
536
+ * Sends the getCustomData operation and returns the typed response via callback.
537
+ */
126
538
  getCustomData(requestData: CharacterPlayerModels.ServerGetCustomDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
539
+ /**
540
+ * Sends the getCustomData operation and resolves with the typed response.
541
+ */
127
542
  getCustomDataAsync(requestData: CharacterPlayerModels.ServerGetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCustomDataOperationResponse>;
543
+ /**
544
+ * Sends the getDisplayName operation and returns the typed response via callback.
545
+ */
128
546
  getDisplayName(requestData: CharacterPlayerModels.ServerGetDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
547
+ /**
548
+ * Sends the getDisplayName operation and resolves with the typed response.
549
+ */
129
550
  getDisplayNameAsync(requestData: CharacterPlayerModels.ServerGetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetDisplayNameOperationResponse>;
551
+ /**
552
+ * Sends the getFriendStatisticsLeaderboardAroundPlayer operation and returns the typed response via callback.
553
+ */
130
554
  getFriendStatisticsLeaderboardAroundPlayer(requestData: CharacterPlayerModels.ServerGetFriendStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
555
+ /**
556
+ * Sends the getFriendStatisticsLeaderboardAroundPlayer operation and resolves with the typed response.
557
+ */
131
558
  getFriendStatisticsLeaderboardAroundPlayerAsync(requestData: CharacterPlayerModels.ServerGetFriendStatisticsLeaderboardAroundPlayerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>;
559
+ /**
560
+ * Sends the getFriendStatisticsLeaderboard operation and returns the typed response via callback.
561
+ */
132
562
  getFriendStatisticsLeaderboard(requestData: CharacterPlayerModels.ServerGetFriendStatisticsLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
563
+ /**
564
+ * Sends the getFriendStatisticsLeaderboard operation and resolves with the typed response.
565
+ */
133
566
  getFriendStatisticsLeaderboardAsync(requestData: CharacterPlayerModels.ServerGetFriendStatisticsLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>;
567
+ /**
568
+ * Sends the getIpAddressCreate operation and returns the typed response via callback.
569
+ */
134
570
  getIpAddressCreate(requestData: CharacterPlayerModels.ServerGetIpAddressCreateRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
571
+ /**
572
+ * Sends the getIpAddressCreate operation and resolves with the typed response.
573
+ */
135
574
  getIpAddressCreateAsync(requestData: CharacterPlayerModels.ServerGetIpAddressCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse>;
575
+ /**
576
+ * Sends the getOwner operation and returns the typed response via callback.
577
+ */
136
578
  getOwner(requestData: CharacterPlayerModels.ServerGetOwnerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
579
+ /**
580
+ * Sends the getOwner operation and resolves with the typed response.
581
+ */
137
582
  getOwnerAsync(requestData: CharacterPlayerModels.ServerGetOwnerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetOwnerOperationResponse>;
583
+ /**
584
+ * Sends the getPlayerBan operation and returns the typed response via callback.
585
+ */
138
586
  getPlayerBan(requestData: CharacterPlayerModels.ServerGetPlayerBanRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
587
+ /**
588
+ * Sends the getPlayerBan operation and resolves with the typed response.
589
+ */
139
590
  getPlayerBanAsync(requestData: CharacterPlayerModels.ServerGetPlayerBanRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerBanOperationResponse>;
591
+ /**
592
+ * Sends the getPlayerCurrency operation and returns the typed response via callback.
593
+ */
140
594
  getPlayerCurrency(requestData: CharacterPlayerModels.ServerGetPlayerCurrencyRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
595
+ /**
596
+ * Sends the getPlayerCurrency operation and resolves with the typed response.
597
+ */
141
598
  getPlayerCurrencyAsync(requestData: CharacterPlayerModels.ServerGetPlayerCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse>;
599
+ /**
600
+ * Sends the getPlayerData operation and returns the typed response via callback.
601
+ */
142
602
  getPlayerData(requestData: CharacterPlayerModels.ServerGetPlayerDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
603
+ /**
604
+ * Sends the getPlayerData operation and resolves with the typed response.
605
+ */
143
606
  getPlayerDataAsync(requestData: CharacterPlayerModels.ServerGetPlayerDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerDataOperationResponse>;
607
+ /**
608
+ * Sends the getPlayerFriend operation and returns the typed response via callback.
609
+ */
144
610
  getPlayerFriend(requestData: CharacterPlayerModels.ServerGetPlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
611
+ /**
612
+ * Sends the getPlayerFriend operation and resolves with the typed response.
613
+ */
145
614
  getPlayerFriendAsync(requestData: CharacterPlayerModels.ServerGetPlayerFriendRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse>;
615
+ /**
616
+ * Sends the getPlayerGroup operation and returns the typed response via callback.
617
+ */
146
618
  getPlayerGroup(requestData: CharacterPlayerModels.ServerGetPlayerGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
619
+ /**
620
+ * Sends the getPlayerGroup operation and resolves with the typed response.
621
+ */
147
622
  getPlayerGroupAsync(requestData: CharacterPlayerModels.ServerGetPlayerGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse>;
623
+ /**
624
+ * Sends the getPlayerInformation operation and returns the typed response via callback.
625
+ */
148
626
  getPlayerInformation(requestData: CharacterPlayerModels.ServerGetPlayerInformationRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
627
+ /**
628
+ * Sends the getPlayerInformation operation and resolves with the typed response.
629
+ */
149
630
  getPlayerInformationAsync(requestData: CharacterPlayerModels.ServerGetPlayerInformationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse>;
631
+ /**
632
+ * Sends the getPlayerInventory operation and returns the typed response via callback.
633
+ */
150
634
  getPlayerInventory(requestData: CharacterPlayerModels.ServerGetPlayerInventoryRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
635
+ /**
636
+ * Sends the getPlayerInventory operation and resolves with the typed response.
637
+ */
151
638
  getPlayerInventoryAsync(requestData: CharacterPlayerModels.ServerGetPlayerInventoryRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse>;
639
+ /**
640
+ * Sends the getPlayerStatistics operation and returns the typed response via callback.
641
+ */
152
642
  getPlayerStatistics(requestData: CharacterPlayerModels.ServerGetPlayerStatisticsRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
643
+ /**
644
+ * Sends the getPlayerStatistics operation and resolves with the typed response.
645
+ */
153
646
  getPlayerStatisticsAsync(requestData: CharacterPlayerModels.ServerGetPlayerStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse>;
647
+ /**
648
+ * Sends the getPlayersWithDisplayName operation and returns the typed response via callback.
649
+ */
154
650
  getPlayersWithDisplayName(requestData: CharacterPlayerModels.ServerGetPlayersWithDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
651
+ /**
652
+ * Sends the getPlayersWithDisplayName operation and resolves with the typed response.
653
+ */
155
654
  getPlayersWithDisplayNameAsync(requestData: CharacterPlayerModels.ServerGetPlayersWithDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>;
655
+ /**
656
+ * Sends the getPlayersWithSegment operation and returns the typed response via callback.
657
+ */
156
658
  getPlayersWithSegment(requestData: CharacterPlayerModels.ServerGetPlayersWithSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
659
+ /**
660
+ * Sends the getPlayersWithSegment operation and resolves with the typed response.
661
+ */
157
662
  getPlayersWithSegmentAsync(requestData: CharacterPlayerModels.ServerGetPlayersWithSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>;
663
+ /**
664
+ * Sends the getPlayersWithTag operation and returns the typed response via callback.
665
+ */
158
666
  getPlayersWithTag(requestData: CharacterPlayerModels.ServerGetPlayersWithTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
667
+ /**
668
+ * Sends the getPlayersWithTag operation and resolves with the typed response.
669
+ */
159
670
  getPlayersWithTagAsync(requestData: CharacterPlayerModels.ServerGetPlayersWithTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse>;
671
+ /**
672
+ * Sends the getRemoveStatus operation and returns the typed response via callback.
673
+ */
160
674
  getRemoveStatus(requestData: CharacterPlayerModels.ServerGetRemoveStatusRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
675
+ /**
676
+ * Sends the getRemoveStatus operation and resolves with the typed response.
677
+ */
161
678
  getRemoveStatusAsync(requestData: CharacterPlayerModels.ServerGetRemoveStatusRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse>;
679
+ /**
680
+ * Sends the getSegment operation and returns the typed response via callback.
681
+ */
162
682
  getSegment(requestData: CharacterPlayerModels.ServerGetSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
683
+ /**
684
+ * Sends the getSegment operation and resolves with the typed response.
685
+ */
163
686
  getSegmentAsync(requestData: CharacterPlayerModels.ServerGetSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetSegmentOperationResponse>;
687
+ /**
688
+ * Sends the getStatisticsLeaderboardAroundPlayer operation and returns the typed response via callback.
689
+ */
164
690
  getStatisticsLeaderboardAroundPlayer(requestData: CharacterPlayerModels.ServerGetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
691
+ /**
692
+ * Sends the getStatisticsLeaderboardAroundPlayer operation and resolves with the typed response.
693
+ */
165
694
  getStatisticsLeaderboardAroundPlayerAsync(requestData: CharacterPlayerModels.ServerGetStatisticsLeaderboardAroundPlayerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>;
695
+ /**
696
+ * Sends the getStatisticsLeaderboard operation and returns the typed response via callback.
697
+ */
166
698
  getStatisticsLeaderboard(requestData: CharacterPlayerModels.ServerGetStatisticsLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
699
+ /**
700
+ * Sends the getStatisticsLeaderboard operation and resolves with the typed response.
701
+ */
167
702
  getStatisticsLeaderboardAsync(requestData: CharacterPlayerModels.ServerGetStatisticsLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>;
703
+ /**
704
+ * Sends the getTag operation and returns the typed response via callback.
705
+ */
168
706
  getTag(requestData: CharacterPlayerModels.ServerGetTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
707
+ /**
708
+ * Sends the getTag operation and resolves with the typed response.
709
+ */
169
710
  getTagAsync(requestData: CharacterPlayerModels.ServerGetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetTagOperationResponse>;
711
+ /**
712
+ * Sends the getTsCreate operation and returns the typed response via callback.
713
+ */
170
714
  getTsCreate(requestData: CharacterPlayerModels.ServerGetTsCreateRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
715
+ /**
716
+ * Sends the getTsCreate operation and resolves with the typed response.
717
+ */
171
718
  getTsCreateAsync(requestData: CharacterPlayerModels.ServerGetTsCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetTsCreateOperationResponse>;
719
+ /**
720
+ * Sends the getTsLastLogin operation and returns the typed response via callback.
721
+ */
172
722
  getTsLastLogin(requestData: CharacterPlayerModels.ServerGetTsLastLoginRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
723
+ /**
724
+ * Sends the getTsLastLogin operation and resolves with the typed response.
725
+ */
173
726
  getTsLastLoginAsync(requestData: CharacterPlayerModels.ServerGetTsLastLoginRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse>;
727
+ /**
728
+ * Sends the createGroup operation and returns the typed response via callback.
729
+ */
174
730
  createGroup(requestData: CharacterPlayerModels.ServerCreateGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.CreateGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
731
+ /**
732
+ * Sends the createGroup operation and resolves with the typed response.
733
+ */
175
734
  createGroupAsync(requestData: CharacterPlayerModels.ServerCreateGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.CreateGroupOperationResponse>;
735
+ /**
736
+ * Sends the createPlayerItem operation and returns the typed response via callback.
737
+ */
176
738
  createPlayerItem(requestData: CharacterPlayerModels.ServerCreatePlayerItemRequestData, onResponse?: Action1<CharacterPlayerResponseModels.CreatePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
739
+ /**
740
+ * Sends the createPlayerItem operation and resolves with the typed response.
741
+ */
177
742
  createPlayerItemAsync(requestData: CharacterPlayerModels.ServerCreatePlayerItemRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.CreatePlayerItemOperationResponse>;
743
+ /**
744
+ * Sends the joinGroup operation and returns the typed response via callback.
745
+ */
178
746
  joinGroup(requestData: CharacterPlayerModels.ServerJoinGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.JoinGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
747
+ /**
748
+ * Sends the joinGroup operation and resolves with the typed response.
749
+ */
179
750
  joinGroupAsync(requestData: CharacterPlayerModels.ServerJoinGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.JoinGroupOperationResponse>;
751
+ /**
752
+ * Sends the leaveGroup operation and returns the typed response via callback.
753
+ */
180
754
  leaveGroup(requestData: CharacterPlayerModels.ServerLeaveGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.LeaveGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
755
+ /**
756
+ * Sends the leaveGroup operation and resolves with the typed response.
757
+ */
181
758
  leaveGroupAsync(requestData: CharacterPlayerModels.ServerLeaveGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.LeaveGroupOperationResponse>;
759
+ /**
760
+ * Sends the removePlayerFriend operation and returns the typed response via callback.
761
+ */
182
762
  removePlayerFriend(requestData: CharacterPlayerModels.ServerRemovePlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
763
+ /**
764
+ * Sends the removePlayerFriend operation and resolves with the typed response.
765
+ */
183
766
  removePlayerFriendAsync(requestData: CharacterPlayerModels.ServerRemovePlayerFriendRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse>;
767
+ /**
768
+ * Sends the removePlayerItem operation and returns the typed response via callback.
769
+ */
184
770
  removePlayerItem(requestData: CharacterPlayerModels.ServerRemovePlayerItemRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
771
+ /**
772
+ * Sends the removePlayerItem operation and resolves with the typed response.
773
+ */
185
774
  removePlayerItemAsync(requestData: CharacterPlayerModels.ServerRemovePlayerItemRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse>;
775
+ /**
776
+ * Sends the removeSegment operation and returns the typed response via callback.
777
+ */
186
778
  removeSegment(requestData: CharacterPlayerModels.ServerRemoveSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
779
+ /**
780
+ * Sends the removeSegment operation and resolves with the typed response.
781
+ */
187
782
  removeSegmentAsync(requestData: CharacterPlayerModels.ServerRemoveSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.RemoveSegmentOperationResponse>;
783
+ /**
784
+ * Sends the removeTag operation and returns the typed response via callback.
785
+ */
188
786
  removeTag(requestData: CharacterPlayerModels.ServerRemoveTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
787
+ /**
788
+ * Sends the removeTag operation and resolves with the typed response.
789
+ */
189
790
  removeTagAsync(requestData: CharacterPlayerModels.ServerRemoveTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.RemoveTagOperationResponse>;
791
+ /**
792
+ * Sends the setAvatar operation and returns the typed response via callback.
793
+ */
190
794
  setAvatar(requestData: CharacterPlayerModels.ServerSetAvatarRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
795
+ /**
796
+ * Sends the setAvatar operation and resolves with the typed response.
797
+ */
191
798
  setAvatarAsync(requestData: CharacterPlayerModels.ServerSetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetAvatarOperationResponse>;
799
+ /**
800
+ * Sends the setCountryCode operation and returns the typed response via callback.
801
+ */
192
802
  setCountryCode(requestData: CharacterPlayerModels.ServerSetCountryCodeRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
803
+ /**
804
+ * Sends the setCountryCode operation and resolves with the typed response.
805
+ */
193
806
  setCountryCodeAsync(requestData: CharacterPlayerModels.ServerSetCountryCodeRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetCountryCodeOperationResponse>;
807
+ /**
808
+ * Sends the setCustomData operation and returns the typed response via callback.
809
+ */
194
810
  setCustomData(requestData: CharacterPlayerModels.ServerSetCustomDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
811
+ /**
812
+ * Sends the setCustomData operation and resolves with the typed response.
813
+ */
195
814
  setCustomDataAsync(requestData: CharacterPlayerModels.ServerSetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetCustomDataOperationResponse>;
815
+ /**
816
+ * Sends the setDisplayName operation and returns the typed response via callback.
817
+ */
196
818
  setDisplayName(requestData: CharacterPlayerModels.ServerSetDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
819
+ /**
820
+ * Sends the setDisplayName operation and resolves with the typed response.
821
+ */
197
822
  setDisplayNameAsync(requestData: CharacterPlayerModels.ServerSetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetDisplayNameOperationResponse>;
823
+ /**
824
+ * Sends the setOwner operation and returns the typed response via callback.
825
+ */
198
826
  setOwner(requestData: CharacterPlayerModels.ServerSetOwnerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
827
+ /**
828
+ * Sends the setOwner operation and resolves with the typed response.
829
+ */
199
830
  setOwnerAsync(requestData: CharacterPlayerModels.ServerSetOwnerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetOwnerOperationResponse>;
831
+ /**
832
+ * Sends the setPlayerBan operation and returns the typed response via callback.
833
+ */
200
834
  setPlayerBan(requestData: CharacterPlayerModels.ServerSetPlayerBanRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
835
+ /**
836
+ * Sends the setPlayerBan operation and resolves with the typed response.
837
+ */
201
838
  setPlayerBanAsync(requestData: CharacterPlayerModels.ServerSetPlayerBanRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetPlayerBanOperationResponse>;
839
+ /**
840
+ * Sends the changePlayerCurrency operation and returns the typed response via callback.
841
+ */
202
842
  changePlayerCurrency(requestData: CharacterPlayerModels.ServerChangePlayerCurrencyRequestData, onResponse?: Action1<CharacterPlayerResponseModels.ChangePlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
843
+ /**
844
+ * Sends the changePlayerCurrency operation and resolves with the typed response.
845
+ */
203
846
  changePlayerCurrencyAsync(requestData: CharacterPlayerModels.ServerChangePlayerCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.ChangePlayerCurrencyOperationResponse>;
847
+ /**
848
+ * Sends the setPlayerData operation and returns the typed response via callback.
849
+ */
204
850
  setPlayerData(requestData: CharacterPlayerModels.ServerSetPlayerDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
851
+ /**
852
+ * Sends the setPlayerData operation and resolves with the typed response.
853
+ */
205
854
  setPlayerDataAsync(requestData: CharacterPlayerModels.ServerSetPlayerDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetPlayerDataOperationResponse>;
855
+ /**
856
+ * Sends the changePlayerStatistics operation and returns the typed response via callback.
857
+ */
206
858
  changePlayerStatistics(requestData: CharacterPlayerModels.ServerChangePlayerStatisticsRequestData, onResponse?: Action1<CharacterPlayerResponseModels.ChangePlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
859
+ /**
860
+ * Sends the changePlayerStatistics operation and resolves with the typed response.
861
+ */
207
862
  changePlayerStatisticsAsync(requestData: CharacterPlayerModels.ServerChangePlayerStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.ChangePlayerStatisticsOperationResponse>;
863
+ /**
864
+ * Sends the setRemoveStatus operation and returns the typed response via callback.
865
+ */
208
866
  setRemoveStatus(requestData: CharacterPlayerModels.ServerSetRemoveStatusRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
867
+ /**
868
+ * Sends the setRemoveStatus operation and resolves with the typed response.
869
+ */
209
870
  setRemoveStatusAsync(requestData: CharacterPlayerModels.ServerSetRemoveStatusRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse>;
871
+ /**
872
+ * Sends the setTag operation and returns the typed response via callback.
873
+ */
210
874
  setTag(requestData: CharacterPlayerModels.ServerSetTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
875
+ /**
876
+ * Sends the setTag operation and resolves with the typed response.
877
+ */
211
878
  setTagAsync(requestData: CharacterPlayerModels.ServerSetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetTagOperationResponse>;
879
+ /**
880
+ * Sends the getCurrencyLeaderboard operation and returns the typed response via callback.
881
+ */
212
882
  getCurrencyLeaderboard(requestData: CharacterPlayerModels.ServerGetCurrencyLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
883
+ /**
884
+ * Sends the getCurrencyLeaderboard operation and resolves with the typed response.
885
+ */
213
886
  getCurrencyLeaderboardAsync(requestData: CharacterPlayerModels.ServerGetCurrencyLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>;
887
+ /**
888
+ * Sends the getCreateLeaderboard operation and returns the typed response via callback.
889
+ */
214
890
  getCreateLeaderboard(requestData: CharacterPlayerModels.ServerGetCreateLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
891
+ /**
892
+ * Sends the getCreateLeaderboard operation and resolves with the typed response.
893
+ */
215
894
  getCreateLeaderboardAsync(requestData: CharacterPlayerModels.ServerGetCreateLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse>;
895
+ /**
896
+ * Sends the getLastLoginLeaderboard operation and returns the typed response via callback.
897
+ */
216
898
  getLastLoginLeaderboard(requestData: CharacterPlayerModels.ServerGetLastLoginLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
899
+ /**
900
+ * Sends the getLastLoginLeaderboard operation and resolves with the typed response.
901
+ */
217
902
  getLastLoginLeaderboardAsync(requestData: CharacterPlayerModels.ServerGetLastLoginLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse>;
903
+ /**
904
+ * Sends the getStatisticsLog operation and returns the typed response via callback.
905
+ */
218
906
  getStatisticsLog(requestData: CharacterPlayerModels.ServerGetStatisticsLogRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
907
+ /**
908
+ * Sends the getStatisticsLog operation and resolves with the typed response.
909
+ */
219
910
  getStatisticsLogAsync(requestData: CharacterPlayerModels.ServerGetStatisticsLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetStatisticsLogOperationResponse>;
911
+ /**
912
+ * Sends the getCurrencyLog operation and returns the typed response via callback.
913
+ */
220
914
  getCurrencyLog(requestData: CharacterPlayerModels.ServerGetCurrencyLogRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCurrencyLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
915
+ /**
916
+ * Sends the getCurrencyLog operation and resolves with the typed response.
917
+ */
221
918
  getCurrencyLogAsync(requestData: CharacterPlayerModels.ServerGetCurrencyLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCurrencyLogOperationResponse>;
222
919
  }
920
+ /**
921
+ * Admin-scoped CharacterPlayer namespace, reachable through
922
+ * `GNNetwork.characterPlayer.admin`.
923
+ *
924
+ * Mirrors {@link ServerCharacterPlayerApi} but routed through
925
+ * {@link RequestRole.Admin}. The backend uses the caller's
926
+ * admin auth token to authorise privileged operations such as
927
+ * touching another tenant's characters, granting / revoking
928
+ * bans, or bypassing validation. Reserved for dashboard / GM /
929
+ * backoffice tools.
930
+ */
223
931
  export declare class AdminCharacterPlayerApi {
932
+ /**
933
+ * Sends the addPlayerFriend operation and returns the typed response via callback.
934
+ */
224
935
  addPlayerFriend(requestData: CharacterPlayerModels.AdminAddPlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
936
+ /**
937
+ * Sends the addPlayerFriend operation and resolves with the typed response.
938
+ */
225
939
  addPlayerFriendAsync(requestData: CharacterPlayerModels.AdminAddPlayerFriendRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse>;
940
+ /**
941
+ * Sends the addSegment operation and returns the typed response via callback.
942
+ */
226
943
  addSegment(requestData: CharacterPlayerModels.AdminAddSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
944
+ /**
945
+ * Sends the addSegment operation and resolves with the typed response.
946
+ */
227
947
  addSegmentAsync(requestData: CharacterPlayerModels.AdminAddSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.AddSegmentOperationResponse>;
948
+ /**
949
+ * Sends the getAvatar operation and returns the typed response via callback.
950
+ */
228
951
  getAvatar(requestData: CharacterPlayerModels.AdminGetAvatarRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
952
+ /**
953
+ * Sends the getAvatar operation and resolves with the typed response.
954
+ */
229
955
  getAvatarAsync(requestData: CharacterPlayerModels.AdminGetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetAvatarOperationResponse>;
956
+ /**
957
+ * Sends the getCatalogId operation and returns the typed response via callback.
958
+ */
230
959
  getCatalogId(requestData: CharacterPlayerModels.AdminGetCatalogIdRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
960
+ /**
961
+ * Sends the getCatalogId operation and resolves with the typed response.
962
+ */
231
963
  getCatalogIdAsync(requestData: CharacterPlayerModels.AdminGetCatalogIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCatalogIdOperationResponse>;
964
+ /**
965
+ * Sends the getCountryCode operation and returns the typed response via callback.
966
+ */
232
967
  getCountryCode(requestData: CharacterPlayerModels.AdminGetCountryCodeRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
968
+ /**
969
+ * Sends the getCountryCode operation and resolves with the typed response.
970
+ */
233
971
  getCountryCodeAsync(requestData: CharacterPlayerModels.AdminGetCountryCodeRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCountryCodeOperationResponse>;
972
+ /**
973
+ * Sends the getCustomData operation and returns the typed response via callback.
974
+ */
234
975
  getCustomData(requestData: CharacterPlayerModels.AdminGetCustomDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
976
+ /**
977
+ * Sends the getCustomData operation and resolves with the typed response.
978
+ */
235
979
  getCustomDataAsync(requestData: CharacterPlayerModels.AdminGetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCustomDataOperationResponse>;
980
+ /**
981
+ * Sends the getDisplayName operation and returns the typed response via callback.
982
+ */
236
983
  getDisplayName(requestData: CharacterPlayerModels.AdminGetDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
984
+ /**
985
+ * Sends the getDisplayName operation and resolves with the typed response.
986
+ */
237
987
  getDisplayNameAsync(requestData: CharacterPlayerModels.AdminGetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetDisplayNameOperationResponse>;
988
+ /**
989
+ * Sends the getFriendStatisticsLeaderboardAroundPlayer operation and returns the typed response via callback.
990
+ */
238
991
  getFriendStatisticsLeaderboardAroundPlayer(requestData: CharacterPlayerModels.AdminGetFriendStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
992
+ /**
993
+ * Sends the getFriendStatisticsLeaderboardAroundPlayer operation and resolves with the typed response.
994
+ */
239
995
  getFriendStatisticsLeaderboardAroundPlayerAsync(requestData: CharacterPlayerModels.AdminGetFriendStatisticsLeaderboardAroundPlayerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>;
996
+ /**
997
+ * Sends the getFriendStatisticsLeaderboard operation and returns the typed response via callback.
998
+ */
240
999
  getFriendStatisticsLeaderboard(requestData: CharacterPlayerModels.AdminGetFriendStatisticsLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1000
+ /**
1001
+ * Sends the getFriendStatisticsLeaderboard operation and resolves with the typed response.
1002
+ */
241
1003
  getFriendStatisticsLeaderboardAsync(requestData: CharacterPlayerModels.AdminGetFriendStatisticsLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>;
1004
+ /**
1005
+ * Sends the getIpAddressCreate operation and returns the typed response via callback.
1006
+ */
242
1007
  getIpAddressCreate(requestData: CharacterPlayerModels.AdminGetIpAddressCreateRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1008
+ /**
1009
+ * Sends the getIpAddressCreate operation and resolves with the typed response.
1010
+ */
243
1011
  getIpAddressCreateAsync(requestData: CharacterPlayerModels.AdminGetIpAddressCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse>;
1012
+ /**
1013
+ * Sends the getOwner operation and returns the typed response via callback.
1014
+ */
244
1015
  getOwner(requestData: CharacterPlayerModels.AdminGetOwnerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1016
+ /**
1017
+ * Sends the getOwner operation and resolves with the typed response.
1018
+ */
245
1019
  getOwnerAsync(requestData: CharacterPlayerModels.AdminGetOwnerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetOwnerOperationResponse>;
1020
+ /**
1021
+ * Sends the getPlayerBan operation and returns the typed response via callback.
1022
+ */
246
1023
  getPlayerBan(requestData: CharacterPlayerModels.AdminGetPlayerBanRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1024
+ /**
1025
+ * Sends the getPlayerBan operation and resolves with the typed response.
1026
+ */
247
1027
  getPlayerBanAsync(requestData: CharacterPlayerModels.AdminGetPlayerBanRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerBanOperationResponse>;
1028
+ /**
1029
+ * Sends the getPlayerCurrency operation and returns the typed response via callback.
1030
+ */
248
1031
  getPlayerCurrency(requestData: CharacterPlayerModels.AdminGetPlayerCurrencyRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1032
+ /**
1033
+ * Sends the getPlayerCurrency operation and resolves with the typed response.
1034
+ */
249
1035
  getPlayerCurrencyAsync(requestData: CharacterPlayerModels.AdminGetPlayerCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse>;
1036
+ /**
1037
+ * Sends the getPlayerData operation and returns the typed response via callback.
1038
+ */
250
1039
  getPlayerData(requestData: CharacterPlayerModels.AdminGetPlayerDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1040
+ /**
1041
+ * Sends the getPlayerData operation and resolves with the typed response.
1042
+ */
251
1043
  getPlayerDataAsync(requestData: CharacterPlayerModels.AdminGetPlayerDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerDataOperationResponse>;
1044
+ /**
1045
+ * Sends the getPlayerFriend operation and returns the typed response via callback.
1046
+ */
252
1047
  getPlayerFriend(requestData: CharacterPlayerModels.AdminGetPlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1048
+ /**
1049
+ * Sends the getPlayerFriend operation and resolves with the typed response.
1050
+ */
253
1051
  getPlayerFriendAsync(requestData: CharacterPlayerModels.AdminGetPlayerFriendRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse>;
1052
+ /**
1053
+ * Sends the getPlayerGroup operation and returns the typed response via callback.
1054
+ */
254
1055
  getPlayerGroup(requestData: CharacterPlayerModels.AdminGetPlayerGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1056
+ /**
1057
+ * Sends the getPlayerGroup operation and resolves with the typed response.
1058
+ */
255
1059
  getPlayerGroupAsync(requestData: CharacterPlayerModels.AdminGetPlayerGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse>;
1060
+ /**
1061
+ * Sends the getPlayerInformation operation and returns the typed response via callback.
1062
+ */
256
1063
  getPlayerInformation(requestData: CharacterPlayerModels.AdminGetPlayerInformationRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1064
+ /**
1065
+ * Sends the getPlayerInformation operation and resolves with the typed response.
1066
+ */
257
1067
  getPlayerInformationAsync(requestData: CharacterPlayerModels.AdminGetPlayerInformationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse>;
1068
+ /**
1069
+ * Sends the getPlayerInventory operation and returns the typed response via callback.
1070
+ */
258
1071
  getPlayerInventory(requestData: CharacterPlayerModels.AdminGetPlayerInventoryRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1072
+ /**
1073
+ * Sends the getPlayerInventory operation and resolves with the typed response.
1074
+ */
259
1075
  getPlayerInventoryAsync(requestData: CharacterPlayerModels.AdminGetPlayerInventoryRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse>;
1076
+ /**
1077
+ * Sends the getPlayerStatistics operation and returns the typed response via callback.
1078
+ */
260
1079
  getPlayerStatistics(requestData: CharacterPlayerModels.AdminGetPlayerStatisticsRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1080
+ /**
1081
+ * Sends the getPlayerStatistics operation and resolves with the typed response.
1082
+ */
261
1083
  getPlayerStatisticsAsync(requestData: CharacterPlayerModels.AdminGetPlayerStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse>;
1084
+ /**
1085
+ * Sends the getPlayersWithDisplayName operation and returns the typed response via callback.
1086
+ */
262
1087
  getPlayersWithDisplayName(requestData: CharacterPlayerModels.AdminGetPlayersWithDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1088
+ /**
1089
+ * Sends the getPlayersWithDisplayName operation and resolves with the typed response.
1090
+ */
263
1091
  getPlayersWithDisplayNameAsync(requestData: CharacterPlayerModels.AdminGetPlayersWithDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>;
1092
+ /**
1093
+ * Sends the getPlayersWithSegment operation and returns the typed response via callback.
1094
+ */
264
1095
  getPlayersWithSegment(requestData: CharacterPlayerModels.AdminGetPlayersWithSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1096
+ /**
1097
+ * Sends the getPlayersWithSegment operation and resolves with the typed response.
1098
+ */
265
1099
  getPlayersWithSegmentAsync(requestData: CharacterPlayerModels.AdminGetPlayersWithSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>;
1100
+ /**
1101
+ * Sends the getPlayersWithTag operation and returns the typed response via callback.
1102
+ */
266
1103
  getPlayersWithTag(requestData: CharacterPlayerModels.AdminGetPlayersWithTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1104
+ /**
1105
+ * Sends the getPlayersWithTag operation and resolves with the typed response.
1106
+ */
267
1107
  getPlayersWithTagAsync(requestData: CharacterPlayerModels.AdminGetPlayersWithTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse>;
1108
+ /**
1109
+ * Sends the getRemoveStatus operation and returns the typed response via callback.
1110
+ */
268
1111
  getRemoveStatus(requestData: CharacterPlayerModels.AdminGetRemoveStatusRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1112
+ /**
1113
+ * Sends the getRemoveStatus operation and resolves with the typed response.
1114
+ */
269
1115
  getRemoveStatusAsync(requestData: CharacterPlayerModels.AdminGetRemoveStatusRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse>;
1116
+ /**
1117
+ * Sends the getSegment operation and returns the typed response via callback.
1118
+ */
270
1119
  getSegment(requestData: CharacterPlayerModels.AdminGetSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1120
+ /**
1121
+ * Sends the getSegment operation and resolves with the typed response.
1122
+ */
271
1123
  getSegmentAsync(requestData: CharacterPlayerModels.AdminGetSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetSegmentOperationResponse>;
1124
+ /**
1125
+ * Sends the getStatisticsLeaderboardAroundPlayer operation and returns the typed response via callback.
1126
+ */
272
1127
  getStatisticsLeaderboardAroundPlayer(requestData: CharacterPlayerModels.AdminGetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1128
+ /**
1129
+ * Sends the getStatisticsLeaderboardAroundPlayer operation and resolves with the typed response.
1130
+ */
273
1131
  getStatisticsLeaderboardAroundPlayerAsync(requestData: CharacterPlayerModels.AdminGetStatisticsLeaderboardAroundPlayerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>;
1132
+ /**
1133
+ * Sends the getStatisticsLeaderboard operation and returns the typed response via callback.
1134
+ */
274
1135
  getStatisticsLeaderboard(requestData: CharacterPlayerModels.AdminGetStatisticsLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1136
+ /**
1137
+ * Sends the getStatisticsLeaderboard operation and resolves with the typed response.
1138
+ */
275
1139
  getStatisticsLeaderboardAsync(requestData: CharacterPlayerModels.AdminGetStatisticsLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>;
1140
+ /**
1141
+ * Sends the getTag operation and returns the typed response via callback.
1142
+ */
276
1143
  getTag(requestData: CharacterPlayerModels.AdminGetTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1144
+ /**
1145
+ * Sends the getTag operation and resolves with the typed response.
1146
+ */
277
1147
  getTagAsync(requestData: CharacterPlayerModels.AdminGetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetTagOperationResponse>;
1148
+ /**
1149
+ * Sends the getTsCreate operation and returns the typed response via callback.
1150
+ */
278
1151
  getTsCreate(requestData: CharacterPlayerModels.AdminGetTsCreateRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1152
+ /**
1153
+ * Sends the getTsCreate operation and resolves with the typed response.
1154
+ */
279
1155
  getTsCreateAsync(requestData: CharacterPlayerModels.AdminGetTsCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetTsCreateOperationResponse>;
1156
+ /**
1157
+ * Sends the getTsLastLogin operation and returns the typed response via callback.
1158
+ */
280
1159
  getTsLastLogin(requestData: CharacterPlayerModels.AdminGetTsLastLoginRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1160
+ /**
1161
+ * Sends the getTsLastLogin operation and resolves with the typed response.
1162
+ */
281
1163
  getTsLastLoginAsync(requestData: CharacterPlayerModels.AdminGetTsLastLoginRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse>;
1164
+ /**
1165
+ * Sends the createGroup operation and returns the typed response via callback.
1166
+ */
282
1167
  createGroup(requestData: CharacterPlayerModels.AdminCreateGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.CreateGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1168
+ /**
1169
+ * Sends the createGroup operation and resolves with the typed response.
1170
+ */
283
1171
  createGroupAsync(requestData: CharacterPlayerModels.AdminCreateGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.CreateGroupOperationResponse>;
1172
+ /**
1173
+ * Sends the createPlayerItem operation and returns the typed response via callback.
1174
+ */
284
1175
  createPlayerItem(requestData: CharacterPlayerModels.AdminCreatePlayerItemRequestData, onResponse?: Action1<CharacterPlayerResponseModels.CreatePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1176
+ /**
1177
+ * Sends the createPlayerItem operation and resolves with the typed response.
1178
+ */
285
1179
  createPlayerItemAsync(requestData: CharacterPlayerModels.AdminCreatePlayerItemRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.CreatePlayerItemOperationResponse>;
1180
+ /**
1181
+ * Sends the joinGroup operation and returns the typed response via callback.
1182
+ */
286
1183
  joinGroup(requestData: CharacterPlayerModels.AdminJoinGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.JoinGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1184
+ /**
1185
+ * Sends the joinGroup operation and resolves with the typed response.
1186
+ */
287
1187
  joinGroupAsync(requestData: CharacterPlayerModels.AdminJoinGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.JoinGroupOperationResponse>;
1188
+ /**
1189
+ * Sends the leaveGroup operation and returns the typed response via callback.
1190
+ */
288
1191
  leaveGroup(requestData: CharacterPlayerModels.AdminLeaveGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.LeaveGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1192
+ /**
1193
+ * Sends the leaveGroup operation and resolves with the typed response.
1194
+ */
289
1195
  leaveGroupAsync(requestData: CharacterPlayerModels.AdminLeaveGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.LeaveGroupOperationResponse>;
1196
+ /**
1197
+ * Sends the removePlayerFriend operation and returns the typed response via callback.
1198
+ */
290
1199
  removePlayerFriend(requestData: CharacterPlayerModels.AdminRemovePlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1200
+ /**
1201
+ * Sends the removePlayerFriend operation and resolves with the typed response.
1202
+ */
291
1203
  removePlayerFriendAsync(requestData: CharacterPlayerModels.AdminRemovePlayerFriendRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse>;
1204
+ /**
1205
+ * Sends the removePlayerItem operation and returns the typed response via callback.
1206
+ */
292
1207
  removePlayerItem(requestData: CharacterPlayerModels.AdminRemovePlayerItemRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1208
+ /**
1209
+ * Sends the removePlayerItem operation and resolves with the typed response.
1210
+ */
293
1211
  removePlayerItemAsync(requestData: CharacterPlayerModels.AdminRemovePlayerItemRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse>;
1212
+ /**
1213
+ * Sends the removeSegment operation and returns the typed response via callback.
1214
+ */
294
1215
  removeSegment(requestData: CharacterPlayerModels.AdminRemoveSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1216
+ /**
1217
+ * Sends the removeSegment operation and resolves with the typed response.
1218
+ */
295
1219
  removeSegmentAsync(requestData: CharacterPlayerModels.AdminRemoveSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.RemoveSegmentOperationResponse>;
1220
+ /**
1221
+ * Sends the removeTag operation and returns the typed response via callback.
1222
+ */
296
1223
  removeTag(requestData: CharacterPlayerModels.AdminRemoveTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1224
+ /**
1225
+ * Sends the removeTag operation and resolves with the typed response.
1226
+ */
297
1227
  removeTagAsync(requestData: CharacterPlayerModels.AdminRemoveTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.RemoveTagOperationResponse>;
1228
+ /**
1229
+ * Sends the setAvatar operation and returns the typed response via callback.
1230
+ */
298
1231
  setAvatar(requestData: CharacterPlayerModels.AdminSetAvatarRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1232
+ /**
1233
+ * Sends the setAvatar operation and resolves with the typed response.
1234
+ */
299
1235
  setAvatarAsync(requestData: CharacterPlayerModels.AdminSetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetAvatarOperationResponse>;
1236
+ /**
1237
+ * Sends the setCountryCode operation and returns the typed response via callback.
1238
+ */
300
1239
  setCountryCode(requestData: CharacterPlayerModels.AdminSetCountryCodeRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1240
+ /**
1241
+ * Sends the setCountryCode operation and resolves with the typed response.
1242
+ */
301
1243
  setCountryCodeAsync(requestData: CharacterPlayerModels.AdminSetCountryCodeRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetCountryCodeOperationResponse>;
1244
+ /**
1245
+ * Sends the setCustomData operation and returns the typed response via callback.
1246
+ */
302
1247
  setCustomData(requestData: CharacterPlayerModels.AdminSetCustomDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1248
+ /**
1249
+ * Sends the setCustomData operation and resolves with the typed response.
1250
+ */
303
1251
  setCustomDataAsync(requestData: CharacterPlayerModels.AdminSetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetCustomDataOperationResponse>;
1252
+ /**
1253
+ * Sends the setDisplayName operation and returns the typed response via callback.
1254
+ */
304
1255
  setDisplayName(requestData: CharacterPlayerModels.AdminSetDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1256
+ /**
1257
+ * Sends the setDisplayName operation and resolves with the typed response.
1258
+ */
305
1259
  setDisplayNameAsync(requestData: CharacterPlayerModels.AdminSetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetDisplayNameOperationResponse>;
1260
+ /**
1261
+ * Sends the setOwner operation and returns the typed response via callback.
1262
+ */
306
1263
  setOwner(requestData: CharacterPlayerModels.AdminSetOwnerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1264
+ /**
1265
+ * Sends the setOwner operation and resolves with the typed response.
1266
+ */
307
1267
  setOwnerAsync(requestData: CharacterPlayerModels.AdminSetOwnerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetOwnerOperationResponse>;
1268
+ /**
1269
+ * Sends the setPlayerBan operation and returns the typed response via callback.
1270
+ */
308
1271
  setPlayerBan(requestData: CharacterPlayerModels.AdminSetPlayerBanRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1272
+ /**
1273
+ * Sends the setPlayerBan operation and resolves with the typed response.
1274
+ */
309
1275
  setPlayerBanAsync(requestData: CharacterPlayerModels.AdminSetPlayerBanRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetPlayerBanOperationResponse>;
1276
+ /**
1277
+ * Sends the changePlayerCurrency operation and returns the typed response via callback.
1278
+ */
310
1279
  changePlayerCurrency(requestData: CharacterPlayerModels.AdminChangePlayerCurrencyRequestData, onResponse?: Action1<CharacterPlayerResponseModels.ChangePlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1280
+ /**
1281
+ * Sends the changePlayerCurrency operation and resolves with the typed response.
1282
+ */
311
1283
  changePlayerCurrencyAsync(requestData: CharacterPlayerModels.AdminChangePlayerCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.ChangePlayerCurrencyOperationResponse>;
1284
+ /**
1285
+ * Sends the setPlayerData operation and returns the typed response via callback.
1286
+ */
312
1287
  setPlayerData(requestData: CharacterPlayerModels.AdminSetPlayerDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1288
+ /**
1289
+ * Sends the setPlayerData operation and resolves with the typed response.
1290
+ */
313
1291
  setPlayerDataAsync(requestData: CharacterPlayerModels.AdminSetPlayerDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetPlayerDataOperationResponse>;
1292
+ /**
1293
+ * Sends the changePlayerStatistics operation and returns the typed response via callback.
1294
+ */
314
1295
  changePlayerStatistics(requestData: CharacterPlayerModels.AdminChangePlayerStatisticsRequestData, onResponse?: Action1<CharacterPlayerResponseModels.ChangePlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1296
+ /**
1297
+ * Sends the changePlayerStatistics operation and resolves with the typed response.
1298
+ */
315
1299
  changePlayerStatisticsAsync(requestData: CharacterPlayerModels.AdminChangePlayerStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.ChangePlayerStatisticsOperationResponse>;
1300
+ /**
1301
+ * Sends the setRemoveStatus operation and returns the typed response via callback.
1302
+ */
316
1303
  setRemoveStatus(requestData: CharacterPlayerModels.AdminSetRemoveStatusRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1304
+ /**
1305
+ * Sends the setRemoveStatus operation and resolves with the typed response.
1306
+ */
317
1307
  setRemoveStatusAsync(requestData: CharacterPlayerModels.AdminSetRemoveStatusRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse>;
1308
+ /**
1309
+ * Sends the setTag operation and returns the typed response via callback.
1310
+ */
318
1311
  setTag(requestData: CharacterPlayerModels.AdminSetTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1312
+ /**
1313
+ * Sends the setTag operation and resolves with the typed response.
1314
+ */
319
1315
  setTagAsync(requestData: CharacterPlayerModels.AdminSetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.SetTagOperationResponse>;
1316
+ /**
1317
+ * Sends the getCurrencyLeaderboard operation and returns the typed response via callback.
1318
+ */
320
1319
  getCurrencyLeaderboard(requestData: CharacterPlayerModels.AdminGetCurrencyLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1320
+ /**
1321
+ * Sends the getCurrencyLeaderboard operation and resolves with the typed response.
1322
+ */
321
1323
  getCurrencyLeaderboardAsync(requestData: CharacterPlayerModels.AdminGetCurrencyLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>;
1324
+ /**
1325
+ * Sends the getCreateLeaderboard operation and returns the typed response via callback.
1326
+ */
322
1327
  getCreateLeaderboard(requestData: CharacterPlayerModels.AdminGetCreateLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1328
+ /**
1329
+ * Sends the getCreateLeaderboard operation and resolves with the typed response.
1330
+ */
323
1331
  getCreateLeaderboardAsync(requestData: CharacterPlayerModels.AdminGetCreateLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse>;
1332
+ /**
1333
+ * Sends the getLastLoginLeaderboard operation and returns the typed response via callback.
1334
+ */
324
1335
  getLastLoginLeaderboard(requestData: CharacterPlayerModels.AdminGetLastLoginLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1336
+ /**
1337
+ * Sends the getLastLoginLeaderboard operation and resolves with the typed response.
1338
+ */
325
1339
  getLastLoginLeaderboardAsync(requestData: CharacterPlayerModels.AdminGetLastLoginLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse>;
1340
+ /**
1341
+ * Sends the getStatisticsLog operation and returns the typed response via callback.
1342
+ */
326
1343
  getStatisticsLog(requestData: CharacterPlayerModels.AdminGetStatisticsLogRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1344
+ /**
1345
+ * Sends the getStatisticsLog operation and resolves with the typed response.
1346
+ */
327
1347
  getStatisticsLogAsync(requestData: CharacterPlayerModels.AdminGetStatisticsLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetStatisticsLogOperationResponse>;
1348
+ /**
1349
+ * Sends the getCurrencyLog operation and returns the typed response via callback.
1350
+ */
328
1351
  getCurrencyLog(requestData: CharacterPlayerModels.AdminGetCurrencyLogRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCurrencyLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1352
+ /**
1353
+ * Sends the getCurrencyLog operation and resolves with the typed response.
1354
+ */
329
1355
  getCurrencyLogAsync(requestData: CharacterPlayerModels.AdminGetCurrencyLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<CharacterPlayerResponseModels.GetCurrencyLogOperationResponse>;
330
1356
  }