@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,251 +2,1034 @@ import { Action1 } from "./common/Action1";
2
2
  import { GNHashtable } from "./common/GNData";
3
3
  import { GroupModels } from "./entity/models/GroupModels";
4
4
  import { GroupResponseModels } from "./entity/models/GroupResponseModels";
5
+ /**
6
+ * Public client-scoped namespace for the Group domain.
7
+ *
8
+ * Reachable through {@link GNNetwork.group} after
9
+ * {@link GNNetwork.init}. Manages every aspect of group / guild
10
+ * / clan entities.
11
+ *
12
+ * Functional groupings:
13
+ *
14
+ * 1. **Group metadata** — `getGroupInformation`,
15
+ * `setGroupInformation`, `setGroupAvatar`,
16
+ * `setGroupDisplayName`, `getGroupsWithDisplayName`,
17
+ * `getGroupsWithTag`, `getGroupsWithSegment`.
18
+ * 2. **Members & roles** — `addMember` (invite),
19
+ * `acceptMember`, `rejectMember`, `removeMember`,
20
+ * `getMember`, `getMembers`, `setMemberRole`,
21
+ * `cancelInviteMember`. Real-time updates arrive through
22
+ * {@link OnGroupMemberUpdateEventHandler}.
23
+ * 3. **Group messages / wall** — `sendGroupMessage`,
24
+ * `getGroupMessages`, `getGroupMessage`,
25
+ * `removeGroupMessage`. Real-time updates arrive through
26
+ * {@link OnGroupMessageUpdateEventHandler}.
27
+ * 4. **Group custom data / tags / segments** — `getCustomData`,
28
+ * `setCustomData`, `getTag`, `setTag`, `getSegment`,
29
+ * `addSegment`, `removeSegment`.
30
+ * 5. **Group currencies / statistics** —
31
+ * `getGroupCurrency`, `setGroupCurrency`,
32
+ * `addGroupCurrency`, `subtractGroupCurrency`,
33
+ * `getGroupStatistics`, `setGroupStatistics`,
34
+ * `addGroupStatistics`, `getStatisticsLeaderboard`.
35
+ * 6. **Group inventory (lookup)** — `getGroupInventory`.
36
+ * Mutations live on `GNNetwork.inventory` with
37
+ * `OwnerType.Group`.
38
+ *
39
+ * Common contract: same as {@link GamePlayerApi} (HTTP /
40
+ * `RequestType.Group` / `RequestRole.Client`, callback +
41
+ * Promise variants per method, sub-namespaces `.server` and
42
+ * `.admin` for elevated callers).
43
+ */
5
44
  export declare class GroupApi {
45
+ /** Server-scoped group operations for trusted backend callers. */
6
46
  server: ServerGroupApi;
47
+ /** Admin-scoped group operations for dashboard, GM, or backoffice callers. */
7
48
  admin: AdminGroupApi;
49
+ /**
50
+ * Sends the addMember operation and returns the typed response via callback.
51
+ */
8
52
  addMember(requestData: GroupModels.AddMemberRequestData, onResponse?: Action1<GroupResponseModels.AddMemberOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
53
+ /**
54
+ * Sends the addMember operation and resolves with the typed response.
55
+ */
9
56
  addMemberAsync(requestData: GroupModels.AddMemberRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.AddMemberOperationResponse>;
57
+ /**
58
+ * Sends the addSegment operation and returns the typed response via callback.
59
+ */
10
60
  addSegment(requestData: GroupModels.AddSegmentRequestData, onResponse?: Action1<GroupResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
61
+ /**
62
+ * Sends the addSegment operation and resolves with the typed response.
63
+ */
11
64
  addSegmentAsync(requestData: GroupModels.AddSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.AddSegmentOperationResponse>;
65
+ /**
66
+ * Sends the getAvatar operation and returns the typed response via callback.
67
+ */
12
68
  getAvatar(requestData: GroupModels.GetAvatarRequestData, onResponse?: Action1<GroupResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
69
+ /**
70
+ * Sends the getAvatar operation and resolves with the typed response.
71
+ */
13
72
  getAvatarAsync(requestData: GroupModels.GetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetAvatarOperationResponse>;
73
+ /**
74
+ * Sends the getCatalogId operation and returns the typed response via callback.
75
+ */
14
76
  getCatalogId(requestData: GroupModels.GetCatalogIdRequestData, onResponse?: Action1<GroupResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
77
+ /**
78
+ * Sends the getCatalogId operation and resolves with the typed response.
79
+ */
15
80
  getCatalogIdAsync(requestData: GroupModels.GetCatalogIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCatalogIdOperationResponse>;
81
+ /**
82
+ * Sends the getCustomData operation and returns the typed response via callback.
83
+ */
16
84
  getCustomData(requestData: GroupModels.GetCustomDataRequestData, onResponse?: Action1<GroupResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
85
+ /**
86
+ * Sends the getCustomData operation and resolves with the typed response.
87
+ */
17
88
  getCustomDataAsync(requestData: GroupModels.GetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCustomDataOperationResponse>;
89
+ /**
90
+ * Sends the getDisplayName operation and returns the typed response via callback.
91
+ */
18
92
  getDisplayName(requestData: GroupModels.GetDisplayNameRequestData, onResponse?: Action1<GroupResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
93
+ /**
94
+ * Sends the getDisplayName operation and resolves with the typed response.
95
+ */
19
96
  getDisplayNameAsync(requestData: GroupModels.GetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetDisplayNameOperationResponse>;
97
+ /**
98
+ * Sends the getGroupCurrency operation and returns the typed response via callback.
99
+ */
20
100
  getGroupCurrency(requestData: GroupModels.GetGroupCurrencyRequestData, onResponse?: Action1<GroupResponseModels.GetGroupCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
101
+ /**
102
+ * Sends the getGroupCurrency operation and resolves with the typed response.
103
+ */
21
104
  getGroupCurrencyAsync(requestData: GroupModels.GetGroupCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupCurrencyOperationResponse>;
105
+ /**
106
+ * Sends the getGroupData operation and returns the typed response via callback.
107
+ */
22
108
  getGroupData(requestData: GroupModels.GetGroupDataRequestData, onResponse?: Action1<GroupResponseModels.GetGroupDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
109
+ /**
110
+ * Sends the getGroupData operation and resolves with the typed response.
111
+ */
23
112
  getGroupDataAsync(requestData: GroupModels.GetGroupDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupDataOperationResponse>;
113
+ /**
114
+ * Sends the getGroupInformation operation and returns the typed response via callback.
115
+ */
24
116
  getGroupInformation(requestData: GroupModels.GetGroupInformationRequestData, onResponse?: Action1<GroupResponseModels.GetGroupInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
117
+ /**
118
+ * Sends the getGroupInformation operation and resolves with the typed response.
119
+ */
25
120
  getGroupInformationAsync(requestData: GroupModels.GetGroupInformationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupInformationOperationResponse>;
121
+ /**
122
+ * Sends the getGroupInventory operation and returns the typed response via callback.
123
+ */
26
124
  getGroupInventory(requestData: GroupModels.GetGroupInventoryRequestData, onResponse?: Action1<GroupResponseModels.GetGroupInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
125
+ /**
126
+ * Sends the getGroupInventory operation and resolves with the typed response.
127
+ */
27
128
  getGroupInventoryAsync(requestData: GroupModels.GetGroupInventoryRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupInventoryOperationResponse>;
129
+ /**
130
+ * Sends the getGroupMessage operation and returns the typed response via callback.
131
+ */
28
132
  getGroupMessage(requestData: GroupModels.GetGroupMessageRequestData, onResponse?: Action1<GroupResponseModels.GetGroupMessageOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
133
+ /**
134
+ * Sends the getGroupMessage operation and resolves with the typed response.
135
+ */
29
136
  getGroupMessageAsync(requestData: GroupModels.GetGroupMessageRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupMessageOperationResponse>;
137
+ /**
138
+ * Sends the getGroupStatistics operation and returns the typed response via callback.
139
+ */
30
140
  getGroupStatistics(requestData: GroupModels.GetGroupStatisticsRequestData, onResponse?: Action1<GroupResponseModels.GetGroupStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
141
+ /**
142
+ * Sends the getGroupStatistics operation and resolves with the typed response.
143
+ */
31
144
  getGroupStatisticsAsync(requestData: GroupModels.GetGroupStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupStatisticsOperationResponse>;
145
+ /**
146
+ * Sends the getGroupsWithDisplayName operation and returns the typed response via callback.
147
+ */
32
148
  getGroupsWithDisplayName(requestData: GroupModels.GetGroupsWithDisplayNameRequestData, onResponse?: Action1<GroupResponseModels.GetGroupsWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
149
+ /**
150
+ * Sends the getGroupsWithDisplayName operation and resolves with the typed response.
151
+ */
33
152
  getGroupsWithDisplayNameAsync(requestData: GroupModels.GetGroupsWithDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupsWithDisplayNameOperationResponse>;
153
+ /**
154
+ * Sends the getGroupsWithSegment operation and returns the typed response via callback.
155
+ */
34
156
  getGroupsWithSegment(requestData: GroupModels.GetGroupsWithSegmentRequestData, onResponse?: Action1<GroupResponseModels.GetGroupsWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
157
+ /**
158
+ * Sends the getGroupsWithSegment operation and resolves with the typed response.
159
+ */
35
160
  getGroupsWithSegmentAsync(requestData: GroupModels.GetGroupsWithSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupsWithSegmentOperationResponse>;
161
+ /**
162
+ * Sends the getGroupsWithTag operation and returns the typed response via callback.
163
+ */
36
164
  getGroupsWithTag(requestData: GroupModels.GetGroupsWithTagRequestData, onResponse?: Action1<GroupResponseModels.GetGroupsWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
165
+ /**
166
+ * Sends the getGroupsWithTag operation and resolves with the typed response.
167
+ */
37
168
  getGroupsWithTagAsync(requestData: GroupModels.GetGroupsWithTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupsWithTagOperationResponse>;
169
+ /**
170
+ * Sends the getMembers operation and returns the typed response via callback.
171
+ */
38
172
  getMembers(requestData: GroupModels.GetMembersRequestData, onResponse?: Action1<GroupResponseModels.GetMembersOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
173
+ /**
174
+ * Sends the getMembers operation and resolves with the typed response.
175
+ */
39
176
  getMembersAsync(requestData: GroupModels.GetMembersRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetMembersOperationResponse>;
177
+ /**
178
+ * Sends the getRemoveStatus operation and returns the typed response via callback.
179
+ */
40
180
  getRemoveStatus(requestData: GroupModels.GetRemoveStatusRequestData, onResponse?: Action1<GroupResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
181
+ /**
182
+ * Sends the getRemoveStatus operation and resolves with the typed response.
183
+ */
41
184
  getRemoveStatusAsync(requestData: GroupModels.GetRemoveStatusRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetRemoveStatusOperationResponse>;
185
+ /**
186
+ * Sends the getSegment operation and returns the typed response via callback.
187
+ */
42
188
  getSegment(requestData: GroupModels.GetSegmentRequestData, onResponse?: Action1<GroupResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
189
+ /**
190
+ * Sends the getSegment operation and resolves with the typed response.
191
+ */
43
192
  getSegmentAsync(requestData: GroupModels.GetSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetSegmentOperationResponse>;
193
+ /**
194
+ * Sends the getStatisticsLeaderboardAroundGroup operation and returns the typed response via callback.
195
+ */
44
196
  getStatisticsLeaderboardAroundGroup(requestData: GroupModels.GetStatisticsLeaderboardAroundGroupRequestData, onResponse?: Action1<GroupResponseModels.GetStatisticsLeaderboardAroundGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
197
+ /**
198
+ * Sends the getStatisticsLeaderboardAroundGroup operation and resolves with the typed response.
199
+ */
45
200
  getStatisticsLeaderboardAroundGroupAsync(requestData: GroupModels.GetStatisticsLeaderboardAroundGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetStatisticsLeaderboardAroundGroupOperationResponse>;
201
+ /**
202
+ * Sends the getStatisticsLeaderboard operation and returns the typed response via callback.
203
+ */
46
204
  getStatisticsLeaderboard(requestData: GroupModels.GetStatisticsLeaderboardRequestData, onResponse?: Action1<GroupResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
205
+ /**
206
+ * Sends the getStatisticsLeaderboard operation and resolves with the typed response.
207
+ */
47
208
  getStatisticsLeaderboardAsync(requestData: GroupModels.GetStatisticsLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetStatisticsLeaderboardOperationResponse>;
209
+ /**
210
+ * Sends the getTag operation and returns the typed response via callback.
211
+ */
48
212
  getTag(requestData: GroupModels.GetTagRequestData, onResponse?: Action1<GroupResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
213
+ /**
214
+ * Sends the getTag operation and resolves with the typed response.
215
+ */
49
216
  getTagAsync(requestData: GroupModels.GetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetTagOperationResponse>;
217
+ /**
218
+ * Sends the getTsCreate operation and returns the typed response via callback.
219
+ */
50
220
  getTsCreate(requestData: GroupModels.GetTsCreateRequestData, onResponse?: Action1<GroupResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
221
+ /**
222
+ * Sends the getTsCreate operation and resolves with the typed response.
223
+ */
51
224
  getTsCreateAsync(requestData: GroupModels.GetTsCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetTsCreateOperationResponse>;
225
+ /**
226
+ * Sends the createGroupItem operation and returns the typed response via callback.
227
+ */
52
228
  createGroupItem(requestData: GroupModels.CreateGroupItemRequestData, onResponse?: Action1<GroupResponseModels.CreateGroupItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
229
+ /**
230
+ * Sends the createGroupItem operation and resolves with the typed response.
231
+ */
53
232
  createGroupItemAsync(requestData: GroupModels.CreateGroupItemRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.CreateGroupItemOperationResponse>;
233
+ /**
234
+ * Sends the removeGroupItem operation and returns the typed response via callback.
235
+ */
54
236
  removeGroupItem(requestData: GroupModels.RemoveGroupItemRequestData, onResponse?: Action1<GroupResponseModels.RemoveGroupItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
237
+ /**
238
+ * Sends the removeGroupItem operation and resolves with the typed response.
239
+ */
55
240
  removeGroupItemAsync(requestData: GroupModels.RemoveGroupItemRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.RemoveGroupItemOperationResponse>;
241
+ /**
242
+ * Sends the removeMember operation and returns the typed response via callback.
243
+ */
56
244
  removeMember(requestData: GroupModels.RemoveMemberRequestData, onResponse?: Action1<GroupResponseModels.RemoveMemberOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
245
+ /**
246
+ * Sends the removeMember operation and resolves with the typed response.
247
+ */
57
248
  removeMemberAsync(requestData: GroupModels.RemoveMemberRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.RemoveMemberOperationResponse>;
249
+ /**
250
+ * Sends the removeSegment operation and returns the typed response via callback.
251
+ */
58
252
  removeSegment(requestData: GroupModels.RemoveSegmentRequestData, onResponse?: Action1<GroupResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
253
+ /**
254
+ * Sends the removeSegment operation and resolves with the typed response.
255
+ */
59
256
  removeSegmentAsync(requestData: GroupModels.RemoveSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.RemoveSegmentOperationResponse>;
257
+ /**
258
+ * Sends the removeTag operation and returns the typed response via callback.
259
+ */
60
260
  removeTag(requestData: GroupModels.RemoveTagRequestData, onResponse?: Action1<GroupResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
261
+ /**
262
+ * Sends the removeTag operation and resolves with the typed response.
263
+ */
61
264
  removeTagAsync(requestData: GroupModels.RemoveTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.RemoveTagOperationResponse>;
265
+ /**
266
+ * Sends the sendGroupMessage operation and returns the typed response via callback.
267
+ */
62
268
  sendGroupMessage(requestData: GroupModels.SendGroupMessageRequestData, onResponse?: Action1<GroupResponseModels.SendGroupMessageOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
269
+ /**
270
+ * Sends the sendGroupMessage operation and resolves with the typed response.
271
+ */
63
272
  sendGroupMessageAsync(requestData: GroupModels.SendGroupMessageRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SendGroupMessageOperationResponse>;
273
+ /**
274
+ * Sends the setAvatar operation and returns the typed response via callback.
275
+ */
64
276
  setAvatar(requestData: GroupModels.SetAvatarRequestData, onResponse?: Action1<GroupResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
277
+ /**
278
+ * Sends the setAvatar operation and resolves with the typed response.
279
+ */
65
280
  setAvatarAsync(requestData: GroupModels.SetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetAvatarOperationResponse>;
281
+ /**
282
+ * Sends the setCustomData operation and returns the typed response via callback.
283
+ */
66
284
  setCustomData(requestData: GroupModels.SetCustomDataRequestData, onResponse?: Action1<GroupResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
285
+ /**
286
+ * Sends the setCustomData operation and resolves with the typed response.
287
+ */
67
288
  setCustomDataAsync(requestData: GroupModels.SetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetCustomDataOperationResponse>;
289
+ /**
290
+ * Sends the setDisplayName operation and returns the typed response via callback.
291
+ */
68
292
  setDisplayName(requestData: GroupModels.SetDisplayNameRequestData, onResponse?: Action1<GroupResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
293
+ /**
294
+ * Sends the setDisplayName operation and resolves with the typed response.
295
+ */
69
296
  setDisplayNameAsync(requestData: GroupModels.SetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetDisplayNameOperationResponse>;
297
+ /**
298
+ * Sends the changeGroupCurrency operation and returns the typed response via callback.
299
+ */
70
300
  changeGroupCurrency(requestData: GroupModels.ChangeGroupCurrencyRequestData, onResponse?: Action1<GroupResponseModels.ChangeGroupCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
301
+ /**
302
+ * Sends the changeGroupCurrency operation and resolves with the typed response.
303
+ */
71
304
  changeGroupCurrencyAsync(requestData: GroupModels.ChangeGroupCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.ChangeGroupCurrencyOperationResponse>;
305
+ /**
306
+ * Sends the setGroupData operation and returns the typed response via callback.
307
+ */
72
308
  setGroupData(requestData: GroupModels.SetGroupDataRequestData, onResponse?: Action1<GroupResponseModels.SetGroupDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
309
+ /**
310
+ * Sends the setGroupData operation and resolves with the typed response.
311
+ */
73
312
  setGroupDataAsync(requestData: GroupModels.SetGroupDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetGroupDataOperationResponse>;
313
+ /**
314
+ * Sends the changeGroupStatistics operation and returns the typed response via callback.
315
+ */
74
316
  changeGroupStatistics(requestData: GroupModels.ChangeGroupStatisticsRequestData, onResponse?: Action1<GroupResponseModels.ChangeGroupStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
317
+ /**
318
+ * Sends the changeGroupStatistics operation and resolves with the typed response.
319
+ */
75
320
  changeGroupStatisticsAsync(requestData: GroupModels.ChangeGroupStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.ChangeGroupStatisticsOperationResponse>;
321
+ /**
322
+ * Sends the setRemoveStatus operation and returns the typed response via callback.
323
+ */
76
324
  setRemoveStatus(requestData: GroupModels.SetRemoveStatusRequestData, onResponse?: Action1<GroupResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
325
+ /**
326
+ * Sends the setRemoveStatus operation and resolves with the typed response.
327
+ */
77
328
  setRemoveStatusAsync(requestData: GroupModels.SetRemoveStatusRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetRemoveStatusOperationResponse>;
329
+ /**
330
+ * Sends the setTag operation and returns the typed response via callback.
331
+ */
78
332
  setTag(requestData: GroupModels.SetTagRequestData, onResponse?: Action1<GroupResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
333
+ /**
334
+ * Sends the setTag operation and resolves with the typed response.
335
+ */
79
336
  setTagAsync(requestData: GroupModels.SetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetTagOperationResponse>;
337
+ /**
338
+ * Sends the getCurrencyLeaderboard operation and returns the typed response via callback.
339
+ */
80
340
  getCurrencyLeaderboard(requestData: GroupModels.GetCurrencyLeaderboardRequestData, onResponse?: Action1<GroupResponseModels.GetCurrencyLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
341
+ /**
342
+ * Sends the getCurrencyLeaderboard operation and resolves with the typed response.
343
+ */
81
344
  getCurrencyLeaderboardAsync(requestData: GroupModels.GetCurrencyLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCurrencyLeaderboardOperationResponse>;
345
+ /**
346
+ * Sends the getCreateLeaderboard operation and returns the typed response via callback.
347
+ */
82
348
  getCreateLeaderboard(requestData: GroupModels.GetCreateLeaderboardRequestData, onResponse?: Action1<GroupResponseModels.GetCreateLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
349
+ /**
350
+ * Sends the getCreateLeaderboard operation and resolves with the typed response.
351
+ */
83
352
  getCreateLeaderboardAsync(requestData: GroupModels.GetCreateLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCreateLeaderboardOperationResponse>;
353
+ /**
354
+ * Sends the getStatisticsLog operation and returns the typed response via callback.
355
+ */
84
356
  getStatisticsLog(requestData: GroupModels.GetStatisticsLogRequestData, onResponse?: Action1<GroupResponseModels.GetStatisticsLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
357
+ /**
358
+ * Sends the getStatisticsLog operation and resolves with the typed response.
359
+ */
85
360
  getStatisticsLogAsync(requestData: GroupModels.GetStatisticsLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetStatisticsLogOperationResponse>;
361
+ /**
362
+ * Sends the getCurrencyLog operation and returns the typed response via callback.
363
+ */
86
364
  getCurrencyLog(requestData: GroupModels.GetCurrencyLogRequestData, onResponse?: Action1<GroupResponseModels.GetCurrencyLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
365
+ /**
366
+ * Sends the getCurrencyLog operation and resolves with the typed response.
367
+ */
87
368
  getCurrencyLogAsync(requestData: GroupModels.GetCurrencyLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCurrencyLogOperationResponse>;
88
369
  }
370
+ /**
371
+ * Server-scoped Group namespace, reachable through
372
+ * `GNNetwork.group.server`.
373
+ *
374
+ * Mirrors every method on {@link GroupApi} but uses the
375
+ * `Server*RequestData` DTO variants. The server flavour accepts
376
+ * an explicit `groupId` and acting `userId` so a trusted
377
+ * backend can act on any group / member without holding the
378
+ * acting player's auth token. Always pass a valid server-side
379
+ * `secretKey`.
380
+ */
89
381
  export declare class ServerGroupApi {
382
+ /**
383
+ * Sends the addMember operation and returns the typed response via callback.
384
+ */
90
385
  addMember(requestData: GroupModels.ServerAddMemberRequestData, onResponse?: Action1<GroupResponseModels.AddMemberOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
386
+ /**
387
+ * Sends the addMember operation and resolves with the typed response.
388
+ */
91
389
  addMemberAsync(requestData: GroupModels.ServerAddMemberRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.AddMemberOperationResponse>;
390
+ /**
391
+ * Sends the addSegment operation and returns the typed response via callback.
392
+ */
92
393
  addSegment(requestData: GroupModels.ServerAddSegmentRequestData, onResponse?: Action1<GroupResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
394
+ /**
395
+ * Sends the addSegment operation and resolves with the typed response.
396
+ */
93
397
  addSegmentAsync(requestData: GroupModels.ServerAddSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.AddSegmentOperationResponse>;
398
+ /**
399
+ * Sends the getAvatar operation and returns the typed response via callback.
400
+ */
94
401
  getAvatar(requestData: GroupModels.ServerGetAvatarRequestData, onResponse?: Action1<GroupResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
402
+ /**
403
+ * Sends the getAvatar operation and resolves with the typed response.
404
+ */
95
405
  getAvatarAsync(requestData: GroupModels.ServerGetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetAvatarOperationResponse>;
406
+ /**
407
+ * Sends the getCatalogId operation and returns the typed response via callback.
408
+ */
96
409
  getCatalogId(requestData: GroupModels.ServerGetCatalogIdRequestData, onResponse?: Action1<GroupResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
410
+ /**
411
+ * Sends the getCatalogId operation and resolves with the typed response.
412
+ */
97
413
  getCatalogIdAsync(requestData: GroupModels.ServerGetCatalogIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCatalogIdOperationResponse>;
414
+ /**
415
+ * Sends the getCustomData operation and returns the typed response via callback.
416
+ */
98
417
  getCustomData(requestData: GroupModels.ServerGetCustomDataRequestData, onResponse?: Action1<GroupResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
418
+ /**
419
+ * Sends the getCustomData operation and resolves with the typed response.
420
+ */
99
421
  getCustomDataAsync(requestData: GroupModels.ServerGetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCustomDataOperationResponse>;
422
+ /**
423
+ * Sends the getDisplayName operation and returns the typed response via callback.
424
+ */
100
425
  getDisplayName(requestData: GroupModels.ServerGetDisplayNameRequestData, onResponse?: Action1<GroupResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
426
+ /**
427
+ * Sends the getDisplayName operation and resolves with the typed response.
428
+ */
101
429
  getDisplayNameAsync(requestData: GroupModels.ServerGetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetDisplayNameOperationResponse>;
430
+ /**
431
+ * Sends the getGroupCurrency operation and returns the typed response via callback.
432
+ */
102
433
  getGroupCurrency(requestData: GroupModels.ServerGetGroupCurrencyRequestData, onResponse?: Action1<GroupResponseModels.GetGroupCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
434
+ /**
435
+ * Sends the getGroupCurrency operation and resolves with the typed response.
436
+ */
103
437
  getGroupCurrencyAsync(requestData: GroupModels.ServerGetGroupCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupCurrencyOperationResponse>;
438
+ /**
439
+ * Sends the getGroupData operation and returns the typed response via callback.
440
+ */
104
441
  getGroupData(requestData: GroupModels.ServerGetGroupDataRequestData, onResponse?: Action1<GroupResponseModels.GetGroupDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
442
+ /**
443
+ * Sends the getGroupData operation and resolves with the typed response.
444
+ */
105
445
  getGroupDataAsync(requestData: GroupModels.ServerGetGroupDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupDataOperationResponse>;
446
+ /**
447
+ * Sends the getGroupInformation operation and returns the typed response via callback.
448
+ */
106
449
  getGroupInformation(requestData: GroupModels.ServerGetGroupInformationRequestData, onResponse?: Action1<GroupResponseModels.GetGroupInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
450
+ /**
451
+ * Sends the getGroupInformation operation and resolves with the typed response.
452
+ */
107
453
  getGroupInformationAsync(requestData: GroupModels.ServerGetGroupInformationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupInformationOperationResponse>;
454
+ /**
455
+ * Sends the getGroupInventory operation and returns the typed response via callback.
456
+ */
108
457
  getGroupInventory(requestData: GroupModels.ServerGetGroupInventoryRequestData, onResponse?: Action1<GroupResponseModels.GetGroupInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
458
+ /**
459
+ * Sends the getGroupInventory operation and resolves with the typed response.
460
+ */
109
461
  getGroupInventoryAsync(requestData: GroupModels.ServerGetGroupInventoryRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupInventoryOperationResponse>;
462
+ /**
463
+ * Sends the getGroupMessage operation and returns the typed response via callback.
464
+ */
110
465
  getGroupMessage(requestData: GroupModels.ServerGetGroupMessageRequestData, onResponse?: Action1<GroupResponseModels.GetGroupMessageOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
466
+ /**
467
+ * Sends the getGroupMessage operation and resolves with the typed response.
468
+ */
111
469
  getGroupMessageAsync(requestData: GroupModels.ServerGetGroupMessageRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupMessageOperationResponse>;
470
+ /**
471
+ * Sends the getGroupStatistics operation and returns the typed response via callback.
472
+ */
112
473
  getGroupStatistics(requestData: GroupModels.ServerGetGroupStatisticsRequestData, onResponse?: Action1<GroupResponseModels.GetGroupStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
474
+ /**
475
+ * Sends the getGroupStatistics operation and resolves with the typed response.
476
+ */
113
477
  getGroupStatisticsAsync(requestData: GroupModels.ServerGetGroupStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupStatisticsOperationResponse>;
478
+ /**
479
+ * Sends the getGroupsWithDisplayName operation and returns the typed response via callback.
480
+ */
114
481
  getGroupsWithDisplayName(requestData: GroupModels.ServerGetGroupsWithDisplayNameRequestData, onResponse?: Action1<GroupResponseModels.GetGroupsWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
482
+ /**
483
+ * Sends the getGroupsWithDisplayName operation and resolves with the typed response.
484
+ */
115
485
  getGroupsWithDisplayNameAsync(requestData: GroupModels.ServerGetGroupsWithDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupsWithDisplayNameOperationResponse>;
486
+ /**
487
+ * Sends the getGroupsWithSegment operation and returns the typed response via callback.
488
+ */
116
489
  getGroupsWithSegment(requestData: GroupModels.ServerGetGroupsWithSegmentRequestData, onResponse?: Action1<GroupResponseModels.GetGroupsWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
490
+ /**
491
+ * Sends the getGroupsWithSegment operation and resolves with the typed response.
492
+ */
117
493
  getGroupsWithSegmentAsync(requestData: GroupModels.ServerGetGroupsWithSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupsWithSegmentOperationResponse>;
494
+ /**
495
+ * Sends the getGroupsWithTag operation and returns the typed response via callback.
496
+ */
118
497
  getGroupsWithTag(requestData: GroupModels.ServerGetGroupsWithTagRequestData, onResponse?: Action1<GroupResponseModels.GetGroupsWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
498
+ /**
499
+ * Sends the getGroupsWithTag operation and resolves with the typed response.
500
+ */
119
501
  getGroupsWithTagAsync(requestData: GroupModels.ServerGetGroupsWithTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupsWithTagOperationResponse>;
502
+ /**
503
+ * Sends the getMembers operation and returns the typed response via callback.
504
+ */
120
505
  getMembers(requestData: GroupModels.ServerGetMembersRequestData, onResponse?: Action1<GroupResponseModels.GetMembersOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
506
+ /**
507
+ * Sends the getMembers operation and resolves with the typed response.
508
+ */
121
509
  getMembersAsync(requestData: GroupModels.ServerGetMembersRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetMembersOperationResponse>;
510
+ /**
511
+ * Sends the getRemoveStatus operation and returns the typed response via callback.
512
+ */
122
513
  getRemoveStatus(requestData: GroupModels.ServerGetRemoveStatusRequestData, onResponse?: Action1<GroupResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
514
+ /**
515
+ * Sends the getRemoveStatus operation and resolves with the typed response.
516
+ */
123
517
  getRemoveStatusAsync(requestData: GroupModels.ServerGetRemoveStatusRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetRemoveStatusOperationResponse>;
518
+ /**
519
+ * Sends the getSegment operation and returns the typed response via callback.
520
+ */
124
521
  getSegment(requestData: GroupModels.ServerGetSegmentRequestData, onResponse?: Action1<GroupResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
522
+ /**
523
+ * Sends the getSegment operation and resolves with the typed response.
524
+ */
125
525
  getSegmentAsync(requestData: GroupModels.ServerGetSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetSegmentOperationResponse>;
526
+ /**
527
+ * Sends the getStatisticsLeaderboardAroundGroup operation and returns the typed response via callback.
528
+ */
126
529
  getStatisticsLeaderboardAroundGroup(requestData: GroupModels.ServerGetStatisticsLeaderboardAroundGroupRequestData, onResponse?: Action1<GroupResponseModels.GetStatisticsLeaderboardAroundGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
530
+ /**
531
+ * Sends the getStatisticsLeaderboardAroundGroup operation and resolves with the typed response.
532
+ */
127
533
  getStatisticsLeaderboardAroundGroupAsync(requestData: GroupModels.ServerGetStatisticsLeaderboardAroundGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetStatisticsLeaderboardAroundGroupOperationResponse>;
534
+ /**
535
+ * Sends the getStatisticsLeaderboard operation and returns the typed response via callback.
536
+ */
128
537
  getStatisticsLeaderboard(requestData: GroupModels.ServerGetStatisticsLeaderboardRequestData, onResponse?: Action1<GroupResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
538
+ /**
539
+ * Sends the getStatisticsLeaderboard operation and resolves with the typed response.
540
+ */
129
541
  getStatisticsLeaderboardAsync(requestData: GroupModels.ServerGetStatisticsLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetStatisticsLeaderboardOperationResponse>;
542
+ /**
543
+ * Sends the getTag operation and returns the typed response via callback.
544
+ */
130
545
  getTag(requestData: GroupModels.ServerGetTagRequestData, onResponse?: Action1<GroupResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
546
+ /**
547
+ * Sends the getTag operation and resolves with the typed response.
548
+ */
131
549
  getTagAsync(requestData: GroupModels.ServerGetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetTagOperationResponse>;
550
+ /**
551
+ * Sends the getTsCreate operation and returns the typed response via callback.
552
+ */
132
553
  getTsCreate(requestData: GroupModels.ServerGetTsCreateRequestData, onResponse?: Action1<GroupResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
554
+ /**
555
+ * Sends the getTsCreate operation and resolves with the typed response.
556
+ */
133
557
  getTsCreateAsync(requestData: GroupModels.ServerGetTsCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetTsCreateOperationResponse>;
558
+ /**
559
+ * Sends the createGroupItem operation and returns the typed response via callback.
560
+ */
134
561
  createGroupItem(requestData: GroupModels.ServerCreateGroupItemRequestData, onResponse?: Action1<GroupResponseModels.CreateGroupItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
562
+ /**
563
+ * Sends the createGroupItem operation and resolves with the typed response.
564
+ */
135
565
  createGroupItemAsync(requestData: GroupModels.ServerCreateGroupItemRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.CreateGroupItemOperationResponse>;
566
+ /**
567
+ * Sends the removeGroupItem operation and returns the typed response via callback.
568
+ */
136
569
  removeGroupItem(requestData: GroupModels.ServerRemoveGroupItemRequestData, onResponse?: Action1<GroupResponseModels.RemoveGroupItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
570
+ /**
571
+ * Sends the removeGroupItem operation and resolves with the typed response.
572
+ */
137
573
  removeGroupItemAsync(requestData: GroupModels.ServerRemoveGroupItemRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.RemoveGroupItemOperationResponse>;
574
+ /**
575
+ * Sends the removeMember operation and returns the typed response via callback.
576
+ */
138
577
  removeMember(requestData: GroupModels.ServerRemoveMemberRequestData, onResponse?: Action1<GroupResponseModels.RemoveMemberOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
578
+ /**
579
+ * Sends the removeMember operation and resolves with the typed response.
580
+ */
139
581
  removeMemberAsync(requestData: GroupModels.ServerRemoveMemberRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.RemoveMemberOperationResponse>;
582
+ /**
583
+ * Sends the removeSegment operation and returns the typed response via callback.
584
+ */
140
585
  removeSegment(requestData: GroupModels.ServerRemoveSegmentRequestData, onResponse?: Action1<GroupResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
586
+ /**
587
+ * Sends the removeSegment operation and resolves with the typed response.
588
+ */
141
589
  removeSegmentAsync(requestData: GroupModels.ServerRemoveSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.RemoveSegmentOperationResponse>;
590
+ /**
591
+ * Sends the removeTag operation and returns the typed response via callback.
592
+ */
142
593
  removeTag(requestData: GroupModels.ServerRemoveTagRequestData, onResponse?: Action1<GroupResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
594
+ /**
595
+ * Sends the removeTag operation and resolves with the typed response.
596
+ */
143
597
  removeTagAsync(requestData: GroupModels.ServerRemoveTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.RemoveTagOperationResponse>;
598
+ /**
599
+ * Sends the sendGroupMessage operation and returns the typed response via callback.
600
+ */
144
601
  sendGroupMessage(requestData: GroupModels.ServerSendGroupMessageRequestData, onResponse?: Action1<GroupResponseModels.SendGroupMessageOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
602
+ /**
603
+ * Sends the sendGroupMessage operation and resolves with the typed response.
604
+ */
145
605
  sendGroupMessageAsync(requestData: GroupModels.ServerSendGroupMessageRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SendGroupMessageOperationResponse>;
606
+ /**
607
+ * Sends the setAvatar operation and returns the typed response via callback.
608
+ */
146
609
  setAvatar(requestData: GroupModels.ServerSetAvatarRequestData, onResponse?: Action1<GroupResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
610
+ /**
611
+ * Sends the setAvatar operation and resolves with the typed response.
612
+ */
147
613
  setAvatarAsync(requestData: GroupModels.ServerSetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetAvatarOperationResponse>;
614
+ /**
615
+ * Sends the setCustomData operation and returns the typed response via callback.
616
+ */
148
617
  setCustomData(requestData: GroupModels.ServerSetCustomDataRequestData, onResponse?: Action1<GroupResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
618
+ /**
619
+ * Sends the setCustomData operation and resolves with the typed response.
620
+ */
149
621
  setCustomDataAsync(requestData: GroupModels.ServerSetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetCustomDataOperationResponse>;
622
+ /**
623
+ * Sends the setDisplayName operation and returns the typed response via callback.
624
+ */
150
625
  setDisplayName(requestData: GroupModels.ServerSetDisplayNameRequestData, onResponse?: Action1<GroupResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
626
+ /**
627
+ * Sends the setDisplayName operation and resolves with the typed response.
628
+ */
151
629
  setDisplayNameAsync(requestData: GroupModels.ServerSetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetDisplayNameOperationResponse>;
630
+ /**
631
+ * Sends the changeGroupCurrency operation and returns the typed response via callback.
632
+ */
152
633
  changeGroupCurrency(requestData: GroupModels.ServerChangeGroupCurrencyRequestData, onResponse?: Action1<GroupResponseModels.ChangeGroupCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
634
+ /**
635
+ * Sends the changeGroupCurrency operation and resolves with the typed response.
636
+ */
153
637
  changeGroupCurrencyAsync(requestData: GroupModels.ServerChangeGroupCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.ChangeGroupCurrencyOperationResponse>;
638
+ /**
639
+ * Sends the setGroupData operation and returns the typed response via callback.
640
+ */
154
641
  setGroupData(requestData: GroupModels.ServerSetGroupDataRequestData, onResponse?: Action1<GroupResponseModels.SetGroupDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
642
+ /**
643
+ * Sends the setGroupData operation and resolves with the typed response.
644
+ */
155
645
  setGroupDataAsync(requestData: GroupModels.ServerSetGroupDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetGroupDataOperationResponse>;
646
+ /**
647
+ * Sends the changeGroupStatistics operation and returns the typed response via callback.
648
+ */
156
649
  changeGroupStatistics(requestData: GroupModels.ServerChangeGroupStatisticsRequestData, onResponse?: Action1<GroupResponseModels.ChangeGroupStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
650
+ /**
651
+ * Sends the changeGroupStatistics operation and resolves with the typed response.
652
+ */
157
653
  changeGroupStatisticsAsync(requestData: GroupModels.ServerChangeGroupStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.ChangeGroupStatisticsOperationResponse>;
654
+ /**
655
+ * Sends the setRemoveStatus operation and returns the typed response via callback.
656
+ */
158
657
  setRemoveStatus(requestData: GroupModels.ServerSetRemoveStatusRequestData, onResponse?: Action1<GroupResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
658
+ /**
659
+ * Sends the setRemoveStatus operation and resolves with the typed response.
660
+ */
159
661
  setRemoveStatusAsync(requestData: GroupModels.ServerSetRemoveStatusRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetRemoveStatusOperationResponse>;
662
+ /**
663
+ * Sends the setTag operation and returns the typed response via callback.
664
+ */
160
665
  setTag(requestData: GroupModels.ServerSetTagRequestData, onResponse?: Action1<GroupResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
666
+ /**
667
+ * Sends the setTag operation and resolves with the typed response.
668
+ */
161
669
  setTagAsync(requestData: GroupModels.ServerSetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetTagOperationResponse>;
670
+ /**
671
+ * Sends the getCurrencyLeaderboard operation and returns the typed response via callback.
672
+ */
162
673
  getCurrencyLeaderboard(requestData: GroupModels.ServerGetCurrencyLeaderboardRequestData, onResponse?: Action1<GroupResponseModels.GetCurrencyLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
674
+ /**
675
+ * Sends the getCurrencyLeaderboard operation and resolves with the typed response.
676
+ */
163
677
  getCurrencyLeaderboardAsync(requestData: GroupModels.ServerGetCurrencyLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCurrencyLeaderboardOperationResponse>;
678
+ /**
679
+ * Sends the getCreateLeaderboard operation and returns the typed response via callback.
680
+ */
164
681
  getCreateLeaderboard(requestData: GroupModels.ServerGetCreateLeaderboardRequestData, onResponse?: Action1<GroupResponseModels.GetCreateLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
682
+ /**
683
+ * Sends the getCreateLeaderboard operation and resolves with the typed response.
684
+ */
165
685
  getCreateLeaderboardAsync(requestData: GroupModels.ServerGetCreateLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCreateLeaderboardOperationResponse>;
686
+ /**
687
+ * Sends the getStatisticsLog operation and returns the typed response via callback.
688
+ */
166
689
  getStatisticsLog(requestData: GroupModels.ServerGetStatisticsLogRequestData, onResponse?: Action1<GroupResponseModels.GetStatisticsLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
690
+ /**
691
+ * Sends the getStatisticsLog operation and resolves with the typed response.
692
+ */
167
693
  getStatisticsLogAsync(requestData: GroupModels.ServerGetStatisticsLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetStatisticsLogOperationResponse>;
694
+ /**
695
+ * Sends the getCurrencyLog operation and returns the typed response via callback.
696
+ */
168
697
  getCurrencyLog(requestData: GroupModels.ServerGetCurrencyLogRequestData, onResponse?: Action1<GroupResponseModels.GetCurrencyLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
698
+ /**
699
+ * Sends the getCurrencyLog operation and resolves with the typed response.
700
+ */
169
701
  getCurrencyLogAsync(requestData: GroupModels.ServerGetCurrencyLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCurrencyLogOperationResponse>;
170
702
  }
703
+ /**
704
+ * Admin-scoped Group namespace, reachable through
705
+ * `GNNetwork.group.admin`.
706
+ *
707
+ * Mirrors {@link ServerGroupApi} but routed through
708
+ * {@link RequestRole.Admin}. The backend uses the caller's
709
+ * admin auth token to authorise privileged operations
710
+ * (force-add / force-remove members, override role rules,
711
+ * disband group). Reserved for dashboard / GM / backoffice
712
+ * tools.
713
+ */
171
714
  export declare class AdminGroupApi {
715
+ /**
716
+ * Sends the addMember operation and returns the typed response via callback.
717
+ */
172
718
  addMember(requestData: GroupModels.AdminAddMemberRequestData, onResponse?: Action1<GroupResponseModels.AddMemberOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
719
+ /**
720
+ * Sends the addMember operation and resolves with the typed response.
721
+ */
173
722
  addMemberAsync(requestData: GroupModels.AdminAddMemberRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.AddMemberOperationResponse>;
723
+ /**
724
+ * Sends the addSegment operation and returns the typed response via callback.
725
+ */
174
726
  addSegment(requestData: GroupModels.AdminAddSegmentRequestData, onResponse?: Action1<GroupResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
727
+ /**
728
+ * Sends the addSegment operation and resolves with the typed response.
729
+ */
175
730
  addSegmentAsync(requestData: GroupModels.AdminAddSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.AddSegmentOperationResponse>;
731
+ /**
732
+ * Sends the getAvatar operation and returns the typed response via callback.
733
+ */
176
734
  getAvatar(requestData: GroupModels.AdminGetAvatarRequestData, onResponse?: Action1<GroupResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
735
+ /**
736
+ * Sends the getAvatar operation and resolves with the typed response.
737
+ */
177
738
  getAvatarAsync(requestData: GroupModels.AdminGetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetAvatarOperationResponse>;
739
+ /**
740
+ * Sends the getCatalogId operation and returns the typed response via callback.
741
+ */
178
742
  getCatalogId(requestData: GroupModels.AdminGetCatalogIdRequestData, onResponse?: Action1<GroupResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
743
+ /**
744
+ * Sends the getCatalogId operation and resolves with the typed response.
745
+ */
179
746
  getCatalogIdAsync(requestData: GroupModels.AdminGetCatalogIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCatalogIdOperationResponse>;
747
+ /**
748
+ * Sends the getCustomData operation and returns the typed response via callback.
749
+ */
180
750
  getCustomData(requestData: GroupModels.AdminGetCustomDataRequestData, onResponse?: Action1<GroupResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
751
+ /**
752
+ * Sends the getCustomData operation and resolves with the typed response.
753
+ */
181
754
  getCustomDataAsync(requestData: GroupModels.AdminGetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCustomDataOperationResponse>;
755
+ /**
756
+ * Sends the getDisplayName operation and returns the typed response via callback.
757
+ */
182
758
  getDisplayName(requestData: GroupModels.AdminGetDisplayNameRequestData, onResponse?: Action1<GroupResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
759
+ /**
760
+ * Sends the getDisplayName operation and resolves with the typed response.
761
+ */
183
762
  getDisplayNameAsync(requestData: GroupModels.AdminGetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetDisplayNameOperationResponse>;
763
+ /**
764
+ * Sends the getGroupCurrency operation and returns the typed response via callback.
765
+ */
184
766
  getGroupCurrency(requestData: GroupModels.AdminGetGroupCurrencyRequestData, onResponse?: Action1<GroupResponseModels.GetGroupCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
767
+ /**
768
+ * Sends the getGroupCurrency operation and resolves with the typed response.
769
+ */
185
770
  getGroupCurrencyAsync(requestData: GroupModels.AdminGetGroupCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupCurrencyOperationResponse>;
771
+ /**
772
+ * Sends the getGroupData operation and returns the typed response via callback.
773
+ */
186
774
  getGroupData(requestData: GroupModels.AdminGetGroupDataRequestData, onResponse?: Action1<GroupResponseModels.GetGroupDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
775
+ /**
776
+ * Sends the getGroupData operation and resolves with the typed response.
777
+ */
187
778
  getGroupDataAsync(requestData: GroupModels.AdminGetGroupDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupDataOperationResponse>;
779
+ /**
780
+ * Sends the getGroupInformation operation and returns the typed response via callback.
781
+ */
188
782
  getGroupInformation(requestData: GroupModels.AdminGetGroupInformationRequestData, onResponse?: Action1<GroupResponseModels.GetGroupInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
783
+ /**
784
+ * Sends the getGroupInformation operation and resolves with the typed response.
785
+ */
189
786
  getGroupInformationAsync(requestData: GroupModels.AdminGetGroupInformationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupInformationOperationResponse>;
787
+ /**
788
+ * Sends the getGroupInventory operation and returns the typed response via callback.
789
+ */
190
790
  getGroupInventory(requestData: GroupModels.AdminGetGroupInventoryRequestData, onResponse?: Action1<GroupResponseModels.GetGroupInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
791
+ /**
792
+ * Sends the getGroupInventory operation and resolves with the typed response.
793
+ */
191
794
  getGroupInventoryAsync(requestData: GroupModels.AdminGetGroupInventoryRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupInventoryOperationResponse>;
795
+ /**
796
+ * Sends the getGroupMessage operation and returns the typed response via callback.
797
+ */
192
798
  getGroupMessage(requestData: GroupModels.AdminGetGroupMessageRequestData, onResponse?: Action1<GroupResponseModels.GetGroupMessageOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
799
+ /**
800
+ * Sends the getGroupMessage operation and resolves with the typed response.
801
+ */
193
802
  getGroupMessageAsync(requestData: GroupModels.AdminGetGroupMessageRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupMessageOperationResponse>;
803
+ /**
804
+ * Sends the getGroupStatistics operation and returns the typed response via callback.
805
+ */
194
806
  getGroupStatistics(requestData: GroupModels.AdminGetGroupStatisticsRequestData, onResponse?: Action1<GroupResponseModels.GetGroupStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
807
+ /**
808
+ * Sends the getGroupStatistics operation and resolves with the typed response.
809
+ */
195
810
  getGroupStatisticsAsync(requestData: GroupModels.AdminGetGroupStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupStatisticsOperationResponse>;
811
+ /**
812
+ * Sends the getGroupsWithDisplayName operation and returns the typed response via callback.
813
+ */
196
814
  getGroupsWithDisplayName(requestData: GroupModels.AdminGetGroupsWithDisplayNameRequestData, onResponse?: Action1<GroupResponseModels.GetGroupsWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
815
+ /**
816
+ * Sends the getGroupsWithDisplayName operation and resolves with the typed response.
817
+ */
197
818
  getGroupsWithDisplayNameAsync(requestData: GroupModels.AdminGetGroupsWithDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupsWithDisplayNameOperationResponse>;
819
+ /**
820
+ * Sends the getGroupsWithSegment operation and returns the typed response via callback.
821
+ */
198
822
  getGroupsWithSegment(requestData: GroupModels.AdminGetGroupsWithSegmentRequestData, onResponse?: Action1<GroupResponseModels.GetGroupsWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
823
+ /**
824
+ * Sends the getGroupsWithSegment operation and resolves with the typed response.
825
+ */
199
826
  getGroupsWithSegmentAsync(requestData: GroupModels.AdminGetGroupsWithSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupsWithSegmentOperationResponse>;
827
+ /**
828
+ * Sends the getGroupsWithTag operation and returns the typed response via callback.
829
+ */
200
830
  getGroupsWithTag(requestData: GroupModels.AdminGetGroupsWithTagRequestData, onResponse?: Action1<GroupResponseModels.GetGroupsWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
831
+ /**
832
+ * Sends the getGroupsWithTag operation and resolves with the typed response.
833
+ */
201
834
  getGroupsWithTagAsync(requestData: GroupModels.AdminGetGroupsWithTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetGroupsWithTagOperationResponse>;
835
+ /**
836
+ * Sends the getMembers operation and returns the typed response via callback.
837
+ */
202
838
  getMembers(requestData: GroupModels.AdminGetMembersRequestData, onResponse?: Action1<GroupResponseModels.GetMembersOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
839
+ /**
840
+ * Sends the getMembers operation and resolves with the typed response.
841
+ */
203
842
  getMembersAsync(requestData: GroupModels.AdminGetMembersRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetMembersOperationResponse>;
843
+ /**
844
+ * Sends the getRemoveStatus operation and returns the typed response via callback.
845
+ */
204
846
  getRemoveStatus(requestData: GroupModels.AdminGetRemoveStatusRequestData, onResponse?: Action1<GroupResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
847
+ /**
848
+ * Sends the getRemoveStatus operation and resolves with the typed response.
849
+ */
205
850
  getRemoveStatusAsync(requestData: GroupModels.AdminGetRemoveStatusRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetRemoveStatusOperationResponse>;
851
+ /**
852
+ * Sends the getSegment operation and returns the typed response via callback.
853
+ */
206
854
  getSegment(requestData: GroupModels.AdminGetSegmentRequestData, onResponse?: Action1<GroupResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
855
+ /**
856
+ * Sends the getSegment operation and resolves with the typed response.
857
+ */
207
858
  getSegmentAsync(requestData: GroupModels.AdminGetSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetSegmentOperationResponse>;
859
+ /**
860
+ * Sends the getStatisticsLeaderboardAroundGroup operation and returns the typed response via callback.
861
+ */
208
862
  getStatisticsLeaderboardAroundGroup(requestData: GroupModels.AdminGetStatisticsLeaderboardAroundGroupRequestData, onResponse?: Action1<GroupResponseModels.GetStatisticsLeaderboardAroundGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
863
+ /**
864
+ * Sends the getStatisticsLeaderboardAroundGroup operation and resolves with the typed response.
865
+ */
209
866
  getStatisticsLeaderboardAroundGroupAsync(requestData: GroupModels.AdminGetStatisticsLeaderboardAroundGroupRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetStatisticsLeaderboardAroundGroupOperationResponse>;
867
+ /**
868
+ * Sends the getStatisticsLeaderboard operation and returns the typed response via callback.
869
+ */
210
870
  getStatisticsLeaderboard(requestData: GroupModels.AdminGetStatisticsLeaderboardRequestData, onResponse?: Action1<GroupResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
871
+ /**
872
+ * Sends the getStatisticsLeaderboard operation and resolves with the typed response.
873
+ */
211
874
  getStatisticsLeaderboardAsync(requestData: GroupModels.AdminGetStatisticsLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetStatisticsLeaderboardOperationResponse>;
875
+ /**
876
+ * Sends the getTag operation and returns the typed response via callback.
877
+ */
212
878
  getTag(requestData: GroupModels.AdminGetTagRequestData, onResponse?: Action1<GroupResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
879
+ /**
880
+ * Sends the getTag operation and resolves with the typed response.
881
+ */
213
882
  getTagAsync(requestData: GroupModels.AdminGetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetTagOperationResponse>;
883
+ /**
884
+ * Sends the getTsCreate operation and returns the typed response via callback.
885
+ */
214
886
  getTsCreate(requestData: GroupModels.AdminGetTsCreateRequestData, onResponse?: Action1<GroupResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
887
+ /**
888
+ * Sends the getTsCreate operation and resolves with the typed response.
889
+ */
215
890
  getTsCreateAsync(requestData: GroupModels.AdminGetTsCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetTsCreateOperationResponse>;
891
+ /**
892
+ * Sends the createGroupItem operation and returns the typed response via callback.
893
+ */
216
894
  createGroupItem(requestData: GroupModels.AdminCreateGroupItemRequestData, onResponse?: Action1<GroupResponseModels.CreateGroupItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
895
+ /**
896
+ * Sends the createGroupItem operation and resolves with the typed response.
897
+ */
217
898
  createGroupItemAsync(requestData: GroupModels.AdminCreateGroupItemRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.CreateGroupItemOperationResponse>;
899
+ /**
900
+ * Sends the removeGroupItem operation and returns the typed response via callback.
901
+ */
218
902
  removeGroupItem(requestData: GroupModels.AdminRemoveGroupItemRequestData, onResponse?: Action1<GroupResponseModels.RemoveGroupItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
903
+ /**
904
+ * Sends the removeGroupItem operation and resolves with the typed response.
905
+ */
219
906
  removeGroupItemAsync(requestData: GroupModels.AdminRemoveGroupItemRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.RemoveGroupItemOperationResponse>;
907
+ /**
908
+ * Sends the removeMember operation and returns the typed response via callback.
909
+ */
220
910
  removeMember(requestData: GroupModels.AdminRemoveMemberRequestData, onResponse?: Action1<GroupResponseModels.RemoveMemberOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
911
+ /**
912
+ * Sends the removeMember operation and resolves with the typed response.
913
+ */
221
914
  removeMemberAsync(requestData: GroupModels.AdminRemoveMemberRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.RemoveMemberOperationResponse>;
915
+ /**
916
+ * Sends the removeSegment operation and returns the typed response via callback.
917
+ */
222
918
  removeSegment(requestData: GroupModels.AdminRemoveSegmentRequestData, onResponse?: Action1<GroupResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
919
+ /**
920
+ * Sends the removeSegment operation and resolves with the typed response.
921
+ */
223
922
  removeSegmentAsync(requestData: GroupModels.AdminRemoveSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.RemoveSegmentOperationResponse>;
923
+ /**
924
+ * Sends the removeTag operation and returns the typed response via callback.
925
+ */
224
926
  removeTag(requestData: GroupModels.AdminRemoveTagRequestData, onResponse?: Action1<GroupResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
927
+ /**
928
+ * Sends the removeTag operation and resolves with the typed response.
929
+ */
225
930
  removeTagAsync(requestData: GroupModels.AdminRemoveTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.RemoveTagOperationResponse>;
931
+ /**
932
+ * Sends the sendGroupMessage operation and returns the typed response via callback.
933
+ */
226
934
  sendGroupMessage(requestData: GroupModels.AdminSendGroupMessageRequestData, onResponse?: Action1<GroupResponseModels.SendGroupMessageOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
935
+ /**
936
+ * Sends the sendGroupMessage operation and resolves with the typed response.
937
+ */
227
938
  sendGroupMessageAsync(requestData: GroupModels.AdminSendGroupMessageRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SendGroupMessageOperationResponse>;
939
+ /**
940
+ * Sends the setAvatar operation and returns the typed response via callback.
941
+ */
228
942
  setAvatar(requestData: GroupModels.AdminSetAvatarRequestData, onResponse?: Action1<GroupResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
943
+ /**
944
+ * Sends the setAvatar operation and resolves with the typed response.
945
+ */
229
946
  setAvatarAsync(requestData: GroupModels.AdminSetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetAvatarOperationResponse>;
947
+ /**
948
+ * Sends the setCustomData operation and returns the typed response via callback.
949
+ */
230
950
  setCustomData(requestData: GroupModels.AdminSetCustomDataRequestData, onResponse?: Action1<GroupResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
951
+ /**
952
+ * Sends the setCustomData operation and resolves with the typed response.
953
+ */
231
954
  setCustomDataAsync(requestData: GroupModels.AdminSetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetCustomDataOperationResponse>;
955
+ /**
956
+ * Sends the setDisplayName operation and returns the typed response via callback.
957
+ */
232
958
  setDisplayName(requestData: GroupModels.AdminSetDisplayNameRequestData, onResponse?: Action1<GroupResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
959
+ /**
960
+ * Sends the setDisplayName operation and resolves with the typed response.
961
+ */
233
962
  setDisplayNameAsync(requestData: GroupModels.AdminSetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetDisplayNameOperationResponse>;
963
+ /**
964
+ * Sends the changeGroupCurrency operation and returns the typed response via callback.
965
+ */
234
966
  changeGroupCurrency(requestData: GroupModels.AdminChangeGroupCurrencyRequestData, onResponse?: Action1<GroupResponseModels.ChangeGroupCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
967
+ /**
968
+ * Sends the changeGroupCurrency operation and resolves with the typed response.
969
+ */
235
970
  changeGroupCurrencyAsync(requestData: GroupModels.AdminChangeGroupCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.ChangeGroupCurrencyOperationResponse>;
971
+ /**
972
+ * Sends the setGroupData operation and returns the typed response via callback.
973
+ */
236
974
  setGroupData(requestData: GroupModels.AdminSetGroupDataRequestData, onResponse?: Action1<GroupResponseModels.SetGroupDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
975
+ /**
976
+ * Sends the setGroupData operation and resolves with the typed response.
977
+ */
237
978
  setGroupDataAsync(requestData: GroupModels.AdminSetGroupDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetGroupDataOperationResponse>;
979
+ /**
980
+ * Sends the changeGroupStatistics operation and returns the typed response via callback.
981
+ */
238
982
  changeGroupStatistics(requestData: GroupModels.AdminChangeGroupStatisticsRequestData, onResponse?: Action1<GroupResponseModels.ChangeGroupStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
983
+ /**
984
+ * Sends the changeGroupStatistics operation and resolves with the typed response.
985
+ */
239
986
  changeGroupStatisticsAsync(requestData: GroupModels.AdminChangeGroupStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.ChangeGroupStatisticsOperationResponse>;
987
+ /**
988
+ * Sends the setRemoveStatus operation and returns the typed response via callback.
989
+ */
240
990
  setRemoveStatus(requestData: GroupModels.AdminSetRemoveStatusRequestData, onResponse?: Action1<GroupResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
991
+ /**
992
+ * Sends the setRemoveStatus operation and resolves with the typed response.
993
+ */
241
994
  setRemoveStatusAsync(requestData: GroupModels.AdminSetRemoveStatusRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetRemoveStatusOperationResponse>;
995
+ /**
996
+ * Sends the setTag operation and returns the typed response via callback.
997
+ */
242
998
  setTag(requestData: GroupModels.AdminSetTagRequestData, onResponse?: Action1<GroupResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
999
+ /**
1000
+ * Sends the setTag operation and resolves with the typed response.
1001
+ */
243
1002
  setTagAsync(requestData: GroupModels.AdminSetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.SetTagOperationResponse>;
1003
+ /**
1004
+ * Sends the getCurrencyLeaderboard operation and returns the typed response via callback.
1005
+ */
244
1006
  getCurrencyLeaderboard(requestData: GroupModels.AdminGetCurrencyLeaderboardRequestData, onResponse?: Action1<GroupResponseModels.GetCurrencyLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1007
+ /**
1008
+ * Sends the getCurrencyLeaderboard operation and resolves with the typed response.
1009
+ */
245
1010
  getCurrencyLeaderboardAsync(requestData: GroupModels.AdminGetCurrencyLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCurrencyLeaderboardOperationResponse>;
1011
+ /**
1012
+ * Sends the getCreateLeaderboard operation and returns the typed response via callback.
1013
+ */
246
1014
  getCreateLeaderboard(requestData: GroupModels.AdminGetCreateLeaderboardRequestData, onResponse?: Action1<GroupResponseModels.GetCreateLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1015
+ /**
1016
+ * Sends the getCreateLeaderboard operation and resolves with the typed response.
1017
+ */
247
1018
  getCreateLeaderboardAsync(requestData: GroupModels.AdminGetCreateLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCreateLeaderboardOperationResponse>;
1019
+ /**
1020
+ * Sends the getStatisticsLog operation and returns the typed response via callback.
1021
+ */
248
1022
  getStatisticsLog(requestData: GroupModels.AdminGetStatisticsLogRequestData, onResponse?: Action1<GroupResponseModels.GetStatisticsLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1023
+ /**
1024
+ * Sends the getStatisticsLog operation and resolves with the typed response.
1025
+ */
249
1026
  getStatisticsLogAsync(requestData: GroupModels.AdminGetStatisticsLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetStatisticsLogOperationResponse>;
1027
+ /**
1028
+ * Sends the getCurrencyLog operation and returns the typed response via callback.
1029
+ */
250
1030
  getCurrencyLog(requestData: GroupModels.AdminGetCurrencyLogRequestData, onResponse?: Action1<GroupResponseModels.GetCurrencyLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1031
+ /**
1032
+ * Sends the getCurrencyLog operation and resolves with the typed response.
1033
+ */
251
1034
  getCurrencyLogAsync(requestData: GroupModels.AdminGetCurrencyLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<GroupResponseModels.GetCurrencyLogOperationResponse>;
252
1035
  }