@xmobitea/gn-server 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/GNconfig.debug.json +80 -0
- package/dist/GN-app-api/handler/controller/RequestController.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginBaseRequestHandler.d.ts +38 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByAccountRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByAndroidDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByAppleRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByCustomDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByCustomIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByEditorDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByFacebookRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByGenericServiceRequestHandler.d.ts +21 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByGoogleRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByLinuxDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByMacOSDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByWindowsDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByWindowsPhoneDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByiOSDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/RefreshAuthTokenRequestHandler.d.ts +15 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/RegisterAccountRequestHandler.d.ts +24 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/model/InfoRequestParam.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/base/IRequestHandler.d.ts +12 -0
- package/dist/GN-app-api/handler/controller/handler/base/RequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/AddPlayerFriendRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/AddSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/CharacterPlayerBaseRequestHandler.d.ts +35 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetAvatarRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCatalogIdRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCountryCodeRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCurrencyLeaderboardRequestHandler.d.ts +24 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCustomDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetDisplayNameRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetFriendStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetFriendStatisticsLeaderboardRequestHandler.d.ts +25 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetIpAddressCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetOwnerRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerBanRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerCurrencyRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerFriendRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerGroupRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerInventoryRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayerStatisticsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayersWithDisplayNameRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayersWithSegmentRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetPlayersWithTagRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetRemoveStatusRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetSegmentRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetStatisticsLeaderboardRequestHandler.d.ts +24 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetTsCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetTsLastLoginRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GrantGroupRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GrantPlayerItemRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/JoinGroupRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/LeaveGroupRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/RemovePlayerFriendRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/RemovePlayerItemRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/RemoveSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/RemoveTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetAvatarRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetCountryCodeRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetCustomDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetDisplayNameRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetOwnerRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerBanRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerCurrencyRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerStatisticsRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetRemoveStatusRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetTagRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/CustomDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/GroupMemberParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/InfoRequestParam.d.ts +30 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/PlayerCurrencyParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/PlayerDataParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/PlayerStatisticsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/content/CreateNewFileUploadInfoRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/content/GetContentDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/content/GetFileUploadInfoListRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/content/GetFileUploadInfoRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/content/RemoveFileUploadInfoRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/content/RequestDownloadFileUploadInfoRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/content/SetContentDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/content/model/ContentDataParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/ChangePasswordAdminAccountRequestHandler.d.ts +17 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetAdminAccountListRequestHandler.d.ts +15 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetGameInformationRequestHandler.d.ts +16 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetGameListRequestHandler.d.ts +15 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetMasterGameSettingsRequestHandler.d.ts +15 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetSecretInfoInformationRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetSecretInfoListRequestHandler.d.ts +15 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetServerLogRequestHandler.d.ts +15 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GrantAdminAccountRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GrantGameRequestHandler.d.ts +16 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GrantSecretInfoRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/LoginByAdminAccountRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/RemoveAdminAccountRequestHandler.d.ts +16 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/SetGameInformationRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/SetMasterGameSettingsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/SetPasswordAdminAccountRequestHandler.d.ts +17 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/SetSecretInfoInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/SetSecretKeyAdminAccountRequestHandler.d.ts +17 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/AuthenticatePermissionRulesParam.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/CharacterCatalogSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/CharacterPlayerPermissionRulesParam.d.ts +52 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/CharacterPlayerSettingsParam.d.ts +17 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ContentPermissionRulesParam.d.ts +10 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/CurrencySettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/DataSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/FriendCatalogSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GamePlayerPermissionRulesParam.d.ts +51 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GamePlayerSettingsParam.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GameSettingsParam.d.ts +10 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GenericServiceSettingsParam.d.ts +3 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GroupCatalogSettingsParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GroupPermissionRulesParam.d.ts +40 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GroupSettingsParam.d.ts +13 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/InventoryPermissionRulesParam.d.ts +35 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/InventorySettingsParam.d.ts +9 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ItemCatalogSettingsParam.d.ts +6 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ItemClassSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MasterAdminPermissionRulesParam.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MasterPlayerPermissionRulesParam.d.ts +73 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MasterPlayerSettingsParam.d.ts +13 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MatchmakingQueueSettingsParam.d.ts +46 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MultiplayerPermissionRulesParam.d.ts +11 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/PermissionParam.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/PermissionRulesParam.d.ts +6 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/StatisticsSettingsParam.d.ts +6 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/StoreInventoryPermissionRulesParam.d.ts +12 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/TagSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyAppleSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyFacebookSettingsParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyGoogleSettingsParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyParam.d.ts +8 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/AddPlayerFriendRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/AddSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GamePlayerBaseRequestHandler.d.ts +32 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetAvatarRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetCountryCodeRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetCurrencyLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetCustomDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetDisplayNameRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetFriendStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetFriendStatisticsLeaderboardRequestHandler.d.ts +25 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetIpAddressCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetOnlineStatusRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerBanRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerCharacterRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerCurrencyRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerFriendRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerGroupRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerInventoryRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayerStatisticsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayersWithDisplayNameRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayersWithSegmentRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetPlayersWithTagRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetSegmentRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetStatisticsLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetTsCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetTsLastLoginRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GrantGroupRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GrantPlayerCharacterRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GrantPlayerItemRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/JoinGroupRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/LeaveGroupRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemovePlayerCharacterRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemovePlayerFriendRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemovePlayerItemRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemoveSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/RemoveTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetAvatarRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetCountryCodeRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetCustomDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetDisplayNameRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerBanRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerCurrencyRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerStatisticsRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetTagRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/CustomDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/GroupMemberParam.d.ts +3 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/InfoRequestParam.d.ts +28 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/PlayerCurrencyParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/PlayerDataParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/PlayerStatisticsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/group/AddMemberRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/AddSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetAvatarRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetCatalogIdRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetCurrencyLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetCustomDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetDisplayNameRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupCurrencyRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupInventoryRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupMessageRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupStatisticsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupsWithDisplayNameRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupsWithSegmentRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetGroupsWithTagRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetMembersRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetRemoveStatusRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetSegmentRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetStatisticsLeaderboardAroundGroupRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetStatisticsLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetTsCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/group/GrantGroupItemRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/group/GroupBaseRequestHandler.d.ts +35 -0
- package/dist/GN-app-api/handler/controller/handler/group/RemoveGroupItemRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/RemoveMemberRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/RemoveSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/RemoveTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/SendGroupMessageRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetAvatarRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetCustomDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetDisplayNameRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetGroupCurrencyRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetGroupDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetGroupStatisticsRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetRemoveStatusRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetTagRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/CustomDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/GroupCurrencyParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/GroupDataParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/GroupMemberParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/GroupMessageItem.d.ts +6 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/GroupStatisticsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/InfoRequestParam.d.ts +21 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/AddSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetAmountRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetAvatarRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetCatalogIdRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetClassIdRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetCustomDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetDisplayNameRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemStatisticsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemTypeRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemsWithDisplayNameRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemsWithSegmentRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetItemsWithTagRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetOwnerRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetRemoveStatusRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetSegmentRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetStatisticsLeaderboardAroundItemRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetStatisticsLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetTsCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/ItemBaseRequestHandler.d.ts +30 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/RemoveSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/RemoveTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetAmountRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetAvatarRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetCustomDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetDisplayNameRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetItemDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetItemStatisticsRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetOwnerRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetRemoveStatusRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetTagRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/model/CustomDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/model/InfoRequestParam.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/model/ItemDataParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/model/ItemStatisticsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/AddSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/ChangeAccountPasswordRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetAvatarRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetCountryCodeRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetCurrencyLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetCustomDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetDisplayNameRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetEmailRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetExternalRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetIpAddressCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerBanRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerCurrencyRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerDataRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayerStatisticsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithAppleRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithDisplayNameRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithFacebookRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithGenericServiceRequestHandler.d.ts +21 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithGoogleRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithSegmentRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithTagRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetSegmentRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetStatisticsLeaderboardAroundPlayerRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetStatisticsLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetTsCreateRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetTsLastLoginRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkAccountRequestHandler.d.ts +21 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkAndroidDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkAppleRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkCustomDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkCustomIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkEditorDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkFacebookRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkGenericServiceRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkGoogleRequestHandler.d.ts +21 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkLinuxDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkMacOSDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkWindowsDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkWindowsPhoneDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkiOSDeviceIdRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/MasterPlayerBaseRequestHandler.d.ts +30 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/RemoveSegmentRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/RemoveTagRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/ResetAccountPasswordRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetAvatarRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetCountryCodeRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetCustomDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetDisplayNameRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetEmailRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerBanRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerCurrencyRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerDataRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerStatisticsRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetTagRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetTsLastLoginRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkAccountRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkAndroidDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkAppleRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkCustomDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkCustomIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkEditorDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkFacebookRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkGenericServiceRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkGoogleRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkLinuxDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkMacOSDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkWindowsDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkWindowsPhoneDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkiOSDeviceIdRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/CustomDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/InfoRequestParam.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/PlayerCurrencyParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/PlayerDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/PlayerStatisticsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/CancelAllMatchmakingTicketRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/CancelMatchmakingTicketRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/CreateMatchmakingTicketRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/GetMatchRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/GetMatchmakingTicketRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/GetQueueStatisticsRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/JoinMatchmakingTicketRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/ListMatchmakingTicketsForPlayerRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/MatchmakingHandler.d.ts +62 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/MultiplayerBaseRequestHandler.d.ts +10 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/BuyStoreItemRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/GetStoreItemInformationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/GetStoreItemsWithTagRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/GrantStoreItemRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/SetRemoveStatusRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/SetStoreItemInformationRequestHandler.d.ts +32 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/StoreItemBaseRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/ValidateAppleAppStoreReceiptRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/ValidateFacebookStoreReceiptRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/ValidateGooglePlayStoreReceiptRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/AvatarParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/CurrencyParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/InAppPurchaseParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/InfoRequestParam.d.ts +12 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/StoreDataParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/StoreItemParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/TagParam.d.ts +4 -0
- package/dist/GN-app-api/service/AnalyticsService.d.ts +24 -0
- package/dist/GN-app-api/service/AppleService.d.ts +25 -0
- package/dist/GN-app-api/service/EventCallbackService.d.ts +21 -0
- package/dist/GN-app-api/service/FacebookService.d.ts +23 -0
- package/dist/GN-app-api/service/GenericService.d.ts +10 -0
- package/dist/GN-app-api/service/GoogleService.d.ts +27 -0
- package/dist/GN-app-api/service/IAnalyticsService.d.ts +18 -0
- package/dist/GN-app-api/service/IAppleService.d.ts +9 -0
- package/dist/GN-app-api/service/IEventCallbackService.d.ts +19 -0
- package/dist/GN-app-api/service/IFacebookService.d.ts +9 -0
- package/dist/GN-app-api/service/IGenericService.d.ts +23 -0
- package/dist/GN-app-api/service/IGoogleService.d.ts +12 -0
- package/dist/GN-app-api/service/ILockService.d.ts +4 -0
- package/dist/GN-app-api/service/IPushNotificationService.d.ts +4 -0
- package/dist/GN-app-api/service/IRequestConverterService.d.ts +16 -0
- package/dist/GN-app-api/service/ITimerService.d.ts +10 -0
- package/dist/GN-app-api/service/LockService.d.ts +5 -0
- package/dist/GN-app-api/service/RequestConverterService.d.ts +17 -0
- package/dist/GN-app-api/service/TimerService.d.ts +21 -0
- package/dist/GN-common/common/GNData.d.ts +62 -0
- package/dist/GN-common/constant/Commands.d.ts +17 -0
- package/dist/GN-common/constant/EventCode.d.ts +8 -0
- package/dist/GN-common/constant/OperationCode.d.ts +184 -0
- package/dist/GN-common/constant/ReturnCode.d.ts +14 -0
- package/dist/GN-common/constant/enumType/FriendStatus.d.ts +6 -0
- package/dist/GN-common/constant/enumType/GoogleLoginType.d.ts +4 -0
- package/dist/GN-common/constant/enumType/GroupStatus.d.ts +6 -0
- package/dist/GN-common/constant/enumType/InvalidMemberType.d.ts +17 -0
- package/dist/GN-common/constant/enumType/ItemType.d.ts +4 -0
- package/dist/GN-common/constant/enumType/MatchmakingMemberStatus.d.ts +5 -0
- package/dist/GN-common/constant/enumType/MatchmakingTicketStatus.d.ts +7 -0
- package/dist/GN-common/constant/enumType/OwnerType.d.ts +6 -0
- package/dist/GN-common/constant/enumType/PermissionDataItem.d.ts +4 -0
- package/dist/GN-common/constant/enumType/RequestRole.d.ts +5 -0
- package/dist/GN-common/constant/enumType/RequestType.d.ts +13 -0
- package/dist/GN-common/constant/errorCode/GNErrorCode.d.ts +47 -0
- package/dist/GN-common/constant/parameterCode/GNParameterCode.d.ts +430 -0
- package/dist/GN-common/constant/parameterCode/ParameterCode.d.ts +6 -0
- package/dist/GN-common/entity/AuthInfo.d.ts +64 -0
- package/dist/GN-common/entity/DataMember.d.ts +78 -0
- package/dist/GN-common/entity/GNMetadata.d.ts +19 -0
- package/dist/GN-common/entity/InvalidMember.d.ts +5 -0
- package/dist/GN-common/entity/SecretInfo.d.ts +425 -0
- package/dist/GN-common/entity/TokenPayload.d.ts +5 -0
- package/dist/GN-common/entity/operationEvent/OperationEvent.d.ts +14 -0
- package/dist/GN-common/entity/operationHelper/OperationHelper.d.ts +15 -0
- package/dist/GN-common/entity/operationRequest/CommonOperationRequest.d.ts +12 -0
- package/dist/GN-common/entity/operationRequest/OperationArray.d.ts +12 -0
- package/dist/GN-common/entity/operationRequest/OperationObject.d.ts +12 -0
- package/dist/GN-common/entity/operationRequest/OperationRequest.d.ts +23 -0
- package/dist/GN-common/entity/operationRequest/base/Request.d.ts +33 -0
- package/dist/GN-common/entity/operationResponse/OperationResponse.d.ts +27 -0
- package/dist/GN-common/helper/CodeHelper.d.ts +22 -0
- package/dist/GN-common/helper/DisplayNameUtility.d.ts +3 -0
- package/dist/GN-common/helper/Md5Generate.d.ts +3 -0
- package/dist/GN-common/helper/StringUtility.d.ts +4 -0
- package/dist/GN-library/xbuilder/lib/IBuilder.d.ts +3 -0
- package/dist/GN-library/xbuilder/lib/OnRunSuccess.d.ts +3 -0
- package/dist/GN-library/xcachedata/lib/xCacheData.d.ts +8 -0
- package/dist/GN-library/xcachedata/lib/xCacheItem.d.ts +8 -0
- package/dist/GN-library/xconfig/lib/entity/xConfigItem.d.ts +9 -0
- package/dist/GN-library/xconfig/lib/xConfig.d.ts +14 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/AvatarItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/BanItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/CharacterItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/CharacterPlayer.d.ts +22 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/ChatMessage.d.ts +34 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/CurrencyItem.d.ts +3 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/DataItem.d.ts +5 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/DataObjectBase.d.ts +44 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/ExternalItem.d.ts +38 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/FriendItem.d.ts +6 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/GamePlayer.d.ts +13 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/GamePlayerBase.d.ts +38 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/Group.d.ts +61 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/GroupItem.d.ts +6 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/Inventory.d.ts +49 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/InventoryItem.d.ts +5 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MasterPlayer.d.ts +19 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/Match.d.ts +28 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MatchMember.d.ts +6 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MatchmakingTicket.d.ts +46 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MatchmakingTicketMember.d.ts +11 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MemberItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MongoObject.d.ts +18 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/OwnerItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/PlayerBase.d.ts +48 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/RemoveStatusItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/ServerDetail.d.ts +9 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/StatisticsItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/StoreInventory.d.ts +65 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/TradeInventory.d.ts +59 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/UploadFileInfo.d.ts +40 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/CharacterPlayerFindOptions.d.ts +23 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/GamePlayerFindOptions.d.ts +21 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/GroupFindOptions.d.ts +17 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/InventoryFindOptions.d.ts +17 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/MasterPlayerFindOptions.d.ts +18 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/StoreInventoryFindOptions.d.ts +13 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/GameItem.d.ts +37 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/GameSettings.d.ts +10 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/MasterAdminMongoObject.d.ts +8 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/MasterAdminPlayer.d.ts +21 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/MasterGameSettings.d.ts +16 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/SecretInfoItem.d.ts +34 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/type/DataValueType.d.ts +3 -0
- package/dist/GN-library/xdatabase/lib/xDatabase.d.ts +125 -0
- package/dist/GN-library/xdatetime/lib/xDatetime.d.ts +14 -0
- package/dist/GN-library/xdebug/lib/xDebug.d.ts +19 -0
- package/dist/GN-library/xmail/lib/xMail.d.ts +16 -0
- package/dist/GN-library/xrandom/lib/xRandom.d.ts +4 -0
- package/dist/GN-library/xsettings/lib/entity/xCharacterCatalogSettings.d.ts +4 -0
- package/dist/GN-library/xsettings/lib/entity/xCharacterPlayerSettings.d.ts +17 -0
- package/dist/GN-library/xsettings/lib/entity/xCurrencySettings.d.ts +4 -0
- package/dist/GN-library/xsettings/lib/entity/xDataSettings.d.ts +4 -0
- package/dist/GN-library/xsettings/lib/entity/xFriendCatalogSettings.d.ts +4 -0
- package/dist/GN-library/xsettings/lib/entity/xGamePlayerSettings.d.ts +19 -0
- package/dist/GN-library/xsettings/lib/entity/xGameSettings.d.ts +10 -0
- package/dist/GN-library/xsettings/lib/entity/xGenericServiceSettings.d.ts +3 -0
- package/dist/GN-library/xsettings/lib/entity/xGroupCatalogSettings.d.ts +5 -0
- package/dist/GN-library/xsettings/lib/entity/xGroupSettings.d.ts +13 -0
- package/dist/GN-library/xsettings/lib/entity/xInventorySettings.d.ts +9 -0
- package/dist/GN-library/xsettings/lib/entity/xItemCatalogSettings.d.ts +9 -0
- package/dist/GN-library/xsettings/lib/entity/xMasterPlayerSettings.d.ts +13 -0
- package/dist/GN-library/xsettings/lib/entity/xMatchmakingQueueSettings.d.ts +181 -0
- package/dist/GN-library/xsettings/lib/entity/xStatisticsAggregationMethod.d.ts +6 -0
- package/dist/GN-library/xsettings/lib/entity/xStatisticsSettings.d.ts +6 -0
- package/dist/GN-library/xsettings/lib/entity/xTagSettings.d.ts +4 -0
- package/dist/GN-library/xsettings/lib/entity/xThirtPartySettings.d.ts +17 -0
- package/dist/GN-library/xsettings/lib/xGNSettings.d.ts +21 -0
- package/dist/GN-startup/DefaultApplicationStartup.d.ts +18 -0
- package/dist/GN-startup/HttpApp.d.ts +46 -0
- package/dist/GN-startup/ServerApplication.d.ts +73 -0
- package/dist/GN-startup/ServerApplicationStartup.d.ts +7 -0
- package/dist/GN-startup/SocketApp.d.ts +32 -0
- package/dist/GN-startup/middleware/AntiDdosMiddleware.d.ts +73 -0
- package/dist/GN-startup/middleware/ApiMiddleware.d.ts +45 -0
- package/dist/GN-startup/middleware/UploadFileMiddleware.d.ts +17 -0
- package/dist/GN-startup/routes/AdminAppHandler.d.ts +30 -0
- package/dist/GN-startup/routes/HttpAppHandler.d.ts +32 -0
- package/dist/GN-startup/routes/SocketAppHandler.d.ts +59 -0
- package/dist/GN-startup/routes/UploadFileHandler.d.ts +24 -0
- package/dist/GN-startup/routes/www/public/admin/debug-common.js +1233 -0
- package/dist/GN-startup/routes/www/public/admin/index-common.js +217 -0
- package/dist/GN-startup/routes/www/public/admin/log-common.js +52 -0
- package/dist/GN-startup/routes/www/public/admin/signin-common.js +35 -0
- package/dist/GN-startup/routes/www/public/assets/demo/chart-area-demo.js +54 -0
- package/dist/GN-startup/routes/www/public/assets/demo/chart-bar-demo.js +46 -0
- package/dist/GN-startup/routes/www/public/assets/demo/chart-pie-demo.js +16 -0
- package/dist/GN-startup/routes/www/public/assets/demo/datatables-demo.js +4 -0
- package/dist/GN-startup/routes/www/public/assets/img/error-404-monochrome.svg +1 -0
- package/dist/GN-startup/routes/www/public/css/styles.css +11701 -0
- package/dist/GN-startup/routes/www/public/favicon.ico +0 -0
- package/dist/GN-startup/routes/www/public/favicon.png +0 -0
- package/dist/GN-startup/routes/www/public/js/scripts.js +26 -0
- package/dist/GN-startup/routes/www/views/101.ejs +21 -0
- package/dist/GN-startup/routes/www/views/401.ejs +25 -0
- package/dist/GN-startup/routes/www/views/403.ejs +21 -0
- package/dist/GN-startup/routes/www/views/404.ejs +25 -0
- package/dist/GN-startup/routes/www/views/500.ejs +25 -0
- package/dist/GN-startup/routes/www/views/admin/change-password.ejs +46 -0
- package/dist/GN-startup/routes/www/views/admin/debug.ejs +14 -0
- package/dist/GN-startup/routes/www/views/admin/index.ejs +28 -0
- package/dist/GN-startup/routes/www/views/admin/log.ejs +16 -0
- package/dist/GN-startup/routes/www/views/admin/signin.ejs +56 -0
- package/dist/GN-startup/routes/www/views/layout.ejs +8 -0
- package/dist/GN-startup/routes/www/views/partials/areachart.ejs +9 -0
- package/dist/GN-startup/routes/www/views/partials/areachartccu.ejs +9 -0
- package/dist/GN-startup/routes/www/views/partials/barchart.ejs +9 -0
- package/dist/GN-startup/routes/www/views/partials/barcharttotal.ejs +9 -0
- package/dist/GN-startup/routes/www/views/partials/common/footer.ejs +14 -0
- package/dist/GN-startup/routes/www/views/partials/common/head.ejs +11 -0
- package/dist/GN-startup/routes/www/views/partials/dau.ejs +41 -0
- package/dist/GN-startup/routes/www/views/partials/debugboard.ejs +90 -0
- package/dist/GN-startup/routes/www/views/partials/description.ejs +20 -0
- package/dist/GN-startup/routes/www/views/partials/logtable.ejs +50 -0
- package/dist/GN-startup/routes/www/views/partials/piechart.ejs +7 -0
- package/dist/GN-startup/routes/www/views/partials/sidenav.ejs +83 -0
- package/dist/GN-startup/routes/www/views/partials/topnav.ejs +53 -0
- package/dist/GN-startup/settings/ApplicationSettings.d.ts +31 -0
- package/dist/GN-startup/settings/DDosSettings.d.ts +43 -0
- package/dist/GN-startup/settings/DatabaseSettings.d.ts +28 -0
- package/dist/GN-startup/settings/HttpAppSettings.d.ts +41 -0
- package/dist/GN-startup/settings/LogSettings.d.ts +22 -0
- package/dist/GN-startup/settings/MailSettings.d.ts +22 -0
- package/dist/GN-startup/settings/OtherSettings.d.ts +16 -0
- package/dist/GN-startup/settings/SocketAppSettings.d.ts +47 -0
- package/dist/GN-startup/settings/UploadFileSettings.d.ts +25 -0
- package/dist/GNServer.d.ts +93 -0
- package/dist/index.d.ts +204 -0
- package/dist/index.js +75814 -0
- package/gn.sh +692 -0
- package/package.json +80 -0
- package/syncCode.js +1016 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
import { RequestHandler } from "./GN-app-api/handler/controller/handler/base/RequestHandler";
|
|
2
|
+
export { RequestHandler };
|
|
3
|
+
import { RequestController } from "./GN-app-api/handler/controller/RequestController";
|
|
4
|
+
export { RequestController };
|
|
5
|
+
import { AnalyticsService } from "./GN-app-api/service/AnalyticsService";
|
|
6
|
+
export { AnalyticsService };
|
|
7
|
+
import { AppleService } from "./GN-app-api/service/AppleService";
|
|
8
|
+
export { AppleService };
|
|
9
|
+
import { PostEventCallbackService } from "./GN-app-api/service/EventCallbackService";
|
|
10
|
+
export { PostEventCallbackService as EventCallbackService };
|
|
11
|
+
import { FacebookService } from "./GN-app-api/service/FacebookService";
|
|
12
|
+
export { FacebookService };
|
|
13
|
+
import { GenericService } from "./GN-app-api/service/GenericService";
|
|
14
|
+
export { GenericService };
|
|
15
|
+
import { GoogleService } from "./GN-app-api/service/GoogleService";
|
|
16
|
+
export { GoogleService };
|
|
17
|
+
import { IAnalyticsService } from "./GN-app-api/service/IAnalyticsService";
|
|
18
|
+
export { IAnalyticsService };
|
|
19
|
+
import { IAppleService } from "./GN-app-api/service/IAppleService";
|
|
20
|
+
export { IAppleService };
|
|
21
|
+
import { IPostEventCallbackService } from "./GN-app-api/service/IEventCallbackService";
|
|
22
|
+
export { IPostEventCallbackService as IEventCallbackService };
|
|
23
|
+
import { IFacebookService } from "./GN-app-api/service/IFacebookService";
|
|
24
|
+
export { IFacebookService };
|
|
25
|
+
import { IGenericService, IGenericServiceHandler } from "./GN-app-api/service/IGenericService";
|
|
26
|
+
export { IGenericService, IGenericServiceHandler };
|
|
27
|
+
import { IGoogleService } from "./GN-app-api/service/IGoogleService";
|
|
28
|
+
export { IGoogleService };
|
|
29
|
+
import { ILockService } from "./GN-app-api/service/ILockService";
|
|
30
|
+
export { ILockService };
|
|
31
|
+
import { IPushNotificationService } from "./GN-app-api/service/IPushNotificationService";
|
|
32
|
+
export { IPushNotificationService };
|
|
33
|
+
import { IRequestConverterService } from "./GN-app-api/service/IRequestConverterService";
|
|
34
|
+
export { IRequestConverterService };
|
|
35
|
+
import { ITimerService } from "./GN-app-api/service/ITimerService";
|
|
36
|
+
export { ITimerService };
|
|
37
|
+
import { LockService } from "./GN-app-api/service/LockService";
|
|
38
|
+
export { LockService };
|
|
39
|
+
import { RequestConverterService } from "./GN-app-api/service/RequestConverterService";
|
|
40
|
+
export { RequestConverterService };
|
|
41
|
+
import { TimerService } from "./GN-app-api/service/TimerService";
|
|
42
|
+
export { TimerService };
|
|
43
|
+
import { GNData, GNArray, GNArrayBuilder, GNHashtable, GNHashtableBuilder } from "./GN-common/common/GNData";
|
|
44
|
+
export { GNData, GNArray, GNArrayBuilder, GNHashtable, GNHashtableBuilder };
|
|
45
|
+
import { FriendStatus } from "./GN-common/constant/enumType/FriendStatus";
|
|
46
|
+
export { FriendStatus };
|
|
47
|
+
import { GoogleLoginType } from "./GN-common/constant/enumType/GoogleLoginType";
|
|
48
|
+
export { GoogleLoginType };
|
|
49
|
+
import { GroupStatus } from "./GN-common/constant/enumType/GroupStatus";
|
|
50
|
+
export { GroupStatus };
|
|
51
|
+
import { InvalidMemberType } from "./GN-common/constant/enumType/InvalidMemberType";
|
|
52
|
+
export { InvalidMemberType };
|
|
53
|
+
import { ItemType } from "./GN-common/constant/enumType/ItemType";
|
|
54
|
+
export { ItemType };
|
|
55
|
+
import { OwnerType } from "./GN-common/constant/enumType/OwnerType";
|
|
56
|
+
export { OwnerType };
|
|
57
|
+
import { PermissionDataItem } from "./GN-common/constant/enumType/PermissionDataItem";
|
|
58
|
+
export { PermissionDataItem };
|
|
59
|
+
import { RequestRole } from "./GN-common/constant/enumType/RequestRole";
|
|
60
|
+
export { RequestRole };
|
|
61
|
+
import { RequestType } from "./GN-common/constant/enumType/RequestType";
|
|
62
|
+
export { RequestType };
|
|
63
|
+
import { GNErrorCode } from "./GN-common/constant/errorCode/GNErrorCode";
|
|
64
|
+
export { GNErrorCode };
|
|
65
|
+
import { GNParameterCode } from "./GN-common/constant/parameterCode/GNParameterCode";
|
|
66
|
+
export { GNParameterCode };
|
|
67
|
+
import { ParameterCode } from "./GN-common/constant/parameterCode/ParameterCode";
|
|
68
|
+
export { ParameterCode };
|
|
69
|
+
import { Commands } from "./GN-common/constant/Commands";
|
|
70
|
+
export { Commands };
|
|
71
|
+
import { EventCode } from "./GN-common/constant/EventCode";
|
|
72
|
+
export { EventCode };
|
|
73
|
+
import { OperationCode } from "./GN-common/constant/OperationCode";
|
|
74
|
+
export { OperationCode };
|
|
75
|
+
import { ReturnCode } from "./GN-common/constant/ReturnCode";
|
|
76
|
+
export { ReturnCode };
|
|
77
|
+
import { OperationEvent } from "./GN-common/entity/operationEvent/OperationEvent";
|
|
78
|
+
export { OperationEvent };
|
|
79
|
+
import { OperationHelper } from "./GN-common/entity/operationHelper/OperationHelper";
|
|
80
|
+
export { OperationHelper };
|
|
81
|
+
import { CommonOperationRequest } from "./GN-common/entity/operationRequest/CommonOperationRequest";
|
|
82
|
+
export { CommonOperationRequest };
|
|
83
|
+
import { OperationArray } from "./GN-common/entity/operationRequest/OperationArray";
|
|
84
|
+
export { OperationArray };
|
|
85
|
+
import { OperationObject } from "./GN-common/entity/operationRequest/OperationObject";
|
|
86
|
+
export { OperationObject };
|
|
87
|
+
import { OperationRequest } from "./GN-common/entity/operationRequest/OperationRequest";
|
|
88
|
+
export { OperationRequest };
|
|
89
|
+
import { Request } from "./GN-common/entity/operationRequest/base/Request";
|
|
90
|
+
export { Request };
|
|
91
|
+
import { OperationResponse } from "./GN-common/entity/operationResponse/OperationResponse";
|
|
92
|
+
export { OperationResponse };
|
|
93
|
+
import { AuthInfo } from "./GN-common/entity/AuthInfo";
|
|
94
|
+
export { AuthInfo };
|
|
95
|
+
import { DataMember } from "./GN-common/entity/DataMember";
|
|
96
|
+
export { DataMember };
|
|
97
|
+
import { AbstractConstructor, FieldDataType, GNObjectFieldMetadata, GNObjectMetadata } from "./GN-common/entity/GNMetadata";
|
|
98
|
+
export { AbstractConstructor, FieldDataType, GNObjectFieldMetadata, GNObjectMetadata };
|
|
99
|
+
import { InvalidMember } from "./GN-common/entity/InvalidMember";
|
|
100
|
+
export { InvalidMember };
|
|
101
|
+
import { SecretInfo } from "./GN-common/entity/SecretInfo";
|
|
102
|
+
export { SecretInfo };
|
|
103
|
+
import { CodeHelper } from "./GN-common/helper/CodeHelper";
|
|
104
|
+
export { CodeHelper };
|
|
105
|
+
import { DisplayNameUtility } from "./GN-common/helper/DisplayNameUtility";
|
|
106
|
+
export { DisplayNameUtility };
|
|
107
|
+
import { Md5Generate } from "./GN-common/helper/Md5Generate";
|
|
108
|
+
export { Md5Generate };
|
|
109
|
+
import { StringUtility } from "./GN-common/helper/StringUtility";
|
|
110
|
+
export { StringUtility };
|
|
111
|
+
import { IBuilder } from "./GN-library/xbuilder/lib/IBuilder";
|
|
112
|
+
export { IBuilder };
|
|
113
|
+
import { OnRunSuccess } from "./GN-library/xbuilder/lib/OnRunSuccess";
|
|
114
|
+
export { OnRunSuccess };
|
|
115
|
+
import { xCacheData } from "./GN-library/xcachedata/lib/xCacheData";
|
|
116
|
+
export { xCacheData };
|
|
117
|
+
import { xCacheItem } from "./GN-library/xcachedata/lib/xCacheItem";
|
|
118
|
+
export { xCacheItem };
|
|
119
|
+
import { xConfigItem } from "./GN-library/xconfig/lib/entity/xConfigItem";
|
|
120
|
+
export { xConfigItem };
|
|
121
|
+
import { xConfig } from "./GN-library/xconfig/lib/xConfig";
|
|
122
|
+
export { xConfig };
|
|
123
|
+
import { xDatetime } from "./GN-library/xdatetime/lib/xDatetime";
|
|
124
|
+
export { xDatetime };
|
|
125
|
+
import { Debug } from "./GN-library/xdebug/lib/xDebug";
|
|
126
|
+
export { Debug };
|
|
127
|
+
import { xMail } from "./GN-library/xmail/lib/xMail";
|
|
128
|
+
export { xMail };
|
|
129
|
+
import { xRandom } from "./GN-library/xrandom/lib/xRandom";
|
|
130
|
+
export { xRandom };
|
|
131
|
+
import { xCharacterCatalogSettings } from "./GN-library/xsettings/lib/entity/xCharacterCatalogSettings";
|
|
132
|
+
export { xCharacterCatalogSettings };
|
|
133
|
+
import { xCharacterPlayerSettings } from "./GN-library/xsettings/lib/entity/xCharacterPlayerSettings";
|
|
134
|
+
export { xCharacterPlayerSettings };
|
|
135
|
+
import { xCurrencySettings } from "./GN-library/xsettings/lib/entity/xCurrencySettings";
|
|
136
|
+
export { xCurrencySettings };
|
|
137
|
+
import { xDataSettings } from "./GN-library/xsettings/lib/entity/xDataSettings";
|
|
138
|
+
export { xDataSettings };
|
|
139
|
+
import { xFriendCatalogSettings } from "./GN-library/xsettings/lib/entity/xFriendCatalogSettings";
|
|
140
|
+
export { xFriendCatalogSettings };
|
|
141
|
+
import { xGamePlayerSettings } from "./GN-library/xsettings/lib/entity/xGamePlayerSettings";
|
|
142
|
+
export { xGamePlayerSettings };
|
|
143
|
+
import { xGameSettings } from "./GN-library/xsettings/lib/entity/xGameSettings";
|
|
144
|
+
export { xGameSettings };
|
|
145
|
+
import { xMatchmakingQueueSettings } from "./GN-library/xsettings/lib/entity/xMatchmakingQueueSettings";
|
|
146
|
+
export { xMatchmakingQueueSettings };
|
|
147
|
+
import { xGenericServiceSettings } from "./GN-library/xsettings/lib/entity/xGenericServiceSettings";
|
|
148
|
+
export { xGenericServiceSettings };
|
|
149
|
+
import { xGroupCatalogSettings } from "./GN-library/xsettings/lib/entity/xGroupCatalogSettings";
|
|
150
|
+
export { xGroupCatalogSettings };
|
|
151
|
+
import { xGroupSettings } from "./GN-library/xsettings/lib/entity/xGroupSettings";
|
|
152
|
+
export { xGroupSettings };
|
|
153
|
+
import { xInventorySettings } from "./GN-library/xsettings/lib/entity/xInventorySettings";
|
|
154
|
+
export { xInventorySettings };
|
|
155
|
+
import { xItemCatalogSettings } from "./GN-library/xsettings/lib/entity/xItemCatalogSettings";
|
|
156
|
+
export { xItemCatalogSettings };
|
|
157
|
+
import { xMasterPlayerSettings } from "./GN-library/xsettings/lib/entity/xMasterPlayerSettings";
|
|
158
|
+
export { xMasterPlayerSettings };
|
|
159
|
+
import { xStatisticsAggregationMethod } from "./GN-library/xsettings/lib/entity/xStatisticsAggregationMethod";
|
|
160
|
+
export { xStatisticsAggregationMethod };
|
|
161
|
+
import { xStatisticsSettings } from "./GN-library/xsettings/lib/entity/xStatisticsSettings";
|
|
162
|
+
export { xStatisticsSettings };
|
|
163
|
+
import { xTagSettings } from "./GN-library/xsettings/lib/entity/xTagSettings";
|
|
164
|
+
export { xTagSettings };
|
|
165
|
+
import { xThirtPartySettings } from "./GN-library/xsettings/lib/entity/xThirtPartySettings";
|
|
166
|
+
export { xThirtPartySettings };
|
|
167
|
+
import { xGNSettings } from "./GN-library/xsettings/lib/xGNSettings";
|
|
168
|
+
export { xGNSettings };
|
|
169
|
+
import { ServerApplicationStartup } from "./GN-startup/ServerApplicationStartup";
|
|
170
|
+
export { ServerApplicationStartup };
|
|
171
|
+
import { HttpApp } from "./GN-startup/HttpApp";
|
|
172
|
+
export { HttpApp };
|
|
173
|
+
import { ServerApplication } from "./GN-startup/ServerApplication";
|
|
174
|
+
export { ServerApplication };
|
|
175
|
+
import { SocketApp } from "./GN-startup/SocketApp";
|
|
176
|
+
export { SocketApp };
|
|
177
|
+
import { GNServer } from "./GNServer";
|
|
178
|
+
export { GNServer };
|
|
179
|
+
import { ApplicationSettings } from "./GN-startup/settings/ApplicationSettings";
|
|
180
|
+
export { ApplicationSettings };
|
|
181
|
+
import { DatabaseSettings } from "./GN-startup/settings/DatabaseSettings";
|
|
182
|
+
export { DatabaseSettings };
|
|
183
|
+
import { DdosSettings } from "./GN-startup/settings/DDosSettings";
|
|
184
|
+
export { DdosSettings };
|
|
185
|
+
import { HttpAppSettings } from "./GN-startup/settings/HttpAppSettings";
|
|
186
|
+
export { HttpAppSettings };
|
|
187
|
+
import { LogSettings } from "./GN-startup/settings/LogSettings";
|
|
188
|
+
export { LogSettings };
|
|
189
|
+
import { MailSettings } from "./GN-startup/settings/MailSettings";
|
|
190
|
+
export { MailSettings };
|
|
191
|
+
import { OtherSettings } from "./GN-startup/settings/OtherSettings";
|
|
192
|
+
export { OtherSettings };
|
|
193
|
+
import { SocketAppSettings } from "./GN-startup/settings/SocketAppSettings";
|
|
194
|
+
export { SocketAppSettings };
|
|
195
|
+
import { UploadFileSettings } from "./GN-startup/settings/UploadFileSettings";
|
|
196
|
+
export { UploadFileSettings };
|
|
197
|
+
import { AdminAppHandler } from "./GN-startup/routes/AdminAppHandler";
|
|
198
|
+
export { AdminAppHandler };
|
|
199
|
+
import { HttpAppHandler } from "./GN-startup/routes/HttpAppHandler";
|
|
200
|
+
export { HttpAppHandler };
|
|
201
|
+
import { SocketAppHandler } from "./GN-startup/routes/SocketAppHandler";
|
|
202
|
+
export { SocketAppHandler };
|
|
203
|
+
import { UploadFileHandler } from "./GN-startup/routes/UploadFileHandler";
|
|
204
|
+
export { UploadFileHandler };
|