@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.
- package/GNconfig.debug.json +80 -0
- package/dist/GN-app-api/handler/controller/RequestController.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginBaseRequestHandler.d.ts +38 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByAccountRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByAndroidDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByAppleRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByCustomDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByCustomIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByEditorDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByFacebookRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByGenericServiceRequestHandler.d.ts +21 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByGoogleRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByLinuxDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByMacOSDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByWindowsDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByWindowsPhoneDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByiOSDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/RefreshAuthTokenRequestHandler.d.ts +15 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/RegisterAccountRequestHandler.d.ts +24 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/model/InfoRequestParam.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/base/IRequestHandler.d.ts +12 -0
- package/dist/GN-app-api/handler/controller/handler/base/RequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/AddPlayerFriendRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/AddSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/CharacterPlayerBaseRequestHandler.d.ts +35 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetAvatarRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCatalogIdRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCountryCodeRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCurrencyLeaderboardRequestHandler.d.ts +24 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCustomDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetDisplayNameRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetFriendStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetFriendStatisticsLeaderboardRequestHandler.d.ts +25 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetIpAddressCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetOwnerRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerBanRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerCurrencyRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerFriendRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerGroupRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerInventoryRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerStatisticsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayersWithDisplayNameRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayersWithSegmentRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayersWithTagRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetRemoveStatusRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetSegmentRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetStatisticsLeaderboardRequestHandler.d.ts +24 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetTsCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetTsLastLoginRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GrantGroupRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GrantPlayerItemRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/JoinGroupRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/LeaveGroupRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/RemovePlayerFriendRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/RemovePlayerItemRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/RemoveSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/RemoveTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetAvatarRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetCountryCodeRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetCustomDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetDisplayNameRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetOwnerRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerBanRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerCurrencyRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerStatisticsRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetRemoveStatusRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetTagRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/CustomDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/GroupMemberParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/InfoRequestParam.d.ts +30 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/PlayerCurrencyParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/PlayerDataParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/PlayerStatisticsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/content/CreateNewFileUploadInfoRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/content/GetContentDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/content/GetFileUploadInfoListRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/content/GetFileUploadInfoRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/content/RemoveFileUploadInfoRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/content/RequestDownloadFileUploadInfoRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/content/SetContentDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/content/model/ContentDataParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/ChangePasswordAdminAccountRequestHandler.d.ts +17 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetAdminAccountListRequestHandler.d.ts +15 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetGameInformationRequestHandler.d.ts +16 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetGameListRequestHandler.d.ts +15 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetMasterGameSettingsRequestHandler.d.ts +15 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetSecretInfoInformationRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetSecretInfoListRequestHandler.d.ts +15 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetServerLogRequestHandler.d.ts +15 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GrantAdminAccountRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GrantGameRequestHandler.d.ts +16 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GrantSecretInfoRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/LoginByAdminAccountRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/RemoveAdminAccountRequestHandler.d.ts +16 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/SetGameInformationRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/SetMasterGameSettingsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/SetPasswordAdminAccountRequestHandler.d.ts +17 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/SetSecretInfoInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/SetSecretKeyAdminAccountRequestHandler.d.ts +17 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/AuthenticatePermissionRulesParam.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/CharacterCatalogSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/CharacterPlayerPermissionRulesParam.d.ts +52 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/CharacterPlayerSettingsParam.d.ts +17 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ContentPermissionRulesParam.d.ts +10 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/CurrencySettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/DataSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/FriendCatalogSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GamePlayerPermissionRulesParam.d.ts +51 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GamePlayerSettingsParam.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GameSettingsParam.d.ts +10 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GenericServiceSettingsParam.d.ts +3 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GroupCatalogSettingsParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GroupPermissionRulesParam.d.ts +40 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GroupSettingsParam.d.ts +13 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/InventoryPermissionRulesParam.d.ts +35 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/InventorySettingsParam.d.ts +9 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ItemCatalogSettingsParam.d.ts +6 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ItemClassSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MasterAdminPermissionRulesParam.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MasterPlayerPermissionRulesParam.d.ts +73 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MasterPlayerSettingsParam.d.ts +13 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MatchmakingQueueSettingsParam.d.ts +46 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MultiplayerPermissionRulesParam.d.ts +11 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/PermissionParam.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/PermissionRulesParam.d.ts +6 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/StatisticsSettingsParam.d.ts +6 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/StoreInventoryPermissionRulesParam.d.ts +12 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/TagSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyAppleSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyFacebookSettingsParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyGoogleSettingsParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyParam.d.ts +8 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/AddPlayerFriendRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/AddSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GamePlayerBaseRequestHandler.d.ts +32 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetAvatarRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetCountryCodeRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetCurrencyLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetCustomDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetDisplayNameRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetFriendStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetFriendStatisticsLeaderboardRequestHandler.d.ts +25 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetIpAddressCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetOnlineStatusRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerBanRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerCharacterRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerCurrencyRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerFriendRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerGroupRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerInventoryRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerStatisticsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayersWithDisplayNameRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayersWithSegmentRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayersWithTagRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetSegmentRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetStatisticsLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetTsCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetTsLastLoginRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GrantGroupRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GrantPlayerCharacterRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GrantPlayerItemRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/JoinGroupRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/LeaveGroupRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemovePlayerCharacterRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemovePlayerFriendRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemovePlayerItemRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemoveSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemoveTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetAvatarRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetCountryCodeRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetCustomDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetDisplayNameRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerBanRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerCurrencyRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerStatisticsRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetTagRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/CustomDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/GroupMemberParam.d.ts +3 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/InfoRequestParam.d.ts +28 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/PlayerCurrencyParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/PlayerDataParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/PlayerStatisticsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/group/AddMemberRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/AddSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetAvatarRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetCatalogIdRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetCurrencyLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetCustomDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetDisplayNameRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupCurrencyRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupInventoryRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupMessageRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupStatisticsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupsWithDisplayNameRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupsWithSegmentRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupsWithTagRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetMembersRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetRemoveStatusRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetSegmentRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetStatisticsLeaderboardAroundGroupRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetStatisticsLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetTsCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GrantGroupItemRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/group/GroupBaseRequestHandler.d.ts +35 -0
- package/dist/GN-app-api/handler/controller/handler/group/RemoveGroupItemRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/RemoveMemberRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/RemoveSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/RemoveTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/SendGroupMessageRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetAvatarRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetCustomDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetDisplayNameRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetGroupCurrencyRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetGroupDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetGroupStatisticsRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetRemoveStatusRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetTagRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/CustomDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/GroupCurrencyParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/GroupDataParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/GroupMemberParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/GroupMessageItem.d.ts +6 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/GroupStatisticsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/InfoRequestParam.d.ts +21 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/AddSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetAmountRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetAvatarRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetCatalogIdRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetClassIdRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetCustomDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetDisplayNameRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemStatisticsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemTypeRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemsWithDisplayNameRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemsWithSegmentRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemsWithTagRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetOwnerRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetRemoveStatusRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetSegmentRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetStatisticsLeaderboardAroundItemRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetStatisticsLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetTsCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/ItemBaseRequestHandler.d.ts +30 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/RemoveSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/RemoveTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetAmountRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetAvatarRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetCustomDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetDisplayNameRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetItemDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetItemStatisticsRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetOwnerRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetRemoveStatusRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetTagRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/model/CustomDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/model/InfoRequestParam.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/model/ItemDataParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/model/ItemStatisticsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/AddSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/ChangeAccountPasswordRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetAvatarRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetCountryCodeRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetCurrencyLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetCustomDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetDisplayNameRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetEmailRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetExternalRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetIpAddressCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerBanRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerCurrencyRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerStatisticsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithAppleRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithDisplayNameRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithFacebookRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithGenericServiceRequestHandler.d.ts +21 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithGoogleRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithSegmentRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithTagRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetSegmentRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetStatisticsLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetTsCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetTsLastLoginRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkAccountRequestHandler.d.ts +21 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkAndroidDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkAppleRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkCustomDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkCustomIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkEditorDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkFacebookRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkGenericServiceRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkGoogleRequestHandler.d.ts +21 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkLinuxDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkMacOSDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkWindowsDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkWindowsPhoneDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkiOSDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/MasterPlayerBaseRequestHandler.d.ts +30 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/RemoveSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/RemoveTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/ResetAccountPasswordRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetAvatarRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetCountryCodeRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetCustomDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetDisplayNameRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetEmailRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerBanRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerCurrencyRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerStatisticsRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetTagRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetTsLastLoginRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkAccountRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkAndroidDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkAppleRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkCustomDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkCustomIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkEditorDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkFacebookRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkGenericServiceRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkGoogleRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkLinuxDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkMacOSDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkWindowsDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkWindowsPhoneDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkiOSDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/CustomDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/InfoRequestParam.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/PlayerCurrencyParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/PlayerDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/PlayerStatisticsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/CancelAllMatchmakingTicketRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/CancelMatchmakingTicketRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/CreateMatchmakingTicketRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/GetMatchRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/GetMatchmakingTicketRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/GetQueueStatisticsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/JoinMatchmakingTicketRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/ListMatchmakingTicketsForPlayerRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/MatchmakingHandler.d.ts +62 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/MultiplayerBaseRequestHandler.d.ts +10 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/BuyStoreItemRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/GetStoreItemInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/GetStoreItemsWithTagRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/GrantStoreItemRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/SetRemoveStatusRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/SetStoreItemInformationRequestHandler.d.ts +32 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/StoreItemBaseRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/ValidateAppleAppStoreReceiptRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/ValidateFacebookStoreReceiptRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/ValidateGooglePlayStoreReceiptRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/AvatarParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/CurrencyParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/InAppPurchaseParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/InfoRequestParam.d.ts +12 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/StoreDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/StoreItemParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/TagParam.d.ts +4 -0
- package/dist/GN-app-api/service/AnalyticsService.d.ts +24 -0
- package/dist/GN-app-api/service/AppleService.d.ts +25 -0
- package/dist/GN-app-api/service/EventCallbackService.d.ts +21 -0
- package/dist/GN-app-api/service/FacebookService.d.ts +23 -0
- package/dist/GN-app-api/service/GenericService.d.ts +10 -0
- package/dist/GN-app-api/service/GoogleService.d.ts +27 -0
- package/dist/GN-app-api/service/IAnalyticsService.d.ts +18 -0
- package/dist/GN-app-api/service/IAppleService.d.ts +9 -0
- package/dist/GN-app-api/service/IEventCallbackService.d.ts +19 -0
- package/dist/GN-app-api/service/IFacebookService.d.ts +9 -0
- package/dist/GN-app-api/service/IGenericService.d.ts +23 -0
- package/dist/GN-app-api/service/IGoogleService.d.ts +12 -0
- package/dist/GN-app-api/service/ILockService.d.ts +4 -0
- package/dist/GN-app-api/service/IPushNotificationService.d.ts +4 -0
- package/dist/GN-app-api/service/IRequestConverterService.d.ts +16 -0
- package/dist/GN-app-api/service/ITimerService.d.ts +10 -0
- package/dist/GN-app-api/service/LockService.d.ts +5 -0
- package/dist/GN-app-api/service/RequestConverterService.d.ts +17 -0
- package/dist/GN-app-api/service/TimerService.d.ts +21 -0
- package/dist/GN-common/common/GNData.d.ts +62 -0
- package/dist/GN-common/constant/Commands.d.ts +17 -0
- package/dist/GN-common/constant/EventCode.d.ts +8 -0
- package/dist/GN-common/constant/OperationCode.d.ts +184 -0
- package/dist/GN-common/constant/ReturnCode.d.ts +14 -0
- package/dist/GN-common/constant/enumType/FriendStatus.d.ts +6 -0
- package/dist/GN-common/constant/enumType/GoogleLoginType.d.ts +4 -0
- package/dist/GN-common/constant/enumType/GroupStatus.d.ts +6 -0
- package/dist/GN-common/constant/enumType/InvalidMemberType.d.ts +17 -0
- package/dist/GN-common/constant/enumType/ItemType.d.ts +4 -0
- package/dist/GN-common/constant/enumType/MatchmakingMemberStatus.d.ts +5 -0
- package/dist/GN-common/constant/enumType/MatchmakingTicketStatus.d.ts +7 -0
- package/dist/GN-common/constant/enumType/OwnerType.d.ts +6 -0
- package/dist/GN-common/constant/enumType/PermissionDataItem.d.ts +4 -0
- package/dist/GN-common/constant/enumType/RequestRole.d.ts +5 -0
- package/dist/GN-common/constant/enumType/RequestType.d.ts +13 -0
- package/dist/GN-common/constant/errorCode/GNErrorCode.d.ts +47 -0
- package/dist/GN-common/constant/parameterCode/GNParameterCode.d.ts +430 -0
- package/dist/GN-common/constant/parameterCode/ParameterCode.d.ts +6 -0
- package/dist/GN-common/entity/AuthInfo.d.ts +64 -0
- package/dist/GN-common/entity/DataMember.d.ts +78 -0
- package/dist/GN-common/entity/GNMetadata.d.ts +19 -0
- package/dist/GN-common/entity/InvalidMember.d.ts +5 -0
- package/dist/GN-common/entity/SecretInfo.d.ts +425 -0
- package/dist/GN-common/entity/TokenPayload.d.ts +5 -0
- package/dist/GN-common/entity/operationEvent/OperationEvent.d.ts +14 -0
- package/dist/GN-common/entity/operationHelper/OperationHelper.d.ts +15 -0
- package/dist/GN-common/entity/operationRequest/CommonOperationRequest.d.ts +12 -0
- package/dist/GN-common/entity/operationRequest/OperationArray.d.ts +12 -0
- package/dist/GN-common/entity/operationRequest/OperationObject.d.ts +12 -0
- package/dist/GN-common/entity/operationRequest/OperationRequest.d.ts +23 -0
- package/dist/GN-common/entity/operationRequest/base/Request.d.ts +33 -0
- package/dist/GN-common/entity/operationResponse/OperationResponse.d.ts +27 -0
- package/dist/GN-common/helper/CodeHelper.d.ts +22 -0
- package/dist/GN-common/helper/DisplayNameUtility.d.ts +3 -0
- package/dist/GN-common/helper/Md5Generate.d.ts +3 -0
- package/dist/GN-common/helper/StringUtility.d.ts +4 -0
- package/dist/GN-library/xbuilder/lib/IBuilder.d.ts +3 -0
- package/dist/GN-library/xbuilder/lib/OnRunSuccess.d.ts +3 -0
- package/dist/GN-library/xcachedata/lib/xCacheData.d.ts +8 -0
- package/dist/GN-library/xcachedata/lib/xCacheItem.d.ts +8 -0
- package/dist/GN-library/xconfig/lib/entity/xConfigItem.d.ts +9 -0
- package/dist/GN-library/xconfig/lib/xConfig.d.ts +14 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/AvatarItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/BanItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/CharacterItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/CharacterPlayer.d.ts +22 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/ChatMessage.d.ts +34 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/CurrencyItem.d.ts +3 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/DataItem.d.ts +5 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/DataObjectBase.d.ts +44 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/ExternalItem.d.ts +38 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/FriendItem.d.ts +6 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/GamePlayer.d.ts +13 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/GamePlayerBase.d.ts +38 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/Group.d.ts +61 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/GroupItem.d.ts +6 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/Inventory.d.ts +49 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/InventoryItem.d.ts +5 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MasterPlayer.d.ts +19 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/Match.d.ts +28 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MatchMember.d.ts +6 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MatchmakingTicket.d.ts +46 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MatchmakingTicketMember.d.ts +11 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MemberItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MongoObject.d.ts +18 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/OwnerItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/PlayerBase.d.ts +48 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/RemoveStatusItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/ServerDetail.d.ts +9 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/StatisticsItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/StoreInventory.d.ts +65 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/TradeInventory.d.ts +59 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/UploadFileInfo.d.ts +40 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/CharacterPlayerFindOptions.d.ts +23 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/GamePlayerFindOptions.d.ts +21 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/GroupFindOptions.d.ts +17 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/InventoryFindOptions.d.ts +17 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/MasterPlayerFindOptions.d.ts +18 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/StoreInventoryFindOptions.d.ts +13 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/GameItem.d.ts +37 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/GameSettings.d.ts +10 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/MasterAdminMongoObject.d.ts +8 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/MasterAdminPlayer.d.ts +21 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/MasterGameSettings.d.ts +16 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/SecretInfoItem.d.ts +34 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/type/DataValueType.d.ts +3 -0
- package/dist/GN-library/xdatabase/lib/xDatabase.d.ts +125 -0
- package/dist/GN-library/xdatetime/lib/xDatetime.d.ts +14 -0
- package/dist/GN-library/xdebug/lib/xDebug.d.ts +19 -0
- package/dist/GN-library/xmail/lib/xMail.d.ts +16 -0
- package/dist/GN-library/xrandom/lib/xRandom.d.ts +4 -0
- package/dist/GN-library/xsettings/lib/entity/xCharacterCatalogSettings.d.ts +4 -0
- package/dist/GN-library/xsettings/lib/entity/xCharacterPlayerSettings.d.ts +17 -0
- package/dist/GN-library/xsettings/lib/entity/xCurrencySettings.d.ts +4 -0
- package/dist/GN-library/xsettings/lib/entity/xDataSettings.d.ts +4 -0
- package/dist/GN-library/xsettings/lib/entity/xFriendCatalogSettings.d.ts +4 -0
- package/dist/GN-library/xsettings/lib/entity/xGamePlayerSettings.d.ts +19 -0
- package/dist/GN-library/xsettings/lib/entity/xGameSettings.d.ts +10 -0
- package/dist/GN-library/xsettings/lib/entity/xGenericServiceSettings.d.ts +3 -0
- package/dist/GN-library/xsettings/lib/entity/xGroupCatalogSettings.d.ts +5 -0
- package/dist/GN-library/xsettings/lib/entity/xGroupSettings.d.ts +13 -0
- package/dist/GN-library/xsettings/lib/entity/xInventorySettings.d.ts +9 -0
- package/dist/GN-library/xsettings/lib/entity/xItemCatalogSettings.d.ts +9 -0
- package/dist/GN-library/xsettings/lib/entity/xMasterPlayerSettings.d.ts +13 -0
- package/dist/GN-library/xsettings/lib/entity/xMatchmakingQueueSettings.d.ts +181 -0
- package/dist/GN-library/xsettings/lib/entity/xStatisticsAggregationMethod.d.ts +6 -0
- package/dist/GN-library/xsettings/lib/entity/xStatisticsSettings.d.ts +6 -0
- package/dist/GN-library/xsettings/lib/entity/xTagSettings.d.ts +4 -0
- package/dist/GN-library/xsettings/lib/entity/xThirtPartySettings.d.ts +17 -0
- package/dist/GN-library/xsettings/lib/xGNSettings.d.ts +21 -0
- package/dist/GN-startup/DefaultApplicationStartup.d.ts +18 -0
- package/dist/GN-startup/HttpApp.d.ts +46 -0
- package/dist/GN-startup/ServerApplication.d.ts +73 -0
- package/dist/GN-startup/ServerApplicationStartup.d.ts +7 -0
- package/dist/GN-startup/SocketApp.d.ts +32 -0
- package/dist/GN-startup/middleware/AntiDdosMiddleware.d.ts +73 -0
- package/dist/GN-startup/middleware/ApiMiddleware.d.ts +45 -0
- package/dist/GN-startup/middleware/UploadFileMiddleware.d.ts +17 -0
- package/dist/GN-startup/routes/AdminAppHandler.d.ts +30 -0
- package/dist/GN-startup/routes/HttpAppHandler.d.ts +32 -0
- package/dist/GN-startup/routes/SocketAppHandler.d.ts +59 -0
- package/dist/GN-startup/routes/UploadFileHandler.d.ts +24 -0
- package/dist/GN-startup/routes/www/public/admin/debug-common.js +1233 -0
- package/dist/GN-startup/routes/www/public/admin/index-common.js +217 -0
- package/dist/GN-startup/routes/www/public/admin/log-common.js +52 -0
- package/dist/GN-startup/routes/www/public/admin/signin-common.js +35 -0
- package/dist/GN-startup/routes/www/public/assets/demo/chart-area-demo.js +54 -0
- package/dist/GN-startup/routes/www/public/assets/demo/chart-bar-demo.js +46 -0
- package/dist/GN-startup/routes/www/public/assets/demo/chart-pie-demo.js +16 -0
- package/dist/GN-startup/routes/www/public/assets/demo/datatables-demo.js +4 -0
- package/dist/GN-startup/routes/www/public/assets/img/error-404-monochrome.svg +1 -0
- package/dist/GN-startup/routes/www/public/css/styles.css +11701 -0
- package/dist/GN-startup/routes/www/public/favicon.ico +0 -0
- package/dist/GN-startup/routes/www/public/favicon.png +0 -0
- package/dist/GN-startup/routes/www/public/js/scripts.js +26 -0
- package/dist/GN-startup/routes/www/views/101.ejs +21 -0
- package/dist/GN-startup/routes/www/views/401.ejs +25 -0
- package/dist/GN-startup/routes/www/views/403.ejs +21 -0
- package/dist/GN-startup/routes/www/views/404.ejs +25 -0
- package/dist/GN-startup/routes/www/views/500.ejs +25 -0
- package/dist/GN-startup/routes/www/views/admin/change-password.ejs +46 -0
- package/dist/GN-startup/routes/www/views/admin/debug.ejs +14 -0
- package/dist/GN-startup/routes/www/views/admin/index.ejs +28 -0
- package/dist/GN-startup/routes/www/views/admin/log.ejs +16 -0
- package/dist/GN-startup/routes/www/views/admin/signin.ejs +56 -0
- package/dist/GN-startup/routes/www/views/layout.ejs +8 -0
- package/dist/GN-startup/routes/www/views/partials/areachart.ejs +9 -0
- package/dist/GN-startup/routes/www/views/partials/areachartccu.ejs +9 -0
- package/dist/GN-startup/routes/www/views/partials/barchart.ejs +9 -0
- package/dist/GN-startup/routes/www/views/partials/barcharttotal.ejs +9 -0
- package/dist/GN-startup/routes/www/views/partials/common/footer.ejs +14 -0
- package/dist/GN-startup/routes/www/views/partials/common/head.ejs +11 -0
- package/dist/GN-startup/routes/www/views/partials/dau.ejs +41 -0
- package/dist/GN-startup/routes/www/views/partials/debugboard.ejs +90 -0
- package/dist/GN-startup/routes/www/views/partials/description.ejs +20 -0
- package/dist/GN-startup/routes/www/views/partials/logtable.ejs +50 -0
- package/dist/GN-startup/routes/www/views/partials/piechart.ejs +7 -0
- package/dist/GN-startup/routes/www/views/partials/sidenav.ejs +83 -0
- package/dist/GN-startup/routes/www/views/partials/topnav.ejs +53 -0
- package/dist/GN-startup/settings/ApplicationSettings.d.ts +31 -0
- package/dist/GN-startup/settings/DDosSettings.d.ts +43 -0
- package/dist/GN-startup/settings/DatabaseSettings.d.ts +28 -0
- package/dist/GN-startup/settings/HttpAppSettings.d.ts +41 -0
- package/dist/GN-startup/settings/LogSettings.d.ts +22 -0
- package/dist/GN-startup/settings/MailSettings.d.ts +22 -0
- package/dist/GN-startup/settings/OtherSettings.d.ts +16 -0
- package/dist/GN-startup/settings/SocketAppSettings.d.ts +47 -0
- package/dist/GN-startup/settings/UploadFileSettings.d.ts +25 -0
- package/dist/GNServer.d.ts +93 -0
- package/dist/index.d.ts +204 -0
- package/dist/index.js +75814 -0
- package/gn.sh +692 -0
- package/package.json +80 -0
- package/syncCode.js +1016 -0
package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetAvatarRequestHandler.d.ts
ADDED
|
@@ -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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetAvatarOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetAvatarRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
11
|
+
getCode(): number;
|
|
12
|
+
getCommonOperationRequest(): typeof GetAvatarOperationRequest;
|
|
13
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
14
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
private execute;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCatalogIdRequestHandler.d.ts
ADDED
|
@@ -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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetCatalogIdOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetCatalogIdRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
11
|
+
getCode(): number;
|
|
12
|
+
getCommonOperationRequest(): typeof GetCatalogIdOperationRequest;
|
|
13
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
14
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
private execute;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCountryCodeRequestHandler.d.ts
ADDED
|
@@ -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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetCountryCodeOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetCountryCodeRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
11
|
+
getCode(): number;
|
|
12
|
+
getCommonOperationRequest(): typeof GetCountryCodeOperationRequest;
|
|
13
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
14
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
private execute;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetCurrencyLeaderboardOperationRequest extends OperationRequest {
|
|
8
|
+
key: string;
|
|
9
|
+
infoRequestParam: InfoRequestParam;
|
|
10
|
+
skip?: number;
|
|
11
|
+
limit?: number;
|
|
12
|
+
loadFromCache?: boolean;
|
|
13
|
+
isValidRequest(): boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare class GetCurrencyLeaderboardRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
16
|
+
protected init(): void;
|
|
17
|
+
getCode(): number;
|
|
18
|
+
getCommonOperationRequest(): typeof GetCurrencyLeaderboardOperationRequest;
|
|
19
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
21
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
22
|
+
private execute;
|
|
23
|
+
}
|
|
24
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCustomDataRequestHandler.d.ts
ADDED
|
@@ -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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetCustomDataOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
customDataKeys?: Array<string>;
|
|
9
|
+
isValidRequest(): boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class GetCustomDataRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
12
|
+
getCode(): number;
|
|
13
|
+
getCommonOperationRequest(): typeof GetCustomDataOperationRequest;
|
|
14
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
private execute;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetDisplayNameRequestHandler.d.ts
ADDED
|
@@ -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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetDisplayNameOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetDisplayNameRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
11
|
+
getCode(): number;
|
|
12
|
+
getCommonOperationRequest(): typeof GetDisplayNameOperationRequest;
|
|
13
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
14
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
private execute;
|
|
17
|
+
}
|
|
18
|
+
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetFriendStatisticsLeaderboardAroundPlayerOperationRequest extends OperationRequest {
|
|
8
|
+
characterId: string;
|
|
9
|
+
key: string;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
skip?: number;
|
|
12
|
+
limit?: number;
|
|
13
|
+
isValidRequest(): boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare class GetFriendStatisticsLeaderboardAroundPlayerRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
16
|
+
getCode(): number;
|
|
17
|
+
getCommonOperationRequest(): typeof GetFriendStatisticsLeaderboardAroundPlayerOperationRequest;
|
|
18
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
21
|
+
private execute;
|
|
22
|
+
}
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
import { CharacterPlayer } from "./../../../../../GN-library/xdatabase/lib/entity/pro/CharacterPlayer";
|
|
8
|
+
declare class GetFriendStatisticsLeaderboardOperationRequest extends OperationRequest {
|
|
9
|
+
characterId: string;
|
|
10
|
+
key: string;
|
|
11
|
+
infoRequestParam: InfoRequestParam;
|
|
12
|
+
skip?: number;
|
|
13
|
+
limit?: number;
|
|
14
|
+
isValidRequest(): boolean;
|
|
15
|
+
}
|
|
16
|
+
export declare class GetFriendStatisticsLeaderboardRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
17
|
+
getCode(): number;
|
|
18
|
+
getCommonOperationRequest(): typeof GetFriendStatisticsLeaderboardOperationRequest;
|
|
19
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
21
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
22
|
+
private execute;
|
|
23
|
+
static quickSort(key: string, characterPlayers: CharacterPlayer[]): CharacterPlayer[];
|
|
24
|
+
}
|
|
25
|
+
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetIpAddressCreateOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetIpAddressCreateRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
11
|
+
getCode(): number;
|
|
12
|
+
getCommonOperationRequest(): typeof GetIpAddressCreateOperationRequest;
|
|
13
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
14
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
private execute;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetOwnerRequestHandler.d.ts
ADDED
|
@@ -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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetOwnerOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetOwnerRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
11
|
+
getCode(): number;
|
|
12
|
+
getCommonOperationRequest(): typeof GetOwnerOperationRequest;
|
|
13
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
14
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
private execute;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerBanRequestHandler.d.ts
ADDED
|
@@ -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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetPlayerBanOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetPlayerBanRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
11
|
+
getCode(): number;
|
|
12
|
+
getCommonOperationRequest(): typeof GetPlayerBanOperationRequest;
|
|
13
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
14
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
private execute;
|
|
17
|
+
}
|
|
18
|
+
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetPlayerCurrencyOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
playerCurrencyKeys?: Array<string>;
|
|
9
|
+
isValidRequest(): boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class GetPlayerCurrencyRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
12
|
+
getCode(): number;
|
|
13
|
+
getCommonOperationRequest(): typeof GetPlayerCurrencyOperationRequest;
|
|
14
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
private execute;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerDataRequestHandler.d.ts
ADDED
|
@@ -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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetPlayerDataOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
playerDataKeys?: Array<string>;
|
|
9
|
+
isValidRequest(): boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class GetPlayerDataRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
12
|
+
getCode(): number;
|
|
13
|
+
getCommonOperationRequest(): typeof GetPlayerDataOperationRequest;
|
|
14
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
private execute;
|
|
18
|
+
}
|
|
19
|
+
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetPlayerFriendOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
friendCatalogIds?: Array<string>;
|
|
9
|
+
isValidRequest(): boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class GetPlayerFriendRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
12
|
+
getCode(): number;
|
|
13
|
+
getCommonOperationRequest(): typeof GetPlayerFriendOperationRequest;
|
|
14
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
private execute;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerGroupRequestHandler.d.ts
ADDED
|
@@ -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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetPlayerGroupOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
groupCatalogIds?: Array<string>;
|
|
9
|
+
isValidRequest(): boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class GetPlayerGroupRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
12
|
+
getCode(): number;
|
|
13
|
+
getCommonOperationRequest(): typeof GetPlayerGroupOperationRequest;
|
|
14
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
private execute;
|
|
18
|
+
}
|
|
19
|
+
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetPlayerInformationOperationRequest extends OperationRequest {
|
|
8
|
+
characterId: string;
|
|
9
|
+
infoRequestParam: InfoRequestParam;
|
|
10
|
+
isValidRequest(): boolean;
|
|
11
|
+
}
|
|
12
|
+
export declare class GetPlayerInformationRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
13
|
+
getCode(): number;
|
|
14
|
+
getCommonOperationRequest(): typeof GetPlayerInformationOperationRequest;
|
|
15
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
private execute;
|
|
19
|
+
}
|
|
20
|
+
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetPlayerInventoryOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
itemCatalogIds?: Array<string>;
|
|
9
|
+
isValidRequest(): boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class GetPlayerInventoryRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
12
|
+
getCode(): number;
|
|
13
|
+
getCommonOperationRequest(): typeof GetPlayerInventoryOperationRequest;
|
|
14
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
private execute;
|
|
18
|
+
}
|
|
19
|
+
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetPlayerStatisticsOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
statisticsKeys?: Array<string>;
|
|
9
|
+
isValidRequest(): boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class GetPlayerStatisticsRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
12
|
+
getCode(): number;
|
|
13
|
+
getCommonOperationRequest(): typeof GetPlayerStatisticsOperationRequest;
|
|
14
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
private execute;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetPlayersWithDisplayNameOperationRequest extends OperationRequest {
|
|
8
|
+
keyword: string;
|
|
9
|
+
infoRequestParam: InfoRequestParam;
|
|
10
|
+
skip?: number;
|
|
11
|
+
limit?: number;
|
|
12
|
+
isValidRequest(): boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class GetPlayersWithDisplayNameRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof GetPlayersWithDisplayNameOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
private execute;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetPlayersWithSegmentOperationRequest extends OperationRequest {
|
|
8
|
+
value: string;
|
|
9
|
+
infoRequestParam: InfoRequestParam;
|
|
10
|
+
skip?: number;
|
|
11
|
+
limit?: number;
|
|
12
|
+
isValidRequest(): boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class GetPlayersWithSegmentRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof GetPlayersWithSegmentOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
private execute;
|
|
21
|
+
}
|
|
22
|
+
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetPlayersWithTagOperationRequest extends OperationRequest {
|
|
8
|
+
key: string;
|
|
9
|
+
value: string;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
skip?: number;
|
|
12
|
+
limit?: number;
|
|
13
|
+
isValidRequest(): boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare class GetPlayersWithTagRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
16
|
+
getCode(): number;
|
|
17
|
+
getCommonOperationRequest(): typeof GetPlayersWithTagOperationRequest;
|
|
18
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
21
|
+
private execute;
|
|
22
|
+
}
|
|
23
|
+
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetRemoveStatusOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetRemoveStatusRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
11
|
+
getCode(): number;
|
|
12
|
+
getCommonOperationRequest(): typeof GetRemoveStatusOperationRequest;
|
|
13
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
14
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
private execute;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetSegmentRequestHandler.d.ts
ADDED
|
@@ -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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetSegmentOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetSegmentRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
11
|
+
getCode(): number;
|
|
12
|
+
getCommonOperationRequest(): typeof GetSegmentOperationRequest;
|
|
13
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
14
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
private execute;
|
|
17
|
+
}
|
|
18
|
+
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetStatisticsLeaderboardAroundPlayerOperationRequest extends OperationRequest {
|
|
8
|
+
characterId: string;
|
|
9
|
+
key: string;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
skip?: number;
|
|
12
|
+
limit?: number;
|
|
13
|
+
isValidRequest(): boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare class GetStatisticsLeaderboardAroundPlayerRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
16
|
+
getCode(): number;
|
|
17
|
+
getCommonOperationRequest(): typeof GetStatisticsLeaderboardAroundPlayerOperationRequest;
|
|
18
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
21
|
+
private execute;
|
|
22
|
+
}
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetStatisticsLeaderboardOperationRequest extends OperationRequest {
|
|
8
|
+
key: string;
|
|
9
|
+
infoRequestParam: InfoRequestParam;
|
|
10
|
+
skip?: number;
|
|
11
|
+
limit?: number;
|
|
12
|
+
loadFromCache?: boolean;
|
|
13
|
+
isValidRequest(): boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare class GetStatisticsLeaderboardRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
16
|
+
protected init(): void;
|
|
17
|
+
getCode(): number;
|
|
18
|
+
getCommonOperationRequest(): typeof GetStatisticsLeaderboardOperationRequest;
|
|
19
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
21
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
22
|
+
private execute;
|
|
23
|
+
}
|
|
24
|
+
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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetTagOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
tagKeys: Array<string>;
|
|
9
|
+
isValidRequest(): boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class GetTagRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
12
|
+
getCode(): number;
|
|
13
|
+
getCommonOperationRequest(): typeof GetTagOperationRequest;
|
|
14
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
private execute;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetTsCreateRequestHandler.d.ts
ADDED
|
@@ -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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetTsCreateOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetTsCreateRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
11
|
+
getCode(): number;
|
|
12
|
+
getCommonOperationRequest(): typeof GetTsCreateOperationRequest;
|
|
13
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
14
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
private execute;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetTsLastLoginRequestHandler.d.ts
ADDED
|
@@ -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 { CharacterPlayerBaseRequestHandler } from "./CharacterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetTsLastLoginOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetTsLastLoginRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
11
|
+
getCode(): number;
|
|
12
|
+
getCommonOperationRequest(): typeof GetTsLastLoginOperationRequest;
|
|
13
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
14
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
private execute;
|
|
17
|
+
}
|
|
18
|
+
export {};
|