@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,35 @@
|
|
|
1
|
+
import { PermissionRulesParam } from "./PermissionRulesParam";
|
|
2
|
+
export declare class InventoryPermissionRulesParam {
|
|
3
|
+
addSegment?: PermissionRulesParam;
|
|
4
|
+
removeSegment?: PermissionRulesParam;
|
|
5
|
+
getSegment?: PermissionRulesParam;
|
|
6
|
+
setTag?: PermissionRulesParam;
|
|
7
|
+
removeTag?: PermissionRulesParam;
|
|
8
|
+
getTag?: PermissionRulesParam;
|
|
9
|
+
getDisplayName?: PermissionRulesParam;
|
|
10
|
+
setDisplayName?: PermissionRulesParam;
|
|
11
|
+
getTsCreate?: PermissionRulesParam;
|
|
12
|
+
setAvatar?: PermissionRulesParam;
|
|
13
|
+
getAvatar?: PermissionRulesParam;
|
|
14
|
+
setItemStatistics?: PermissionRulesParam;
|
|
15
|
+
getItemStatistics?: PermissionRulesParam;
|
|
16
|
+
getStatisticsLeaderboard?: PermissionRulesParam;
|
|
17
|
+
getStatisticsLeaderboardAroundItem?: PermissionRulesParam;
|
|
18
|
+
getCustomData?: PermissionRulesParam;
|
|
19
|
+
setCustomData?: PermissionRulesParam;
|
|
20
|
+
setItemData?: PermissionRulesParam;
|
|
21
|
+
getItemData?: PermissionRulesParam;
|
|
22
|
+
getItemInformation?: PermissionRulesParam;
|
|
23
|
+
getItemsWithSegment?: PermissionRulesParam;
|
|
24
|
+
getItemsWithTag?: PermissionRulesParam;
|
|
25
|
+
getCatalogId?: PermissionRulesParam;
|
|
26
|
+
getClassId?: PermissionRulesParam;
|
|
27
|
+
getItemType?: PermissionRulesParam;
|
|
28
|
+
getAmount?: PermissionRulesParam;
|
|
29
|
+
getOwner?: PermissionRulesParam;
|
|
30
|
+
getRemoveStatus?: PermissionRulesParam;
|
|
31
|
+
setAmount?: PermissionRulesParam;
|
|
32
|
+
setOwner?: PermissionRulesParam;
|
|
33
|
+
setRemoveStatus?: PermissionRulesParam;
|
|
34
|
+
getItemsWithDisplayName?: PermissionRulesParam;
|
|
35
|
+
}
|
package/dist/GN-app-api/handler/controller/handler/dashboard/model/InventorySettingsParam.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DataSettingsParam } from "./DataSettingsParam";
|
|
2
|
+
import { StatisticsSettingsParam } from "./StatisticsSettingsParam";
|
|
3
|
+
import { TagSettingsParam } from "./TagSettingsParam";
|
|
4
|
+
export declare class InventorySettingsParam {
|
|
5
|
+
inventoryStatisticsSettings?: Array<StatisticsSettingsParam>;
|
|
6
|
+
inventoryDatasSettings?: Array<DataSettingsParam>;
|
|
7
|
+
customDatasSettings?: Array<DataSettingsParam>;
|
|
8
|
+
tagsSettings?: Array<TagSettingsParam>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { PermissionRulesParam } from "./PermissionRulesParam";
|
|
2
|
+
export declare class MasterAdminPermissionRulesParam {
|
|
3
|
+
setMasterGameSettings?: PermissionRulesParam;
|
|
4
|
+
grantAdminAccount?: PermissionRulesParam;
|
|
5
|
+
removeAdminAccount?: PermissionRulesParam;
|
|
6
|
+
setPasswordAdminAccount?: PermissionRulesParam;
|
|
7
|
+
setSecretKeyAdminAccount?: PermissionRulesParam;
|
|
8
|
+
setGameInformation?: PermissionRulesParam;
|
|
9
|
+
grantGame?: PermissionRulesParam;
|
|
10
|
+
changePasswordAdminAccount?: PermissionRulesParam;
|
|
11
|
+
getAdminAccountList?: PermissionRulesParam;
|
|
12
|
+
getGameInformation?: PermissionRulesParam;
|
|
13
|
+
getGameList?: PermissionRulesParam;
|
|
14
|
+
getMasterGameSettings?: PermissionRulesParam;
|
|
15
|
+
getServerLog?: PermissionRulesParam;
|
|
16
|
+
getSecretInfoInformation?: PermissionRulesParam;
|
|
17
|
+
getSecretInfoList?: PermissionRulesParam;
|
|
18
|
+
grantSecretInfo?: PermissionRulesParam;
|
|
19
|
+
setSecretInfoInformation?: PermissionRulesParam;
|
|
20
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { PermissionRulesParam } from "./PermissionRulesParam";
|
|
2
|
+
export declare class MasterPlayerPermissionRulesParam {
|
|
3
|
+
linkAccount?: PermissionRulesParam;
|
|
4
|
+
linkAndroidDeviceId?: PermissionRulesParam;
|
|
5
|
+
linkApple?: PermissionRulesParam;
|
|
6
|
+
linkCustomDeviceId?: PermissionRulesParam;
|
|
7
|
+
linkCustomId?: PermissionRulesParam;
|
|
8
|
+
linkEditorDeviceId?: PermissionRulesParam;
|
|
9
|
+
linkFacebook?: PermissionRulesParam;
|
|
10
|
+
linkGenericService?: PermissionRulesParam;
|
|
11
|
+
linkGoogle?: PermissionRulesParam;
|
|
12
|
+
linkiOSDeviceId?: PermissionRulesParam;
|
|
13
|
+
linkLinuxDeviceId?: PermissionRulesParam;
|
|
14
|
+
linkMacOSDeviceId?: PermissionRulesParam;
|
|
15
|
+
linkWindowsDeviceId?: PermissionRulesParam;
|
|
16
|
+
linkWindowsPhoneDeviceId?: PermissionRulesParam;
|
|
17
|
+
unlinkAccount?: PermissionRulesParam;
|
|
18
|
+
unlinkAndroidDeviceId?: PermissionRulesParam;
|
|
19
|
+
unlinkApple?: PermissionRulesParam;
|
|
20
|
+
unlinkCustomDeviceId?: PermissionRulesParam;
|
|
21
|
+
unlinkCustomId?: PermissionRulesParam;
|
|
22
|
+
unlinkEditorDeviceId?: PermissionRulesParam;
|
|
23
|
+
unlinkFacebook?: PermissionRulesParam;
|
|
24
|
+
unlinkGenericService?: PermissionRulesParam;
|
|
25
|
+
unlinkGoogle?: PermissionRulesParam;
|
|
26
|
+
unlinkiOSDeviceId?: PermissionRulesParam;
|
|
27
|
+
unlinkLinuxDeviceId?: PermissionRulesParam;
|
|
28
|
+
unlinkMacOSDeviceId?: PermissionRulesParam;
|
|
29
|
+
unlinkWindowsDeviceId?: PermissionRulesParam;
|
|
30
|
+
unlinkWindowsPhoneDeviceId?: PermissionRulesParam;
|
|
31
|
+
addSegment?: PermissionRulesParam;
|
|
32
|
+
removeSegment?: PermissionRulesParam;
|
|
33
|
+
getSegment?: PermissionRulesParam;
|
|
34
|
+
setTag?: PermissionRulesParam;
|
|
35
|
+
removeTag?: PermissionRulesParam;
|
|
36
|
+
getTag?: PermissionRulesParam;
|
|
37
|
+
getDisplayName?: PermissionRulesParam;
|
|
38
|
+
setDisplayName?: PermissionRulesParam;
|
|
39
|
+
getTsCreate?: PermissionRulesParam;
|
|
40
|
+
getIpAddressCreate?: PermissionRulesParam;
|
|
41
|
+
setTsLastLogin?: PermissionRulesParam;
|
|
42
|
+
getTsLastLogin?: PermissionRulesParam;
|
|
43
|
+
setPlayerBan?: PermissionRulesParam;
|
|
44
|
+
getPlayerBan?: PermissionRulesParam;
|
|
45
|
+
setCountryCode?: PermissionRulesParam;
|
|
46
|
+
getCountryCode?: PermissionRulesParam;
|
|
47
|
+
changeAccountPassword?: PermissionRulesParam;
|
|
48
|
+
resetAccountPassword?: PermissionRulesParam;
|
|
49
|
+
setAvatar?: PermissionRulesParam;
|
|
50
|
+
getAvatar?: PermissionRulesParam;
|
|
51
|
+
setPlayerCurrency?: PermissionRulesParam;
|
|
52
|
+
getPlayerCurrency?: PermissionRulesParam;
|
|
53
|
+
setPlayerStatistics?: PermissionRulesParam;
|
|
54
|
+
getPlayerStatistics?: PermissionRulesParam;
|
|
55
|
+
getStatisticsLeaderboard?: PermissionRulesParam;
|
|
56
|
+
getStatisticsLeaderboardAroundPlayer?: PermissionRulesParam;
|
|
57
|
+
getCustomData?: PermissionRulesParam;
|
|
58
|
+
setCustomData?: PermissionRulesParam;
|
|
59
|
+
setPlayerData?: PermissionRulesParam;
|
|
60
|
+
getPlayerData?: PermissionRulesParam;
|
|
61
|
+
getPlayerInformation?: PermissionRulesParam;
|
|
62
|
+
getPlayersWithApple?: PermissionRulesParam;
|
|
63
|
+
getPlayersWithFacebook?: PermissionRulesParam;
|
|
64
|
+
getPlayersWithGoogle?: PermissionRulesParam;
|
|
65
|
+
getPlayersWithGenericService?: PermissionRulesParam;
|
|
66
|
+
getPlayersWithSegment?: PermissionRulesParam;
|
|
67
|
+
getPlayersWithTag?: PermissionRulesParam;
|
|
68
|
+
getExternal?: PermissionRulesParam;
|
|
69
|
+
getPlayersWithDisplayName?: PermissionRulesParam;
|
|
70
|
+
getEmail?: PermissionRulesParam;
|
|
71
|
+
setEmail?: PermissionRulesParam;
|
|
72
|
+
getCurrencyLeaderboard?: PermissionRulesParam;
|
|
73
|
+
}
|
package/dist/GN-app-api/handler/controller/handler/dashboard/model/MasterPlayerSettingsParam.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CurrencySettingsParam } from "./CurrencySettingsParam";
|
|
2
|
+
import { DataSettingsParam } from "./DataSettingsParam";
|
|
3
|
+
import { GenericServiceSettingsParam } from "./GenericServiceSettingsParam";
|
|
4
|
+
import { StatisticsSettingsParam } from "./StatisticsSettingsParam";
|
|
5
|
+
import { TagSettingsParam } from "./TagSettingsParam";
|
|
6
|
+
export declare class MasterPlayerSettingsParam {
|
|
7
|
+
genericServiceSettings?: Array<GenericServiceSettingsParam>;
|
|
8
|
+
playerCurrencySettings?: Array<CurrencySettingsParam>;
|
|
9
|
+
playerStatisticsSettings?: Array<StatisticsSettingsParam>;
|
|
10
|
+
playerDatasSettings?: Array<DataSettingsParam>;
|
|
11
|
+
customDatasSettings?: Array<DataSettingsParam>;
|
|
12
|
+
tagsSettings?: Array<TagSettingsParam>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare class SizeParam {
|
|
2
|
+
min: number;
|
|
3
|
+
max: number;
|
|
4
|
+
}
|
|
5
|
+
declare class TeamParam {
|
|
6
|
+
teamId: string;
|
|
7
|
+
teamSize: SizeParam;
|
|
8
|
+
}
|
|
9
|
+
declare class LinearExpansionsParam {
|
|
10
|
+
secondsBetweenExpansions: number;
|
|
11
|
+
delta?: number;
|
|
12
|
+
limit?: number;
|
|
13
|
+
}
|
|
14
|
+
declare class CustomExpansionsParam {
|
|
15
|
+
secondsBetweenExpansions: number;
|
|
16
|
+
overrideValue?: any[];
|
|
17
|
+
overrideMin?: any[];
|
|
18
|
+
overrideMax?: any[];
|
|
19
|
+
}
|
|
20
|
+
declare class AdvancedSettingsParam {
|
|
21
|
+
secondsUntilOptional: number;
|
|
22
|
+
expansionType?: number;
|
|
23
|
+
linearExpansions?: LinearExpansionsParam;
|
|
24
|
+
customExpansions?: CustomExpansionsParam;
|
|
25
|
+
}
|
|
26
|
+
declare class RuleParam {
|
|
27
|
+
name: string;
|
|
28
|
+
type: number;
|
|
29
|
+
attributeSource?: number;
|
|
30
|
+
attributePath?: string;
|
|
31
|
+
defaultValue?: any;
|
|
32
|
+
compairType?: number;
|
|
33
|
+
allowedDifference?: number;
|
|
34
|
+
min?: number;
|
|
35
|
+
max?: number;
|
|
36
|
+
advancedSettings?: AdvancedSettingsParam;
|
|
37
|
+
}
|
|
38
|
+
export declare class MatchmakingQueueSettingsParam {
|
|
39
|
+
queueName: string;
|
|
40
|
+
matchSize: SizeParam;
|
|
41
|
+
ticketSize: SizeParam;
|
|
42
|
+
teams?: TeamParam[];
|
|
43
|
+
rules?: RuleParam[];
|
|
44
|
+
remove?: boolean;
|
|
45
|
+
}
|
|
46
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PermissionRulesParam } from "./PermissionRulesParam";
|
|
2
|
+
export declare class MultiplayerPermissionRulesParam {
|
|
3
|
+
cancelAllMatchmakingTicket?: PermissionRulesParam;
|
|
4
|
+
cancelMatchmakingTicket?: PermissionRulesParam;
|
|
5
|
+
createMatchmakingTicket?: PermissionRulesParam;
|
|
6
|
+
getMatchmakingTicket?: PermissionRulesParam;
|
|
7
|
+
getMatch?: PermissionRulesParam;
|
|
8
|
+
getQueueStatistics?: PermissionRulesParam;
|
|
9
|
+
joinMatchmakingTicket?: PermissionRulesParam;
|
|
10
|
+
listMatchmakingTicketsForPlayer?: PermissionRulesParam;
|
|
11
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { AuthenticatePermissionRulesParam } from "./AuthenticatePermissionRulesParam";
|
|
2
|
+
import { CharacterPlayerPermissionRulesParam } from "./CharacterPlayerPermissionRulesParam";
|
|
3
|
+
import { ContentPermissionRulesParam } from "./ContentPermissionRulesParam";
|
|
4
|
+
import { GamePlayerPermissionRulesParam } from "./GamePlayerPermissionRulesParam";
|
|
5
|
+
import { GroupPermissionRulesParam } from "./GroupPermissionRulesParam";
|
|
6
|
+
import { InventoryPermissionRulesParam } from "./InventoryPermissionRulesParam";
|
|
7
|
+
import { MasterAdminPermissionRulesParam } from "./MasterAdminPermissionRulesParam";
|
|
8
|
+
import { MasterPlayerPermissionRulesParam } from "./MasterPlayerPermissionRulesParam";
|
|
9
|
+
import { MultiplayerPermissionRulesParam } from "./MultiplayerPermissionRulesParam";
|
|
10
|
+
import { StoreInventoryPermissionRulesParam } from "./StoreInventoryPermissionRulesParam";
|
|
11
|
+
export declare class PermissionParam {
|
|
12
|
+
authenticate?: AuthenticatePermissionRulesParam;
|
|
13
|
+
masterPlayer?: MasterPlayerPermissionRulesParam;
|
|
14
|
+
gamePlayer?: GamePlayerPermissionRulesParam;
|
|
15
|
+
characterPlayer?: CharacterPlayerPermissionRulesParam;
|
|
16
|
+
content?: ContentPermissionRulesParam;
|
|
17
|
+
group?: GroupPermissionRulesParam;
|
|
18
|
+
inventory?: InventoryPermissionRulesParam;
|
|
19
|
+
storeInventory?: StoreInventoryPermissionRulesParam;
|
|
20
|
+
masterAdmin?: MasterAdminPermissionRulesParam;
|
|
21
|
+
multiplayer?: MultiplayerPermissionRulesParam;
|
|
22
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { PermissionRulesParam } from "./PermissionRulesParam";
|
|
2
|
+
export declare class StoreInventoryPermissionRulesParam {
|
|
3
|
+
buyStoreItem?: PermissionRulesParam;
|
|
4
|
+
getStoreItemInformation?: PermissionRulesParam;
|
|
5
|
+
getStoreItemsWithTag?: PermissionRulesParam;
|
|
6
|
+
grantStoreItem?: PermissionRulesParam;
|
|
7
|
+
setRemoveStatus?: PermissionRulesParam;
|
|
8
|
+
setStoreItemInformation?: PermissionRulesParam;
|
|
9
|
+
validateAppleAppStoreReceipt?: PermissionRulesParam;
|
|
10
|
+
validateGooglePlayStoreReceipt?: PermissionRulesParam;
|
|
11
|
+
validateFacebookStoreReceipt?: PermissionRulesParam;
|
|
12
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ThirtPartyAppleSettingsParam } from "./ThirtPartyAppleSettingsParam";
|
|
2
|
+
import { ThirtPartyFacebookSettingsParam } from "./ThirtPartyFacebookSettingsParam";
|
|
3
|
+
import { ThirtPartyGoogleSettingsParam } from "./ThirtPartyGoogleSettingsParam";
|
|
4
|
+
export declare class ThirtPartyParam {
|
|
5
|
+
googleSettings?: ThirtPartyGoogleSettingsParam;
|
|
6
|
+
facebookSettings?: ThirtPartyFacebookSettingsParam;
|
|
7
|
+
appleSettings?: ThirtPartyAppleSettingsParam;
|
|
8
|
+
}
|
package/dist/GN-app-api/handler/controller/handler/gamePlayer/AddPlayerFriendRequestHandler.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 { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
6
|
+
declare class AddPlayerFriendOperationRequest extends OperationRequest {
|
|
7
|
+
userId?: string;
|
|
8
|
+
friendId: string;
|
|
9
|
+
catalogId: string;
|
|
10
|
+
isValidRequest(): boolean;
|
|
11
|
+
}
|
|
12
|
+
export declare class AddPlayerFriendRequestHandler extends GamePlayerBaseRequestHandler {
|
|
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 {};
|
|
@@ -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 { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
6
|
+
declare class AddSegmentOperationRequest extends OperationRequest {
|
|
7
|
+
userId?: string;
|
|
8
|
+
value: string;
|
|
9
|
+
isValidRequest(): boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class AddSegmentRequestHandler extends GamePlayerBaseRequestHandler {
|
|
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 {};
|
package/dist/GN-app-api/handler/controller/handler/gamePlayer/GamePlayerBaseRequestHandler.d.ts
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { GNArray, GNHashtable } from "./../../../../../GN-common/common/GNData";
|
|
2
|
+
import { GamePlayerFindOptions } from "./../../../../../GN-library/xdatabase/lib/entity/pro/findOptions/GamePlayerFindOptions";
|
|
3
|
+
import { RequestHandler } from "./../base/RequestHandler";
|
|
4
|
+
import { GamePlayer } from "./../../../../../GN-library/xdatabase/lib/entity/pro/GamePlayer";
|
|
5
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
6
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
7
|
+
export declare abstract class GamePlayerBaseRequestHandler extends RequestHandler {
|
|
8
|
+
private isGetAll;
|
|
9
|
+
protected convertToGamePlayerFindOptions(infoRequestParam: InfoRequestParam): GamePlayerFindOptions;
|
|
10
|
+
protected generateInfoRequestParamForOwner(secretInfo: SecretInfo, infoRequestParam: InfoRequestParam): void;
|
|
11
|
+
protected generateInfoRequestParamForOther(secretInfo: SecretInfo, infoRequestParam: InfoRequestParam): void;
|
|
12
|
+
protected generateInfoRequestParamForServer(secretInfo: SecretInfo, infoRequestParam: InfoRequestParam): void;
|
|
13
|
+
protected generateInfoRequestParamForAdmin(secretInfo: SecretInfo, infoRequestParam: InfoRequestParam): void;
|
|
14
|
+
protected generateInfoResponseParameters(gamePlayer: GamePlayer, infoRequestParam: InfoRequestParam, gameId: string): GNHashtable;
|
|
15
|
+
protected generateSegments(gamePlayer: GamePlayer): string[];
|
|
16
|
+
protected generateCustomDatas(gamePlayer: GamePlayer, customDataKeys: string[], gameId: string): GNArray;
|
|
17
|
+
protected generateDisplayName(gamePlayer: GamePlayer): string;
|
|
18
|
+
protected generateAvatar(gamePlayer: GamePlayer): GNHashtable;
|
|
19
|
+
protected generateTsCreate(gamePlayer: GamePlayer): number;
|
|
20
|
+
protected generateTags(gamePlayer: GamePlayer, tagKeys: Array<string>, gameId: string): GNArray;
|
|
21
|
+
protected generatePlayerBan(gamePlayer: GamePlayer): GNHashtable;
|
|
22
|
+
protected generatePlayerDatas(gamePlayer: GamePlayer, playerDataKeys: Array<string>, gameId: string): GNArray;
|
|
23
|
+
protected generatePlayerCurrencies(gamePlayer: GamePlayer, playerCurrencyKeys: Array<string>, gameId: string): GNArray;
|
|
24
|
+
protected generatePlayerStatistics(gamePlayer: GamePlayer, playerStatisticsKeys: Array<string>, gameId: string): GNArray;
|
|
25
|
+
protected generatePlayerCharacters(gamePlayer: GamePlayer, characterCatalogIds: Array<string>): GNArray;
|
|
26
|
+
protected generatePlayerInventories(gamePlayer: GamePlayer, itemCatalogIds: Array<string>): GNArray;
|
|
27
|
+
protected generatePlayerGroups(gamePlayer: GamePlayer, groupCatalogIds: Array<string>): GNArray;
|
|
28
|
+
protected generatePlayerFriends(gamePlayer: GamePlayer, friendCatalogIds: Array<string>): GNArray;
|
|
29
|
+
protected generateTsLastLogin(gamePlayer: GamePlayer): number;
|
|
30
|
+
protected generateIpAddressCreate(gamePlayer: GamePlayer): string;
|
|
31
|
+
protected generateCountryCode(gamePlayer: GamePlayer): string;
|
|
32
|
+
}
|
|
@@ -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 { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
6
|
+
declare class GetAvatarOperationRequest extends OperationRequest {
|
|
7
|
+
userId?: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetAvatarRequestHandler extends GamePlayerBaseRequestHandler {
|
|
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/gamePlayer/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 { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
6
|
+
declare class GetCountryCodeOperationRequest extends OperationRequest {
|
|
7
|
+
userId?: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetCountryCodeRequestHandler extends GamePlayerBaseRequestHandler {
|
|
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,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 { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
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 GamePlayerBaseRequestHandler {
|
|
16
|
+
getCode(): number;
|
|
17
|
+
getCommonOperationRequest(): typeof GetCurrencyLeaderboardOperationRequest;
|
|
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 {};
|
package/dist/GN-app-api/handler/controller/handler/gamePlayer/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 { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
6
|
+
declare class GetCustomDataOperationRequest extends OperationRequest {
|
|
7
|
+
userId?: string;
|
|
8
|
+
customDataKeys?: Array<string>;
|
|
9
|
+
isValidRequest(): boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class GetCustomDataRequestHandler extends GamePlayerBaseRequestHandler {
|
|
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/gamePlayer/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 { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
6
|
+
declare class GetDisplayNameOperationRequest extends OperationRequest {
|
|
7
|
+
userId?: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetDisplayNameRequestHandler extends GamePlayerBaseRequestHandler {
|
|
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 { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetFriendStatisticsLeaderboardAroundPlayerOperationRequest extends OperationRequest {
|
|
8
|
+
userId?: string;
|
|
9
|
+
key: string;
|
|
10
|
+
infoRequestParam: InfoRequestParam;
|
|
11
|
+
skip?: number;
|
|
12
|
+
limit?: number;
|
|
13
|
+
isValidRequest(): boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare class GetFriendStatisticsLeaderboardAroundPlayerRequestHandler extends GamePlayerBaseRequestHandler {
|
|
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 { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
import { GamePlayer } from "./../../../../../GN-library/xdatabase/lib/entity/pro/GamePlayer";
|
|
8
|
+
declare class GetFriendStatisticsLeaderboardOperationRequest extends OperationRequest {
|
|
9
|
+
userId?: string;
|
|
10
|
+
key: string;
|
|
11
|
+
infoRequestParam: InfoRequestParam;
|
|
12
|
+
skip?: number;
|
|
13
|
+
limit?: number;
|
|
14
|
+
isValidRequest(): boolean;
|
|
15
|
+
}
|
|
16
|
+
export declare class GetFriendStatisticsLeaderboardRequestHandler extends GamePlayerBaseRequestHandler {
|
|
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, gamePlayers: GamePlayer[]): GamePlayer[];
|
|
24
|
+
}
|
|
25
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetIpAddressCreateRequestHandler.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 { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
6
|
+
declare class GetIpAddressCreateOperationRequest extends OperationRequest {
|
|
7
|
+
userId?: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetIpAddressCreateRequestHandler extends GamePlayerBaseRequestHandler {
|
|
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/gamePlayer/GetOnlineStatusRequestHandler.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 { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
6
|
+
declare class GetOnlineStatusOperationRequest extends OperationRequest {
|
|
7
|
+
userId?: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetOnlineStatusRequestHandler extends GamePlayerBaseRequestHandler {
|
|
11
|
+
getCode(): number;
|
|
12
|
+
getCommonOperationRequest(): typeof GetOnlineStatusOperationRequest;
|
|
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,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 { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
6
|
+
declare class GetPlayerBanOperationRequest extends OperationRequest {
|
|
7
|
+
userId?: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetPlayerBanRequestHandler extends GamePlayerBaseRequestHandler {
|
|
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 {};
|
package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerCharacterRequestHandler.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 { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
6
|
+
declare class GetPlayerCharacterOperationRequest extends OperationRequest {
|
|
7
|
+
userId?: string;
|
|
8
|
+
characterCatalogIds?: Array<string>;
|
|
9
|
+
isValidRequest(): boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class GetPlayerCharacterRequestHandler extends GamePlayerBaseRequestHandler {
|
|
12
|
+
getCode(): number;
|
|
13
|
+
getCommonOperationRequest(): typeof GetPlayerCharacterOperationRequest;
|
|
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 {};
|