@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,83 @@
|
|
|
1
|
+
<div id="layoutSidenav_nav">
|
|
2
|
+
<nav class="sb-sidenav accordion sb-sidenav-dark" id="sidenavAccordion">
|
|
3
|
+
<div class="sb-sidenav-menu">
|
|
4
|
+
<div class="nav">
|
|
5
|
+
<a class="nav-link" href="/admin">
|
|
6
|
+
<div class="sb-nav-link-icon"><i class="fas fas fa-line-chart"></i></div>
|
|
7
|
+
Overview
|
|
8
|
+
</a>
|
|
9
|
+
<div class="sb-sidenav-menu-heading">BUILD</div>
|
|
10
|
+
<a class="nav-link" href="/admin/masterPlayers">
|
|
11
|
+
<div class="sb-nav-link-icon"><i class="fas fas fa-line-chart"></i></div>
|
|
12
|
+
MasterPlayers
|
|
13
|
+
</a>
|
|
14
|
+
<a class="nav-link" href="/admin/gamePlayers">
|
|
15
|
+
<div class="sb-nav-link-icon"><i class="fas fas fa-line-chart"></i></div>
|
|
16
|
+
GamePlayers
|
|
17
|
+
</a>
|
|
18
|
+
<a class="nav-link" href="/admin/characterPlayers">
|
|
19
|
+
<div class="sb-nav-link-icon"><i class="fas fas fa-line-chart"></i></div>
|
|
20
|
+
CharacterPlayers
|
|
21
|
+
</a>
|
|
22
|
+
<a class="nav-link" href="/admin/groups">
|
|
23
|
+
<div class="sb-nav-link-icon"><i class="fas fas fa-line-chart"></i></div>
|
|
24
|
+
Groups
|
|
25
|
+
</a>
|
|
26
|
+
<a class="nav-link" href="/admin/inventories">
|
|
27
|
+
<div class="sb-nav-link-icon"><i class="fas fas fa-line-chart"></i></div>
|
|
28
|
+
Inventories
|
|
29
|
+
</a>
|
|
30
|
+
<a class="nav-link" href="/admin/storeInventories">
|
|
31
|
+
<div class="sb-nav-link-icon"><i class="fas fas fa-line-chart"></i></div>
|
|
32
|
+
StoreInventories
|
|
33
|
+
</a>
|
|
34
|
+
|
|
35
|
+
<div class="sb-sidenav-menu-heading">ENGAGE</div>
|
|
36
|
+
<a class="nav-link" href="/admin/content">
|
|
37
|
+
<div class="sb-nav-link-icon"><i class="fas fa-table"></i></div>
|
|
38
|
+
Content
|
|
39
|
+
</a>
|
|
40
|
+
<a class="nav-link" href="/admin/leaderboard">
|
|
41
|
+
<div class="sb-nav-link-icon"><i class="fas fa-table"></i></div>
|
|
42
|
+
Leaderboard
|
|
43
|
+
</a>
|
|
44
|
+
|
|
45
|
+
<div class="sb-sidenav-menu-heading">SETTINGS</div>
|
|
46
|
+
<a class="nav-link" href="/admin/secretKeys">
|
|
47
|
+
<div class="sb-nav-link-icon"><i class="fas fa-table"></i></div>
|
|
48
|
+
SecretKeys
|
|
49
|
+
</a>
|
|
50
|
+
|
|
51
|
+
<div class="sb-sidenav-menu-heading">DEBUG</div>
|
|
52
|
+
<a class="nav-link" href="/admin/debug">
|
|
53
|
+
<div class="sb-nav-link-icon"><i class="fas fa-television"></i></div>
|
|
54
|
+
Debug Tool
|
|
55
|
+
</a>
|
|
56
|
+
<a class="nav-link" href="/admin/log">
|
|
57
|
+
<div class="sb-nav-link-icon"><i class="fas fa-tachometer-alt"></i></div>
|
|
58
|
+
Log Tool
|
|
59
|
+
</a>
|
|
60
|
+
<a class="nav-link" href="/admin/database">
|
|
61
|
+
<div class="sb-nav-link-icon"><i class="fas fa-table"></i></div>
|
|
62
|
+
Database
|
|
63
|
+
</a>
|
|
64
|
+
|
|
65
|
+
<div class="sb-sidenav-menu-heading">More</div>
|
|
66
|
+
<a class="nav-link" href="https://xmobitea.com/gnserver/docs">
|
|
67
|
+
<div class="sb-nav-link-icon"><i class="fas fa-book"></i></div>
|
|
68
|
+
Learn more
|
|
69
|
+
</a>
|
|
70
|
+
<a class="nav-link" href="https://gn.xmobitea.com/">
|
|
71
|
+
<div class="sb-nav-link-icon"><i class="fas fa-plus"></i></div>
|
|
72
|
+
Buy license key
|
|
73
|
+
</a>
|
|
74
|
+
</div>
|
|
75
|
+
</div>
|
|
76
|
+
<div class="sb-sidenav-footer">
|
|
77
|
+
<div class="small">Logged in as:</div>
|
|
78
|
+
<% if (locals.data) { %>
|
|
79
|
+
<%= data.username %>
|
|
80
|
+
<% } %>
|
|
81
|
+
</div>
|
|
82
|
+
</nav>
|
|
83
|
+
</div>
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<nav
|
|
2
|
+
class="sb-topnav navbar navbar-expand navbar-dark bg-dark">
|
|
3
|
+
<!-- Navbar Brand-->
|
|
4
|
+
<a class="navbar-brand ps-3" href="/admin">GN Dashboard</a>
|
|
5
|
+
<!-- Sidebar Toggle-->
|
|
6
|
+
<button class="btn btn-link btn-sm order-1 order-lg-0 me-4 me-lg-0" id="sidebarToggle" href="#!">
|
|
7
|
+
<i class="fas fa-bars"></i>
|
|
8
|
+
</button>
|
|
9
|
+
|
|
10
|
+
<div class="col-3 col-md-2">
|
|
11
|
+
<select class="form-select" style="height: 40px;" id="gameIdDropdown">
|
|
12
|
+
<option value="main">default main game</option>
|
|
13
|
+
<option value="cc">chinese chess</option>
|
|
14
|
+
</select>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<!-- Navbar Search-->
|
|
18
|
+
<form class="d-none d-md-inline-block form-inline ms-auto me-0 me-md-3 my-2 my-md-0">
|
|
19
|
+
<div class="input-group">
|
|
20
|
+
<input class="form-control" type="text" placeholder="Search for..." aria-label="Search for..." aria-describedby="btnNavbarSearch"/>
|
|
21
|
+
<button class="btn btn-primary" id="btnNavbarSearch" type="button">
|
|
22
|
+
<i class="fas fa-search"></i>
|
|
23
|
+
</button>
|
|
24
|
+
</div>
|
|
25
|
+
</form>
|
|
26
|
+
<!-- Navbar-->
|
|
27
|
+
<ul class="navbar-nav ms-auto ms-md-0 me-3 me-lg-4">
|
|
28
|
+
<li class="nav-item dropdown">
|
|
29
|
+
<a class="nav-link dropdown-toggle" id="navbarDropdown" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
30
|
+
<i class="fas fa-user fa-fw"></i>
|
|
31
|
+
</a>
|
|
32
|
+
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown">
|
|
33
|
+
<li>
|
|
34
|
+
<a class="dropdown-item" href="#!">Settings</a>
|
|
35
|
+
</li>
|
|
36
|
+
<li>
|
|
37
|
+
<a class="dropdown-item" href="/admin/change-password">Change Password</a>
|
|
38
|
+
</li>
|
|
39
|
+
<li>
|
|
40
|
+
<a class="dropdown-item" href="#!">Activity Log</a>
|
|
41
|
+
</li>
|
|
42
|
+
<li>
|
|
43
|
+
<hr class="dropdown-divider"/>
|
|
44
|
+
</li>
|
|
45
|
+
<li>
|
|
46
|
+
<form action="/admin/signout" method="post" id="signoutForm">
|
|
47
|
+
<button class="dropdown-item" type="submit" form="signoutForm">Logout</button>
|
|
48
|
+
</form>
|
|
49
|
+
</li>
|
|
50
|
+
</ul>
|
|
51
|
+
</li>
|
|
52
|
+
</ul>
|
|
53
|
+
</nav>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { IBuilder } from "./../../GN-library/xbuilder/lib/IBuilder";
|
|
2
|
+
declare abstract class BuilderBase {
|
|
3
|
+
protected port: number;
|
|
4
|
+
protected useSSL: boolean;
|
|
5
|
+
protected keyFilePath: string;
|
|
6
|
+
protected certFilePath: string;
|
|
7
|
+
protected expiredToken: number;
|
|
8
|
+
protected privateKeyToken: string;
|
|
9
|
+
getPort(): number;
|
|
10
|
+
getUseSSL(): boolean;
|
|
11
|
+
getKeyFilePath(): string;
|
|
12
|
+
getCertFilePath(): string;
|
|
13
|
+
getExpiredToken(): number;
|
|
14
|
+
getPrivateKeyToken(): string;
|
|
15
|
+
constructor();
|
|
16
|
+
}
|
|
17
|
+
declare class Builder extends BuilderBase implements IBuilder<ApplicationSettings> {
|
|
18
|
+
setPort(port: number): Builder;
|
|
19
|
+
setUseSSL(useSSL: boolean): Builder;
|
|
20
|
+
setKeyFilePath(keyFilePath: string): Builder;
|
|
21
|
+
setCertFilePath(certFilePath: string): Builder;
|
|
22
|
+
setExpiredToken(expiredToken: number): Builder;
|
|
23
|
+
setPrivateKeyToken(privateKeyToken: string): Builder;
|
|
24
|
+
constructor();
|
|
25
|
+
build(): ApplicationSettings;
|
|
26
|
+
}
|
|
27
|
+
export declare class ApplicationSettings extends BuilderBase {
|
|
28
|
+
constructor(builder: Builder);
|
|
29
|
+
static Builder(): Builder;
|
|
30
|
+
}
|
|
31
|
+
export {};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { IBuilder } from "./../../GN-library/xbuilder/lib/IBuilder";
|
|
2
|
+
declare abstract class BuilderBase {
|
|
3
|
+
protected socketMaxRequestPerSecondPerIp: number;
|
|
4
|
+
protected socketMaxRequestPerSecondPerPeer: number;
|
|
5
|
+
protected socketMaxPendingRequest: number;
|
|
6
|
+
protected socketMaxRequestSize: number;
|
|
7
|
+
protected httpMaxRequestPerSecondPerIp: number;
|
|
8
|
+
protected httpMaxRequestPerSecondPerPeer: number;
|
|
9
|
+
protected httpMaxPendingRequest: number;
|
|
10
|
+
protected httpMaxRequestSize: number;
|
|
11
|
+
protected maxUploadPendingRequest: number;
|
|
12
|
+
protected maxDownloadPendingRequest: number;
|
|
13
|
+
getSocketMaxRequestPerSecondPerIp(): number;
|
|
14
|
+
getSocketMaxRequestPerSecondPerPeer(): number;
|
|
15
|
+
getSocketMaxPendingRequest(): number;
|
|
16
|
+
getSocketMaxRequestSize(): number;
|
|
17
|
+
getHttpMaxRequestPerSecondPerIp(): number;
|
|
18
|
+
getHttpMaxRequestPerSecondPerPeer(): number;
|
|
19
|
+
getHttpMaxPendingRequest(): number;
|
|
20
|
+
getHttpMaxRequestSize(): number;
|
|
21
|
+
getMaxUploadPendingRequest(): number;
|
|
22
|
+
getMaxDownloadPendingRequest(): number;
|
|
23
|
+
constructor();
|
|
24
|
+
}
|
|
25
|
+
declare class Builder extends BuilderBase implements IBuilder<DdosSettings> {
|
|
26
|
+
setSocketMaxRequestPerSecondPerIp(socketMaxRequestPerSecondPerIp: number): Builder;
|
|
27
|
+
setSocketMaxRequestPerSecondPerPeer(socketMaxRequestPerSecondPerPeer: number): Builder;
|
|
28
|
+
setSocketMaxPendingRequest(socketMaxPendingRequest: number): Builder;
|
|
29
|
+
setSocketMaxRequestSize(socketMaxRequestSize: number): Builder;
|
|
30
|
+
setHttpMaxRequestPerSecondPerIp(httpMaxRequestPerSecondPerIp: number): Builder;
|
|
31
|
+
setHttpMaxRequestPerSecondPerPeer(httpMaxRequestPerSecondPerPeer: number): Builder;
|
|
32
|
+
setHttpMaxPendingRequest(httpMaxPendingRequest: number): Builder;
|
|
33
|
+
setHttpMaxRequestSize(httpMaxRequestSize: number): Builder;
|
|
34
|
+
setMaxUploadPendingRequest(maxUploadPendingRequest: number): Builder;
|
|
35
|
+
setMaxDownloadPendingRequest(maxDownloadPendingRequest: number): Builder;
|
|
36
|
+
constructor();
|
|
37
|
+
build(): DdosSettings;
|
|
38
|
+
}
|
|
39
|
+
export declare class DdosSettings extends BuilderBase {
|
|
40
|
+
constructor(builder: Builder);
|
|
41
|
+
static Builder(): Builder;
|
|
42
|
+
}
|
|
43
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { IBuilder } from "./../../GN-library/xbuilder/lib/IBuilder";
|
|
2
|
+
declare abstract class BuilderBase {
|
|
3
|
+
protected connectionString: string;
|
|
4
|
+
protected databaseName: string;
|
|
5
|
+
protected options: {
|
|
6
|
+
[k: string]: any;
|
|
7
|
+
};
|
|
8
|
+
getConnectionString(): string;
|
|
9
|
+
getDatabaseName(): string;
|
|
10
|
+
getOptions(): {
|
|
11
|
+
[k: string]: any;
|
|
12
|
+
};
|
|
13
|
+
constructor();
|
|
14
|
+
}
|
|
15
|
+
declare class Builder extends BuilderBase implements IBuilder<DatabaseSettings> {
|
|
16
|
+
setConnectionString(connectionString: string): Builder;
|
|
17
|
+
setDatabaseName(databaseName: string): Builder;
|
|
18
|
+
setOptions(options: {
|
|
19
|
+
[k: string]: any;
|
|
20
|
+
}): Builder;
|
|
21
|
+
constructor();
|
|
22
|
+
build(): DatabaseSettings;
|
|
23
|
+
}
|
|
24
|
+
export declare class DatabaseSettings extends BuilderBase {
|
|
25
|
+
constructor(builder: Builder);
|
|
26
|
+
static Builder(): Builder;
|
|
27
|
+
}
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { IBuilder } from "./../../GN-library/xbuilder/lib/IBuilder";
|
|
2
|
+
type MethodType = "GET" | "HEAD" | "PUT" | "PATCH" | "POST" | "DELETE" | "UPDATE";
|
|
3
|
+
declare abstract class BuilderBase {
|
|
4
|
+
protected enable: boolean;
|
|
5
|
+
protected origin: string;
|
|
6
|
+
protected methods: MethodType[];
|
|
7
|
+
protected allowedHeaders: string[];
|
|
8
|
+
protected credentials: boolean;
|
|
9
|
+
protected enableSendAndReceiveDebug: boolean;
|
|
10
|
+
protected enablePostViaMsgPack: boolean;
|
|
11
|
+
protected enablePostViaJson: boolean;
|
|
12
|
+
getEnable(): boolean;
|
|
13
|
+
getOrigin(): string;
|
|
14
|
+
getMethods(): MethodType[];
|
|
15
|
+
getAllowedHeaders(): string[];
|
|
16
|
+
getCredentials(): boolean;
|
|
17
|
+
getEnableSendAndReceiveDebug(): boolean;
|
|
18
|
+
getEnablePostViaMsgPack(): boolean;
|
|
19
|
+
getEnablePostViaJson(): boolean;
|
|
20
|
+
constructor();
|
|
21
|
+
}
|
|
22
|
+
declare class Builder extends BuilderBase implements IBuilder<HttpAppSettings> {
|
|
23
|
+
setOrigins(origin: string): Builder;
|
|
24
|
+
addMethod(methodType: MethodType): Builder;
|
|
25
|
+
addMethods(methodTypes: MethodType[]): Builder;
|
|
26
|
+
removeMethod(methodType: MethodType): Builder;
|
|
27
|
+
addAllowedHeader(allowedHeader: string): Builder;
|
|
28
|
+
addAllowedHeaders(allowedHeaders: string[]): Builder;
|
|
29
|
+
setCredentials(credentials: boolean): Builder;
|
|
30
|
+
setEnable(enable: boolean): Builder;
|
|
31
|
+
setEnableSendAndReceiveDebug(enableSendAndReceiveDebug: boolean): Builder;
|
|
32
|
+
setEnablePostViaMsgPack(enablePostViaMsgPack: boolean): Builder;
|
|
33
|
+
setEnablePostViaJson(enablePostViaJson: boolean): Builder;
|
|
34
|
+
build(): HttpAppSettings;
|
|
35
|
+
constructor();
|
|
36
|
+
}
|
|
37
|
+
export declare class HttpAppSettings extends BuilderBase {
|
|
38
|
+
constructor(builder: Builder);
|
|
39
|
+
static Builder(): Builder;
|
|
40
|
+
}
|
|
41
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IBuilder } from "./../../GN-library/xbuilder/lib/IBuilder";
|
|
2
|
+
declare abstract class BuilderBase {
|
|
3
|
+
protected logToFileEnable: boolean;
|
|
4
|
+
protected logToConsoleEnable: boolean;
|
|
5
|
+
protected logPath: string;
|
|
6
|
+
getLogToFileEnable(): boolean;
|
|
7
|
+
getLogToConsoleEnable(): boolean;
|
|
8
|
+
getLogPath(): string;
|
|
9
|
+
constructor();
|
|
10
|
+
}
|
|
11
|
+
declare class Builder extends BuilderBase implements IBuilder<LogSettings> {
|
|
12
|
+
setLogToFileEnable(logToFileEnable: boolean): Builder;
|
|
13
|
+
setLogToConsoleEnable(logToConsoleEnable: boolean): Builder;
|
|
14
|
+
setLogPath(logPath: string): Builder;
|
|
15
|
+
constructor();
|
|
16
|
+
build(): LogSettings;
|
|
17
|
+
}
|
|
18
|
+
export declare class LogSettings extends BuilderBase {
|
|
19
|
+
constructor(builder: Builder);
|
|
20
|
+
static Builder(): Builder;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IBuilder } from "./../../GN-library/xbuilder/lib/IBuilder";
|
|
2
|
+
declare abstract class BuilderBase {
|
|
3
|
+
protected enable: boolean;
|
|
4
|
+
protected sendGridApiKey: string;
|
|
5
|
+
protected fromEmail: string;
|
|
6
|
+
getEnable(): boolean;
|
|
7
|
+
getSendGridApiKey(): string;
|
|
8
|
+
getFromEmail(): string;
|
|
9
|
+
constructor();
|
|
10
|
+
}
|
|
11
|
+
declare class Builder extends BuilderBase implements IBuilder<MailSettings> {
|
|
12
|
+
setEnable(enable: boolean): Builder;
|
|
13
|
+
setSendGridApiKey(sendGridApiKey: string): Builder;
|
|
14
|
+
setFromEmail(fromEmail: string): Builder;
|
|
15
|
+
constructor();
|
|
16
|
+
build(): MailSettings;
|
|
17
|
+
}
|
|
18
|
+
export declare class MailSettings extends BuilderBase {
|
|
19
|
+
constructor(builder: Builder);
|
|
20
|
+
static Builder(): Builder;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { IBuilder } from "./../../GN-library/xbuilder/lib/IBuilder";
|
|
2
|
+
declare abstract class BuilderBase {
|
|
3
|
+
protected headerIP: string;
|
|
4
|
+
getHeaderIP(): string;
|
|
5
|
+
constructor();
|
|
6
|
+
}
|
|
7
|
+
declare class Builder extends BuilderBase implements IBuilder<OtherSettings> {
|
|
8
|
+
setHeaderIP(headerIP: string): Builder;
|
|
9
|
+
constructor();
|
|
10
|
+
build(): OtherSettings;
|
|
11
|
+
}
|
|
12
|
+
export declare class OtherSettings extends BuilderBase {
|
|
13
|
+
constructor(builder: Builder);
|
|
14
|
+
static Builder(): Builder;
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { IBuilder } from "./../../GN-library/xbuilder/lib/IBuilder";
|
|
2
|
+
type MethodType = "GET" | "HEAD" | "PUT" | "PATCH" | "POST" | "DELETE" | "UPDATE";
|
|
3
|
+
declare abstract class BuilderBase {
|
|
4
|
+
protected enable: boolean;
|
|
5
|
+
protected origin: string;
|
|
6
|
+
protected methods: MethodType[];
|
|
7
|
+
protected allowedHeaders: string[];
|
|
8
|
+
protected credentials: boolean;
|
|
9
|
+
protected enableSendAndReceiveDebug: boolean;
|
|
10
|
+
protected enablePostViaMsgPack: boolean;
|
|
11
|
+
protected enablePostViaJson: boolean;
|
|
12
|
+
protected pingInterval: number;
|
|
13
|
+
protected pingTimeout: number;
|
|
14
|
+
getEnable(): boolean;
|
|
15
|
+
getOrigin(): string;
|
|
16
|
+
getMethods(): MethodType[];
|
|
17
|
+
getAllowedHeaders(): string[];
|
|
18
|
+
getCredentials(): boolean;
|
|
19
|
+
getEnableSendAndReceiveDebug(): boolean;
|
|
20
|
+
getEnablePostViaMsgPack(): boolean;
|
|
21
|
+
getEnablePostViaJson(): boolean;
|
|
22
|
+
getPingInterval(): number;
|
|
23
|
+
getPingTimeout(): number;
|
|
24
|
+
constructor();
|
|
25
|
+
}
|
|
26
|
+
declare class Builder extends BuilderBase implements IBuilder<SocketAppSettings> {
|
|
27
|
+
setOrigins(origin: string): Builder;
|
|
28
|
+
addMethod(methodType: MethodType): Builder;
|
|
29
|
+
addMethods(methodTypes: MethodType[]): Builder;
|
|
30
|
+
removeMethod(methodType: MethodType): Builder;
|
|
31
|
+
addAllowedHeader(allowedHeader: string): Builder;
|
|
32
|
+
addAllowedHeaders(allowedHeaders: string[]): Builder;
|
|
33
|
+
setCredentials(credentials: boolean): Builder;
|
|
34
|
+
setPingInterval(pingInterval: number): Builder;
|
|
35
|
+
setPingTimeout(pingTimeout: number): Builder;
|
|
36
|
+
setEnable(enable: boolean): Builder;
|
|
37
|
+
setEnableSendAndReceiveDebug(enableSendAndReceiveDebug: boolean): Builder;
|
|
38
|
+
setEnablePostViaMsgPack(enablePostViaMsgPack: boolean): Builder;
|
|
39
|
+
setEnablePostViaJson(enablePostViaJson: boolean): Builder;
|
|
40
|
+
constructor();
|
|
41
|
+
build(): SocketAppSettings;
|
|
42
|
+
}
|
|
43
|
+
export declare class SocketAppSettings extends BuilderBase {
|
|
44
|
+
constructor(builder: Builder);
|
|
45
|
+
static Builder(): Builder;
|
|
46
|
+
}
|
|
47
|
+
export {};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { IBuilder } from "./../../GN-library/xbuilder/lib/IBuilder";
|
|
2
|
+
declare abstract class BuilderBase {
|
|
3
|
+
protected enable: boolean;
|
|
4
|
+
protected uploadPath: string;
|
|
5
|
+
protected maxSizeUpload: number;
|
|
6
|
+
protected mimeTypeAccepts: string[];
|
|
7
|
+
getEnable(): boolean;
|
|
8
|
+
getUploadPath(): string;
|
|
9
|
+
getMaxSizeUpload(): number;
|
|
10
|
+
getMimeTypeAccepts(): string[];
|
|
11
|
+
constructor();
|
|
12
|
+
}
|
|
13
|
+
declare class Builder extends BuilderBase implements IBuilder<UploadFileSettings> {
|
|
14
|
+
setEnable(enable: boolean): Builder;
|
|
15
|
+
setUploadPath(uploadPath: string): Builder;
|
|
16
|
+
setMaxSizeUpload(maxSizeUpload: number): Builder;
|
|
17
|
+
setMimeTypeAccepts(mimeTypeAccepts: string[]): Builder;
|
|
18
|
+
constructor();
|
|
19
|
+
build(): UploadFileSettings;
|
|
20
|
+
}
|
|
21
|
+
export declare class UploadFileSettings extends BuilderBase {
|
|
22
|
+
constructor(builder: Builder);
|
|
23
|
+
static Builder(): Builder;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { RequestController } from "./GN-app-api/handler/controller/RequestController";
|
|
2
|
+
import { OperationEvent } from "./GN-common/entity/operationEvent/OperationEvent";
|
|
3
|
+
import { xConfig } from "./GN-library/xconfig/lib/xConfig";
|
|
4
|
+
import { xDatabase } from "./GN-library/xdatabase/lib/xDatabase";
|
|
5
|
+
import { SocketApp } from "./GN-startup/SocketApp";
|
|
6
|
+
import { HttpApp } from "./GN-startup/HttpApp";
|
|
7
|
+
import { IRequestHandler } from "./GN-app-api/handler/controller/handler/base/IRequestHandler";
|
|
8
|
+
import { xMail } from "./GN-library/xmail/lib/xMail";
|
|
9
|
+
import { IFacebookService } from "./GN-app-api/service/IFacebookService";
|
|
10
|
+
import { IGenericService } from "./GN-app-api/service/IGenericService";
|
|
11
|
+
import { IAppleService } from "./GN-app-api/service/IAppleService";
|
|
12
|
+
import { ITimerService } from "./GN-app-api/service/ITimerService";
|
|
13
|
+
import { OnRunSuccess } from "./GN-library/xbuilder/lib/OnRunSuccess";
|
|
14
|
+
import { ILockService } from "./GN-app-api/service/ILockService";
|
|
15
|
+
import { xCacheData } from "./GN-library/xcachedata/lib/xCacheData";
|
|
16
|
+
import { ApiMiddleware } from "./GN-startup/middleware/ApiMiddleware";
|
|
17
|
+
import { IRequestConverterService } from "./GN-app-api/service/IRequestConverterService";
|
|
18
|
+
import { IGoogleService } from "./GN-app-api/service/IGoogleService";
|
|
19
|
+
import { IAnalyticsService } from "./GN-app-api/service/IAnalyticsService";
|
|
20
|
+
import { xGNSettings } from "./GN-library/xsettings/lib/xGNSettings";
|
|
21
|
+
import { IPostEventCallbackService, IPreEventCallbackService } from "./GN-app-api/service/IEventCallbackService";
|
|
22
|
+
interface CreateIndexesOptions {
|
|
23
|
+
unique?: boolean;
|
|
24
|
+
sparse?: boolean;
|
|
25
|
+
expireAfterSeconds?: number;
|
|
26
|
+
}
|
|
27
|
+
export declare class GNServer {
|
|
28
|
+
static getServerVersion(): string;
|
|
29
|
+
private socketApp;
|
|
30
|
+
private httpApp;
|
|
31
|
+
private apiMiddleware;
|
|
32
|
+
private requestController;
|
|
33
|
+
private xConfig;
|
|
34
|
+
private xGNSettings;
|
|
35
|
+
private xDatabase;
|
|
36
|
+
private xMail;
|
|
37
|
+
private xCacheData;
|
|
38
|
+
private facebookService;
|
|
39
|
+
private genericService;
|
|
40
|
+
private appleService;
|
|
41
|
+
private googleService;
|
|
42
|
+
private timerService;
|
|
43
|
+
private lockService;
|
|
44
|
+
private requestConverterService;
|
|
45
|
+
private analyticsService;
|
|
46
|
+
private postEventCallbackService;
|
|
47
|
+
private preEventCallbackService;
|
|
48
|
+
private gameIds;
|
|
49
|
+
private matchmakingHandler;
|
|
50
|
+
constructor();
|
|
51
|
+
init(): void;
|
|
52
|
+
run(onRunSuccess?: OnRunSuccess): void;
|
|
53
|
+
setSocketApp(socketApp: SocketApp): void;
|
|
54
|
+
setHttpApp(httpApp: HttpApp): void;
|
|
55
|
+
setApiMiddleware(apiMiddleware: ApiMiddleware): void;
|
|
56
|
+
getApiMiddleware(): ApiMiddleware;
|
|
57
|
+
getSocketApp(): SocketApp;
|
|
58
|
+
getHttpApp(): HttpApp;
|
|
59
|
+
getRequestController(): RequestController;
|
|
60
|
+
addCustomHandler(requestHandler: IRequestHandler, onlyAuthenticated?: boolean): void;
|
|
61
|
+
getCustomHandler(code: number): IRequestHandler;
|
|
62
|
+
removeCustomHandler(code: number): void;
|
|
63
|
+
createIndex(collectionName: string, index: {
|
|
64
|
+
[k: string]: any;
|
|
65
|
+
}, options?: CreateIndexesOptions): void;
|
|
66
|
+
getConfigGame(): xConfig;
|
|
67
|
+
getGNSettings(): xGNSettings;
|
|
68
|
+
getDatabase(): xDatabase;
|
|
69
|
+
getMail(): xMail;
|
|
70
|
+
getCacheData(): xCacheData;
|
|
71
|
+
getFacebookService(): IFacebookService;
|
|
72
|
+
getGenericService(): IGenericService;
|
|
73
|
+
getPostEventCallbackService(): IPostEventCallbackService;
|
|
74
|
+
getPreEventCallbackService(): IPreEventCallbackService;
|
|
75
|
+
getAppleService(): IAppleService;
|
|
76
|
+
getGoogleService(): IGoogleService;
|
|
77
|
+
getTimerService(): ITimerService;
|
|
78
|
+
getLockService(): ILockService;
|
|
79
|
+
getAnalyticsService(): IAnalyticsService;
|
|
80
|
+
getRequestConverterService(): IRequestConverterService;
|
|
81
|
+
sendEventTo(userId: string, operationEvent: OperationEvent): Promise<void>;
|
|
82
|
+
sendEventToRoom(roomId: string, operationEvent: OperationEvent): Promise<void>;
|
|
83
|
+
sendEventToMoreUser(userIds: string[], operationEvent: OperationEvent): Promise<void>;
|
|
84
|
+
sendEventToAllPlayer(operationEvent: OperationEvent): Promise<void>;
|
|
85
|
+
joinRoom(userId: string, roomId: string): Promise<void>;
|
|
86
|
+
leaveRoom(userId: string, roomId: string): Promise<void>;
|
|
87
|
+
getRooms(userId: string): Promise<string[]>;
|
|
88
|
+
private handleSocketDisconnect;
|
|
89
|
+
private handleOnRequest;
|
|
90
|
+
private handleMatchmaking;
|
|
91
|
+
getGameIds(): string[];
|
|
92
|
+
}
|
|
93
|
+
export {};
|