@xmobitea/gn-server 2.0.1

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 (571) hide show
  1. package/GNconfig.debug.json +80 -0
  2. package/dist/GN-app-api/handler/controller/RequestController.d.ts +18 -0
  3. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginBaseRequestHandler.d.ts +38 -0
  4. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByAccountRequestHandler.d.ts +19 -0
  5. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByAndroidDeviceIdRequestHandler.d.ts +19 -0
  6. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByAppleRequestHandler.d.ts +19 -0
  7. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByCustomDeviceIdRequestHandler.d.ts +19 -0
  8. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByCustomIdRequestHandler.d.ts +19 -0
  9. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByEditorDeviceIdRequestHandler.d.ts +19 -0
  10. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByFacebookRequestHandler.d.ts +19 -0
  11. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByGenericServiceRequestHandler.d.ts +21 -0
  12. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByGoogleRequestHandler.d.ts +20 -0
  13. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByLinuxDeviceIdRequestHandler.d.ts +19 -0
  14. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByMacOSDeviceIdRequestHandler.d.ts +19 -0
  15. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByWindowsDeviceIdRequestHandler.d.ts +19 -0
  16. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByWindowsPhoneDeviceIdRequestHandler.d.ts +19 -0
  17. package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByiOSDeviceIdRequestHandler.d.ts +19 -0
  18. package/dist/GN-app-api/handler/controller/handler/authenticate/RefreshAuthTokenRequestHandler.d.ts +15 -0
  19. package/dist/GN-app-api/handler/controller/handler/authenticate/RegisterAccountRequestHandler.d.ts +24 -0
  20. package/dist/GN-app-api/handler/controller/handler/authenticate/model/InfoRequestParam.d.ts +22 -0
  21. package/dist/GN-app-api/handler/controller/handler/base/IRequestHandler.d.ts +12 -0
  22. package/dist/GN-app-api/handler/controller/handler/base/RequestHandler.d.ts +22 -0
  23. package/dist/GN-app-api/handler/controller/handler/characterPlayer/AddPlayerFriendRequestHandler.d.ts +20 -0
  24. package/dist/GN-app-api/handler/controller/handler/characterPlayer/AddSegmentRequestHandler.d.ts +19 -0
  25. package/dist/GN-app-api/handler/controller/handler/characterPlayer/CharacterPlayerBaseRequestHandler.d.ts +35 -0
  26. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetAvatarRequestHandler.d.ts +18 -0
  27. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCatalogIdRequestHandler.d.ts +18 -0
  28. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCountryCodeRequestHandler.d.ts +18 -0
  29. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCurrencyLeaderboardRequestHandler.d.ts +24 -0
  30. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCustomDataRequestHandler.d.ts +19 -0
  31. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetDisplayNameRequestHandler.d.ts +18 -0
  32. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetFriendStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
  33. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetFriendStatisticsLeaderboardRequestHandler.d.ts +25 -0
  34. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetIpAddressCreateRequestHandler.d.ts +18 -0
  35. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetOwnerRequestHandler.d.ts +18 -0
  36. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerBanRequestHandler.d.ts +18 -0
  37. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerCurrencyRequestHandler.d.ts +19 -0
  38. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerDataRequestHandler.d.ts +19 -0
  39. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerFriendRequestHandler.d.ts +19 -0
  40. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerGroupRequestHandler.d.ts +19 -0
  41. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerInformationRequestHandler.d.ts +20 -0
  42. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerInventoryRequestHandler.d.ts +19 -0
  43. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerStatisticsRequestHandler.d.ts +19 -0
  44. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayersWithDisplayNameRequestHandler.d.ts +22 -0
  45. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayersWithSegmentRequestHandler.d.ts +22 -0
  46. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayersWithTagRequestHandler.d.ts +23 -0
  47. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetRemoveStatusRequestHandler.d.ts +18 -0
  48. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetSegmentRequestHandler.d.ts +18 -0
  49. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
  50. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetStatisticsLeaderboardRequestHandler.d.ts +24 -0
  51. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetTagRequestHandler.d.ts +19 -0
  52. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetTsCreateRequestHandler.d.ts +18 -0
  53. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetTsLastLoginRequestHandler.d.ts +18 -0
  54. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GrantGroupRequestHandler.d.ts +22 -0
  55. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GrantPlayerItemRequestHandler.d.ts +22 -0
  56. package/dist/GN-app-api/handler/controller/handler/characterPlayer/JoinGroupRequestHandler.d.ts +19 -0
  57. package/dist/GN-app-api/handler/controller/handler/characterPlayer/LeaveGroupRequestHandler.d.ts +19 -0
  58. package/dist/GN-app-api/handler/controller/handler/characterPlayer/RemovePlayerFriendRequestHandler.d.ts +19 -0
  59. package/dist/GN-app-api/handler/controller/handler/characterPlayer/RemovePlayerItemRequestHandler.d.ts +19 -0
  60. package/dist/GN-app-api/handler/controller/handler/characterPlayer/RemoveSegmentRequestHandler.d.ts +19 -0
  61. package/dist/GN-app-api/handler/controller/handler/characterPlayer/RemoveTagRequestHandler.d.ts +19 -0
  62. package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetAvatarRequestHandler.d.ts +20 -0
  63. package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetCountryCodeRequestHandler.d.ts +19 -0
  64. package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetCustomDataRequestHandler.d.ts +20 -0
  65. package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetDisplayNameRequestHandler.d.ts +19 -0
  66. package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetOwnerRequestHandler.d.ts +19 -0
  67. package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerBanRequestHandler.d.ts +20 -0
  68. package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerCurrencyRequestHandler.d.ts +20 -0
  69. package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerDataRequestHandler.d.ts +20 -0
  70. package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerStatisticsRequestHandler.d.ts +20 -0
  71. package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetRemoveStatusRequestHandler.d.ts +19 -0
  72. package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetTagRequestHandler.d.ts +20 -0
  73. package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/CustomDataParam.d.ts +4 -0
  74. package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/GroupMemberParam.d.ts +4 -0
  75. package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/InfoRequestParam.d.ts +30 -0
  76. package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/PlayerCurrencyParam.d.ts +4 -0
  77. package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/PlayerDataParam.d.ts +5 -0
  78. package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/PlayerStatisticsParam.d.ts +4 -0
  79. package/dist/GN-app-api/handler/controller/handler/content/CreateNewFileUploadInfoRequestHandler.d.ts +18 -0
  80. package/dist/GN-app-api/handler/controller/handler/content/GetContentDataRequestHandler.d.ts +19 -0
  81. package/dist/GN-app-api/handler/controller/handler/content/GetFileUploadInfoListRequestHandler.d.ts +20 -0
  82. package/dist/GN-app-api/handler/controller/handler/content/GetFileUploadInfoRequestHandler.d.ts +18 -0
  83. package/dist/GN-app-api/handler/controller/handler/content/RemoveFileUploadInfoRequestHandler.d.ts +19 -0
  84. package/dist/GN-app-api/handler/controller/handler/content/RequestDownloadFileUploadInfoRequestHandler.d.ts +18 -0
  85. package/dist/GN-app-api/handler/controller/handler/content/SetContentDataRequestHandler.d.ts +20 -0
  86. package/dist/GN-app-api/handler/controller/handler/content/model/ContentDataParam.d.ts +5 -0
  87. package/dist/GN-app-api/handler/controller/handler/dashboard/ChangePasswordAdminAccountRequestHandler.d.ts +17 -0
  88. package/dist/GN-app-api/handler/controller/handler/dashboard/GetAdminAccountListRequestHandler.d.ts +15 -0
  89. package/dist/GN-app-api/handler/controller/handler/dashboard/GetGameInformationRequestHandler.d.ts +16 -0
  90. package/dist/GN-app-api/handler/controller/handler/dashboard/GetGameListRequestHandler.d.ts +15 -0
  91. package/dist/GN-app-api/handler/controller/handler/dashboard/GetMasterGameSettingsRequestHandler.d.ts +15 -0
  92. package/dist/GN-app-api/handler/controller/handler/dashboard/GetSecretInfoInformationRequestHandler.d.ts +18 -0
  93. package/dist/GN-app-api/handler/controller/handler/dashboard/GetSecretInfoListRequestHandler.d.ts +15 -0
  94. package/dist/GN-app-api/handler/controller/handler/dashboard/GetServerLogRequestHandler.d.ts +15 -0
  95. package/dist/GN-app-api/handler/controller/handler/dashboard/GrantAdminAccountRequestHandler.d.ts +18 -0
  96. package/dist/GN-app-api/handler/controller/handler/dashboard/GrantGameRequestHandler.d.ts +16 -0
  97. package/dist/GN-app-api/handler/controller/handler/dashboard/GrantSecretInfoRequestHandler.d.ts +19 -0
  98. package/dist/GN-app-api/handler/controller/handler/dashboard/LoginByAdminAccountRequestHandler.d.ts +18 -0
  99. package/dist/GN-app-api/handler/controller/handler/dashboard/RemoveAdminAccountRequestHandler.d.ts +16 -0
  100. package/dist/GN-app-api/handler/controller/handler/dashboard/SetGameInformationRequestHandler.d.ts +23 -0
  101. package/dist/GN-app-api/handler/controller/handler/dashboard/SetMasterGameSettingsRequestHandler.d.ts +19 -0
  102. package/dist/GN-app-api/handler/controller/handler/dashboard/SetPasswordAdminAccountRequestHandler.d.ts +17 -0
  103. package/dist/GN-app-api/handler/controller/handler/dashboard/SetSecretInfoInformationRequestHandler.d.ts +20 -0
  104. package/dist/GN-app-api/handler/controller/handler/dashboard/SetSecretKeyAdminAccountRequestHandler.d.ts +17 -0
  105. package/dist/GN-app-api/handler/controller/handler/dashboard/model/AuthenticatePermissionRulesParam.d.ts +19 -0
  106. package/dist/GN-app-api/handler/controller/handler/dashboard/model/CharacterCatalogSettingsParam.d.ts +4 -0
  107. package/dist/GN-app-api/handler/controller/handler/dashboard/model/CharacterPlayerPermissionRulesParam.d.ts +52 -0
  108. package/dist/GN-app-api/handler/controller/handler/dashboard/model/CharacterPlayerSettingsParam.d.ts +17 -0
  109. package/dist/GN-app-api/handler/controller/handler/dashboard/model/ContentPermissionRulesParam.d.ts +10 -0
  110. package/dist/GN-app-api/handler/controller/handler/dashboard/model/CurrencySettingsParam.d.ts +4 -0
  111. package/dist/GN-app-api/handler/controller/handler/dashboard/model/DataSettingsParam.d.ts +4 -0
  112. package/dist/GN-app-api/handler/controller/handler/dashboard/model/FriendCatalogSettingsParam.d.ts +4 -0
  113. package/dist/GN-app-api/handler/controller/handler/dashboard/model/GamePlayerPermissionRulesParam.d.ts +51 -0
  114. package/dist/GN-app-api/handler/controller/handler/dashboard/model/GamePlayerSettingsParam.d.ts +19 -0
  115. package/dist/GN-app-api/handler/controller/handler/dashboard/model/GameSettingsParam.d.ts +10 -0
  116. package/dist/GN-app-api/handler/controller/handler/dashboard/model/GenericServiceSettingsParam.d.ts +3 -0
  117. package/dist/GN-app-api/handler/controller/handler/dashboard/model/GroupCatalogSettingsParam.d.ts +5 -0
  118. package/dist/GN-app-api/handler/controller/handler/dashboard/model/GroupPermissionRulesParam.d.ts +40 -0
  119. package/dist/GN-app-api/handler/controller/handler/dashboard/model/GroupSettingsParam.d.ts +13 -0
  120. package/dist/GN-app-api/handler/controller/handler/dashboard/model/InventoryPermissionRulesParam.d.ts +35 -0
  121. package/dist/GN-app-api/handler/controller/handler/dashboard/model/InventorySettingsParam.d.ts +9 -0
  122. package/dist/GN-app-api/handler/controller/handler/dashboard/model/ItemCatalogSettingsParam.d.ts +6 -0
  123. package/dist/GN-app-api/handler/controller/handler/dashboard/model/ItemClassSettingsParam.d.ts +4 -0
  124. package/dist/GN-app-api/handler/controller/handler/dashboard/model/MasterAdminPermissionRulesParam.d.ts +20 -0
  125. package/dist/GN-app-api/handler/controller/handler/dashboard/model/MasterPlayerPermissionRulesParam.d.ts +73 -0
  126. package/dist/GN-app-api/handler/controller/handler/dashboard/model/MasterPlayerSettingsParam.d.ts +13 -0
  127. package/dist/GN-app-api/handler/controller/handler/dashboard/model/MatchmakingQueueSettingsParam.d.ts +46 -0
  128. package/dist/GN-app-api/handler/controller/handler/dashboard/model/MultiplayerPermissionRulesParam.d.ts +11 -0
  129. package/dist/GN-app-api/handler/controller/handler/dashboard/model/PermissionParam.d.ts +22 -0
  130. package/dist/GN-app-api/handler/controller/handler/dashboard/model/PermissionRulesParam.d.ts +6 -0
  131. package/dist/GN-app-api/handler/controller/handler/dashboard/model/StatisticsSettingsParam.d.ts +6 -0
  132. package/dist/GN-app-api/handler/controller/handler/dashboard/model/StoreInventoryPermissionRulesParam.d.ts +12 -0
  133. package/dist/GN-app-api/handler/controller/handler/dashboard/model/TagSettingsParam.d.ts +4 -0
  134. package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyAppleSettingsParam.d.ts +4 -0
  135. package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyFacebookSettingsParam.d.ts +5 -0
  136. package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyGoogleSettingsParam.d.ts +5 -0
  137. package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyParam.d.ts +8 -0
  138. package/dist/GN-app-api/handler/controller/handler/gamePlayer/AddPlayerFriendRequestHandler.d.ts +20 -0
  139. package/dist/GN-app-api/handler/controller/handler/gamePlayer/AddSegmentRequestHandler.d.ts +19 -0
  140. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GamePlayerBaseRequestHandler.d.ts +32 -0
  141. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetAvatarRequestHandler.d.ts +18 -0
  142. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetCountryCodeRequestHandler.d.ts +18 -0
  143. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetCurrencyLeaderboardRequestHandler.d.ts +23 -0
  144. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetCustomDataRequestHandler.d.ts +19 -0
  145. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetDisplayNameRequestHandler.d.ts +18 -0
  146. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetFriendStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
  147. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetFriendStatisticsLeaderboardRequestHandler.d.ts +25 -0
  148. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetIpAddressCreateRequestHandler.d.ts +18 -0
  149. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetOnlineStatusRequestHandler.d.ts +18 -0
  150. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerBanRequestHandler.d.ts +18 -0
  151. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerCharacterRequestHandler.d.ts +19 -0
  152. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerCurrencyRequestHandler.d.ts +19 -0
  153. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerDataRequestHandler.d.ts +19 -0
  154. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerFriendRequestHandler.d.ts +19 -0
  155. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerGroupRequestHandler.d.ts +19 -0
  156. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerInformationRequestHandler.d.ts +20 -0
  157. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerInventoryRequestHandler.d.ts +19 -0
  158. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerStatisticsRequestHandler.d.ts +19 -0
  159. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayersWithDisplayNameRequestHandler.d.ts +22 -0
  160. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayersWithSegmentRequestHandler.d.ts +22 -0
  161. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayersWithTagRequestHandler.d.ts +23 -0
  162. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetSegmentRequestHandler.d.ts +18 -0
  163. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
  164. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetStatisticsLeaderboardRequestHandler.d.ts +23 -0
  165. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetTagRequestHandler.d.ts +19 -0
  166. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetTsCreateRequestHandler.d.ts +18 -0
  167. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetTsLastLoginRequestHandler.d.ts +18 -0
  168. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GrantGroupRequestHandler.d.ts +22 -0
  169. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GrantPlayerCharacterRequestHandler.d.ts +20 -0
  170. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GrantPlayerItemRequestHandler.d.ts +22 -0
  171. package/dist/GN-app-api/handler/controller/handler/gamePlayer/JoinGroupRequestHandler.d.ts +19 -0
  172. package/dist/GN-app-api/handler/controller/handler/gamePlayer/LeaveGroupRequestHandler.d.ts +19 -0
  173. package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemovePlayerCharacterRequestHandler.d.ts +19 -0
  174. package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemovePlayerFriendRequestHandler.d.ts +19 -0
  175. package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemovePlayerItemRequestHandler.d.ts +19 -0
  176. package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemoveSegmentRequestHandler.d.ts +19 -0
  177. package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemoveTagRequestHandler.d.ts +19 -0
  178. package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetAvatarRequestHandler.d.ts +20 -0
  179. package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetCountryCodeRequestHandler.d.ts +19 -0
  180. package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetCustomDataRequestHandler.d.ts +20 -0
  181. package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetDisplayNameRequestHandler.d.ts +20 -0
  182. package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerBanRequestHandler.d.ts +20 -0
  183. package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerCurrencyRequestHandler.d.ts +20 -0
  184. package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerDataRequestHandler.d.ts +20 -0
  185. package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerStatisticsRequestHandler.d.ts +20 -0
  186. package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetTagRequestHandler.d.ts +20 -0
  187. package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/CustomDataParam.d.ts +4 -0
  188. package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/GroupMemberParam.d.ts +3 -0
  189. package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/InfoRequestParam.d.ts +28 -0
  190. package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/PlayerCurrencyParam.d.ts +4 -0
  191. package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/PlayerDataParam.d.ts +5 -0
  192. package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/PlayerStatisticsParam.d.ts +4 -0
  193. package/dist/GN-app-api/handler/controller/handler/group/AddMemberRequestHandler.d.ts +19 -0
  194. package/dist/GN-app-api/handler/controller/handler/group/AddSegmentRequestHandler.d.ts +19 -0
  195. package/dist/GN-app-api/handler/controller/handler/group/GetAvatarRequestHandler.d.ts +18 -0
  196. package/dist/GN-app-api/handler/controller/handler/group/GetCatalogIdRequestHandler.d.ts +18 -0
  197. package/dist/GN-app-api/handler/controller/handler/group/GetCurrencyLeaderboardRequestHandler.d.ts +23 -0
  198. package/dist/GN-app-api/handler/controller/handler/group/GetCustomDataRequestHandler.d.ts +19 -0
  199. package/dist/GN-app-api/handler/controller/handler/group/GetDisplayNameRequestHandler.d.ts +18 -0
  200. package/dist/GN-app-api/handler/controller/handler/group/GetGroupCurrencyRequestHandler.d.ts +19 -0
  201. package/dist/GN-app-api/handler/controller/handler/group/GetGroupDataRequestHandler.d.ts +19 -0
  202. package/dist/GN-app-api/handler/controller/handler/group/GetGroupInformationRequestHandler.d.ts +20 -0
  203. package/dist/GN-app-api/handler/controller/handler/group/GetGroupInventoryRequestHandler.d.ts +19 -0
  204. package/dist/GN-app-api/handler/controller/handler/group/GetGroupMessageRequestHandler.d.ts +20 -0
  205. package/dist/GN-app-api/handler/controller/handler/group/GetGroupStatisticsRequestHandler.d.ts +19 -0
  206. package/dist/GN-app-api/handler/controller/handler/group/GetGroupsWithDisplayNameRequestHandler.d.ts +22 -0
  207. package/dist/GN-app-api/handler/controller/handler/group/GetGroupsWithSegmentRequestHandler.d.ts +22 -0
  208. package/dist/GN-app-api/handler/controller/handler/group/GetGroupsWithTagRequestHandler.d.ts +23 -0
  209. package/dist/GN-app-api/handler/controller/handler/group/GetMembersRequestHandler.d.ts +18 -0
  210. package/dist/GN-app-api/handler/controller/handler/group/GetRemoveStatusRequestHandler.d.ts +18 -0
  211. package/dist/GN-app-api/handler/controller/handler/group/GetSegmentRequestHandler.d.ts +18 -0
  212. package/dist/GN-app-api/handler/controller/handler/group/GetStatisticsLeaderboardAroundGroupRequestHandler.d.ts +23 -0
  213. package/dist/GN-app-api/handler/controller/handler/group/GetStatisticsLeaderboardRequestHandler.d.ts +23 -0
  214. package/dist/GN-app-api/handler/controller/handler/group/GetTagRequestHandler.d.ts +19 -0
  215. package/dist/GN-app-api/handler/controller/handler/group/GetTsCreateRequestHandler.d.ts +18 -0
  216. package/dist/GN-app-api/handler/controller/handler/group/GrantGroupItemRequestHandler.d.ts +22 -0
  217. package/dist/GN-app-api/handler/controller/handler/group/GroupBaseRequestHandler.d.ts +35 -0
  218. package/dist/GN-app-api/handler/controller/handler/group/RemoveGroupItemRequestHandler.d.ts +19 -0
  219. package/dist/GN-app-api/handler/controller/handler/group/RemoveMemberRequestHandler.d.ts +19 -0
  220. package/dist/GN-app-api/handler/controller/handler/group/RemoveSegmentRequestHandler.d.ts +19 -0
  221. package/dist/GN-app-api/handler/controller/handler/group/RemoveTagRequestHandler.d.ts +19 -0
  222. package/dist/GN-app-api/handler/controller/handler/group/SendGroupMessageRequestHandler.d.ts +20 -0
  223. package/dist/GN-app-api/handler/controller/handler/group/SetAvatarRequestHandler.d.ts +20 -0
  224. package/dist/GN-app-api/handler/controller/handler/group/SetCustomDataRequestHandler.d.ts +20 -0
  225. package/dist/GN-app-api/handler/controller/handler/group/SetDisplayNameRequestHandler.d.ts +19 -0
  226. package/dist/GN-app-api/handler/controller/handler/group/SetGroupCurrencyRequestHandler.d.ts +20 -0
  227. package/dist/GN-app-api/handler/controller/handler/group/SetGroupDataRequestHandler.d.ts +20 -0
  228. package/dist/GN-app-api/handler/controller/handler/group/SetGroupStatisticsRequestHandler.d.ts +20 -0
  229. package/dist/GN-app-api/handler/controller/handler/group/SetRemoveStatusRequestHandler.d.ts +19 -0
  230. package/dist/GN-app-api/handler/controller/handler/group/SetTagRequestHandler.d.ts +20 -0
  231. package/dist/GN-app-api/handler/controller/handler/group/model/CustomDataParam.d.ts +4 -0
  232. package/dist/GN-app-api/handler/controller/handler/group/model/GroupCurrencyParam.d.ts +4 -0
  233. package/dist/GN-app-api/handler/controller/handler/group/model/GroupDataParam.d.ts +5 -0
  234. package/dist/GN-app-api/handler/controller/handler/group/model/GroupMemberParam.d.ts +4 -0
  235. package/dist/GN-app-api/handler/controller/handler/group/model/GroupMessageItem.d.ts +6 -0
  236. package/dist/GN-app-api/handler/controller/handler/group/model/GroupStatisticsParam.d.ts +4 -0
  237. package/dist/GN-app-api/handler/controller/handler/group/model/InfoRequestParam.d.ts +21 -0
  238. package/dist/GN-app-api/handler/controller/handler/inventory/AddSegmentRequestHandler.d.ts +19 -0
  239. package/dist/GN-app-api/handler/controller/handler/inventory/GetAmountRequestHandler.d.ts +18 -0
  240. package/dist/GN-app-api/handler/controller/handler/inventory/GetAvatarRequestHandler.d.ts +18 -0
  241. package/dist/GN-app-api/handler/controller/handler/inventory/GetCatalogIdRequestHandler.d.ts +18 -0
  242. package/dist/GN-app-api/handler/controller/handler/inventory/GetClassIdRequestHandler.d.ts +18 -0
  243. package/dist/GN-app-api/handler/controller/handler/inventory/GetCustomDataRequestHandler.d.ts +19 -0
  244. package/dist/GN-app-api/handler/controller/handler/inventory/GetDisplayNameRequestHandler.d.ts +18 -0
  245. package/dist/GN-app-api/handler/controller/handler/inventory/GetItemDataRequestHandler.d.ts +19 -0
  246. package/dist/GN-app-api/handler/controller/handler/inventory/GetItemInformationRequestHandler.d.ts +20 -0
  247. package/dist/GN-app-api/handler/controller/handler/inventory/GetItemStatisticsRequestHandler.d.ts +19 -0
  248. package/dist/GN-app-api/handler/controller/handler/inventory/GetItemTypeRequestHandler.d.ts +18 -0
  249. package/dist/GN-app-api/handler/controller/handler/inventory/GetItemsWithDisplayNameRequestHandler.d.ts +22 -0
  250. package/dist/GN-app-api/handler/controller/handler/inventory/GetItemsWithSegmentRequestHandler.d.ts +22 -0
  251. package/dist/GN-app-api/handler/controller/handler/inventory/GetItemsWithTagRequestHandler.d.ts +23 -0
  252. package/dist/GN-app-api/handler/controller/handler/inventory/GetOwnerRequestHandler.d.ts +18 -0
  253. package/dist/GN-app-api/handler/controller/handler/inventory/GetRemoveStatusRequestHandler.d.ts +18 -0
  254. package/dist/GN-app-api/handler/controller/handler/inventory/GetSegmentRequestHandler.d.ts +18 -0
  255. package/dist/GN-app-api/handler/controller/handler/inventory/GetStatisticsLeaderboardAroundItemRequestHandler.d.ts +23 -0
  256. package/dist/GN-app-api/handler/controller/handler/inventory/GetStatisticsLeaderboardRequestHandler.d.ts +23 -0
  257. package/dist/GN-app-api/handler/controller/handler/inventory/GetTagRequestHandler.d.ts +19 -0
  258. package/dist/GN-app-api/handler/controller/handler/inventory/GetTsCreateRequestHandler.d.ts +18 -0
  259. package/dist/GN-app-api/handler/controller/handler/inventory/ItemBaseRequestHandler.d.ts +30 -0
  260. package/dist/GN-app-api/handler/controller/handler/inventory/RemoveSegmentRequestHandler.d.ts +19 -0
  261. package/dist/GN-app-api/handler/controller/handler/inventory/RemoveTagRequestHandler.d.ts +19 -0
  262. package/dist/GN-app-api/handler/controller/handler/inventory/SetAmountRequestHandler.d.ts +19 -0
  263. package/dist/GN-app-api/handler/controller/handler/inventory/SetAvatarRequestHandler.d.ts +20 -0
  264. package/dist/GN-app-api/handler/controller/handler/inventory/SetCustomDataRequestHandler.d.ts +20 -0
  265. package/dist/GN-app-api/handler/controller/handler/inventory/SetDisplayNameRequestHandler.d.ts +19 -0
  266. package/dist/GN-app-api/handler/controller/handler/inventory/SetItemDataRequestHandler.d.ts +20 -0
  267. package/dist/GN-app-api/handler/controller/handler/inventory/SetItemStatisticsRequestHandler.d.ts +20 -0
  268. package/dist/GN-app-api/handler/controller/handler/inventory/SetOwnerRequestHandler.d.ts +20 -0
  269. package/dist/GN-app-api/handler/controller/handler/inventory/SetRemoveStatusRequestHandler.d.ts +19 -0
  270. package/dist/GN-app-api/handler/controller/handler/inventory/SetTagRequestHandler.d.ts +20 -0
  271. package/dist/GN-app-api/handler/controller/handler/inventory/model/CustomDataParam.d.ts +4 -0
  272. package/dist/GN-app-api/handler/controller/handler/inventory/model/InfoRequestParam.d.ts +20 -0
  273. package/dist/GN-app-api/handler/controller/handler/inventory/model/ItemDataParam.d.ts +5 -0
  274. package/dist/GN-app-api/handler/controller/handler/inventory/model/ItemStatisticsParam.d.ts +4 -0
  275. package/dist/GN-app-api/handler/controller/handler/masterPlayer/AddSegmentRequestHandler.d.ts +19 -0
  276. package/dist/GN-app-api/handler/controller/handler/masterPlayer/ChangeAccountPasswordRequestHandler.d.ts +18 -0
  277. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetAvatarRequestHandler.d.ts +18 -0
  278. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetCountryCodeRequestHandler.d.ts +18 -0
  279. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetCurrencyLeaderboardRequestHandler.d.ts +23 -0
  280. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetCustomDataRequestHandler.d.ts +19 -0
  281. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetDisplayNameRequestHandler.d.ts +18 -0
  282. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetEmailRequestHandler.d.ts +18 -0
  283. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetExternalRequestHandler.d.ts +18 -0
  284. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetIpAddressCreateRequestHandler.d.ts +18 -0
  285. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerBanRequestHandler.d.ts +18 -0
  286. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerCurrencyRequestHandler.d.ts +19 -0
  287. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerDataRequestHandler.d.ts +19 -0
  288. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerInformationRequestHandler.d.ts +20 -0
  289. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerStatisticsRequestHandler.d.ts +19 -0
  290. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithAppleRequestHandler.d.ts +20 -0
  291. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithDisplayNameRequestHandler.d.ts +22 -0
  292. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithFacebookRequestHandler.d.ts +20 -0
  293. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithGenericServiceRequestHandler.d.ts +21 -0
  294. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithGoogleRequestHandler.d.ts +20 -0
  295. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithSegmentRequestHandler.d.ts +22 -0
  296. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithTagRequestHandler.d.ts +23 -0
  297. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetSegmentRequestHandler.d.ts +18 -0
  298. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
  299. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetStatisticsLeaderboardRequestHandler.d.ts +23 -0
  300. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetTagRequestHandler.d.ts +19 -0
  301. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetTsCreateRequestHandler.d.ts +18 -0
  302. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetTsLastLoginRequestHandler.d.ts +18 -0
  303. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkAccountRequestHandler.d.ts +21 -0
  304. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkAndroidDeviceIdRequestHandler.d.ts +20 -0
  305. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkAppleRequestHandler.d.ts +20 -0
  306. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkCustomDeviceIdRequestHandler.d.ts +20 -0
  307. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkCustomIdRequestHandler.d.ts +20 -0
  308. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkEditorDeviceIdRequestHandler.d.ts +20 -0
  309. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkFacebookRequestHandler.d.ts +20 -0
  310. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkGenericServiceRequestHandler.d.ts +22 -0
  311. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkGoogleRequestHandler.d.ts +21 -0
  312. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkLinuxDeviceIdRequestHandler.d.ts +20 -0
  313. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkMacOSDeviceIdRequestHandler.d.ts +20 -0
  314. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkWindowsDeviceIdRequestHandler.d.ts +20 -0
  315. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkWindowsPhoneDeviceIdRequestHandler.d.ts +20 -0
  316. package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkiOSDeviceIdRequestHandler.d.ts +20 -0
  317. package/dist/GN-app-api/handler/controller/handler/masterPlayer/MasterPlayerBaseRequestHandler.d.ts +30 -0
  318. package/dist/GN-app-api/handler/controller/handler/masterPlayer/RemoveSegmentRequestHandler.d.ts +19 -0
  319. package/dist/GN-app-api/handler/controller/handler/masterPlayer/RemoveTagRequestHandler.d.ts +19 -0
  320. package/dist/GN-app-api/handler/controller/handler/masterPlayer/ResetAccountPasswordRequestHandler.d.ts +19 -0
  321. package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetAvatarRequestHandler.d.ts +20 -0
  322. package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetCountryCodeRequestHandler.d.ts +19 -0
  323. package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetCustomDataRequestHandler.d.ts +20 -0
  324. package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetDisplayNameRequestHandler.d.ts +20 -0
  325. package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetEmailRequestHandler.d.ts +19 -0
  326. package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerBanRequestHandler.d.ts +20 -0
  327. package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerCurrencyRequestHandler.d.ts +20 -0
  328. package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerDataRequestHandler.d.ts +20 -0
  329. package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerStatisticsRequestHandler.d.ts +20 -0
  330. package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetTagRequestHandler.d.ts +20 -0
  331. package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetTsLastLoginRequestHandler.d.ts +18 -0
  332. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkAccountRequestHandler.d.ts +19 -0
  333. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkAndroidDeviceIdRequestHandler.d.ts +19 -0
  334. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkAppleRequestHandler.d.ts +19 -0
  335. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkCustomDeviceIdRequestHandler.d.ts +19 -0
  336. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkCustomIdRequestHandler.d.ts +19 -0
  337. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkEditorDeviceIdRequestHandler.d.ts +19 -0
  338. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkFacebookRequestHandler.d.ts +19 -0
  339. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkGenericServiceRequestHandler.d.ts +20 -0
  340. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkGoogleRequestHandler.d.ts +19 -0
  341. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkLinuxDeviceIdRequestHandler.d.ts +19 -0
  342. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkMacOSDeviceIdRequestHandler.d.ts +19 -0
  343. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkWindowsDeviceIdRequestHandler.d.ts +19 -0
  344. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkWindowsPhoneDeviceIdRequestHandler.d.ts +19 -0
  345. package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkiOSDeviceIdRequestHandler.d.ts +19 -0
  346. package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/CustomDataParam.d.ts +4 -0
  347. package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/InfoRequestParam.d.ts +22 -0
  348. package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/PlayerCurrencyParam.d.ts +4 -0
  349. package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/PlayerDataParam.d.ts +4 -0
  350. package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/PlayerStatisticsParam.d.ts +4 -0
  351. package/dist/GN-app-api/handler/controller/handler/multiplayer/CancelAllMatchmakingTicketRequestHandler.d.ts +18 -0
  352. package/dist/GN-app-api/handler/controller/handler/multiplayer/CancelMatchmakingTicketRequestHandler.d.ts +18 -0
  353. package/dist/GN-app-api/handler/controller/handler/multiplayer/CreateMatchmakingTicketRequestHandler.d.ts +22 -0
  354. package/dist/GN-app-api/handler/controller/handler/multiplayer/GetMatchRequestHandler.d.ts +19 -0
  355. package/dist/GN-app-api/handler/controller/handler/multiplayer/GetMatchmakingTicketRequestHandler.d.ts +19 -0
  356. package/dist/GN-app-api/handler/controller/handler/multiplayer/GetQueueStatisticsRequestHandler.d.ts +19 -0
  357. package/dist/GN-app-api/handler/controller/handler/multiplayer/JoinMatchmakingTicketRequestHandler.d.ts +20 -0
  358. package/dist/GN-app-api/handler/controller/handler/multiplayer/ListMatchmakingTicketsForPlayerRequestHandler.d.ts +18 -0
  359. package/dist/GN-app-api/handler/controller/handler/multiplayer/MatchmakingHandler.d.ts +62 -0
  360. package/dist/GN-app-api/handler/controller/handler/multiplayer/MultiplayerBaseRequestHandler.d.ts +10 -0
  361. package/dist/GN-app-api/handler/controller/handler/storeInventory/BuyStoreItemRequestHandler.d.ts +20 -0
  362. package/dist/GN-app-api/handler/controller/handler/storeInventory/GetStoreItemInformationRequestHandler.d.ts +20 -0
  363. package/dist/GN-app-api/handler/controller/handler/storeInventory/GetStoreItemsWithTagRequestHandler.d.ts +23 -0
  364. package/dist/GN-app-api/handler/controller/handler/storeInventory/GrantStoreItemRequestHandler.d.ts +18 -0
  365. package/dist/GN-app-api/handler/controller/handler/storeInventory/SetRemoveStatusRequestHandler.d.ts +19 -0
  366. package/dist/GN-app-api/handler/controller/handler/storeInventory/SetStoreItemInformationRequestHandler.d.ts +32 -0
  367. package/dist/GN-app-api/handler/controller/handler/storeInventory/StoreItemBaseRequestHandler.d.ts +22 -0
  368. package/dist/GN-app-api/handler/controller/handler/storeInventory/ValidateAppleAppStoreReceiptRequestHandler.d.ts +20 -0
  369. package/dist/GN-app-api/handler/controller/handler/storeInventory/ValidateFacebookStoreReceiptRequestHandler.d.ts +20 -0
  370. package/dist/GN-app-api/handler/controller/handler/storeInventory/ValidateGooglePlayStoreReceiptRequestHandler.d.ts +20 -0
  371. package/dist/GN-app-api/handler/controller/handler/storeInventory/model/AvatarParam.d.ts +4 -0
  372. package/dist/GN-app-api/handler/controller/handler/storeInventory/model/CurrencyParam.d.ts +4 -0
  373. package/dist/GN-app-api/handler/controller/handler/storeInventory/model/InAppPurchaseParam.d.ts +5 -0
  374. package/dist/GN-app-api/handler/controller/handler/storeInventory/model/InfoRequestParam.d.ts +12 -0
  375. package/dist/GN-app-api/handler/controller/handler/storeInventory/model/StoreDataParam.d.ts +4 -0
  376. package/dist/GN-app-api/handler/controller/handler/storeInventory/model/StoreItemParam.d.ts +5 -0
  377. package/dist/GN-app-api/handler/controller/handler/storeInventory/model/TagParam.d.ts +4 -0
  378. package/dist/GN-app-api/service/AnalyticsService.d.ts +24 -0
  379. package/dist/GN-app-api/service/AppleService.d.ts +25 -0
  380. package/dist/GN-app-api/service/EventCallbackService.d.ts +21 -0
  381. package/dist/GN-app-api/service/FacebookService.d.ts +23 -0
  382. package/dist/GN-app-api/service/GenericService.d.ts +10 -0
  383. package/dist/GN-app-api/service/GoogleService.d.ts +27 -0
  384. package/dist/GN-app-api/service/IAnalyticsService.d.ts +18 -0
  385. package/dist/GN-app-api/service/IAppleService.d.ts +9 -0
  386. package/dist/GN-app-api/service/IEventCallbackService.d.ts +19 -0
  387. package/dist/GN-app-api/service/IFacebookService.d.ts +9 -0
  388. package/dist/GN-app-api/service/IGenericService.d.ts +23 -0
  389. package/dist/GN-app-api/service/IGoogleService.d.ts +12 -0
  390. package/dist/GN-app-api/service/ILockService.d.ts +4 -0
  391. package/dist/GN-app-api/service/IPushNotificationService.d.ts +4 -0
  392. package/dist/GN-app-api/service/IRequestConverterService.d.ts +16 -0
  393. package/dist/GN-app-api/service/ITimerService.d.ts +10 -0
  394. package/dist/GN-app-api/service/LockService.d.ts +5 -0
  395. package/dist/GN-app-api/service/RequestConverterService.d.ts +17 -0
  396. package/dist/GN-app-api/service/TimerService.d.ts +21 -0
  397. package/dist/GN-common/common/GNData.d.ts +62 -0
  398. package/dist/GN-common/constant/Commands.d.ts +17 -0
  399. package/dist/GN-common/constant/EventCode.d.ts +8 -0
  400. package/dist/GN-common/constant/OperationCode.d.ts +184 -0
  401. package/dist/GN-common/constant/ReturnCode.d.ts +14 -0
  402. package/dist/GN-common/constant/enumType/FriendStatus.d.ts +6 -0
  403. package/dist/GN-common/constant/enumType/GoogleLoginType.d.ts +4 -0
  404. package/dist/GN-common/constant/enumType/GroupStatus.d.ts +6 -0
  405. package/dist/GN-common/constant/enumType/InvalidMemberType.d.ts +17 -0
  406. package/dist/GN-common/constant/enumType/ItemType.d.ts +4 -0
  407. package/dist/GN-common/constant/enumType/MatchmakingMemberStatus.d.ts +5 -0
  408. package/dist/GN-common/constant/enumType/MatchmakingTicketStatus.d.ts +7 -0
  409. package/dist/GN-common/constant/enumType/OwnerType.d.ts +6 -0
  410. package/dist/GN-common/constant/enumType/PermissionDataItem.d.ts +4 -0
  411. package/dist/GN-common/constant/enumType/RequestRole.d.ts +5 -0
  412. package/dist/GN-common/constant/enumType/RequestType.d.ts +13 -0
  413. package/dist/GN-common/constant/errorCode/GNErrorCode.d.ts +47 -0
  414. package/dist/GN-common/constant/parameterCode/GNParameterCode.d.ts +430 -0
  415. package/dist/GN-common/constant/parameterCode/ParameterCode.d.ts +6 -0
  416. package/dist/GN-common/entity/AuthInfo.d.ts +64 -0
  417. package/dist/GN-common/entity/DataMember.d.ts +78 -0
  418. package/dist/GN-common/entity/GNMetadata.d.ts +19 -0
  419. package/dist/GN-common/entity/InvalidMember.d.ts +5 -0
  420. package/dist/GN-common/entity/SecretInfo.d.ts +425 -0
  421. package/dist/GN-common/entity/TokenPayload.d.ts +5 -0
  422. package/dist/GN-common/entity/operationEvent/OperationEvent.d.ts +14 -0
  423. package/dist/GN-common/entity/operationHelper/OperationHelper.d.ts +15 -0
  424. package/dist/GN-common/entity/operationRequest/CommonOperationRequest.d.ts +12 -0
  425. package/dist/GN-common/entity/operationRequest/OperationArray.d.ts +12 -0
  426. package/dist/GN-common/entity/operationRequest/OperationObject.d.ts +12 -0
  427. package/dist/GN-common/entity/operationRequest/OperationRequest.d.ts +23 -0
  428. package/dist/GN-common/entity/operationRequest/base/Request.d.ts +33 -0
  429. package/dist/GN-common/entity/operationResponse/OperationResponse.d.ts +27 -0
  430. package/dist/GN-common/helper/CodeHelper.d.ts +22 -0
  431. package/dist/GN-common/helper/DisplayNameUtility.d.ts +3 -0
  432. package/dist/GN-common/helper/Md5Generate.d.ts +3 -0
  433. package/dist/GN-common/helper/StringUtility.d.ts +4 -0
  434. package/dist/GN-library/xbuilder/lib/IBuilder.d.ts +3 -0
  435. package/dist/GN-library/xbuilder/lib/OnRunSuccess.d.ts +3 -0
  436. package/dist/GN-library/xcachedata/lib/xCacheData.d.ts +8 -0
  437. package/dist/GN-library/xcachedata/lib/xCacheItem.d.ts +8 -0
  438. package/dist/GN-library/xconfig/lib/entity/xConfigItem.d.ts +9 -0
  439. package/dist/GN-library/xconfig/lib/xConfig.d.ts +14 -0
  440. package/dist/GN-library/xdatabase/lib/entity/pro/AvatarItem.d.ts +4 -0
  441. package/dist/GN-library/xdatabase/lib/entity/pro/BanItem.d.ts +4 -0
  442. package/dist/GN-library/xdatabase/lib/entity/pro/CharacterItem.d.ts +4 -0
  443. package/dist/GN-library/xdatabase/lib/entity/pro/CharacterPlayer.d.ts +22 -0
  444. package/dist/GN-library/xdatabase/lib/entity/pro/ChatMessage.d.ts +34 -0
  445. package/dist/GN-library/xdatabase/lib/entity/pro/CurrencyItem.d.ts +3 -0
  446. package/dist/GN-library/xdatabase/lib/entity/pro/DataItem.d.ts +5 -0
  447. package/dist/GN-library/xdatabase/lib/entity/pro/DataObjectBase.d.ts +44 -0
  448. package/dist/GN-library/xdatabase/lib/entity/pro/ExternalItem.d.ts +38 -0
  449. package/dist/GN-library/xdatabase/lib/entity/pro/FriendItem.d.ts +6 -0
  450. package/dist/GN-library/xdatabase/lib/entity/pro/GamePlayer.d.ts +13 -0
  451. package/dist/GN-library/xdatabase/lib/entity/pro/GamePlayerBase.d.ts +38 -0
  452. package/dist/GN-library/xdatabase/lib/entity/pro/Group.d.ts +61 -0
  453. package/dist/GN-library/xdatabase/lib/entity/pro/GroupItem.d.ts +6 -0
  454. package/dist/GN-library/xdatabase/lib/entity/pro/Inventory.d.ts +49 -0
  455. package/dist/GN-library/xdatabase/lib/entity/pro/InventoryItem.d.ts +5 -0
  456. package/dist/GN-library/xdatabase/lib/entity/pro/MasterPlayer.d.ts +19 -0
  457. package/dist/GN-library/xdatabase/lib/entity/pro/Match.d.ts +28 -0
  458. package/dist/GN-library/xdatabase/lib/entity/pro/MatchMember.d.ts +6 -0
  459. package/dist/GN-library/xdatabase/lib/entity/pro/MatchmakingTicket.d.ts +46 -0
  460. package/dist/GN-library/xdatabase/lib/entity/pro/MatchmakingTicketMember.d.ts +11 -0
  461. package/dist/GN-library/xdatabase/lib/entity/pro/MemberItem.d.ts +4 -0
  462. package/dist/GN-library/xdatabase/lib/entity/pro/MongoObject.d.ts +18 -0
  463. package/dist/GN-library/xdatabase/lib/entity/pro/OwnerItem.d.ts +4 -0
  464. package/dist/GN-library/xdatabase/lib/entity/pro/PlayerBase.d.ts +48 -0
  465. package/dist/GN-library/xdatabase/lib/entity/pro/RemoveStatusItem.d.ts +4 -0
  466. package/dist/GN-library/xdatabase/lib/entity/pro/ServerDetail.d.ts +9 -0
  467. package/dist/GN-library/xdatabase/lib/entity/pro/StatisticsItem.d.ts +4 -0
  468. package/dist/GN-library/xdatabase/lib/entity/pro/StoreInventory.d.ts +65 -0
  469. package/dist/GN-library/xdatabase/lib/entity/pro/TradeInventory.d.ts +59 -0
  470. package/dist/GN-library/xdatabase/lib/entity/pro/UploadFileInfo.d.ts +40 -0
  471. package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/CharacterPlayerFindOptions.d.ts +23 -0
  472. package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/GamePlayerFindOptions.d.ts +21 -0
  473. package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/GroupFindOptions.d.ts +17 -0
  474. package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/InventoryFindOptions.d.ts +17 -0
  475. package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/MasterPlayerFindOptions.d.ts +18 -0
  476. package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/StoreInventoryFindOptions.d.ts +13 -0
  477. package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/GameItem.d.ts +37 -0
  478. package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/GameSettings.d.ts +10 -0
  479. package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/MasterAdminMongoObject.d.ts +8 -0
  480. package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/MasterAdminPlayer.d.ts +21 -0
  481. package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/MasterGameSettings.d.ts +16 -0
  482. package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/SecretInfoItem.d.ts +34 -0
  483. package/dist/GN-library/xdatabase/lib/entity/pro/type/DataValueType.d.ts +3 -0
  484. package/dist/GN-library/xdatabase/lib/xDatabase.d.ts +125 -0
  485. package/dist/GN-library/xdatetime/lib/xDatetime.d.ts +14 -0
  486. package/dist/GN-library/xdebug/lib/xDebug.d.ts +19 -0
  487. package/dist/GN-library/xmail/lib/xMail.d.ts +16 -0
  488. package/dist/GN-library/xrandom/lib/xRandom.d.ts +4 -0
  489. package/dist/GN-library/xsettings/lib/entity/xCharacterCatalogSettings.d.ts +4 -0
  490. package/dist/GN-library/xsettings/lib/entity/xCharacterPlayerSettings.d.ts +17 -0
  491. package/dist/GN-library/xsettings/lib/entity/xCurrencySettings.d.ts +4 -0
  492. package/dist/GN-library/xsettings/lib/entity/xDataSettings.d.ts +4 -0
  493. package/dist/GN-library/xsettings/lib/entity/xFriendCatalogSettings.d.ts +4 -0
  494. package/dist/GN-library/xsettings/lib/entity/xGamePlayerSettings.d.ts +19 -0
  495. package/dist/GN-library/xsettings/lib/entity/xGameSettings.d.ts +10 -0
  496. package/dist/GN-library/xsettings/lib/entity/xGenericServiceSettings.d.ts +3 -0
  497. package/dist/GN-library/xsettings/lib/entity/xGroupCatalogSettings.d.ts +5 -0
  498. package/dist/GN-library/xsettings/lib/entity/xGroupSettings.d.ts +13 -0
  499. package/dist/GN-library/xsettings/lib/entity/xInventorySettings.d.ts +9 -0
  500. package/dist/GN-library/xsettings/lib/entity/xItemCatalogSettings.d.ts +9 -0
  501. package/dist/GN-library/xsettings/lib/entity/xMasterPlayerSettings.d.ts +13 -0
  502. package/dist/GN-library/xsettings/lib/entity/xMatchmakingQueueSettings.d.ts +181 -0
  503. package/dist/GN-library/xsettings/lib/entity/xStatisticsAggregationMethod.d.ts +6 -0
  504. package/dist/GN-library/xsettings/lib/entity/xStatisticsSettings.d.ts +6 -0
  505. package/dist/GN-library/xsettings/lib/entity/xTagSettings.d.ts +4 -0
  506. package/dist/GN-library/xsettings/lib/entity/xThirtPartySettings.d.ts +17 -0
  507. package/dist/GN-library/xsettings/lib/xGNSettings.d.ts +21 -0
  508. package/dist/GN-startup/DefaultApplicationStartup.d.ts +18 -0
  509. package/dist/GN-startup/HttpApp.d.ts +46 -0
  510. package/dist/GN-startup/ServerApplication.d.ts +73 -0
  511. package/dist/GN-startup/ServerApplicationStartup.d.ts +7 -0
  512. package/dist/GN-startup/SocketApp.d.ts +32 -0
  513. package/dist/GN-startup/middleware/AntiDdosMiddleware.d.ts +73 -0
  514. package/dist/GN-startup/middleware/ApiMiddleware.d.ts +45 -0
  515. package/dist/GN-startup/middleware/UploadFileMiddleware.d.ts +17 -0
  516. package/dist/GN-startup/routes/AdminAppHandler.d.ts +30 -0
  517. package/dist/GN-startup/routes/HttpAppHandler.d.ts +32 -0
  518. package/dist/GN-startup/routes/SocketAppHandler.d.ts +59 -0
  519. package/dist/GN-startup/routes/UploadFileHandler.d.ts +24 -0
  520. package/dist/GN-startup/routes/www/public/admin/debug-common.js +1233 -0
  521. package/dist/GN-startup/routes/www/public/admin/index-common.js +217 -0
  522. package/dist/GN-startup/routes/www/public/admin/log-common.js +52 -0
  523. package/dist/GN-startup/routes/www/public/admin/signin-common.js +35 -0
  524. package/dist/GN-startup/routes/www/public/assets/demo/chart-area-demo.js +54 -0
  525. package/dist/GN-startup/routes/www/public/assets/demo/chart-bar-demo.js +46 -0
  526. package/dist/GN-startup/routes/www/public/assets/demo/chart-pie-demo.js +16 -0
  527. package/dist/GN-startup/routes/www/public/assets/demo/datatables-demo.js +4 -0
  528. package/dist/GN-startup/routes/www/public/assets/img/error-404-monochrome.svg +1 -0
  529. package/dist/GN-startup/routes/www/public/css/styles.css +11701 -0
  530. package/dist/GN-startup/routes/www/public/favicon.ico +0 -0
  531. package/dist/GN-startup/routes/www/public/favicon.png +0 -0
  532. package/dist/GN-startup/routes/www/public/js/scripts.js +26 -0
  533. package/dist/GN-startup/routes/www/views/101.ejs +21 -0
  534. package/dist/GN-startup/routes/www/views/401.ejs +25 -0
  535. package/dist/GN-startup/routes/www/views/403.ejs +21 -0
  536. package/dist/GN-startup/routes/www/views/404.ejs +25 -0
  537. package/dist/GN-startup/routes/www/views/500.ejs +25 -0
  538. package/dist/GN-startup/routes/www/views/admin/change-password.ejs +46 -0
  539. package/dist/GN-startup/routes/www/views/admin/debug.ejs +14 -0
  540. package/dist/GN-startup/routes/www/views/admin/index.ejs +28 -0
  541. package/dist/GN-startup/routes/www/views/admin/log.ejs +16 -0
  542. package/dist/GN-startup/routes/www/views/admin/signin.ejs +56 -0
  543. package/dist/GN-startup/routes/www/views/layout.ejs +8 -0
  544. package/dist/GN-startup/routes/www/views/partials/areachart.ejs +9 -0
  545. package/dist/GN-startup/routes/www/views/partials/areachartccu.ejs +9 -0
  546. package/dist/GN-startup/routes/www/views/partials/barchart.ejs +9 -0
  547. package/dist/GN-startup/routes/www/views/partials/barcharttotal.ejs +9 -0
  548. package/dist/GN-startup/routes/www/views/partials/common/footer.ejs +14 -0
  549. package/dist/GN-startup/routes/www/views/partials/common/head.ejs +11 -0
  550. package/dist/GN-startup/routes/www/views/partials/dau.ejs +41 -0
  551. package/dist/GN-startup/routes/www/views/partials/debugboard.ejs +90 -0
  552. package/dist/GN-startup/routes/www/views/partials/description.ejs +20 -0
  553. package/dist/GN-startup/routes/www/views/partials/logtable.ejs +50 -0
  554. package/dist/GN-startup/routes/www/views/partials/piechart.ejs +7 -0
  555. package/dist/GN-startup/routes/www/views/partials/sidenav.ejs +83 -0
  556. package/dist/GN-startup/routes/www/views/partials/topnav.ejs +53 -0
  557. package/dist/GN-startup/settings/ApplicationSettings.d.ts +31 -0
  558. package/dist/GN-startup/settings/DDosSettings.d.ts +43 -0
  559. package/dist/GN-startup/settings/DatabaseSettings.d.ts +28 -0
  560. package/dist/GN-startup/settings/HttpAppSettings.d.ts +41 -0
  561. package/dist/GN-startup/settings/LogSettings.d.ts +22 -0
  562. package/dist/GN-startup/settings/MailSettings.d.ts +22 -0
  563. package/dist/GN-startup/settings/OtherSettings.d.ts +16 -0
  564. package/dist/GN-startup/settings/SocketAppSettings.d.ts +47 -0
  565. package/dist/GN-startup/settings/UploadFileSettings.d.ts +25 -0
  566. package/dist/GNServer.d.ts +93 -0
  567. package/dist/index.d.ts +204 -0
  568. package/dist/index.js +75814 -0
  569. package/gn.sh +692 -0
  570. package/package.json +80 -0
  571. package/syncCode.js +1016 -0
@@ -0,0 +1,17 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class ChangePasswordAdminAccountOperationRequest extends OperationRequest {
7
+ currentPassword: string;
8
+ password: string;
9
+ isValidRequest(): boolean;
10
+ }
11
+ export declare class ChangePasswordAdminAccountRequestHandler extends RequestHandler {
12
+ getCode(): number;
13
+ getCommonOperationRequest(): typeof ChangePasswordAdminAccountOperationRequest;
14
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
15
+ private execute;
16
+ }
17
+ export {};
@@ -0,0 +1,15 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class GetAdminAccountListOperationRequest extends OperationRequest {
7
+ isValidRequest(): boolean;
8
+ }
9
+ export declare class GetAdminAccountListRequestHandler extends RequestHandler {
10
+ getCode(): number;
11
+ getCommonOperationRequest(): typeof GetAdminAccountListOperationRequest;
12
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
13
+ private execute;
14
+ }
15
+ export {};
@@ -0,0 +1,16 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class GetGameInformationOperationRequest extends OperationRequest {
7
+ gameId: string;
8
+ isValidRequest(): boolean;
9
+ }
10
+ export declare class GetGameInformationRequestHandler extends RequestHandler {
11
+ getCode(): number;
12
+ getCommonOperationRequest(): typeof GetGameInformationOperationRequest;
13
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
14
+ private execute;
15
+ }
16
+ export {};
@@ -0,0 +1,15 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class GetGameListOperationRequest extends OperationRequest {
7
+ isValidRequest(): boolean;
8
+ }
9
+ export declare class GetGameListRequestHandler extends RequestHandler {
10
+ getCode(): number;
11
+ getCommonOperationRequest(): typeof GetGameListOperationRequest;
12
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
13
+ private execute;
14
+ }
15
+ export {};
@@ -0,0 +1,15 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class GetMasterGameSettingsOperationRequest extends OperationRequest {
7
+ isValidRequest(): boolean;
8
+ }
9
+ export declare class GetMasterGameSettingsRequestHandler extends RequestHandler {
10
+ getCode(): number;
11
+ getCommonOperationRequest(): typeof GetMasterGameSettingsOperationRequest;
12
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
13
+ private execute;
14
+ }
15
+ export {};
@@ -0,0 +1,18 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo, SecretPermissionItem } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ import { GNHashtable } from "@xmobitea/gn-typescript-client";
7
+ declare class GetSecretInfoInformationOperationRequest extends OperationRequest {
8
+ secretKey: string;
9
+ isValidRequest(): boolean;
10
+ }
11
+ export declare class GetSecretInfoInformationRequestHandler extends RequestHandler {
12
+ getCode(): number;
13
+ getCommonOperationRequest(): typeof GetSecretInfoInformationOperationRequest;
14
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
15
+ private execute;
16
+ static getPermissionHashtable(permission: SecretPermissionItem): GNHashtable;
17
+ }
18
+ export {};
@@ -0,0 +1,15 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class GetSecretInfoListOperationRequest extends OperationRequest {
7
+ isValidRequest(): boolean;
8
+ }
9
+ export declare class GetSecretInfoListRequestHandler extends RequestHandler {
10
+ getCode(): number;
11
+ getCommonOperationRequest(): typeof GetSecretInfoListOperationRequest;
12
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
13
+ private execute;
14
+ }
15
+ export {};
@@ -0,0 +1,15 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class GetServerLogOperationRequest extends OperationRequest {
7
+ isValidRequest(): boolean;
8
+ }
9
+ export declare class GetServerLogRequestHandler extends RequestHandler {
10
+ getCode(): number;
11
+ getCommonOperationRequest(): typeof GetServerLogOperationRequest;
12
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
13
+ private execute;
14
+ }
15
+ export {};
@@ -0,0 +1,18 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class GrantAdminAccountOperationRequest extends OperationRequest {
7
+ username: string;
8
+ password: string;
9
+ secretKey: string;
10
+ isValidRequest(): boolean;
11
+ }
12
+ export declare class GrantAdminAccountRequestHandler extends RequestHandler {
13
+ getCode(): number;
14
+ getCommonOperationRequest(): typeof GrantAdminAccountOperationRequest;
15
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
16
+ private execute;
17
+ }
18
+ export {};
@@ -0,0 +1,16 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class GrantGameOperationRequest extends OperationRequest {
7
+ gameId: string;
8
+ isValidRequest(): boolean;
9
+ }
10
+ export declare class GrantGameRequestHandler extends RequestHandler {
11
+ getCode(): number;
12
+ getCommonOperationRequest(): typeof GrantGameOperationRequest;
13
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
14
+ private execute;
15
+ }
16
+ export {};
@@ -0,0 +1,19 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo, SecretPermissionItem } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class GrantSecretInfoOperationRequest extends OperationRequest {
7
+ secretKey?: string;
8
+ gameId: string;
9
+ role: number;
10
+ isValidRequest(): boolean;
11
+ }
12
+ export declare class GrantSecretInfoRequestHandler extends RequestHandler {
13
+ getCode(): number;
14
+ getCommonOperationRequest(): typeof GrantSecretInfoOperationRequest;
15
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
16
+ private execute;
17
+ static generateDefaultPermission(selfEnable: boolean, otherSelfEnable: boolean, adminSelfEnable: boolean, serverSelfEnable: boolean): SecretPermissionItem;
18
+ }
19
+ export {};
@@ -0,0 +1,18 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class LoginByAdminAccountOperationRequest extends OperationRequest {
7
+ username: string;
8
+ password: string;
9
+ isValidRequest(): boolean;
10
+ }
11
+ export declare class LoginByAdminAccountRequestHandler extends RequestHandler {
12
+ getCode(): number;
13
+ getCommonOperationRequest(): typeof LoginByAdminAccountOperationRequest;
14
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
15
+ private execute;
16
+ private setupAuthInfo;
17
+ }
18
+ export {};
@@ -0,0 +1,16 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class RemoveAdminAccountOperationRequest extends OperationRequest {
7
+ userId: string;
8
+ isValidRequest(): boolean;
9
+ }
10
+ export declare class RemoveAdminAccountRequestHandler extends RequestHandler {
11
+ getCode(): number;
12
+ getCommonOperationRequest(): typeof RemoveAdminAccountOperationRequest;
13
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
14
+ private execute;
15
+ }
16
+ export {};
@@ -0,0 +1,23 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ import { GameSettingsParam } from "./model/GameSettingsParam";
7
+ import { MatchmakingQueueSettingsParam } from "./model/MatchmakingQueueSettingsParam";
8
+ declare class SetGameInformationOperationRequest extends OperationRequest {
9
+ gameId: string;
10
+ gameName?: string;
11
+ gameDescription?: string;
12
+ gameIconUrl?: string;
13
+ gameSettings?: GameSettingsParam;
14
+ matchmakingQueueSettings?: MatchmakingQueueSettingsParam[];
15
+ isValidRequest(): boolean;
16
+ }
17
+ export declare class SetGameInformationRequestHandler extends RequestHandler {
18
+ getCode(): number;
19
+ getCommonOperationRequest(): typeof SetGameInformationOperationRequest;
20
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
21
+ private execute;
22
+ }
23
+ export {};
@@ -0,0 +1,19 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ import { ThirtPartyParam } from "./model/ThirtPartyParam";
7
+ import { MasterPlayerSettingsParam } from "./model/MasterPlayerSettingsParam";
8
+ declare class SetMasterGameSettingsOperationRequest extends OperationRequest {
9
+ thirtPartySettings?: ThirtPartyParam;
10
+ masterPlayerSettings?: MasterPlayerSettingsParam;
11
+ isValidRequest(): boolean;
12
+ }
13
+ export declare class SetMasterGameSettingsRequestHandler extends RequestHandler {
14
+ getCode(): number;
15
+ getCommonOperationRequest(): typeof SetMasterGameSettingsOperationRequest;
16
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
17
+ private execute;
18
+ }
19
+ export {};
@@ -0,0 +1,17 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class SetPasswordAdminAccountOperationRequest extends OperationRequest {
7
+ userId: string;
8
+ password: string;
9
+ isValidRequest(): boolean;
10
+ }
11
+ export declare class SetPasswordAdminAccountRequestHandler extends RequestHandler {
12
+ getCode(): number;
13
+ getCommonOperationRequest(): typeof SetPasswordAdminAccountOperationRequest;
14
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
15
+ private execute;
16
+ }
17
+ export {};
@@ -0,0 +1,20 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ import { PermissionParam } from "./model/PermissionParam";
7
+ declare class SetSecretInfoInformationOperationRequest extends OperationRequest {
8
+ secretKey: string;
9
+ remove?: boolean;
10
+ tsExpire?: number;
11
+ permissionParam?: PermissionParam;
12
+ isValidRequest(): boolean;
13
+ }
14
+ export declare class SetSecretInfoInformationRequestHandler extends RequestHandler {
15
+ getCode(): number;
16
+ getCommonOperationRequest(): typeof SetSecretInfoInformationOperationRequest;
17
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
18
+ private execute;
19
+ }
20
+ export {};
@@ -0,0 +1,17 @@
1
+ import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
2
+ import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
3
+ import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
4
+ import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
5
+ import { RequestHandler } from "./../base/RequestHandler";
6
+ declare class SetSecretKeyAdminAccountOperationRequest extends OperationRequest {
7
+ userId: string;
8
+ secretKey: string;
9
+ isValidRequest(): boolean;
10
+ }
11
+ export declare class SetSecretKeyAdminAccountRequestHandler extends RequestHandler {
12
+ getCode(): number;
13
+ getCommonOperationRequest(): typeof SetSecretKeyAdminAccountOperationRequest;
14
+ handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
15
+ private execute;
16
+ }
17
+ export {};
@@ -0,0 +1,19 @@
1
+ import { PermissionRulesParam } from "./PermissionRulesParam";
2
+ export declare class AuthenticatePermissionRulesParam {
3
+ loginByAccount?: PermissionRulesParam;
4
+ loginByAndroidDeviceId?: PermissionRulesParam;
5
+ loginByApple?: PermissionRulesParam;
6
+ loginByCustomDeviceId?: PermissionRulesParam;
7
+ loginByCustomId?: PermissionRulesParam;
8
+ loginByFacebook?: PermissionRulesParam;
9
+ loginByGenericService?: PermissionRulesParam;
10
+ loginByGoogle?: PermissionRulesParam;
11
+ loginByiOSDeviceId?: PermissionRulesParam;
12
+ loginByWindowsPhoneDeviceId?: PermissionRulesParam;
13
+ registerAccount?: PermissionRulesParam;
14
+ loginByEditorDeviceId?: PermissionRulesParam;
15
+ loginByLinuxDeviceId?: PermissionRulesParam;
16
+ loginByMacOSDeviceId?: PermissionRulesParam;
17
+ loginByWindowsDeviceId?: PermissionRulesParam;
18
+ refreshAuthToken?: PermissionRulesParam;
19
+ }
@@ -0,0 +1,4 @@
1
+ export declare class CharacterCatalogSettingsParam {
2
+ catalogId: string;
3
+ displayName?: string;
4
+ }
@@ -0,0 +1,52 @@
1
+ import { PermissionRulesParam } from "./PermissionRulesParam";
2
+ export declare class CharacterPlayerPermissionRulesParam {
3
+ addSegment?: PermissionRulesParam;
4
+ removeSegment?: PermissionRulesParam;
5
+ getSegment?: PermissionRulesParam;
6
+ setTag?: PermissionRulesParam;
7
+ removeTag?: PermissionRulesParam;
8
+ getTag?: PermissionRulesParam;
9
+ getDisplayName?: PermissionRulesParam;
10
+ setDisplayName?: PermissionRulesParam;
11
+ getTsCreate?: PermissionRulesParam;
12
+ getIpAddressCreate?: PermissionRulesParam;
13
+ getTsLastLogin?: PermissionRulesParam;
14
+ setPlayerBan?: PermissionRulesParam;
15
+ getPlayerBan?: PermissionRulesParam;
16
+ setCountryCode?: PermissionRulesParam;
17
+ getCountryCode?: PermissionRulesParam;
18
+ setAvatar?: PermissionRulesParam;
19
+ getAvatar?: PermissionRulesParam;
20
+ setPlayerCurrency?: PermissionRulesParam;
21
+ getPlayerCurrency?: PermissionRulesParam;
22
+ setPlayerStatistics?: PermissionRulesParam;
23
+ getPlayerStatistics?: PermissionRulesParam;
24
+ getStatisticsLeaderboard?: PermissionRulesParam;
25
+ getStatisticsLeaderboardAroundPlayer?: PermissionRulesParam;
26
+ getCustomData?: PermissionRulesParam;
27
+ setCustomData?: PermissionRulesParam;
28
+ setPlayerData?: PermissionRulesParam;
29
+ getPlayerData?: PermissionRulesParam;
30
+ getPlayerInformation?: PermissionRulesParam;
31
+ getPlayersWithSegment?: PermissionRulesParam;
32
+ getPlayersWithTag?: PermissionRulesParam;
33
+ getCatalogId?: PermissionRulesParam;
34
+ getOwner?: PermissionRulesParam;
35
+ getRemoveStatus?: PermissionRulesParam;
36
+ getPlayerFriend?: PermissionRulesParam;
37
+ getPlayerGroup?: PermissionRulesParam;
38
+ getPlayerInventory?: PermissionRulesParam;
39
+ removePlayerItem?: PermissionRulesParam;
40
+ grantPlayerItem?: PermissionRulesParam;
41
+ grantGroup?: PermissionRulesParam;
42
+ joinGroup?: PermissionRulesParam;
43
+ leaveGroup?: PermissionRulesParam;
44
+ setOwner?: PermissionRulesParam;
45
+ addPlayerFriend?: PermissionRulesParam;
46
+ removePlayerFriend?: PermissionRulesParam;
47
+ getPlayersWithDisplayName?: PermissionRulesParam;
48
+ setRemoveStatus?: PermissionRulesParam;
49
+ getFriendStatisticsLeaderboardAroundPlayer?: PermissionRulesParam;
50
+ getFriendStatisticsLeaderboard?: PermissionRulesParam;
51
+ getCurrencyLeaderboard?: PermissionRulesParam;
52
+ }
@@ -0,0 +1,17 @@
1
+ import { CurrencySettingsParam } from "./CurrencySettingsParam";
2
+ import { DataSettingsParam } from "./DataSettingsParam";
3
+ import { FriendCatalogSettingsParam } from "./FriendCatalogSettingsParam";
4
+ import { GroupCatalogSettingsParam } from "./GroupCatalogSettingsParam";
5
+ import { ItemCatalogSettingsParam } from "./ItemCatalogSettingsParam";
6
+ import { StatisticsSettingsParam } from "./StatisticsSettingsParam";
7
+ import { TagSettingsParam } from "./TagSettingsParam";
8
+ export declare class CharacterPlayerSettingsParam {
9
+ playerCurrencySettings?: Array<CurrencySettingsParam>;
10
+ playerStatisticsSettings?: Array<StatisticsSettingsParam>;
11
+ playerDatasSettings?: Array<DataSettingsParam>;
12
+ customDatasSettings?: Array<DataSettingsParam>;
13
+ tagsSettings?: Array<TagSettingsParam>;
14
+ playerGroupCatalogSettings?: Array<GroupCatalogSettingsParam>;
15
+ playerItemCatalogSettings?: Array<ItemCatalogSettingsParam>;
16
+ playerFriendCatalogSettings?: Array<FriendCatalogSettingsParam>;
17
+ }
@@ -0,0 +1,10 @@
1
+ import { PermissionRulesParam } from "./PermissionRulesParam";
2
+ export declare class ContentPermissionRulesParam {
3
+ getContent?: PermissionRulesParam;
4
+ setContent?: PermissionRulesParam;
5
+ createNewFileUploadInfo?: PermissionRulesParam;
6
+ getFileUploadInfoList?: PermissionRulesParam;
7
+ getFileUploadInfo?: PermissionRulesParam;
8
+ removeFileUploadInfo?: PermissionRulesParam;
9
+ requestDownloadFileUploadInfo?: PermissionRulesParam;
10
+ }
@@ -0,0 +1,4 @@
1
+ export declare class CurrencySettingsParam {
2
+ key: string;
3
+ initialValue: number;
4
+ }
@@ -0,0 +1,4 @@
1
+ export declare class DataSettingsParam {
2
+ key: string;
3
+ permission: number;
4
+ }
@@ -0,0 +1,4 @@
1
+ export declare class FriendCatalogSettingsParam {
2
+ catalogId: string;
3
+ forceAcceptFriend: boolean;
4
+ }
@@ -0,0 +1,51 @@
1
+ import { PermissionRulesParam } from "./PermissionRulesParam";
2
+ export declare class GamePlayerPermissionRulesParam {
3
+ addSegment?: PermissionRulesParam;
4
+ removeSegment?: PermissionRulesParam;
5
+ getSegment?: PermissionRulesParam;
6
+ setTag?: PermissionRulesParam;
7
+ removeTag?: PermissionRulesParam;
8
+ getTag?: PermissionRulesParam;
9
+ getDisplayName?: PermissionRulesParam;
10
+ setDisplayName?: PermissionRulesParam;
11
+ getTsCreate?: PermissionRulesParam;
12
+ getIpAddressCreate?: PermissionRulesParam;
13
+ getTsLastLogin?: PermissionRulesParam;
14
+ setPlayerBan?: PermissionRulesParam;
15
+ getPlayerBan?: PermissionRulesParam;
16
+ setCountryCode?: PermissionRulesParam;
17
+ getCountryCode?: PermissionRulesParam;
18
+ setAvatar?: PermissionRulesParam;
19
+ getAvatar?: PermissionRulesParam;
20
+ setPlayerCurrency?: PermissionRulesParam;
21
+ getPlayerCurrency?: PermissionRulesParam;
22
+ setPlayerStatistics?: PermissionRulesParam;
23
+ getPlayerStatistics?: PermissionRulesParam;
24
+ getStatisticsLeaderboard?: PermissionRulesParam;
25
+ getStatisticsLeaderboardAroundPlayer?: PermissionRulesParam;
26
+ getCustomData?: PermissionRulesParam;
27
+ setCustomData?: PermissionRulesParam;
28
+ setPlayerData?: PermissionRulesParam;
29
+ getPlayerData?: PermissionRulesParam;
30
+ getPlayerInformation?: PermissionRulesParam;
31
+ getPlayersWithSegment?: PermissionRulesParam;
32
+ getPlayersWithTag?: PermissionRulesParam;
33
+ getPlayerCharacter?: PermissionRulesParam;
34
+ getPlayerInventory?: PermissionRulesParam;
35
+ getPlayerGroup?: PermissionRulesParam;
36
+ getPlayerFriend?: PermissionRulesParam;
37
+ removePlayerItem?: PermissionRulesParam;
38
+ getOnlineStatus?: PermissionRulesParam;
39
+ grantGroup?: PermissionRulesParam;
40
+ grantPlayerItem?: PermissionRulesParam;
41
+ grantPlayerCharacter?: PermissionRulesParam;
42
+ addPlayerFriend?: PermissionRulesParam;
43
+ removePlayerFriend?: PermissionRulesParam;
44
+ removePlayerCharacter?: PermissionRulesParam;
45
+ joinGroup?: PermissionRulesParam;
46
+ leaveGroup?: PermissionRulesParam;
47
+ getPlayersWithDisplayName?: PermissionRulesParam;
48
+ getFriendStatisticsLeaderboardAroundPlayer?: PermissionRulesParam;
49
+ getFriendStatisticsLeaderboard?: PermissionRulesParam;
50
+ getCurrencyLeaderboard?: PermissionRulesParam;
51
+ }
@@ -0,0 +1,19 @@
1
+ import { CharacterCatalogSettingsParam } from "./CharacterCatalogSettingsParam";
2
+ import { CurrencySettingsParam } from "./CurrencySettingsParam";
3
+ import { DataSettingsParam } from "./DataSettingsParam";
4
+ import { FriendCatalogSettingsParam } from "./FriendCatalogSettingsParam";
5
+ import { GroupCatalogSettingsParam } from "./GroupCatalogSettingsParam";
6
+ import { ItemCatalogSettingsParam } from "./ItemCatalogSettingsParam";
7
+ import { StatisticsSettingsParam } from "./StatisticsSettingsParam";
8
+ import { TagSettingsParam } from "./TagSettingsParam";
9
+ export declare class GamePlayerSettingsParam {
10
+ playerCurrencySettings?: Array<CurrencySettingsParam>;
11
+ playerStatisticsSettings?: Array<StatisticsSettingsParam>;
12
+ playerDatasSettings?: Array<DataSettingsParam>;
13
+ customDatasSettings?: Array<DataSettingsParam>;
14
+ tagsSettings?: Array<TagSettingsParam>;
15
+ playerCharacterCatalogSettings?: Array<CharacterCatalogSettingsParam>;
16
+ playerGroupCatalogSettings?: Array<GroupCatalogSettingsParam>;
17
+ playerItemCatalogSettings?: Array<ItemCatalogSettingsParam>;
18
+ playerFriendCatalogSettings?: Array<FriendCatalogSettingsParam>;
19
+ }
@@ -0,0 +1,10 @@
1
+ import { CharacterPlayerSettingsParam } from "./CharacterPlayerSettingsParam";
2
+ import { GamePlayerSettingsParam } from "./GamePlayerSettingsParam";
3
+ import { GroupSettingsParam } from "./GroupSettingsParam";
4
+ import { InventorySettingsParam } from "./InventorySettingsParam";
5
+ export declare class GameSettingsParam {
6
+ gamePlayerSettings?: GamePlayerSettingsParam;
7
+ characterPlayerSettings?: CharacterPlayerSettingsParam;
8
+ groupSettings?: GroupSettingsParam;
9
+ inventorySettings?: InventorySettingsParam;
10
+ }
@@ -0,0 +1,3 @@
1
+ export declare class GenericServiceSettingsParam {
2
+ serviceName: string;
3
+ }
@@ -0,0 +1,5 @@
1
+ export declare class GroupCatalogSettingsParam {
2
+ catalogId: string;
3
+ displayName?: string;
4
+ forceAcceptMember: boolean;
5
+ }
@@ -0,0 +1,40 @@
1
+ import { PermissionRulesParam } from "./PermissionRulesParam";
2
+ export declare class GroupPermissionRulesParam {
3
+ addSegment?: PermissionRulesParam;
4
+ removeSegment?: PermissionRulesParam;
5
+ getSegment?: PermissionRulesParam;
6
+ setTag?: PermissionRulesParam;
7
+ removeTag?: PermissionRulesParam;
8
+ getTag?: PermissionRulesParam;
9
+ getDisplayName?: PermissionRulesParam;
10
+ setDisplayName?: PermissionRulesParam;
11
+ getTsCreate?: PermissionRulesParam;
12
+ setAvatar?: PermissionRulesParam;
13
+ getAvatar?: PermissionRulesParam;
14
+ setGroupCurrency?: PermissionRulesParam;
15
+ getGroupCurrency?: PermissionRulesParam;
16
+ setGroupStatistics?: PermissionRulesParam;
17
+ getGroupStatistics?: PermissionRulesParam;
18
+ getStatisticsLeaderboard?: PermissionRulesParam;
19
+ getStatisticsLeaderboardAroundGroup?: PermissionRulesParam;
20
+ getCustomData?: PermissionRulesParam;
21
+ setCustomData?: PermissionRulesParam;
22
+ setGroupData?: PermissionRulesParam;
23
+ getGroupData?: PermissionRulesParam;
24
+ getGroupInformation?: PermissionRulesParam;
25
+ getGroupsWithSegment?: PermissionRulesParam;
26
+ getGroupsWithTag?: PermissionRulesParam;
27
+ getCatalogId?: PermissionRulesParam;
28
+ getRemoveStatus?: PermissionRulesParam;
29
+ getGroupInventory?: PermissionRulesParam;
30
+ removeGroupItem?: PermissionRulesParam;
31
+ grantGroupItem?: PermissionRulesParam;
32
+ getMembers?: PermissionRulesParam;
33
+ addMember?: PermissionRulesParam;
34
+ removeMember?: PermissionRulesParam;
35
+ sendGroupMessage?: PermissionRulesParam;
36
+ getGroupMessage?: PermissionRulesParam;
37
+ setRemoveStatus?: PermissionRulesParam;
38
+ getGroupsWithDisplayName?: PermissionRulesParam;
39
+ getCurrencyLeaderboard?: PermissionRulesParam;
40
+ }
@@ -0,0 +1,13 @@
1
+ import { CurrencySettingsParam } from "./CurrencySettingsParam";
2
+ import { DataSettingsParam } from "./DataSettingsParam";
3
+ import { ItemCatalogSettingsParam } from "./ItemCatalogSettingsParam";
4
+ import { StatisticsSettingsParam } from "./StatisticsSettingsParam";
5
+ import { TagSettingsParam } from "./TagSettingsParam";
6
+ export declare class GroupSettingsParam {
7
+ groupCurrencySettings?: Array<CurrencySettingsParam>;
8
+ groupStatisticsSettings?: Array<StatisticsSettingsParam>;
9
+ groupDatasSettings?: Array<DataSettingsParam>;
10
+ customDatasSettings?: Array<DataSettingsParam>;
11
+ tagsSettings?: Array<TagSettingsParam>;
12
+ groupItemCatalogSettings?: Array<ItemCatalogSettingsParam>;
13
+ }