@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
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "debug",
|
|
3
|
+
"options": {
|
|
4
|
+
"applicationSettings": {
|
|
5
|
+
"port": 2202,
|
|
6
|
+
"useSsl": false,
|
|
7
|
+
"keyFilePath": "",
|
|
8
|
+
"certFilePath": "",
|
|
9
|
+
"expiredTokenInMs": 172800000,
|
|
10
|
+
"privateKeyToken": "privateKeyDefault"
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
"httpAppSettings": {
|
|
14
|
+
"enable": true,
|
|
15
|
+
"allowOrigin": "*",
|
|
16
|
+
"credentials": true,
|
|
17
|
+
"allowMethods": ["GET", "POST"],
|
|
18
|
+
"allowHeaders": ["a", "content-type"],
|
|
19
|
+
"enableSendAndReceiveDebug": true,
|
|
20
|
+
"enablePostViaMsgPack": true,
|
|
21
|
+
"enablePostViaJson": true
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
"socketAppSettings": {
|
|
25
|
+
"enable": true,
|
|
26
|
+
"allowOrigin": "*",
|
|
27
|
+
"credentials": true,
|
|
28
|
+
"allowMethods": ["GET"],
|
|
29
|
+
"allowHeaders": [],
|
|
30
|
+
"enableSendAndReceiveDebug": true,
|
|
31
|
+
"enablePostViaMsgPack": true,
|
|
32
|
+
"enablePostViaJson": false,
|
|
33
|
+
"pingInterval": 50000,
|
|
34
|
+
"pingTimeout": 5000
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
"uploadFileSettings": {
|
|
38
|
+
"enable": true,
|
|
39
|
+
"uploadPath": "./file-upload",
|
|
40
|
+
"maxSizeUpload": 52428800,
|
|
41
|
+
"mimeTypeAccepts": ["image/png"]
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
"databaseSettings": {
|
|
45
|
+
"connectionString": "mongodb://127.0.0.1:27017/",
|
|
46
|
+
"databaseName": "GNServerTest",
|
|
47
|
+
"options": {
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
"otherSettings": {
|
|
52
|
+
"headerIP": "x-ip"
|
|
53
|
+
},
|
|
54
|
+
|
|
55
|
+
"mailSettings": {
|
|
56
|
+
"enable": false,
|
|
57
|
+
"sendFrom": "changx@xmobitea.com",
|
|
58
|
+
"sendGridApiKey": "SG."
|
|
59
|
+
},
|
|
60
|
+
|
|
61
|
+
"logSettings": {
|
|
62
|
+
"logToConsoleEnable": true,
|
|
63
|
+
"logToFileEnable": true,
|
|
64
|
+
"logPath": "./log/debug/Server.log"
|
|
65
|
+
},
|
|
66
|
+
|
|
67
|
+
"ddosSettings": {
|
|
68
|
+
"socketMaxRequestPerSecondPerIp": 50,
|
|
69
|
+
"socketMaxRequestPerSecondPerPeer": 20,
|
|
70
|
+
"socketMaxPendingRequest": 1000,
|
|
71
|
+
"socketMaxRequestSize": 1024,
|
|
72
|
+
"httpMaxRequestPerSecondPerIp": 50,
|
|
73
|
+
"httpMaxRequestPerSecondPerPeer": 20,
|
|
74
|
+
"httpMaxPendingRequest": 1000,
|
|
75
|
+
"httpMaxRequestSize": 1024,
|
|
76
|
+
"maxUploadPendingRequest": 200,
|
|
77
|
+
"maxDownloadPendingRequest": 200
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OperationResponse } from "./../../../GN-common/entity/operationResponse/OperationResponse";
|
|
2
|
+
import { Request } from "./../../../GN-common/entity/operationRequest/base/Request";
|
|
3
|
+
import { IRequestHandler } from "./handler/base/IRequestHandler";
|
|
4
|
+
import { IRequestConverterService } from "./../../service/IRequestConverterService";
|
|
5
|
+
export declare class RequestController {
|
|
6
|
+
private handlers;
|
|
7
|
+
private requestUnAuthenticatedCodes;
|
|
8
|
+
private requestConverterService;
|
|
9
|
+
setRequestConverterService(requestConverterService: IRequestConverterService): void;
|
|
10
|
+
getRequestUnAuthenticatedCodes(): number[];
|
|
11
|
+
addHandler(type: number, requestHandler: IRequestHandler, onlyAuthenticated?: boolean): void;
|
|
12
|
+
removeHandler(type: number, code: number): void;
|
|
13
|
+
removeAllHandlers(): void;
|
|
14
|
+
getHandler(type: number, code: number): IRequestHandler;
|
|
15
|
+
getAllHandlers(type: number): IRequestHandler[];
|
|
16
|
+
handleRequest(request: Request): Promise<OperationResponse>;
|
|
17
|
+
constructor();
|
|
18
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { RequestHandler } from "./../base/RequestHandler";
|
|
2
|
+
import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
3
|
+
import { GNArray, GNHashtable } from "./../../../../../GN-common/common/GNData";
|
|
4
|
+
import { MasterPlayerFindOptions } from "./../../../../../GN-library/xdatabase/lib/entity/pro/findOptions/MasterPlayerFindOptions";
|
|
5
|
+
import { MasterPlayer } from "./../../../../../GN-library/xdatabase/lib/entity/pro/MasterPlayer";
|
|
6
|
+
import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
7
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
8
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
9
|
+
declare class LoginBaseOperationRequest extends OperationRequest {
|
|
10
|
+
isValidRequest(): boolean;
|
|
11
|
+
}
|
|
12
|
+
export declare class LoginBaseRequestHandler extends RequestHandler {
|
|
13
|
+
private static readonly UserIdLength;
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof LoginBaseOperationRequest;
|
|
16
|
+
private isGetAll;
|
|
17
|
+
protected convertToMasterPlayerFindOptions(infoRequestParam: InfoRequestParam): MasterPlayerFindOptions;
|
|
18
|
+
protected generateInfoRequestParamForOwner(secretInfo: SecretInfo, infoRequestParam: InfoRequestParam): void;
|
|
19
|
+
protected generateInfoResponseParameters(masterPlayer: MasterPlayer, infoRequestParam: InfoRequestParam): GNHashtable;
|
|
20
|
+
protected generateExternal(masterPlayer: MasterPlayer): GNHashtable;
|
|
21
|
+
protected generateSegments(masterPlayer: MasterPlayer): string[];
|
|
22
|
+
protected generateCustomDatas(masterPlayer: MasterPlayer, customDataKeys: Array<string>): GNArray;
|
|
23
|
+
protected generateDisplayName(masterPlayer: MasterPlayer): string;
|
|
24
|
+
protected generateAvatar(masterPlayer: MasterPlayer): GNHashtable;
|
|
25
|
+
protected generateTsCreate(masterPlayer: MasterPlayer): number;
|
|
26
|
+
protected generateTags(masterPlayer: MasterPlayer, tagKeys: Array<string>): GNArray;
|
|
27
|
+
protected generatePlayerBan(masterPlayer: MasterPlayer): GNHashtable;
|
|
28
|
+
protected generatePlayerDatas(masterPlayer: MasterPlayer, playerDataKeys: Array<string>): GNArray;
|
|
29
|
+
protected generatePlayerCurrencies(masterPlayer: MasterPlayer, playerCurrencyKeys: Array<string>): GNArray;
|
|
30
|
+
protected generatePlayerStatistics(masterPlayer: MasterPlayer, playerStatisticsKeys: Array<string>): GNArray;
|
|
31
|
+
protected generateTsLastLogin(masterPlayer: MasterPlayer): number;
|
|
32
|
+
protected generateIpAddressCreate(masterPlayer: MasterPlayer): string;
|
|
33
|
+
protected generateCountryCode(masterPlayer: MasterPlayer): string;
|
|
34
|
+
protected generateEmail(masterPlayer: MasterPlayer): string;
|
|
35
|
+
protected setupAuthInfo(operationResponse: OperationResponse, masterPlayer: MasterPlayer, secretInfo: SecretInfo): void;
|
|
36
|
+
protected generateNewMasterPlayerResult(ipAddressCreate: string): any;
|
|
37
|
+
}
|
|
38
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByAccountRequestHandler.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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class LoginByAccountOperationRequest extends OperationRequest {
|
|
8
|
+
username: string;
|
|
9
|
+
password: string;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class LoginByAccountRequestHandler extends LoginBaseRequestHandler {
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof LoginByAccountOperationRequest;
|
|
16
|
+
handle(authInfo: AuthInfo, 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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class LoginByAndroidDeviceIdOperationRequest extends OperationRequest {
|
|
8
|
+
androidDeviceId: string;
|
|
9
|
+
createPlayerIfNotExists?: boolean;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class LoginByAndroidDeviceIdRequestHandler extends LoginBaseRequestHandler {
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof LoginByAndroidDeviceIdOperationRequest;
|
|
16
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
private execute;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByAppleRequestHandler.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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class LoginByAppleOperationRequest extends OperationRequest {
|
|
8
|
+
token: string;
|
|
9
|
+
createPlayerIfNotExists?: boolean;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class LoginByAppleRequestHandler extends LoginBaseRequestHandler {
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof LoginByAppleOperationRequest;
|
|
16
|
+
handle(authInfo: AuthInfo, 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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class LoginByCustomDeviceIdOperationRequest extends OperationRequest {
|
|
8
|
+
customDeviceId: string;
|
|
9
|
+
createPlayerIfNotExists?: boolean;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class LoginByCustomDeviceIdRequestHandler extends LoginBaseRequestHandler {
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof LoginByCustomDeviceIdOperationRequest;
|
|
16
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
private execute;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByCustomIdRequestHandler.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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class LoginByCustomIdOperationRequest extends OperationRequest {
|
|
8
|
+
customId: string;
|
|
9
|
+
createPlayerIfNotExists?: boolean;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class LoginByCustomIdRequestHandler extends LoginBaseRequestHandler {
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof LoginByCustomIdOperationRequest;
|
|
16
|
+
handle(authInfo: AuthInfo, 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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class LoginByEditorDeviceIdOperationRequest extends OperationRequest {
|
|
8
|
+
editorDeviceId: string;
|
|
9
|
+
createPlayerIfNotExists?: boolean;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class LoginByEditorDeviceIdRequestHandler extends LoginBaseRequestHandler {
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof LoginByEditorDeviceIdOperationRequest;
|
|
16
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
private execute;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByFacebookRequestHandler.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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class LoginByFacebookOperationRequest extends OperationRequest {
|
|
8
|
+
token: string;
|
|
9
|
+
createPlayerIfNotExists?: boolean;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class LoginByFacebookRequestHandler extends LoginBaseRequestHandler {
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof LoginByFacebookOperationRequest;
|
|
16
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
private execute;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
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 { GNHashtable } from "./../../../../../GN-common/common/GNData";
|
|
5
|
+
import { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
6
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
7
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
8
|
+
declare class LoginByGenericServiceOperationRequest extends OperationRequest {
|
|
9
|
+
serviceName: string;
|
|
10
|
+
serviceData: GNHashtable;
|
|
11
|
+
createPlayerIfNotExists?: boolean;
|
|
12
|
+
infoRequestParam: InfoRequestParam;
|
|
13
|
+
isValidRequest(): boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare class LoginByGenericServiceRequestHandler extends LoginBaseRequestHandler {
|
|
16
|
+
getCode(): number;
|
|
17
|
+
getCommonOperationRequest(): typeof LoginByGenericServiceOperationRequest;
|
|
18
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
private execute;
|
|
20
|
+
}
|
|
21
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByGoogleRequestHandler.d.ts
ADDED
|
@@ -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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class LoginByGoogleOperationRequest extends OperationRequest {
|
|
8
|
+
token: string;
|
|
9
|
+
type: number;
|
|
10
|
+
createPlayerIfNotExists?: boolean;
|
|
11
|
+
infoRequestParam: InfoRequestParam;
|
|
12
|
+
isValidRequest(): boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class LoginByGoogleRequestHandler extends LoginBaseRequestHandler {
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof LoginByGoogleOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, 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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class LoginByLinuxDeviceIdOperationRequest extends OperationRequest {
|
|
8
|
+
linuxDeviceId: string;
|
|
9
|
+
createPlayerIfNotExists?: boolean;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class LoginByLinuxDeviceIdRequestHandler extends LoginBaseRequestHandler {
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof LoginByLinuxDeviceIdOperationRequest;
|
|
16
|
+
handle(authInfo: AuthInfo, 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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class LoginByMacOSDeviceIdOperationRequest extends OperationRequest {
|
|
8
|
+
macOSDeviceId: string;
|
|
9
|
+
createPlayerIfNotExists?: boolean;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class LoginByMacOSDeviceIdRequestHandler extends LoginBaseRequestHandler {
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof LoginByMacOSDeviceIdOperationRequest;
|
|
16
|
+
handle(authInfo: AuthInfo, 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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class LoginByWindowsDeviceIdOperationRequest extends OperationRequest {
|
|
8
|
+
windowsDeviceId: string;
|
|
9
|
+
createPlayerIfNotExists?: boolean;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class LoginByWindowsDeviceIdRequestHandler extends LoginBaseRequestHandler {
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof LoginByWindowsDeviceIdOperationRequest;
|
|
16
|
+
handle(authInfo: AuthInfo, 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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class LoginByWindowsPhoneDeviceIdOperationRequest extends OperationRequest {
|
|
8
|
+
windowsPhoneDeviceId: string;
|
|
9
|
+
createPlayerIfNotExists?: boolean;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class LoginByWindowsPhoneDeviceIdRequestHandler extends LoginBaseRequestHandler {
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof LoginByWindowsPhoneDeviceIdOperationRequest;
|
|
16
|
+
handle(authInfo: AuthInfo, 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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class LoginByiOSDeviceIdOperationRequest extends OperationRequest {
|
|
8
|
+
iOSDeviceId: string;
|
|
9
|
+
createPlayerIfNotExists?: boolean;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class LoginByiOSDeviceIdRequestHandler extends LoginBaseRequestHandler {
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof LoginByiOSDeviceIdOperationRequest;
|
|
16
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
private execute;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/authenticate/RefreshAuthTokenRequestHandler.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
declare class RefreshAuthTokenOperationRequest extends OperationRequest {
|
|
7
|
+
isValidRequest(): boolean;
|
|
8
|
+
}
|
|
9
|
+
export declare class RefreshAuthTokenRequestHandler extends LoginBaseRequestHandler {
|
|
10
|
+
getCode(): number;
|
|
11
|
+
getCommonOperationRequest(): typeof RefreshAuthTokenOperationRequest;
|
|
12
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
13
|
+
private execute;
|
|
14
|
+
}
|
|
15
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/authenticate/RegisterAccountRequestHandler.d.ts
ADDED
|
@@ -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 { LoginBaseRequestHandler } from "./LoginBaseRequestHandler";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class RegisterAccountOperationRequest extends OperationRequest {
|
|
8
|
+
username: string;
|
|
9
|
+
password: string;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class RegisterAccountRequestHandler extends LoginBaseRequestHandler {
|
|
14
|
+
getCode(): number;
|
|
15
|
+
getCommonOperationRequest(): typeof RegisterAccountOperationRequest;
|
|
16
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
execute(request: {
|
|
18
|
+
username: string;
|
|
19
|
+
password: string;
|
|
20
|
+
infoRequestParam: InfoRequestParam;
|
|
21
|
+
ipAddressCreate: string;
|
|
22
|
+
}, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
23
|
+
}
|
|
24
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare class InfoRequestParam {
|
|
2
|
+
external?: boolean;
|
|
3
|
+
segments?: boolean;
|
|
4
|
+
customDatas?: boolean;
|
|
5
|
+
displayName?: boolean;
|
|
6
|
+
avatar?: boolean;
|
|
7
|
+
tsCreate?: boolean;
|
|
8
|
+
tags?: boolean;
|
|
9
|
+
playerBan?: boolean;
|
|
10
|
+
playerCurrencies?: boolean;
|
|
11
|
+
playerStatistics?: boolean;
|
|
12
|
+
playerDatas?: boolean;
|
|
13
|
+
ipAddressCreate?: boolean;
|
|
14
|
+
countryCode?: boolean;
|
|
15
|
+
email?: boolean;
|
|
16
|
+
tsLastLogin?: boolean;
|
|
17
|
+
playerDataKeys?: Array<string>;
|
|
18
|
+
playerCurrencyKeys?: Array<string>;
|
|
19
|
+
playerStatisticsKeys?: Array<string>;
|
|
20
|
+
customDataKeys?: Array<string>;
|
|
21
|
+
tagKeys?: Array<string>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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 { Constructor } from "./../../../../service/IRequestConverterService";
|
|
5
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
6
|
+
export interface IRequestHandler {
|
|
7
|
+
getCode(): number;
|
|
8
|
+
getCommonOperationRequest(): Constructor<OperationRequest>;
|
|
9
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
10
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
11
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { IRequestHandler } from "./IRequestHandler";
|
|
4
|
+
import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
|
|
5
|
+
import { GNServer } from "./../../../../../GNServer";
|
|
6
|
+
import { Constructor, IRequestConverterService } from "./../../../../service/IRequestConverterService";
|
|
7
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
8
|
+
export declare abstract class RequestHandler implements IRequestHandler {
|
|
9
|
+
protected gnServer: GNServer;
|
|
10
|
+
protected requestConverterService: IRequestConverterService;
|
|
11
|
+
abstract getCode(): number;
|
|
12
|
+
abstract getCommonOperationRequest(): Constructor<OperationRequest>;
|
|
13
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
14
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
protected init(): void;
|
|
17
|
+
protected newInvalidRequestParameters(operationRequest: OperationRequest, debugMessage?: string): OperationResponse;
|
|
18
|
+
protected newOperationInvalid(operationRequest: OperationRequest, debugMessage?: string): OperationResponse;
|
|
19
|
+
protected newOperationInternalServerError(operationRequest: OperationRequest, debugMessage?: string): OperationResponse;
|
|
20
|
+
protected newOperationNotAllowError(operationRequest: OperationRequest, debugMessage?: string): OperationResponse;
|
|
21
|
+
constructor(gnServer: GNServer);
|
|
22
|
+
}
|
|
@@ -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
|
+
declare class AddPlayerFriendOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
friendId: string;
|
|
9
|
+
catalogId: string;
|
|
10
|
+
isValidRequest(): boolean;
|
|
11
|
+
}
|
|
12
|
+
export declare class AddPlayerFriendRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
13
|
+
getCode(): number;
|
|
14
|
+
getCommonOperationRequest(): typeof AddPlayerFriendOperationRequest;
|
|
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 {};
|
package/dist/GN-app-api/handler/controller/handler/characterPlayer/AddSegmentRequestHandler.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 AddSegmentOperationRequest extends OperationRequest {
|
|
7
|
+
characterId: string;
|
|
8
|
+
value: string;
|
|
9
|
+
isValidRequest(): boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class AddSegmentRequestHandler extends CharacterPlayerBaseRequestHandler {
|
|
12
|
+
getCode(): number;
|
|
13
|
+
getCommonOperationRequest(): typeof AddSegmentOperationRequest;
|
|
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,35 @@
|
|
|
1
|
+
import { GNArray, GNHashtable } from "./../../../../../GN-common/common/GNData";
|
|
2
|
+
import { CharacterPlayerFindOptions } from "./../../../../../GN-library/xdatabase/lib/entity/pro/findOptions/CharacterPlayerFindOptions";
|
|
3
|
+
import { RequestHandler } from "./../base/RequestHandler";
|
|
4
|
+
import { CharacterPlayer } from "./../../../../../GN-library/xdatabase/lib/entity/pro/CharacterPlayer";
|
|
5
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
6
|
+
import { CharacterPlayerPermissionRules, SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
7
|
+
export declare abstract class CharacterPlayerBaseRequestHandler extends RequestHandler {
|
|
8
|
+
private isGetAll;
|
|
9
|
+
protected convertToCharacterPlayerFindOptions(infoRequestParam: InfoRequestParam): CharacterPlayerFindOptions;
|
|
10
|
+
protected isAllowMethod(userId: string, characterId: string, gameId: string, permissionRules: CharacterPlayerPermissionRules): Promise<boolean>;
|
|
11
|
+
protected generateInfoRequestParamForOwner(secretInfo: SecretInfo, infoRequestParam: InfoRequestParam): void;
|
|
12
|
+
protected generateInfoRequestParamForOther(secretInfo: SecretInfo, infoRequestParam: InfoRequestParam): void;
|
|
13
|
+
protected generateInfoRequestParamForServer(secretInfo: SecretInfo, infoRequestParam: InfoRequestParam): void;
|
|
14
|
+
protected generateInfoRequestParamForAdmin(secretInfo: SecretInfo, infoRequestParam: InfoRequestParam): void;
|
|
15
|
+
protected generateInfoResponseParameters(characterPlayer: CharacterPlayer, infoRequestParam: InfoRequestParam, gameId: string): GNHashtable;
|
|
16
|
+
protected generateCatalogId(characterPlayer: CharacterPlayer): string;
|
|
17
|
+
protected generateOwner(characterPlayer: CharacterPlayer): GNHashtable;
|
|
18
|
+
protected generateRemoveStatus(characterPlayer: CharacterPlayer): GNHashtable;
|
|
19
|
+
protected generateSegments(characterPlayer: CharacterPlayer): string[];
|
|
20
|
+
protected generateCustomDatas(characterPlayer: CharacterPlayer, customDataKeys: string[], gameId: string): GNArray;
|
|
21
|
+
protected generateDisplayName(characterPlayer: CharacterPlayer, gameId: string): string;
|
|
22
|
+
protected generateAvatar(characterPlayer: CharacterPlayer): GNHashtable;
|
|
23
|
+
protected generateTsCreate(characterPlayer: CharacterPlayer): number;
|
|
24
|
+
protected generateTags(characterPlayer: CharacterPlayer, tagKeys: Array<string>, gameId: string): GNArray;
|
|
25
|
+
protected generatePlayerBan(characterPlayer: CharacterPlayer): GNHashtable;
|
|
26
|
+
protected generatePlayerDatas(characterPlayer: CharacterPlayer, playerDataKeys: Array<string>, gameId: string): GNArray;
|
|
27
|
+
protected generatePlayerCurrencies(characterPlayer: CharacterPlayer, playerCurrencyKeys: Array<string>, gameId: string): GNArray;
|
|
28
|
+
protected generatePlayerStatistics(characterPlayer: CharacterPlayer, playerStatisticsKeys: Array<string>, gameId: string): GNArray;
|
|
29
|
+
protected generatePlayerInventories(characterPlayer: CharacterPlayer, itemCatalogIds: Array<string>): GNArray;
|
|
30
|
+
protected generatePlayerGroups(characterPlayer: CharacterPlayer, groupCatalogIds: Array<string>): GNArray;
|
|
31
|
+
protected generatePlayerFriends(characterPlayer: CharacterPlayer, friendCatalogIds: Array<string>): GNArray;
|
|
32
|
+
protected generateTsLastLogin(characterPlayer: CharacterPlayer): number;
|
|
33
|
+
protected generateIpAddressCreate(characterPlayer: CharacterPlayer): string;
|
|
34
|
+
protected generateCountryCode(characterPlayer: CharacterPlayer): string;
|
|
35
|
+
}
|