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