@xmobitea/gn-server 2.1.1 → 2.3.0
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 +30 -27
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginBaseRequestHandler.d.ts +1 -1
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByGameCenterRequestHandler.d.ts +24 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/LoginByGooglePlayGameServiceRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/authenticate/RegisterAccountRequestHandler.d.ts +1 -6
- package/dist/GN-app-api/handler/controller/handler/authenticate/model/InfoRequestParam.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/base/RequestHandler.d.ts +1 -1
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCreateLeaderboardRequestHandler.d.ts +23 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCurrencyLogRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetFriendStatisticsLeaderboardRequestHandler.d.ts +2 -1
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetStatisticsLeaderboardRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetStatisticsLogRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerCurrencyRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetPlayerStatisticsRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/PlayerDataParam.d.ts +0 -1
- package/dist/GN-app-api/handler/controller/handler/cloudScript/ExecuteFunctionRequestHandler.d.ts +1 -1
- package/dist/GN-app-api/handler/controller/handler/content/GetContentDataRequestHandler.d.ts +1 -1
- package/dist/GN-app-api/handler/controller/handler/content/GetFileUploadInfoListRequestHandler.d.ts +0 -1
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetAnalyticsRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetBackupStatisticsLeaderboardVersionRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetEventCallbackCloudScriptRequestHandler.d.ts +15 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetServerGameDataRequestHandler.d.ts +34 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetServerLogRequestHandler.d.ts +2 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GetUsernameAdminAccountRequestHandler.d.ts +16 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/GrantSecretInfoRequestHandler.d.ts +4 -1
- package/dist/GN-app-api/handler/controller/handler/dashboard/ResetStatisticsLeaderboardRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/SetEventCallbackCloudScriptRequestHandler.d.ts +17 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/SetMasterGameSettingsRequestHandler.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/AuthenticatePermissionRulesParam.d.ts +2 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/CharacterPlayerPermissionRulesParam.d.ts +3 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ContentPermissionRulesParam.d.ts +2 -2
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/CurrencySettingsParam.d.ts +2 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/EmailSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GamePlayerPermissionRulesParam.d.ts +3 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/GroupPermissionRulesParam.d.ts +3 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/InventoryPermissionRulesParam.d.ts +2 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MasterAdminPermissionRulesParam.d.ts +6 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MasterPlayerPermissionRulesParam.d.ts +16 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MatchmakingQueueSettingsParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/MultiplayerPermissionRulesParam.d.ts +2 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/PushNotificationSettingsParam.d.ts +5 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/StatisticsSettingsParam.d.ts +3 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/StoreInventoryPermissionRulesParam.d.ts +3 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/TagSettingsParam.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyAppleSettingsParam.d.ts +3 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyGameCenterSettingsParam.d.ts +3 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyGooglePlayGameSettingsParam.d.ts +6 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyGoogleSettingsParam.d.ts +3 -3
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyParam.d.ts +4 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetCreateLeaderboardRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetCurrencyLogRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetFriendStatisticsLeaderboardRequestHandler.d.ts +2 -1
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetStatisticsLeaderboardRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetStatisticsLogRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerCurrencyRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerStatisticsRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/gamePlayer/model/PlayerDataParam.d.ts +0 -1
- package/dist/GN-app-api/handler/controller/handler/group/GetCreateLeaderboardRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetCurrencyLogRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetStatisticsLeaderboardRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/group/GetStatisticsLogRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/group/GroupBaseRequestHandler.d.ts +1 -1
- package/dist/GN-app-api/handler/controller/handler/group/SetGroupCurrencyRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/group/SetGroupStatisticsRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/group/model/GroupDataParam.d.ts +0 -1
- package/dist/GN-app-api/handler/controller/handler/inventory/GetCreateLeaderboardRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetStatisticsLeaderboardRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/GetStatisticsLogRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/SetItemStatisticsRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/inventory/model/ItemDataParam.d.ts +0 -1
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/AddPushNotificationRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetCreateLeaderboardRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetCurrencyLogRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetLastLoginLeaderboardRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithGameCenterRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPlayersWithGooglePlayGameServiceRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetPushNotificationRequestHandler.d.ts +18 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetStatisticsLeaderboardRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetStatisticsLogRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkGameCenterRequestHandler.d.ts +25 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/LinkGooglePlayGameServiceRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/MasterPlayerBaseRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/RemovePushNotificationRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SendEmailRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SendPushNotificationRequestHandler.d.ts +25 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SendSocketOperationEventRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerCurrencyRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerStatisticsRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkGameCenterRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/UnlinkGooglePlayGameServiceRequestHandler.d.ts +19 -0
- package/dist/GN-app-api/handler/controller/handler/masterPlayer/model/InfoRequestParam.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/GetAllMatchRequestHandler.d.ts +20 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/GetAllMatchmakingTicketRequestHandler.d.ts +21 -0
- package/dist/GN-app-api/handler/controller/handler/multiplayer/MatchmakingHandler.d.ts +2 -2
- package/dist/GN-app-api/handler/controller/handler/storeInventory/BuyStoreItemRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/GetCreateLeaderboardRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/GetStoreLogRequestHandler.d.ts +22 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/GrantStoreItemRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/PresentStoreItemRequestHandler.d.ts +21 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/SetStoreItemInformationRequestHandler.d.ts +8 -8
- package/dist/GN-app-api/handler/controller/handler/storeInventory/ValidateAppleAppStoreReceiptRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/ValidateFacebookStoreReceiptRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/ValidateGooglePlayStoreReceiptRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/storeInventory/model/InAppPurchaseParam.d.ts +4 -3
- package/dist/GN-app-api/service/AnalyticsService.d.ts +4 -2
- package/dist/GN-app-api/service/AppleService.d.ts +16 -4
- package/dist/GN-app-api/service/CloudScriptService.d.ts +14 -2
- package/dist/GN-app-api/service/CountryIPDetailService.d.ts +11 -0
- package/dist/GN-app-api/service/EventCallbackService.d.ts +103 -0
- package/dist/GN-app-api/service/GameCenterService.d.ts +19 -0
- package/dist/GN-app-api/service/GenericService.d.ts +3 -2
- package/dist/GN-app-api/service/GooglePlayGameService.d.ts +21 -0
- package/dist/GN-app-api/service/IAnalyticsService.d.ts +13 -2
- package/dist/GN-app-api/service/ICloudScriptService.d.ts +3 -1
- package/dist/GN-app-api/service/ICountryIPDetailService.d.ts +20 -0
- package/dist/GN-app-api/service/IGameCenterService.d.ts +13 -0
- package/dist/GN-app-api/service/IGenericService.d.ts +6 -3
- package/dist/GN-app-api/service/IGooglePlayGameService.d.ts +5 -0
- package/dist/GN-common/constant/Commands.d.ts +1 -0
- package/dist/GN-common/constant/OperationCode.d.ts +29 -0
- package/dist/GN-common/constant/enumType/OwnerType.d.ts +2 -1
- package/dist/GN-common/constant/enumType/PushPlatformType.d.ts +4 -0
- package/dist/GN-common/constant/enumType/StoreReceiveType.d.ts +7 -0
- package/dist/GN-common/constant/errorCode/GNErrorCode.d.ts +2 -0
- package/dist/GN-common/constant/parameterCode/GNParameterCode.d.ts +120 -1
- package/dist/GN-common/entity/SecretInfo.d.ts +48 -1
- package/dist/GN-common/helper/StringUtility.d.ts +1 -1
- package/dist/GN-library/xcachedata/lib/xCacheData.d.ts +1 -0
- package/dist/GN-library/xconfig/lib/xConfig.d.ts +2 -1
- package/dist/GN-library/xdatabase/lib/entity/pro/ExternalItem.d.ts +10 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/IPDetailItem.d.ts +5 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MasterPlayer.d.ts +13 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/MongoObject.d.ts +2 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/PushNotificationItem.d.ts +5 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/StoreInventory.d.ts +1 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/MasterPlayerFindOptions.d.ts +2 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/MasterGameSettings.d.ts +10 -0
- package/dist/GN-library/xdatabase/lib/xDatabase.d.ts +113 -10
- package/dist/GN-library/xdebug/lib/xDebug.d.ts +1 -0
- package/dist/GN-library/xmail/lib/xMail.d.ts +3 -1
- package/dist/GN-library/xnotification/lib/xPushNotification.d.ts +27 -0
- package/dist/GN-library/xsettings/lib/entity/xCurrencySettings.d.ts +2 -0
- package/dist/GN-library/xsettings/lib/entity/xEmailSettings.d.ts +4 -0
- package/dist/GN-library/xsettings/lib/entity/xPushNotificationSettings.d.ts +5 -0
- package/dist/GN-library/xsettings/lib/entity/xStatisticsSettings.d.ts +3 -0
- package/dist/GN-library/xsettings/lib/entity/xTagSettings.d.ts +1 -0
- package/dist/GN-library/xsettings/lib/entity/xThirtPartySettings.d.ts +12 -0
- package/dist/GN-startup/DefaultApplicationStartup.d.ts +1 -2
- package/dist/GN-startup/HttpApp.d.ts +0 -3
- package/dist/GN-startup/ServerApplication.d.ts +0 -4
- package/dist/GN-startup/cloudScript/eventCallbackCloudScriptData.json +1818 -0
- package/dist/GN-startup/cloudScript/templateCloudScript.ts +567 -0
- package/dist/GN-startup/cloudScript/templateEventCallback.ts +798 -0
- package/dist/GN-startup/middleware/AntiDdosMiddleware.d.ts +4 -1
- package/dist/GN-startup/middleware/ApiMiddleware.d.ts +1 -0
- package/dist/GN-startup/routes/AdminAppHandler.d.ts +0 -31
- package/dist/GN-startup/settings/DDosSettings.d.ts +3 -0
- package/dist/GN-startup/settings/OtherSettings.d.ts +6 -0
- package/dist/GNServer.d.ts +30 -4
- package/dist/index.d.ts +144 -6
- package/dist/index.js +21329 -6740
- package/gn.sh +7 -10
- package/package.json +24 -27
- package/syncCode.js +341 -341
- package/syncCodeVer2.js +176 -0
- package/dist/GN-startup/cloudScript/template.ts +0 -126
- package/dist/GN-startup/routes/www/public/admin/debug-common.js +0 -1233
- package/dist/GN-startup/routes/www/public/admin/index-common.js +0 -217
- package/dist/GN-startup/routes/www/public/admin/log-common.js +0 -52
- package/dist/GN-startup/routes/www/public/admin/signin-common.js +0 -35
- package/dist/GN-startup/routes/www/public/assets/demo/chart-area-demo.js +0 -54
- package/dist/GN-startup/routes/www/public/assets/demo/chart-bar-demo.js +0 -46
- package/dist/GN-startup/routes/www/public/assets/demo/chart-pie-demo.js +0 -16
- package/dist/GN-startup/routes/www/public/assets/demo/datatables-demo.js +0 -4
- package/dist/GN-startup/routes/www/public/assets/img/error-404-monochrome.svg +0 -1
- package/dist/GN-startup/routes/www/public/css/styles.css +0 -11701
- 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 +0 -26
- package/dist/GN-startup/routes/www/views/101.ejs +0 -21
- package/dist/GN-startup/routes/www/views/401.ejs +0 -25
- package/dist/GN-startup/routes/www/views/403.ejs +0 -21
- package/dist/GN-startup/routes/www/views/404.ejs +0 -25
- package/dist/GN-startup/routes/www/views/500.ejs +0 -25
- package/dist/GN-startup/routes/www/views/admin/change-password.ejs +0 -46
- package/dist/GN-startup/routes/www/views/admin/debug.ejs +0 -14
- package/dist/GN-startup/routes/www/views/admin/index.ejs +0 -28
- package/dist/GN-startup/routes/www/views/admin/log.ejs +0 -16
- package/dist/GN-startup/routes/www/views/admin/signin.ejs +0 -56
- package/dist/GN-startup/routes/www/views/layout.ejs +0 -8
- package/dist/GN-startup/routes/www/views/partials/areachart.ejs +0 -9
- package/dist/GN-startup/routes/www/views/partials/areachartccu.ejs +0 -9
- package/dist/GN-startup/routes/www/views/partials/barchart.ejs +0 -9
- package/dist/GN-startup/routes/www/views/partials/barcharttotal.ejs +0 -9
- package/dist/GN-startup/routes/www/views/partials/common/footer.ejs +0 -14
- package/dist/GN-startup/routes/www/views/partials/common/head.ejs +0 -11
- package/dist/GN-startup/routes/www/views/partials/dau.ejs +0 -41
- package/dist/GN-startup/routes/www/views/partials/debugboard.ejs +0 -90
- package/dist/GN-startup/routes/www/views/partials/description.ejs +0 -20
- package/dist/GN-startup/routes/www/views/partials/logtable.ejs +0 -50
- package/dist/GN-startup/routes/www/views/partials/piechart.ejs +0 -7
- package/dist/GN-startup/routes/www/views/partials/sidenav.ejs +0 -83
- package/dist/GN-startup/routes/www/views/partials/topnav.ejs +0 -53
- package/dist/GN-startup/settings/MailSettings.d.ts +0 -22
|
@@ -3,7 +3,8 @@ import { Socket } from "socket.io";
|
|
|
3
3
|
import * as mongoDB from "mongodb";
|
|
4
4
|
export declare class AntiDdosMiddleware {
|
|
5
5
|
private static readonly FIVE_MINUTE_TS;
|
|
6
|
-
private static readonly
|
|
6
|
+
private static readonly K_MULTIPLE_WHITE_LIST;
|
|
7
|
+
private static readonly K_MULTIPLE_BLACK_LIST;
|
|
7
8
|
private socketRequestPerIPDic;
|
|
8
9
|
private socketRequestPerPeerDic;
|
|
9
10
|
private httpRequestPerIPDic;
|
|
@@ -24,6 +25,7 @@ export declare class AntiDdosMiddleware {
|
|
|
24
25
|
private httpMaxRequestSize;
|
|
25
26
|
private maxUploadPendingRequest;
|
|
26
27
|
private maxDownloadPendingRequest;
|
|
28
|
+
private defaultIPWhiteLst;
|
|
27
29
|
private ipWhiteLst;
|
|
28
30
|
private ipBlackLst;
|
|
29
31
|
setReportDdosCollection(reportDdosCollection: mongoDB.Collection<mongoDB.Document>): void;
|
|
@@ -38,6 +40,7 @@ export declare class AntiDdosMiddleware {
|
|
|
38
40
|
setHttpMaxRequestSize(httpMaxRequestSize: number): void;
|
|
39
41
|
setMaxUploadPendingRequest(maxUploadPendingRequest: number): void;
|
|
40
42
|
setMaxDownloadPendingRequest(maxDownloadPendingRequest: number): void;
|
|
43
|
+
setIPWhiteList(ipWhiteList: string[]): void;
|
|
41
44
|
checkRequestSizeBodyViaJson(req: express.Request, res: express.Response, next: Function): Promise<any>;
|
|
42
45
|
checkRequestSizeBodyViaMsgPack(req: express.Request, res: express.Response, next: Function): Promise<any>;
|
|
43
46
|
private getReturnCodeForRequestSizeHttp;
|
|
@@ -8,6 +8,7 @@ import { TokenPayload } from "./../../GN-common/entity/TokenPayload";
|
|
|
8
8
|
export declare class ApiMiddleware {
|
|
9
9
|
private static readonly FIVE_MINUTE_TS;
|
|
10
10
|
private static readonly TS_REMOVE_AUTH_INFO_DIC;
|
|
11
|
+
private static readonly DEFAULT_GAME_ID;
|
|
11
12
|
private authInfoDict;
|
|
12
13
|
private authInfoCollection;
|
|
13
14
|
private secretInfoDict;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import express from "express";
|
|
2
|
-
import { ApiMiddleware } from "./../middleware/ApiMiddleware";
|
|
3
|
-
import { GNServer } from "./../../GNServer";
|
|
4
|
-
import { ApplicationSettings } from "./../settings/ApplicationSettings";
|
|
5
|
-
import { SocketAppSettings } from "./../settings/SocketAppSettings";
|
|
6
|
-
import { HttpAppSettings } from "./../settings/HttpAppSettings";
|
|
7
|
-
import { LogSettings } from "./../settings/LogSettings";
|
|
8
|
-
import { GNServerSettingsOptions } from "@xmobitea/gn-typescript-client";
|
|
9
|
-
export declare class AdminAppHandler {
|
|
10
|
-
private applicationSettings;
|
|
11
|
-
private apiMiddleware;
|
|
12
|
-
private gnServer;
|
|
13
|
-
private router;
|
|
14
|
-
private adminRouter;
|
|
15
|
-
private adminApiRouter;
|
|
16
|
-
private socketAppSettings;
|
|
17
|
-
private httpAppSettings;
|
|
18
|
-
private logSettings;
|
|
19
|
-
setRouter(router: express.Express): void;
|
|
20
|
-
setApiMiddleware(apiMiddleware: ApiMiddleware): void;
|
|
21
|
-
setGNServer(gnServer: GNServer): void;
|
|
22
|
-
setApplicationSettings(applicationSettings: ApplicationSettings): void;
|
|
23
|
-
setSocketAppSettings(socketAppSettings: SocketAppSettings): void;
|
|
24
|
-
setHttpAppSettings(httpAppSettings: HttpAppSettings): void;
|
|
25
|
-
setLogSettings(logSettings: LogSettings): void;
|
|
26
|
-
private mustSignin;
|
|
27
|
-
private mustNotSignin;
|
|
28
|
-
run(): void;
|
|
29
|
-
runGNNetworkSdk(gnServerSettingsOptions: GNServerSettingsOptions): void;
|
|
30
|
-
private setupAdminRouter;
|
|
31
|
-
}
|
|
@@ -10,6 +10,7 @@ declare abstract class BuilderBase {
|
|
|
10
10
|
protected httpMaxRequestSize: number;
|
|
11
11
|
protected maxUploadPendingRequest: number;
|
|
12
12
|
protected maxDownloadPendingRequest: number;
|
|
13
|
+
protected ipWhiteList: string[];
|
|
13
14
|
getSocketMaxRequestPerSecondPerIp(): number;
|
|
14
15
|
getSocketMaxRequestPerSecondPerPeer(): number;
|
|
15
16
|
getSocketMaxPendingRequest(): number;
|
|
@@ -20,6 +21,7 @@ declare abstract class BuilderBase {
|
|
|
20
21
|
getHttpMaxRequestSize(): number;
|
|
21
22
|
getMaxUploadPendingRequest(): number;
|
|
22
23
|
getMaxDownloadPendingRequest(): number;
|
|
24
|
+
getIPWhiteList(): string[];
|
|
23
25
|
constructor();
|
|
24
26
|
}
|
|
25
27
|
declare class Builder extends BuilderBase implements IBuilder<DdosSettings> {
|
|
@@ -33,6 +35,7 @@ declare class Builder extends BuilderBase implements IBuilder<DdosSettings> {
|
|
|
33
35
|
setHttpMaxRequestSize(httpMaxRequestSize: number): Builder;
|
|
34
36
|
setMaxUploadPendingRequest(maxUploadPendingRequest: number): Builder;
|
|
35
37
|
setMaxDownloadPendingRequest(maxDownloadPendingRequest: number): Builder;
|
|
38
|
+
setIPWhiteList(ipWhiteList: string[]): Builder;
|
|
36
39
|
constructor();
|
|
37
40
|
build(): DdosSettings;
|
|
38
41
|
}
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { IBuilder } from "./../../GN-library/xbuilder/lib/IBuilder";
|
|
2
2
|
declare abstract class BuilderBase {
|
|
3
3
|
protected headerIP: string;
|
|
4
|
+
protected idTypeCase: number;
|
|
5
|
+
protected ipApiUrl: string;
|
|
4
6
|
getHeaderIP(): string;
|
|
7
|
+
getIdTypeCase(): number;
|
|
8
|
+
getIPApiUrl(): string;
|
|
5
9
|
constructor();
|
|
6
10
|
}
|
|
7
11
|
declare class Builder extends BuilderBase implements IBuilder<OtherSettings> {
|
|
8
12
|
setHeaderIP(headerIP: string): Builder;
|
|
13
|
+
setIdTypeCase(idTypeCase: number): Builder;
|
|
14
|
+
setIPApiUrl(ipApiUrl: string): Builder;
|
|
9
15
|
constructor();
|
|
10
16
|
build(): OtherSettings;
|
|
11
17
|
}
|
package/dist/GNServer.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { SocketApp } from "./GN-startup/SocketApp";
|
|
|
6
6
|
import { HttpApp } from "./GN-startup/HttpApp";
|
|
7
7
|
import { IRequestHandler } from "./GN-app-api/handler/controller/handler/base/IRequestHandler";
|
|
8
8
|
import { xMail } from "./GN-library/xmail/lib/xMail";
|
|
9
|
+
import { xPushNotification } from "./GN-library/xnotification/lib/xPushNotification";
|
|
9
10
|
import { IFacebookService } from "./GN-app-api/service/IFacebookService";
|
|
10
11
|
import { IGenericService } from "./GN-app-api/service/IGenericService";
|
|
11
12
|
import { IAppleService } from "./GN-app-api/service/IAppleService";
|
|
@@ -20,6 +21,11 @@ import { IGoogleService } from "./GN-app-api/service/IGoogleService";
|
|
|
20
21
|
import { IAnalyticsService } from "./GN-app-api/service/IAnalyticsService";
|
|
21
22
|
import { xGNSettings } from "./GN-library/xsettings/lib/xGNSettings";
|
|
22
23
|
import { IPostEventCallbackService, IPreEventCallbackService } from "./GN-app-api/service/IEventCallbackService";
|
|
24
|
+
import { IEventCallbackCloudScriptService } from "./GN-app-api/service/EventCallbackService";
|
|
25
|
+
import { IGameCenterService } from "./GN-app-api/service/IGameCenterService";
|
|
26
|
+
import { IGooglePlayGameService } from "./GN-app-api/service/IGooglePlayGameService";
|
|
27
|
+
import { ICountryIPDetailService } from "./GN-app-api/service/ICountryIPDetailService";
|
|
28
|
+
import { ServerDetail } from "./GN-library/xdatabase/lib/entity/pro/ServerDetail";
|
|
23
29
|
interface CreateIndexesOptions {
|
|
24
30
|
unique?: boolean;
|
|
25
31
|
sparse?: boolean;
|
|
@@ -31,24 +37,31 @@ export declare class GNServer {
|
|
|
31
37
|
private httpApp;
|
|
32
38
|
private apiMiddleware;
|
|
33
39
|
private requestController;
|
|
34
|
-
private
|
|
40
|
+
private idTypeCase;
|
|
41
|
+
private xConfigDic;
|
|
35
42
|
private xGNSettings;
|
|
36
43
|
private xDatabase;
|
|
37
44
|
private xMail;
|
|
45
|
+
private xPushNotification;
|
|
38
46
|
private xCacheData;
|
|
39
47
|
private facebookService;
|
|
40
48
|
private genericService;
|
|
41
49
|
private appleService;
|
|
42
50
|
private googleService;
|
|
51
|
+
private googlePlayGameService;
|
|
52
|
+
private gameCenterService;
|
|
43
53
|
private timerService;
|
|
44
54
|
private lockService;
|
|
45
55
|
private requestConverterService;
|
|
46
56
|
private analyticsService;
|
|
47
57
|
private postEventCallbackService;
|
|
48
58
|
private preEventCallbackService;
|
|
49
|
-
private
|
|
59
|
+
private cloudScriptServiceDic;
|
|
60
|
+
private eventCallbackCloudScriptService;
|
|
61
|
+
private countryIPDetailService;
|
|
50
62
|
private gameIds;
|
|
51
63
|
private matchmakingHandler;
|
|
64
|
+
private waitingServerDetailDict;
|
|
52
65
|
constructor();
|
|
53
66
|
init(): void;
|
|
54
67
|
run(onRunSuccess?: OnRunSuccess): void;
|
|
@@ -65,22 +78,31 @@ export declare class GNServer {
|
|
|
65
78
|
createIndex(collectionName: string, index: {
|
|
66
79
|
[k: string]: any;
|
|
67
80
|
}, options?: CreateIndexesOptions): void;
|
|
68
|
-
getConfigGame(): xConfig;
|
|
81
|
+
getConfigGame(gameId: string): xConfig;
|
|
82
|
+
setConfigGame(gameId: string, config: xConfig): void;
|
|
83
|
+
setIdTypeCase(idTypeCase: number): void;
|
|
84
|
+
getIdTypeCase(): number;
|
|
69
85
|
getGNSettings(): xGNSettings;
|
|
70
86
|
getDatabase(): xDatabase;
|
|
71
87
|
getMail(): xMail;
|
|
88
|
+
getPushNotification(): xPushNotification;
|
|
72
89
|
getCacheData(): xCacheData;
|
|
73
90
|
getFacebookService(): IFacebookService;
|
|
74
91
|
getGenericService(): IGenericService;
|
|
75
92
|
getPostEventCallbackService(): IPostEventCallbackService;
|
|
76
93
|
getPreEventCallbackService(): IPreEventCallbackService;
|
|
94
|
+
getEventCallbackCloudScriptService(): IEventCallbackCloudScriptService;
|
|
95
|
+
getCountryIPDetailService(): ICountryIPDetailService;
|
|
77
96
|
getAppleService(): IAppleService;
|
|
78
97
|
getGoogleService(): IGoogleService;
|
|
98
|
+
getGooglePlayGameService(): IGooglePlayGameService;
|
|
99
|
+
getGameCenterService(): IGameCenterService;
|
|
79
100
|
getTimerService(): ITimerService;
|
|
80
101
|
getLockService(): ILockService;
|
|
81
102
|
getAnalyticsService(): IAnalyticsService;
|
|
82
103
|
getRequestConverterService(): IRequestConverterService;
|
|
83
|
-
getCloudScriptService(): ICloudScriptService;
|
|
104
|
+
getCloudScriptService(gameId: string): ICloudScriptService;
|
|
105
|
+
setCloudScriptService(gameId: string, cloudScriptService: ICloudScriptService): Map<string, ICloudScriptService>;
|
|
84
106
|
sendEventTo(userId: string, operationEvent: OperationEvent): Promise<void>;
|
|
85
107
|
sendEventToRoom(roomId: string, operationEvent: OperationEvent): Promise<void>;
|
|
86
108
|
sendEventToMoreUser(userIds: string[], operationEvent: OperationEvent): Promise<void>;
|
|
@@ -91,6 +113,10 @@ export declare class GNServer {
|
|
|
91
113
|
private handleSocketDisconnect;
|
|
92
114
|
private handleOnRequest;
|
|
93
115
|
private handleMatchmaking;
|
|
116
|
+
private handleMatchmakingForGame;
|
|
117
|
+
private requestMatchServerDetail;
|
|
118
|
+
setMatchServerDetail(gameId: string, matchId: string, serverDetail: ServerDetail, ticketIds: string[]): void;
|
|
119
|
+
setMatchServerDetailFailed(gameId: string, matchId: string, ticketIds: string[], reason: string): void;
|
|
94
120
|
getGameIds(): string[];
|
|
95
121
|
}
|
|
96
122
|
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -60,6 +60,8 @@ import { OwnerType } from "./GN-common/constant/enumType/OwnerType";
|
|
|
60
60
|
export { OwnerType };
|
|
61
61
|
import { PermissionDataItem } from "./GN-common/constant/enumType/PermissionDataItem";
|
|
62
62
|
export { PermissionDataItem };
|
|
63
|
+
import { PushPlatformType } from "./GN-common/constant/enumType/PushPlatformType";
|
|
64
|
+
export { PushPlatformType };
|
|
63
65
|
import { RequestRole } from "./GN-common/constant/enumType/RequestRole";
|
|
64
66
|
export { RequestRole };
|
|
65
67
|
import { RequestType } from "./GN-common/constant/enumType/RequestType";
|
|
@@ -102,8 +104,8 @@ import { AbstractConstructor, FieldDataType, GNObjectFieldMetadata, GNObjectMeta
|
|
|
102
104
|
export { AbstractConstructor, FieldDataType, GNObjectFieldMetadata, GNObjectMetadata };
|
|
103
105
|
import { InvalidMember } from "./GN-common/entity/InvalidMember";
|
|
104
106
|
export { InvalidMember };
|
|
105
|
-
import { SecretInfo } from "./GN-common/entity/SecretInfo";
|
|
106
|
-
export { SecretInfo };
|
|
107
|
+
import { SecretInfo, SecretPermissionItem } from "./GN-common/entity/SecretInfo";
|
|
108
|
+
export { SecretInfo, SecretPermissionItem };
|
|
107
109
|
import { TokenPayload } from "./GN-common/entity/TokenPayload";
|
|
108
110
|
export { TokenPayload };
|
|
109
111
|
import { CodeHelper } from "./GN-common/helper/CodeHelper";
|
|
@@ -170,6 +172,10 @@ import { DataObjectBase } from "./GN-library/xdatabase/lib/entity/pro/DataObject
|
|
|
170
172
|
export { DataObjectBase };
|
|
171
173
|
import { ExternalItem } from "./GN-library/xdatabase/lib/entity/pro/ExternalItem";
|
|
172
174
|
export { ExternalItem };
|
|
175
|
+
import { IPDetailItem } from "./GN-library/xdatabase/lib/entity/pro/IPDetailItem";
|
|
176
|
+
export { IPDetailItem };
|
|
177
|
+
import { PushNotificationItem } from "./GN-library/xdatabase/lib/entity/pro/PushNotificationItem";
|
|
178
|
+
export { PushNotificationItem };
|
|
173
179
|
import { FriendItem } from "./GN-library/xdatabase/lib/entity/pro/FriendItem";
|
|
174
180
|
export { FriendItem };
|
|
175
181
|
import { GamePlayer } from "./GN-library/xdatabase/lib/entity/pro/GamePlayer";
|
|
@@ -222,6 +228,8 @@ import { Debug } from "./GN-library/xdebug/lib/xDebug";
|
|
|
222
228
|
export { Debug };
|
|
223
229
|
import { xMail } from "./GN-library/xmail/lib/xMail";
|
|
224
230
|
export { xMail };
|
|
231
|
+
import { xPushNotification } from "./GN-library/xnotification/lib/xPushNotification";
|
|
232
|
+
export { xPushNotification };
|
|
225
233
|
import { xRandom } from "./GN-library/xrandom/lib/xRandom";
|
|
226
234
|
export { xRandom };
|
|
227
235
|
import { xCharacterCatalogSettings } from "./GN-library/xsettings/lib/entity/xCharacterCatalogSettings";
|
|
@@ -260,6 +268,10 @@ import { xTagSettings } from "./GN-library/xsettings/lib/entity/xTagSettings";
|
|
|
260
268
|
export { xTagSettings };
|
|
261
269
|
import { xThirtPartySettings } from "./GN-library/xsettings/lib/entity/xThirtPartySettings";
|
|
262
270
|
export { xThirtPartySettings };
|
|
271
|
+
import { xEmailSettings } from "./GN-library/xsettings/lib/entity/xEmailSettings";
|
|
272
|
+
export { xEmailSettings };
|
|
273
|
+
import { xPushNotificationSettings } from "./GN-library/xsettings/lib/entity/xPushNotificationSettings";
|
|
274
|
+
export { xPushNotificationSettings };
|
|
263
275
|
import { xGNSettings } from "./GN-library/xsettings/lib/xGNSettings";
|
|
264
276
|
export { xGNSettings };
|
|
265
277
|
import { AntiDdosMiddleware } from "./GN-startup/middleware/AntiDdosMiddleware";
|
|
@@ -268,8 +280,6 @@ import { ApiMiddleware } from "./GN-startup/middleware/ApiMiddleware";
|
|
|
268
280
|
export { ApiMiddleware };
|
|
269
281
|
import { UploadFileMiddleware } from "./GN-startup/middleware/UploadFileMiddleware";
|
|
270
282
|
export { UploadFileMiddleware };
|
|
271
|
-
import { AdminAppHandler } from "./GN-startup/routes/AdminAppHandler";
|
|
272
|
-
export { AdminAppHandler };
|
|
273
283
|
import { HttpAppHandler } from "./GN-startup/routes/HttpAppHandler";
|
|
274
284
|
export { HttpAppHandler };
|
|
275
285
|
import { SocketAppHandler } from "./GN-startup/routes/SocketAppHandler";
|
|
@@ -286,8 +296,6 @@ import { HttpAppSettings } from "./GN-startup/settings/HttpAppSettings";
|
|
|
286
296
|
export { HttpAppSettings };
|
|
287
297
|
import { LogSettings } from "./GN-startup/settings/LogSettings";
|
|
288
298
|
export { LogSettings };
|
|
289
|
-
import { MailSettings } from "./GN-startup/settings/MailSettings";
|
|
290
|
-
export { MailSettings };
|
|
291
299
|
import { OtherSettings } from "./GN-startup/settings/OtherSettings";
|
|
292
300
|
export { OtherSettings };
|
|
293
301
|
import { SocketAppSettings } from "./GN-startup/settings/SocketAppSettings";
|
|
@@ -306,3 +314,133 @@ import { SocketApp } from "./GN-startup/SocketApp";
|
|
|
306
314
|
export { SocketApp };
|
|
307
315
|
import { GNServer } from "./GNServer";
|
|
308
316
|
export { GNServer };
|
|
317
|
+
import { InfoRequestParam as authenticate_InfoRequestParam } from "./GN-app-api/handler/controller/handler/authenticate/model/InfoRequestParam";
|
|
318
|
+
export { authenticate_InfoRequestParam };
|
|
319
|
+
import { InfoRequestParam as characterPlayer_InfoRequestParam } from "./GN-app-api/handler/controller/handler/characterPlayer/model/InfoRequestParam";
|
|
320
|
+
export { characterPlayer_InfoRequestParam };
|
|
321
|
+
import { InfoRequestParam as gamePlayer_InfoRequestParam } from "./GN-app-api/handler/controller/handler/gamePlayer/model/InfoRequestParam";
|
|
322
|
+
export { gamePlayer_InfoRequestParam };
|
|
323
|
+
import { InfoRequestParam as group_InfoRequestParam } from "./GN-app-api/handler/controller/handler/group/model/InfoRequestParam";
|
|
324
|
+
export { group_InfoRequestParam };
|
|
325
|
+
import { InfoRequestParam as inventory_InfoRequestParam } from "./GN-app-api/handler/controller/handler/inventory/model/InfoRequestParam";
|
|
326
|
+
export { inventory_InfoRequestParam };
|
|
327
|
+
import { InfoRequestParam as masterPlayer_InfoRequestParam } from "./GN-app-api/handler/controller/handler/masterPlayer/model/InfoRequestParam";
|
|
328
|
+
export { masterPlayer_InfoRequestParam };
|
|
329
|
+
import { InfoRequestParam as storeInventory_InfoRequestParam } from "./GN-app-api/handler/controller/handler/storeInventory/model/InfoRequestParam";
|
|
330
|
+
export { storeInventory_InfoRequestParam };
|
|
331
|
+
import { ContentDataParam } from "./GN-app-api/handler/controller/handler/content/model/ContentDataParam";
|
|
332
|
+
export { ContentDataParam };
|
|
333
|
+
import { CustomDataParam } from "./GN-app-api/handler/controller/handler/characterPlayer/model/CustomDataParam";
|
|
334
|
+
export { CustomDataParam };
|
|
335
|
+
import { PlayerCurrencyParam } from "./GN-app-api/handler/controller/handler/characterPlayer/model/PlayerCurrencyParam";
|
|
336
|
+
export { PlayerCurrencyParam };
|
|
337
|
+
import { PlayerDataParam } from "./GN-app-api/handler/controller/handler/characterPlayer/model/PlayerDataParam";
|
|
338
|
+
export { PlayerDataParam };
|
|
339
|
+
import { PlayerStatisticsParam } from "./GN-app-api/handler/controller/handler/characterPlayer/model/PlayerStatisticsParam";
|
|
340
|
+
export { PlayerStatisticsParam };
|
|
341
|
+
import { GroupCurrencyParam } from "./GN-app-api/handler/controller/handler/group/model/GroupCurrencyParam";
|
|
342
|
+
export { GroupCurrencyParam };
|
|
343
|
+
import { GroupDataParam } from "./GN-app-api/handler/controller/handler/group/model/GroupDataParam";
|
|
344
|
+
export { GroupDataParam };
|
|
345
|
+
import { GroupMemberParam } from "./GN-app-api/handler/controller/handler/group/model/GroupMemberParam";
|
|
346
|
+
export { GroupMemberParam };
|
|
347
|
+
import { GroupMessageItem } from "./GN-app-api/handler/controller/handler/group/model/GroupMessageItem";
|
|
348
|
+
export { GroupMessageItem };
|
|
349
|
+
import { GroupStatisticsParam } from "./GN-app-api/handler/controller/handler/group/model/GroupStatisticsParam";
|
|
350
|
+
export { GroupStatisticsParam };
|
|
351
|
+
import { ItemDataParam } from "./GN-app-api/handler/controller/handler/inventory/model/ItemDataParam";
|
|
352
|
+
export { ItemDataParam };
|
|
353
|
+
import { ItemStatisticsParam } from "./GN-app-api/handler/controller/handler/inventory/model/ItemStatisticsParam";
|
|
354
|
+
export { ItemStatisticsParam };
|
|
355
|
+
import { AvatarParam } from "./GN-app-api/handler/controller/handler/storeInventory/model/AvatarParam";
|
|
356
|
+
export { AvatarParam };
|
|
357
|
+
import { CurrencyParam } from "./GN-app-api/handler/controller/handler/storeInventory/model/CurrencyParam";
|
|
358
|
+
export { CurrencyParam };
|
|
359
|
+
import { InAppPurchaseParam } from "./GN-app-api/handler/controller/handler/storeInventory/model/InAppPurchaseParam";
|
|
360
|
+
export { InAppPurchaseParam };
|
|
361
|
+
import { StoreDataParam } from "./GN-app-api/handler/controller/handler/storeInventory/model/StoreDataParam";
|
|
362
|
+
export { StoreDataParam };
|
|
363
|
+
import { StoreItemParam } from "./GN-app-api/handler/controller/handler/storeInventory/model/StoreItemParam";
|
|
364
|
+
export { StoreItemParam };
|
|
365
|
+
import { TagParam } from "./GN-app-api/handler/controller/handler/storeInventory/model/TagParam";
|
|
366
|
+
export { TagParam };
|
|
367
|
+
import { AuthenticatePermissionRulesParam } from "./GN-app-api/handler/controller/handler/dashboard/model/AuthenticatePermissionRulesParam";
|
|
368
|
+
export { AuthenticatePermissionRulesParam };
|
|
369
|
+
import { CharacterCatalogSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/CharacterCatalogSettingsParam";
|
|
370
|
+
export { CharacterCatalogSettingsParam };
|
|
371
|
+
import { CharacterPlayerPermissionRulesParam } from "./GN-app-api/handler/controller/handler/dashboard/model/CharacterPlayerPermissionRulesParam";
|
|
372
|
+
export { CharacterPlayerPermissionRulesParam };
|
|
373
|
+
import { CharacterPlayerSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/CharacterPlayerSettingsParam";
|
|
374
|
+
export { CharacterPlayerSettingsParam };
|
|
375
|
+
import { CloudScriptPermissionRulesParam } from "./GN-app-api/handler/controller/handler/dashboard/model/CloudScriptPermissionRulesParam";
|
|
376
|
+
export { CloudScriptPermissionRulesParam };
|
|
377
|
+
import { ContentPermissionRulesParam } from "./GN-app-api/handler/controller/handler/dashboard/model/ContentPermissionRulesParam";
|
|
378
|
+
export { ContentPermissionRulesParam };
|
|
379
|
+
import { CurrencySettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/CurrencySettingsParam";
|
|
380
|
+
export { CurrencySettingsParam };
|
|
381
|
+
import { DataSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/DataSettingsParam";
|
|
382
|
+
export { DataSettingsParam };
|
|
383
|
+
import { FriendCatalogSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/FriendCatalogSettingsParam";
|
|
384
|
+
export { FriendCatalogSettingsParam };
|
|
385
|
+
import { GamePlayerPermissionRulesParam } from "./GN-app-api/handler/controller/handler/dashboard/model/GamePlayerPermissionRulesParam";
|
|
386
|
+
export { GamePlayerPermissionRulesParam };
|
|
387
|
+
import { GamePlayerSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/GamePlayerSettingsParam";
|
|
388
|
+
export { GamePlayerSettingsParam };
|
|
389
|
+
import { GameSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/GameSettingsParam";
|
|
390
|
+
export { GameSettingsParam };
|
|
391
|
+
import { GenericServiceSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/GenericServiceSettingsParam";
|
|
392
|
+
export { GenericServiceSettingsParam };
|
|
393
|
+
import { GroupCatalogSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/GroupCatalogSettingsParam";
|
|
394
|
+
export { GroupCatalogSettingsParam };
|
|
395
|
+
import { GroupPermissionRulesParam } from "./GN-app-api/handler/controller/handler/dashboard/model/GroupPermissionRulesParam";
|
|
396
|
+
export { GroupPermissionRulesParam };
|
|
397
|
+
import { GroupSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/GroupSettingsParam";
|
|
398
|
+
export { GroupSettingsParam };
|
|
399
|
+
import { InventoryPermissionRulesParam } from "./GN-app-api/handler/controller/handler/dashboard/model/InventoryPermissionRulesParam";
|
|
400
|
+
export { InventoryPermissionRulesParam };
|
|
401
|
+
import { InventorySettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/InventorySettingsParam";
|
|
402
|
+
export { InventorySettingsParam };
|
|
403
|
+
import { ItemCatalogSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/ItemCatalogSettingsParam";
|
|
404
|
+
export { ItemCatalogSettingsParam };
|
|
405
|
+
import { ItemClassSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/ItemClassSettingsParam";
|
|
406
|
+
export { ItemClassSettingsParam };
|
|
407
|
+
import { MasterAdminPermissionRulesParam } from "./GN-app-api/handler/controller/handler/dashboard/model/MasterAdminPermissionRulesParam";
|
|
408
|
+
export { MasterAdminPermissionRulesParam };
|
|
409
|
+
import { MasterPlayerPermissionRulesParam } from "./GN-app-api/handler/controller/handler/dashboard/model/MasterPlayerPermissionRulesParam";
|
|
410
|
+
export { MasterPlayerPermissionRulesParam };
|
|
411
|
+
import { MasterPlayerSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/MasterPlayerSettingsParam";
|
|
412
|
+
export { MasterPlayerSettingsParam };
|
|
413
|
+
import { MatchmakingQueueSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/MatchmakingQueueSettingsParam";
|
|
414
|
+
export { MatchmakingQueueSettingsParam };
|
|
415
|
+
import { MultiplayerPermissionRulesParam } from "./GN-app-api/handler/controller/handler/dashboard/model/MultiplayerPermissionRulesParam";
|
|
416
|
+
export { MultiplayerPermissionRulesParam };
|
|
417
|
+
import { PermissionParam } from "./GN-app-api/handler/controller/handler/dashboard/model/PermissionParam";
|
|
418
|
+
export { PermissionParam };
|
|
419
|
+
import { PermissionRulesParam } from "./GN-app-api/handler/controller/handler/dashboard/model/PermissionRulesParam";
|
|
420
|
+
export { PermissionRulesParam };
|
|
421
|
+
import { StatisticsSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/StatisticsSettingsParam";
|
|
422
|
+
export { StatisticsSettingsParam };
|
|
423
|
+
import { StoreInventoryPermissionRulesParam } from "./GN-app-api/handler/controller/handler/dashboard/model/StoreInventoryPermissionRulesParam";
|
|
424
|
+
export { StoreInventoryPermissionRulesParam };
|
|
425
|
+
import { TagSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/TagSettingsParam";
|
|
426
|
+
export { TagSettingsParam };
|
|
427
|
+
import { ThirtPartyAppleSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyAppleSettingsParam";
|
|
428
|
+
export { ThirtPartyAppleSettingsParam };
|
|
429
|
+
import { ThirtPartyFacebookSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyFacebookSettingsParam";
|
|
430
|
+
export { ThirtPartyFacebookSettingsParam };
|
|
431
|
+
import { ThirtPartyGameCenterSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyGameCenterSettingsParam";
|
|
432
|
+
export { ThirtPartyGameCenterSettingsParam };
|
|
433
|
+
import { ThirtPartyGooglePlayGameSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyGooglePlayGameSettingsParam";
|
|
434
|
+
export { ThirtPartyGooglePlayGameSettingsParam };
|
|
435
|
+
import { ThirtPartyParam } from "./GN-app-api/handler/controller/handler/dashboard/model/ThirtPartyParam";
|
|
436
|
+
export { ThirtPartyParam };
|
|
437
|
+
import { EmailSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/EmailSettingsParam";
|
|
438
|
+
export { EmailSettingsParam };
|
|
439
|
+
import { PushNotificationSettingsParam } from "./GN-app-api/handler/controller/handler/dashboard/model/PushNotificationSettingsParam";
|
|
440
|
+
export { PushNotificationSettingsParam };
|
|
441
|
+
import { ServerGameDataRequestParams } from "./GN-app-api/handler/controller/handler/dashboard/GetServerGameDataRequestHandler";
|
|
442
|
+
export { ServerGameDataRequestParams };
|
|
443
|
+
import { AnalyticsRequestParams } from "./GN-app-api/handler/controller/handler/dashboard/GetAnalyticsRequestHandler";
|
|
444
|
+
export { AnalyticsRequestParams };
|
|
445
|
+
import { MatchmakingTicketCanMatch } from "./GN-app-api/handler/controller/handler/multiplayer/MatchmakingHandler";
|
|
446
|
+
export { MatchmakingTicketCanMatch };
|