@xmobitea/gn-server 2.1.0 → 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 -118
- 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
|
@@ -9,6 +9,8 @@ export declare class MasterPlayerPermissionRulesParam {
|
|
|
9
9
|
linkFacebook?: PermissionRulesParam;
|
|
10
10
|
linkGenericService?: PermissionRulesParam;
|
|
11
11
|
linkGoogle?: PermissionRulesParam;
|
|
12
|
+
linkGooglePlayGameService?: PermissionRulesParam;
|
|
13
|
+
linkGameCenter?: PermissionRulesParam;
|
|
12
14
|
linkiOSDeviceId?: PermissionRulesParam;
|
|
13
15
|
linkLinuxDeviceId?: PermissionRulesParam;
|
|
14
16
|
linkMacOSDeviceId?: PermissionRulesParam;
|
|
@@ -23,6 +25,8 @@ export declare class MasterPlayerPermissionRulesParam {
|
|
|
23
25
|
unlinkFacebook?: PermissionRulesParam;
|
|
24
26
|
unlinkGenericService?: PermissionRulesParam;
|
|
25
27
|
unlinkGoogle?: PermissionRulesParam;
|
|
28
|
+
unlinkGooglePlayGameService?: PermissionRulesParam;
|
|
29
|
+
unlinkGameCenter?: PermissionRulesParam;
|
|
26
30
|
unlinkiOSDeviceId?: PermissionRulesParam;
|
|
27
31
|
unlinkLinuxDeviceId?: PermissionRulesParam;
|
|
28
32
|
unlinkMacOSDeviceId?: PermissionRulesParam;
|
|
@@ -65,9 +69,21 @@ export declare class MasterPlayerPermissionRulesParam {
|
|
|
65
69
|
getPlayersWithGenericService?: PermissionRulesParam;
|
|
66
70
|
getPlayersWithSegment?: PermissionRulesParam;
|
|
67
71
|
getPlayersWithTag?: PermissionRulesParam;
|
|
72
|
+
getPlayersWithGooglePlayGameService?: PermissionRulesParam;
|
|
73
|
+
getPlayersWithGameCenter?: PermissionRulesParam;
|
|
68
74
|
getExternal?: PermissionRulesParam;
|
|
69
75
|
getPlayersWithDisplayName?: PermissionRulesParam;
|
|
70
76
|
getEmail?: PermissionRulesParam;
|
|
71
77
|
setEmail?: PermissionRulesParam;
|
|
72
78
|
getCurrencyLeaderboard?: PermissionRulesParam;
|
|
79
|
+
getLastLoginLeaderboard?: PermissionRulesParam;
|
|
80
|
+
getCreateLeaderboard?: PermissionRulesParam;
|
|
81
|
+
getStatisticsLog?: PermissionRulesParam;
|
|
82
|
+
getCurrencyLog?: PermissionRulesParam;
|
|
83
|
+
sendSocketOperationEvent?: PermissionRulesParam;
|
|
84
|
+
sendEmail?: PermissionRulesParam;
|
|
85
|
+
sendPushNotification?: PermissionRulesParam;
|
|
86
|
+
addPushNotification?: PermissionRulesParam;
|
|
87
|
+
removePushNotification?: PermissionRulesParam;
|
|
88
|
+
getPushNotification?: PermissionRulesParam;
|
|
73
89
|
}
|
|
@@ -35,10 +35,14 @@ declare class RuleParam {
|
|
|
35
35
|
max?: number;
|
|
36
36
|
advancedSettings?: AdvancedSettingsParam;
|
|
37
37
|
}
|
|
38
|
+
declare class ServerAllocationParam {
|
|
39
|
+
enable: boolean;
|
|
40
|
+
}
|
|
38
41
|
export declare class MatchmakingQueueSettingsParam {
|
|
39
42
|
queueName: string;
|
|
40
43
|
matchSize: SizeParam;
|
|
41
44
|
ticketSize: SizeParam;
|
|
45
|
+
serverAllocation: ServerAllocationParam;
|
|
42
46
|
teams?: TeamParam[];
|
|
43
47
|
rules?: RuleParam[];
|
|
44
48
|
remove?: boolean;
|
|
@@ -8,4 +8,6 @@ export declare class MultiplayerPermissionRulesParam {
|
|
|
8
8
|
getQueueStatistics?: PermissionRulesParam;
|
|
9
9
|
joinMatchmakingTicket?: PermissionRulesParam;
|
|
10
10
|
listMatchmakingTicketsForPlayer?: PermissionRulesParam;
|
|
11
|
+
getAllMatchmakingTicket?: PermissionRulesParam;
|
|
12
|
+
getAllMatch?: PermissionRulesParam;
|
|
11
13
|
}
|
|
@@ -9,4 +9,7 @@ export declare class StoreInventoryPermissionRulesParam {
|
|
|
9
9
|
validateAppleAppStoreReceipt?: PermissionRulesParam;
|
|
10
10
|
validateGooglePlayStoreReceipt?: PermissionRulesParam;
|
|
11
11
|
validateFacebookStoreReceipt?: PermissionRulesParam;
|
|
12
|
+
getCreateLeaderboard?: PermissionRulesParam;
|
|
13
|
+
presentStoreItem?: PermissionRulesParam;
|
|
14
|
+
getStoreLog?: PermissionRulesParam;
|
|
12
15
|
}
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { ThirtPartyAppleSettingsParam } from "./ThirtPartyAppleSettingsParam";
|
|
2
2
|
import { ThirtPartyFacebookSettingsParam } from "./ThirtPartyFacebookSettingsParam";
|
|
3
|
+
import { ThirtPartyGameCenterSettingsParam } from "./ThirtPartyGameCenterSettingsParam";
|
|
4
|
+
import { ThirtPartyGooglePlayGameSettingsParam } from "./ThirtPartyGooglePlayGameSettingsParam";
|
|
3
5
|
import { ThirtPartyGoogleSettingsParam } from "./ThirtPartyGoogleSettingsParam";
|
|
4
6
|
export declare class ThirtPartyParam {
|
|
5
7
|
googleSettings?: ThirtPartyGoogleSettingsParam;
|
|
6
8
|
facebookSettings?: ThirtPartyFacebookSettingsParam;
|
|
7
9
|
appleSettings?: ThirtPartyAppleSettingsParam;
|
|
10
|
+
googlePlayGameSettings?: ThirtPartyGooglePlayGameSettingsParam;
|
|
11
|
+
gameCenterSettings?: ThirtPartyGameCenterSettingsParam;
|
|
8
12
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OperationRequest } from "../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetCreateLeaderboardOperationRequest extends OperationRequest {
|
|
8
|
+
infoRequestParam: InfoRequestParam;
|
|
9
|
+
skip?: number;
|
|
10
|
+
limit?: number;
|
|
11
|
+
loadFromCache?: boolean;
|
|
12
|
+
isValidRequest(): boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class GetCreateLeaderboardRequestHandler extends GamePlayerBaseRequestHandler {
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof GetCreateLeaderboardOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
private execute;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetCurrencyLogRequestHandler.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OperationRequest } from "../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { RequestHandler } from "../base/RequestHandler";
|
|
6
|
+
declare class GetCurrencyLogOperationRequest extends OperationRequest {
|
|
7
|
+
keys?: Array<string>;
|
|
8
|
+
userId?: string;
|
|
9
|
+
limit?: number;
|
|
10
|
+
token?: string;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class GetCurrencyLogRequestHandler extends RequestHandler {
|
|
14
|
+
protected init(): void;
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof GetCurrencyLogOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
private execute;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
|
@@ -20,6 +20,7 @@ export declare class GetFriendStatisticsLeaderboardRequestHandler extends GamePl
|
|
|
20
20
|
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
21
21
|
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
22
22
|
private execute;
|
|
23
|
-
static quickSort(key: string, gamePlayers: GamePlayer[]): GamePlayer[];
|
|
23
|
+
static quickSort(key: string, gamePlayers: GamePlayer[], initialValue: number): GamePlayer[];
|
|
24
|
+
static quickSortAsc(key: string, gamePlayers: GamePlayer[], initialValue: number): GamePlayer[];
|
|
24
25
|
}
|
|
25
26
|
export {};
|
|
@@ -10,6 +10,7 @@ declare class GetStatisticsLeaderboardOperationRequest extends OperationRequest
|
|
|
10
10
|
skip?: number;
|
|
11
11
|
limit?: number;
|
|
12
12
|
loadFromCache?: boolean;
|
|
13
|
+
version?: string;
|
|
13
14
|
isValidRequest(): boolean;
|
|
14
15
|
}
|
|
15
16
|
export declare class GetStatisticsLeaderboardRequestHandler extends GamePlayerBaseRequestHandler {
|
package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetStatisticsLogRequestHandler.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OperationRequest } from "../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { RequestHandler } from "../base/RequestHandler";
|
|
6
|
+
declare class GetStatisticsLogOperationRequest extends OperationRequest {
|
|
7
|
+
keys?: Array<string>;
|
|
8
|
+
userId?: string;
|
|
9
|
+
limit?: number;
|
|
10
|
+
token?: string;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class GetStatisticsLogRequestHandler extends RequestHandler {
|
|
14
|
+
protected init(): void;
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof GetStatisticsLogOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
private execute;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerCurrencyRequestHandler.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
|
7
7
|
declare class SetPlayerCurrenciesOperationRequest extends OperationRequest {
|
|
8
8
|
userId?: string;
|
|
9
9
|
playerCurrencyParams: Array<PlayerCurrencyParam>;
|
|
10
|
+
log?: string;
|
|
10
11
|
isValidRequest(): boolean;
|
|
11
12
|
}
|
|
12
13
|
export declare class SetPlayerCurrencyRequestHandler extends GamePlayerBaseRequestHandler {
|
package/dist/GN-app-api/handler/controller/handler/gamePlayer/SetPlayerStatisticsRequestHandler.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { GamePlayerBaseRequestHandler } from "./GamePlayerBaseRequestHandler";
|
|
|
7
7
|
declare class SetPlayerStatisticsOperationRequest extends OperationRequest {
|
|
8
8
|
userId?: string;
|
|
9
9
|
playerStatisticsParams: Array<PlayerStatisticsParam>;
|
|
10
|
+
log?: string;
|
|
10
11
|
isValidRequest(): boolean;
|
|
11
12
|
}
|
|
12
13
|
export declare class SetPlayerStatisticsRequestHandler extends GamePlayerBaseRequestHandler {
|
package/dist/GN-app-api/handler/controller/handler/group/GetCreateLeaderboardRequestHandler.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OperationRequest } from "../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { GroupBaseRequestHandler } from "./GroupBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetCreateLeaderboardOperationRequest extends OperationRequest {
|
|
8
|
+
infoRequestParam: InfoRequestParam;
|
|
9
|
+
skip?: number;
|
|
10
|
+
limit?: number;
|
|
11
|
+
loadFromCache?: boolean;
|
|
12
|
+
isValidRequest(): boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class GetCreateLeaderboardRequestHandler extends GroupBaseRequestHandler {
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof GetCreateLeaderboardOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
private execute;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OperationRequest } from "../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { RequestHandler } from "../base/RequestHandler";
|
|
6
|
+
declare class GetCurrencyLogOperationRequest extends OperationRequest {
|
|
7
|
+
keys?: Array<string>;
|
|
8
|
+
groupId?: string;
|
|
9
|
+
limit?: number;
|
|
10
|
+
token?: string;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class GetCurrencyLogRequestHandler extends RequestHandler {
|
|
14
|
+
protected init(): void;
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof GetCurrencyLogOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
private execute;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/group/GetStatisticsLeaderboardRequestHandler.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ declare class GetStatisticsLeaderboardOperationRequest extends OperationRequest
|
|
|
10
10
|
skip?: number;
|
|
11
11
|
limit?: number;
|
|
12
12
|
loadFromCache?: boolean;
|
|
13
|
+
version?: string;
|
|
13
14
|
isValidRequest(): boolean;
|
|
14
15
|
}
|
|
15
16
|
export declare class GetStatisticsLeaderboardRequestHandler extends GroupBaseRequestHandler {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OperationRequest } from "../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { RequestHandler } from "../base/RequestHandler";
|
|
6
|
+
declare class GetStatisticsLogOperationRequest extends OperationRequest {
|
|
7
|
+
keys?: Array<string>;
|
|
8
|
+
groupId?: string;
|
|
9
|
+
limit?: number;
|
|
10
|
+
token?: string;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class GetStatisticsLogRequestHandler extends RequestHandler {
|
|
14
|
+
protected init(): void;
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof GetStatisticsLogOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
private execute;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
|
@@ -6,7 +6,7 @@ import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
|
6
6
|
import { GroupMessageItem } from "./model/GroupMessageItem";
|
|
7
7
|
import { GroupPermissionRules, SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
8
8
|
export declare abstract class GroupBaseRequestHandler extends RequestHandler {
|
|
9
|
-
private
|
|
9
|
+
private static readonly EXPIRED_CACHE;
|
|
10
10
|
private isGetAll;
|
|
11
11
|
protected convertToGroupFindOptions(infoRequestParam: InfoRequestParam): GroupFindOptions;
|
|
12
12
|
protected isAllowMethod(userId: string, groupId: string, gameId: string, permissionRules: GroupPermissionRules): Promise<boolean>;
|
package/dist/GN-app-api/handler/controller/handler/group/SetGroupCurrencyRequestHandler.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { GroupBaseRequestHandler } from "./GroupBaseRequestHandler";
|
|
|
7
7
|
declare class SetGroupCurrenciesOperationRequest extends OperationRequest {
|
|
8
8
|
groupId: string;
|
|
9
9
|
groupCurrencyParams: Array<GroupCurrencyParam>;
|
|
10
|
+
log?: string;
|
|
10
11
|
isValidRequest(): boolean;
|
|
11
12
|
}
|
|
12
13
|
export declare class SetGroupCurrencyRequestHandler extends GroupBaseRequestHandler {
|
package/dist/GN-app-api/handler/controller/handler/group/SetGroupStatisticsRequestHandler.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { GroupBaseRequestHandler } from "./GroupBaseRequestHandler";
|
|
|
7
7
|
declare class SetGroupStatisticsOperationRequest extends OperationRequest {
|
|
8
8
|
groupId: string;
|
|
9
9
|
groupStatisticsParams: Array<GroupStatisticsParam>;
|
|
10
|
+
log?: string;
|
|
10
11
|
isValidRequest(): boolean;
|
|
11
12
|
}
|
|
12
13
|
export declare class SetGroupStatisticsRequestHandler extends GroupBaseRequestHandler {
|
package/dist/GN-app-api/handler/controller/handler/inventory/GetCreateLeaderboardRequestHandler.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OperationRequest } from "../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { ItemBaseRequestHandler } from "./ItemBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetCreateLeaderboardOperationRequest extends OperationRequest {
|
|
8
|
+
infoRequestParam: InfoRequestParam;
|
|
9
|
+
skip?: number;
|
|
10
|
+
limit?: number;
|
|
11
|
+
loadFromCache?: boolean;
|
|
12
|
+
isValidRequest(): boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class GetCreateLeaderboardRequestHandler extends ItemBaseRequestHandler {
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof GetCreateLeaderboardOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
private execute;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
|
@@ -10,6 +10,7 @@ declare class GetStatisticsLeaderboardOperationRequest extends OperationRequest
|
|
|
10
10
|
skip?: number;
|
|
11
11
|
limit?: number;
|
|
12
12
|
loadFromCache?: boolean;
|
|
13
|
+
version?: string;
|
|
13
14
|
isValidRequest(): boolean;
|
|
14
15
|
}
|
|
15
16
|
export declare class GetStatisticsLeaderboardRequestHandler extends ItemBaseRequestHandler {
|
package/dist/GN-app-api/handler/controller/handler/inventory/GetStatisticsLogRequestHandler.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OperationRequest } from "../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { RequestHandler } from "../base/RequestHandler";
|
|
6
|
+
declare class GetStatisticsLogOperationRequest extends OperationRequest {
|
|
7
|
+
keys?: Array<string>;
|
|
8
|
+
itemId?: string;
|
|
9
|
+
limit?: number;
|
|
10
|
+
token?: string;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class GetStatisticsLogRequestHandler extends RequestHandler {
|
|
14
|
+
protected init(): void;
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof GetStatisticsLogOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
private execute;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/inventory/SetItemStatisticsRequestHandler.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { ItemBaseRequestHandler } from "./ItemBaseRequestHandler";
|
|
|
7
7
|
declare class SetItemStatisticsOperationRequest extends OperationRequest {
|
|
8
8
|
itemId: string;
|
|
9
9
|
inventoryStatisticsParams: Array<ItemStatisticsParam>;
|
|
10
|
+
log?: string;
|
|
10
11
|
isValidRequest(): boolean;
|
|
11
12
|
}
|
|
12
13
|
export declare class SetItemStatisticsRequestHandler extends ItemBaseRequestHandler {
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { MasterPlayerBaseRequestHandler } from "./MasterPlayerBaseRequestHandler";
|
|
6
|
+
declare class AddPushNotificationOperationRequest extends OperationRequest {
|
|
7
|
+
userId?: string;
|
|
8
|
+
token: string;
|
|
9
|
+
platformType: number;
|
|
10
|
+
isValidRequest(): boolean;
|
|
11
|
+
}
|
|
12
|
+
export declare class AddPushNotificationRequestHandler extends MasterPlayerBaseRequestHandler {
|
|
13
|
+
getCode(): number;
|
|
14
|
+
getCommonOperationRequest(): typeof AddPushNotificationOperationRequest;
|
|
15
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
private execute;
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OperationRequest } from "../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { MasterPlayerBaseRequestHandler } from "./MasterPlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetCreateLeaderboardOperationRequest extends OperationRequest {
|
|
8
|
+
infoRequestParam: InfoRequestParam;
|
|
9
|
+
skip?: number;
|
|
10
|
+
limit?: number;
|
|
11
|
+
loadFromCache?: boolean;
|
|
12
|
+
isValidRequest(): boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class GetCreateLeaderboardRequestHandler extends MasterPlayerBaseRequestHandler {
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof GetCreateLeaderboardOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
private execute;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetCurrencyLogRequestHandler.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OperationRequest } from "../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { RequestHandler } from "../base/RequestHandler";
|
|
6
|
+
declare class GetCurrencyLogOperationRequest extends OperationRequest {
|
|
7
|
+
keys?: Array<string>;
|
|
8
|
+
userId?: string;
|
|
9
|
+
limit?: number;
|
|
10
|
+
token?: string;
|
|
11
|
+
isValidRequest(): boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare class GetCurrencyLogRequestHandler extends RequestHandler {
|
|
14
|
+
protected init(): void;
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof GetCurrencyLogOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
private execute;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OperationRequest } from "../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { MasterPlayerBaseRequestHandler } from "./MasterPlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetLastLoginLeaderboardOperationRequest extends OperationRequest {
|
|
8
|
+
infoRequestParam: InfoRequestParam;
|
|
9
|
+
skip?: number;
|
|
10
|
+
limit?: number;
|
|
11
|
+
loadFromCache?: boolean;
|
|
12
|
+
isValidRequest(): boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class GetLastLoginLeaderboardRequestHandler extends MasterPlayerBaseRequestHandler {
|
|
15
|
+
getCode(): number;
|
|
16
|
+
getCommonOperationRequest(): typeof GetLastLoginLeaderboardOperationRequest;
|
|
17
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
19
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
20
|
+
private execute;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OperationRequest } from "../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { MasterPlayerBaseRequestHandler } from "./MasterPlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetPlayersWithGameCenterOperationRequest extends OperationRequest {
|
|
8
|
+
playerIds: Array<string>;
|
|
9
|
+
infoRequestParam: InfoRequestParam;
|
|
10
|
+
isValidRequest(): boolean;
|
|
11
|
+
}
|
|
12
|
+
export declare class GetPlayersWithGameCenterRequestHandler extends MasterPlayerBaseRequestHandler {
|
|
13
|
+
getCode(): number;
|
|
14
|
+
getCommonOperationRequest(): typeof GetPlayersWithGameCenterOperationRequest;
|
|
15
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
private execute;
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OperationRequest } from "../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { MasterPlayerBaseRequestHandler } from "./MasterPlayerBaseRequestHandler";
|
|
6
|
+
import { InfoRequestParam } from "./model/InfoRequestParam";
|
|
7
|
+
declare class GetPlayersWithGooglePlayGameServiceOperationRequest extends OperationRequest {
|
|
8
|
+
playerIds: Array<string>;
|
|
9
|
+
infoRequestParam: InfoRequestParam;
|
|
10
|
+
isValidRequest(): boolean;
|
|
11
|
+
}
|
|
12
|
+
export declare class GetPlayersWithGooglePlayGameServiceRequestHandler extends MasterPlayerBaseRequestHandler {
|
|
13
|
+
getCode(): number;
|
|
14
|
+
getCommonOperationRequest(): typeof GetPlayersWithGooglePlayGameServiceOperationRequest;
|
|
15
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
17
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
18
|
+
private execute;
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OperationRequest } from "./../../../../../GN-common/entity/operationRequest/OperationRequest";
|
|
2
|
+
import { OperationResponse } from "./../../../../../GN-common/entity/operationResponse/OperationResponse";
|
|
3
|
+
import { AuthInfo } from "./../../../../../GN-common/entity/AuthInfo";
|
|
4
|
+
import { SecretInfo } from "./../../../../../GN-common/entity/SecretInfo";
|
|
5
|
+
import { MasterPlayerBaseRequestHandler } from "./MasterPlayerBaseRequestHandler";
|
|
6
|
+
declare class GetPushNotificationOperationRequest extends OperationRequest {
|
|
7
|
+
userId?: string;
|
|
8
|
+
isValidRequest(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetPushNotificationRequestHandler extends MasterPlayerBaseRequestHandler {
|
|
11
|
+
getCode(): number;
|
|
12
|
+
getCommonOperationRequest(): typeof GetPushNotificationOperationRequest;
|
|
13
|
+
handle(authInfo: AuthInfo, secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
14
|
+
serverHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
15
|
+
adminHandle(secretInfo: SecretInfo, operationRequest: OperationRequest): Promise<OperationResponse>;
|
|
16
|
+
private execute;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
|
@@ -10,6 +10,7 @@ declare class GetStatisticsLeaderboardOperationRequest extends OperationRequest
|
|
|
10
10
|
skip?: number;
|
|
11
11
|
limit?: number;
|
|
12
12
|
loadFromCache?: boolean;
|
|
13
|
+
version?: string;
|
|
13
14
|
isValidRequest(): boolean;
|
|
14
15
|
}
|
|
15
16
|
export declare class GetStatisticsLeaderboardRequestHandler extends MasterPlayerBaseRequestHandler {
|