@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
|
@@ -0,0 +1,1818 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "system",
|
|
4
|
+
"version": "FIRSTVER",
|
|
5
|
+
"fullScript": "// first full script",
|
|
6
|
+
"tsLastUpdate": 1736498427663,
|
|
7
|
+
"childScripts": [
|
|
8
|
+
{
|
|
9
|
+
"eventName": "system_OnEveryMinute",
|
|
10
|
+
"script": "\nsystemHandlers.system_OnEveryMinute = async (log: (log: any) => void) => {\n\n}\n",
|
|
11
|
+
"hasEdit": false
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"eventName": "system_OnEveryHour",
|
|
15
|
+
"script": "\nsystemHandlers.system_OnEveryHour = async (log: (log: any) => void) => {\n\n}\n",
|
|
16
|
+
"hasEdit": false
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"eventName": "system_OnEveryDay",
|
|
20
|
+
"script": "\nsystemHandlers.system_OnEveryDay = async (log: (log: any) => void) => {\n\n}\n",
|
|
21
|
+
"hasEdit": false
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"eventName": "system_RequestServerDetail",
|
|
25
|
+
"script": "\nsystemMatchmakingHandlers.system_RequestServerDetail = async (gameId: string, matchmakingTicketCanMatch: MatchmakingTicketCanMatch, log: (log: any) => void): Promise<{ success: boolean }> => {\n\t//call matchmaking.confirmServerDetail(gameId, matchmakingTicketCanMatch, { ipV4Address: '127.0.0.1', ports: [{ name: 'GamePort', publicPort: 2202, privatePort: 3000, protocol: 1 }] }); // after setup success a dedicated server;\n\treturn { success: false };\n}\n",
|
|
26
|
+
"hasEdit": false
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"type": "authenticate",
|
|
32
|
+
"version": "FIRSTVER",
|
|
33
|
+
"fullScript": "// first full script",
|
|
34
|
+
"tsLastUpdate": 1736498427663,
|
|
35
|
+
"childScripts": [
|
|
36
|
+
{
|
|
37
|
+
"eventName": "authenticate_LoginByAccount",
|
|
38
|
+
"script": "\npreHandlers.authenticate_LoginByAccount = async (request: { username: string, password: string, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string, }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByAccount = async (request: { username: string, password: string, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string, }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
39
|
+
"hasEdit": false
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"eventName": "authenticate_LoginByAndroidDeviceId",
|
|
43
|
+
"script": "\npreHandlers.authenticate_LoginByAndroidDeviceId = async (request: { androidDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByAndroidDeviceId = async (request: { androidDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
44
|
+
"hasEdit": false
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"eventName": "authenticate_LoginByApple",
|
|
48
|
+
"script": "\npreHandlers.authenticate_LoginByApple = async (request: { token: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByApple = async (request: { token: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
49
|
+
"hasEdit": false
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"eventName": "authenticate_LoginByCustomDeviceId",
|
|
53
|
+
"script": "\npreHandlers.authenticate_LoginByCustomDeviceId = async (request: { customDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByCustomDeviceId = async (request: { customDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
54
|
+
"hasEdit": false
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"eventName": "authenticate_LoginByCustomId",
|
|
58
|
+
"script": "\npreHandlers.authenticate_LoginByCustomId = async (request: { customId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByCustomId = async (request: { customId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
59
|
+
"hasEdit": false
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"eventName": "authenticate_LoginByEditorDeviceId",
|
|
63
|
+
"script": "\npreHandlers.authenticate_LoginByEditorDeviceId = async (request: { editorDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByEditorDeviceId = async (request: { editorDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
64
|
+
"hasEdit": false
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"eventName": "authenticate_LoginByFacebook",
|
|
68
|
+
"script": "\npreHandlers.authenticate_LoginByFacebook = async (request: { token: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByFacebook = async (request: { token: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
69
|
+
"hasEdit": false
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"eventName": "authenticate_LoginByGameCenter",
|
|
73
|
+
"script": "\npreHandlers.authenticate_LoginByGameCenter = async (request: { playerId: string, name: string, publicKeyUrl: string, signature: string, salt: string, timestamp: number, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByGameCenter = async (request: { playerId: string, name: string, publicKeyUrl: string, signature: string, salt: string, timestamp: number, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
74
|
+
"hasEdit": false
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"eventName": "authenticate_LoginByGenericService",
|
|
78
|
+
"script": "\npreHandlers.authenticate_LoginByGenericService = async (request: { serviceName: string, serviceData: { [k: string]: any }, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByGenericService = async (request: { serviceName: string, serviceData: { [k: string]: any }, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
79
|
+
"hasEdit": false
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"eventName": "authenticate_LoginByGooglePlayGameService",
|
|
83
|
+
"script": "\npreHandlers.authenticate_LoginByGooglePlayGameService = async (request: { token: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByGooglePlayGameService = async (request: { token: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
84
|
+
"hasEdit": false
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"eventName": "authenticate_LoginByGoogle",
|
|
88
|
+
"script": "\npreHandlers.authenticate_LoginByGoogle = async (request: { token: string, googleLoginType: GoogleLoginType, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByGoogle = async (request: { token: string, googleLoginType: GoogleLoginType, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
89
|
+
"hasEdit": false
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"eventName": "authenticate_LoginByiOSDeviceId",
|
|
93
|
+
"script": "\npreHandlers.authenticate_LoginByiOSDeviceId = async (request: { iOSDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByiOSDeviceId = async (request: { iOSDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
94
|
+
"hasEdit": false
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"eventName": "authenticate_LoginByLinuxDeviceId",
|
|
98
|
+
"script": "\npreHandlers.authenticate_LoginByLinuxDeviceId = async (request: { linuxDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByLinuxDeviceId = async (request: { linuxDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
99
|
+
"hasEdit": false
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"eventName": "authenticate_LoginByMacOSDeviceId",
|
|
103
|
+
"script": "\npreHandlers.authenticate_LoginByMacOSDeviceId = async (request: { macOSDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByMacOSDeviceId = async (request: { macOSDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
104
|
+
"hasEdit": false
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"eventName": "authenticate_LoginByWindowsDeviceId",
|
|
108
|
+
"script": "\npreHandlers.authenticate_LoginByWindowsDeviceId = async (request: { windowsDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByWindowsDeviceId = async (request: { windowsDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
109
|
+
"hasEdit": false
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"eventName": "authenticate_LoginByWindowsPhoneDeviceId",
|
|
113
|
+
"script": "\npreHandlers.authenticate_LoginByWindowsPhoneDeviceId = async (request: { windowsPhoneDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_LoginByWindowsPhoneDeviceId = async (request: { windowsPhoneDeviceId: string, createPlayerIfNotExists: boolean, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
114
|
+
"hasEdit": false
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"eventName": "authenticate_RefreshAuthToken",
|
|
118
|
+
"script": "\npreHandlers.authenticate_RefreshAuthToken = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_RefreshAuthToken = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
119
|
+
"hasEdit": false
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"eventName": "authenticate_RegisterAccount",
|
|
123
|
+
"script": "\npreHandlers.authenticate_RegisterAccount = async (request: { username: string, password: string, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.authenticate_RegisterAccount = async (request: { username: string, password: string, infoRequestParam: authenticate_InfoRequestParam, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
124
|
+
"hasEdit": false
|
|
125
|
+
}
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"type": "characterPlayer",
|
|
130
|
+
"version": "FIRSTVER",
|
|
131
|
+
"fullScript": "// first full script",
|
|
132
|
+
"tsLastUpdate": 1736498427663,
|
|
133
|
+
"childScripts": [
|
|
134
|
+
{
|
|
135
|
+
"eventName": "characterPlayer_AddPlayerFriend",
|
|
136
|
+
"script": "\npreHandlers.characterPlayer_AddPlayerFriend = async (request: { characterId: string, friendId: string, catalogId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_AddPlayerFriend = async (request: { characterId: string, friendId: string, catalogId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
137
|
+
"hasEdit": false
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"eventName": "characterPlayer_AddSegment",
|
|
141
|
+
"script": "\npreHandlers.characterPlayer_AddSegment = async (request: { characterId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_AddSegment = async (request: { characterId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
142
|
+
"hasEdit": false
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"eventName": "characterPlayer_GetAvatar",
|
|
146
|
+
"script": "\npreHandlers.characterPlayer_GetAvatar = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetAvatar = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
147
|
+
"hasEdit": false
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"eventName": "characterPlayer_GetCatalogId",
|
|
151
|
+
"script": "\npreHandlers.characterPlayer_GetCatalogId = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetCatalogId = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
152
|
+
"hasEdit": false
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"eventName": "characterPlayer_GetCountryCode",
|
|
156
|
+
"script": "\npreHandlers.characterPlayer_GetCountryCode = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetCountryCode = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
157
|
+
"hasEdit": false
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"eventName": "characterPlayer_GetCreateLeaderboard",
|
|
161
|
+
"script": "\npreHandlers.characterPlayer_GetCreateLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetCreateLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
162
|
+
"hasEdit": false
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"eventName": "characterPlayer_GetCurrencyLeaderboard",
|
|
166
|
+
"script": "\npreHandlers.characterPlayer_GetCurrencyLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetCurrencyLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
167
|
+
"hasEdit": false
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"eventName": "characterPlayer_GetCurrencyLog",
|
|
171
|
+
"script": "\npreHandlers.characterPlayer_GetCurrencyLog = async (request: { keys: Array<string>, token: string, limit: number, characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetCurrencyLog = async (request: { keys: Array<string>, token: string, limit: number, characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
172
|
+
"hasEdit": false
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"eventName": "characterPlayer_GetCustomData",
|
|
176
|
+
"script": "\npreHandlers.characterPlayer_GetCustomData = async (request: { characterId: string, customDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetCustomData = async (request: { characterId: string, customDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
177
|
+
"hasEdit": false
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"eventName": "characterPlayer_GetDisplayName",
|
|
181
|
+
"script": "\npreHandlers.characterPlayer_GetDisplayName = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetDisplayName = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
182
|
+
"hasEdit": false
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"eventName": "characterPlayer_GetFriendStatisticsLeaderboardAroundPlayer",
|
|
186
|
+
"script": "\npreHandlers.characterPlayer_GetFriendStatisticsLeaderboardAroundPlayer = async (request: { characterId: string, key: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetFriendStatisticsLeaderboardAroundPlayer = async (request: { characterId: string, key: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
187
|
+
"hasEdit": false
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"eventName": "characterPlayer_GetFriendStatisticsLeaderboard",
|
|
191
|
+
"script": "\npreHandlers.characterPlayer_GetFriendStatisticsLeaderboard = async (request: { characterId: string, key: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetFriendStatisticsLeaderboard = async (request: { characterId: string, key: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
192
|
+
"hasEdit": false
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"eventName": "characterPlayer_GetIpAddressCreate",
|
|
196
|
+
"script": "\npreHandlers.characterPlayer_GetIpAddressCreate = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetIpAddressCreate = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
197
|
+
"hasEdit": false
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"eventName": "characterPlayer_GetOwner",
|
|
201
|
+
"script": "\npreHandlers.characterPlayer_GetOwner = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetOwner = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
202
|
+
"hasEdit": false
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"eventName": "characterPlayer_GetPlayerBan",
|
|
206
|
+
"script": "\npreHandlers.characterPlayer_GetPlayerBan = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetPlayerBan = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
207
|
+
"hasEdit": false
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"eventName": "characterPlayer_GetPlayerCurrency",
|
|
211
|
+
"script": "\npreHandlers.characterPlayer_GetPlayerCurrency = async (request: { characterId: string, playerCurrencyKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetPlayerCurrency = async (request: { characterId: string, playerCurrencyKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
212
|
+
"hasEdit": false
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"eventName": "characterPlayer_GetPlayerData",
|
|
216
|
+
"script": "\npreHandlers.characterPlayer_GetPlayerData = async (request: { characterId: string, playerDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetPlayerData = async (request: { characterId: string, playerDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
217
|
+
"hasEdit": false
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"eventName": "characterPlayer_GetPlayerFriend",
|
|
221
|
+
"script": "\npreHandlers.characterPlayer_GetPlayerFriend = async (request: { characterId: string, friendCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetPlayerFriend = async (request: { characterId: string, friendCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
222
|
+
"hasEdit": false
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"eventName": "characterPlayer_GetPlayerGroup",
|
|
226
|
+
"script": "\npreHandlers.characterPlayer_GetPlayerGroup = async (request: { characterId: string, groupCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetPlayerGroup = async (request: { characterId: string, groupCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
227
|
+
"hasEdit": false
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"eventName": "characterPlayer_GetPlayerInformation",
|
|
231
|
+
"script": "\npreHandlers.characterPlayer_GetPlayerInformation = async (request: { characterId: string, infoRequestParam: characterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetPlayerInformation = async (request: { characterId: string, infoRequestParam: characterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
232
|
+
"hasEdit": false
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"eventName": "characterPlayer_GetPlayerInventory",
|
|
236
|
+
"script": "\npreHandlers.characterPlayer_GetPlayerInventory = async (request: { characterId: string, itemCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetPlayerInventory = async (request: { characterId: string, itemCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
237
|
+
"hasEdit": false
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"eventName": "characterPlayer_GetPlayerStatistics",
|
|
241
|
+
"script": "\npreHandlers.characterPlayer_GetPlayerStatistics = async (request: { characterId: string, statisticsKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetPlayerStatistics = async (request: { characterId: string, statisticsKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
242
|
+
"hasEdit": false
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"eventName": "characterPlayer_GetPlayersWithDisplayName",
|
|
246
|
+
"script": "\npreHandlers.characterPlayer_GetPlayersWithDisplayName = async (request: { keyword: string, infoRequestParam: characterPlayer_InfoRequestParam, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetPlayersWithDisplayName = async (request: { keyword: string, infoRequestParam: characterPlayer_InfoRequestParam, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
247
|
+
"hasEdit": false
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"eventName": "characterPlayer_GetPlayersWithSegment",
|
|
251
|
+
"script": "\npreHandlers.characterPlayer_GetPlayersWithSegment = async (request: { segment: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetPlayersWithSegment = async (request: { segment: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
252
|
+
"hasEdit": false
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"eventName": "characterPlayer_GetPlayersWithTag",
|
|
256
|
+
"script": "\npreHandlers.characterPlayer_GetPlayersWithTag = async (request: { key: string, value: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetPlayersWithTag = async (request: { key: string, value: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
257
|
+
"hasEdit": false
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"eventName": "characterPlayer_GetRemoveStatus",
|
|
261
|
+
"script": "\npreHandlers.characterPlayer_GetRemoveStatus = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetRemoveStatus = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
262
|
+
"hasEdit": false
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"eventName": "characterPlayer_GetSegment",
|
|
266
|
+
"script": "\npreHandlers.characterPlayer_GetSegment = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetSegment = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
267
|
+
"hasEdit": false
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"eventName": "characterPlayer_GetStatisticsLeaderboardAroundPlayer",
|
|
271
|
+
"script": "\npreHandlers.characterPlayer_GetStatisticsLeaderboardAroundPlayer = async (request: { characterId: string, key: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetStatisticsLeaderboardAroundPlayer = async (request: { characterId: string, key: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
272
|
+
"hasEdit": false
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"eventName": "characterPlayer_GetStatisticsLeaderboard",
|
|
276
|
+
"script": "\npreHandlers.characterPlayer_GetStatisticsLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam, loadFromCache: boolean, version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetStatisticsLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: characterPlayer_InfoRequestParam, loadFromCache: boolean, version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
277
|
+
"hasEdit": false
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"eventName": "characterPlayer_GetStatisticsLog",
|
|
281
|
+
"script": "\npreHandlers.characterPlayer_GetStatisticsLog = async (request: { keys: Array<string>, token: string, limit: number, characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetStatisticsLog = async (request: { keys: Array<string>, token: string, limit: number, characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
282
|
+
"hasEdit": false
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"eventName": "characterPlayer_GetTag",
|
|
286
|
+
"script": "\npreHandlers.characterPlayer_GetTag = async (request: { characterId: string, tagKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetTag = async (request: { characterId: string, tagKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
287
|
+
"hasEdit": false
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"eventName": "characterPlayer_GetTsCreate",
|
|
291
|
+
"script": "\npreHandlers.characterPlayer_GetTsCreate = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetTsCreate = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
292
|
+
"hasEdit": false
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"eventName": "characterPlayer_GetTsLastLogin",
|
|
296
|
+
"script": "\npreHandlers.characterPlayer_GetTsLastLogin = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GetTsLastLogin = async (request: { characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
297
|
+
"hasEdit": false
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"eventName": "characterPlayer_GrantGroup",
|
|
301
|
+
"script": "\npreHandlers.characterPlayer_GrantGroup = async (request: { characterId: string, catalogId: string, groupMembers: Array<GroupMemberParam>, displayName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GrantGroup = async (request: { characterId: string, catalogId: string, groupMembers: Array<GroupMemberParam>, displayName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
302
|
+
"hasEdit": false
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"eventName": "characterPlayer_GrantPlayerItem",
|
|
306
|
+
"script": "\npreHandlers.characterPlayer_GrantPlayerItem = async (request: { characterId: string, catalogId: string, classId: string, displayName: string, amount: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_GrantPlayerItem = async (request: { characterId: string, catalogId: string, classId: string, displayName: string, amount: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
307
|
+
"hasEdit": false
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"eventName": "characterPlayer_JoinGroup",
|
|
311
|
+
"script": "\npreHandlers.characterPlayer_JoinGroup = async (request: { characterId: string, groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_JoinGroup = async (request: { characterId: string, groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
312
|
+
"hasEdit": false
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"eventName": "characterPlayer_LeaveGroup",
|
|
316
|
+
"script": "\npreHandlers.characterPlayer_LeaveGroup = async (request: { characterId: string, groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_LeaveGroup = async (request: { characterId: string, groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
317
|
+
"hasEdit": false
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"eventName": "characterPlayer_RemovePlayerFriend",
|
|
321
|
+
"script": "\npreHandlers.characterPlayer_RemovePlayerFriend = async (request: { characterId: string, friendId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_RemovePlayerFriend = async (request: { characterId: string, friendId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
322
|
+
"hasEdit": false
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"eventName": "characterPlayer_RemovePlayerItem",
|
|
326
|
+
"script": "\npreHandlers.characterPlayer_RemovePlayerItem = async (request: { characterId: string, itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_RemovePlayerItem = async (request: { characterId: string, itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
327
|
+
"hasEdit": false
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"eventName": "characterPlayer_RemoveSegment",
|
|
331
|
+
"script": "\npreHandlers.characterPlayer_RemoveSegment = async (request: { characterId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_RemoveSegment = async (request: { characterId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
332
|
+
"hasEdit": false
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"eventName": "characterPlayer_RemoveTag",
|
|
336
|
+
"script": "\npreHandlers.characterPlayer_RemoveTag = async (request: { characterId: string, tag: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_RemoveTag = async (request: { characterId: string, tag: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
337
|
+
"hasEdit": false
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"eventName": "characterPlayer_SetAvatar",
|
|
341
|
+
"script": "\npreHandlers.characterPlayer_SetAvatar = async (request: { characterId: string, type: number, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_SetAvatar = async (request: { characterId: string, type: number, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
342
|
+
"hasEdit": false
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"eventName": "characterPlayer_SetCountryCode",
|
|
346
|
+
"script": "\npreHandlers.characterPlayer_SetCountryCode = async (request: { characterId: string, countryCode: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_SetCountryCode = async (request: { characterId: string, countryCode: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
347
|
+
"hasEdit": false
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"eventName": "characterPlayer_SetCustomData",
|
|
351
|
+
"script": "\npreHandlers.characterPlayer_SetCustomData = async (request: { characterId: string, customDataParameters: Array<CustomDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_SetCustomData = async (request: { characterId: string, customDataParameters: Array<CustomDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
352
|
+
"hasEdit": false
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"eventName": "characterPlayer_SetDisplayName",
|
|
356
|
+
"script": "\npreHandlers.characterPlayer_SetDisplayName = async (request: { characterId: string, displayName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_SetDisplayName = async (request: { characterId: string, displayName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
357
|
+
"hasEdit": false
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"eventName": "characterPlayer_SetOwner",
|
|
361
|
+
"script": "\npreHandlers.characterPlayer_SetOwner = async (request: { characterId: string, newOwnerId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_SetOwner = async (request: { characterId: string, newOwnerId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
362
|
+
"hasEdit": false
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"eventName": "characterPlayer_SetPlayerBan",
|
|
366
|
+
"script": "\npreHandlers.characterPlayer_SetPlayerBan = async (request: { characterId: string, tsExpire: number, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_SetPlayerBan = async (request: { characterId: string, tsExpire: number, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
367
|
+
"hasEdit": false
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"eventName": "characterPlayer_SetPlayerCurrency",
|
|
371
|
+
"script": "\npreHandlers.characterPlayer_SetPlayerCurrency = async (request: { characterId: string, playerCurrencyParams: Array<PlayerCurrencyParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_SetPlayerCurrency = async (request: { characterId: string, playerCurrencyParams: Array<PlayerCurrencyParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
372
|
+
"hasEdit": false
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"eventName": "characterPlayer_SetPlayerData",
|
|
376
|
+
"script": "\npreHandlers.characterPlayer_SetPlayerData = async (request: { characterId: string, playerDataParams: Array<PlayerDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_SetPlayerData = async (request: { characterId: string, playerDataParams: Array<PlayerDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
377
|
+
"hasEdit": false
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"eventName": "characterPlayer_SetPlayerStatistics",
|
|
381
|
+
"script": "\npreHandlers.characterPlayer_SetPlayerStatistics = async (request: { characterId: string, playerStatisticsParams: Array<PlayerStatisticsParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_SetPlayerStatistics = async (request: { characterId: string, playerStatisticsParams: Array<PlayerStatisticsParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
382
|
+
"hasEdit": false
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"eventName": "characterPlayer_SetRemoveStatus",
|
|
386
|
+
"script": "\npreHandlers.characterPlayer_SetRemoveStatus = async (request: { characterId: string, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_SetRemoveStatus = async (request: { characterId: string, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
387
|
+
"hasEdit": false
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"eventName": "characterPlayer_SetTag",
|
|
391
|
+
"script": "\npreHandlers.characterPlayer_SetTag = async (request: { characterId: string, key: string, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.characterPlayer_SetTag = async (request: { characterId: string, key: string, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
392
|
+
"hasEdit": false
|
|
393
|
+
}
|
|
394
|
+
]
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"type": "cloudScript",
|
|
398
|
+
"version": "FIRSTVER",
|
|
399
|
+
"fullScript": "// first full script",
|
|
400
|
+
"tsLastUpdate": 1736498427663,
|
|
401
|
+
"childScripts": [
|
|
402
|
+
{
|
|
403
|
+
"eventName": "cloudScript_AddFunction",
|
|
404
|
+
"script": "\npreHandlers.cloudScript_AddFunction = async (request: { script: string, canExecute: boolean, isLive: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.cloudScript_AddFunction = async (request: { script: string, canExecute: boolean, isLive: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
405
|
+
"hasEdit": false
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"eventName": "cloudScript_EditFunction",
|
|
409
|
+
"script": "\npreHandlers.cloudScript_EditFunction = async (request: { version: string, canExecute: boolean, isLive: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.cloudScript_EditFunction = async (request: { version: string, canExecute: boolean, isLive: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
410
|
+
"hasEdit": false
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"eventName": "cloudScript_ExecuteFunction",
|
|
414
|
+
"script": "\npreHandlers.cloudScript_ExecuteFunction = async (request: { userId: string, functionName: string, functionParameters: object, version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.cloudScript_ExecuteFunction = async (request: { userId: string, functionName: string, functionParameters: object, version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
415
|
+
"hasEdit": false
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"eventName": "cloudScript_GetFunction",
|
|
419
|
+
"script": "\npreHandlers.cloudScript_GetFunction = async (request: { version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.cloudScript_GetFunction = async (request: { version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
420
|
+
"hasEdit": false
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"eventName": "cloudScript_GetFunctions",
|
|
424
|
+
"script": "\npreHandlers.cloudScript_GetFunctions = async (request: {}, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.cloudScript_GetFunctions = async (request: {}, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
425
|
+
"hasEdit": false
|
|
426
|
+
}
|
|
427
|
+
]
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"type": "content",
|
|
431
|
+
"version": "FIRSTVER",
|
|
432
|
+
"fullScript": "// first full script",
|
|
433
|
+
"tsLastUpdate": 1736498427663,
|
|
434
|
+
"childScripts": [
|
|
435
|
+
{
|
|
436
|
+
"eventName": "content_CreateNewFileUploadInfo",
|
|
437
|
+
"script": "\npreHandlers.content_CreateNewFileUploadInfo = async (request: { userId: string, fileName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.content_CreateNewFileUploadInfo = async (request: { userId: string, fileName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
438
|
+
"hasEdit": false
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"eventName": "content_GetContentData",
|
|
442
|
+
"script": "\npreHandlers.content_GetContentData = async (request: { keys: Array<string>, label: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.content_GetContentData = async (request: { keys: Array<string>, label: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
443
|
+
"hasEdit": false
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"eventName": "content_GetFileUploadInfoList",
|
|
447
|
+
"script": "\npreHandlers.content_GetFileUploadInfoList = async (request: { skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.content_GetFileUploadInfoList = async (request: { skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
448
|
+
"hasEdit": false
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"eventName": "content_GetFileUploadInfo",
|
|
452
|
+
"script": "\npreHandlers.content_GetFileUploadInfo = async (request: { fileId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.content_GetFileUploadInfo = async (request: { fileId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
453
|
+
"hasEdit": false
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"eventName": "content_RemoveFileUploadInfo",
|
|
457
|
+
"script": "\npreHandlers.content_RemoveFileUploadInfo = async (request: { fileId: string, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.content_RemoveFileUploadInfo = async (request: { fileId: string, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
458
|
+
"hasEdit": false
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"eventName": "content_RequestDownloadFileUploadInfo",
|
|
462
|
+
"script": "\npreHandlers.content_RequestDownloadFileUploadInfo = async (request: { fileId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.content_RequestDownloadFileUploadInfo = async (request: { fileId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
463
|
+
"hasEdit": false
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"eventName": "content_SetContentData",
|
|
467
|
+
"script": "\npreHandlers.content_SetContentData = async (request: { configs: Array<ContentDataParam>, label: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.content_SetContentData = async (request: { configs: Array<ContentDataParam>, label: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
468
|
+
"hasEdit": false
|
|
469
|
+
}
|
|
470
|
+
]
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"type": "dashboard",
|
|
474
|
+
"version": "FIRSTVER",
|
|
475
|
+
"fullScript": "// first full script",
|
|
476
|
+
"tsLastUpdate": 1736498427663,
|
|
477
|
+
"childScripts": [
|
|
478
|
+
{
|
|
479
|
+
"eventName": "dashboard_ChangePasswordAdminAccount",
|
|
480
|
+
"script": "\npreHandlers.dashboard_ChangePasswordAdminAccount = async (request: { userId: string, currentPassword: string, password: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_ChangePasswordAdminAccount = async (request: { userId: string, currentPassword: string, password: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
481
|
+
"hasEdit": false
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"eventName": "dashboard_GetAdminAccountList",
|
|
485
|
+
"script": "\npreHandlers.dashboard_GetAdminAccountList = async (request: {}, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GetAdminAccountList = async (request: {}, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
486
|
+
"hasEdit": false
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"eventName": "dashboard_GetAnalytics",
|
|
490
|
+
"script": "\npreHandlers.dashboard_GetAnalytics = async (request: { timestamp: number, requestParams: AnalyticsRequestParams }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GetAnalytics = async (request: { timestamp: number, requestParams: AnalyticsRequestParams }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
491
|
+
"hasEdit": false
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"eventName": "dashboard_GetBackupStatisticsLeaderboardVersion",
|
|
495
|
+
"script": "\npreHandlers.dashboard_GetBackupStatisticsLeaderboardVersion = async (request: { gameId: string, type: number, key: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GetBackupStatisticsLeaderboardVersion = async (request: { gameId: string, type: number, key: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
496
|
+
"hasEdit": false
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"eventName": "dashboard_GetEventCallbackCloudScript",
|
|
500
|
+
"script": "\npreHandlers.dashboard_GetEventCallbackCloudScript = async (request: {}, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GetEventCallbackCloudScript = async (request: {}, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
501
|
+
"hasEdit": false
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"eventName": "dashboard_GetGameInformation",
|
|
505
|
+
"script": "\npreHandlers.dashboard_GetGameInformation = async (request: { gameId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GetGameInformation = async (request: { gameId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
506
|
+
"hasEdit": false
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"eventName": "dashboard_GetGameList",
|
|
510
|
+
"script": "\npreHandlers.dashboard_GetGameList = async (request: {}, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GetGameList = async (request: {}, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
511
|
+
"hasEdit": false
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"eventName": "dashboard_GetMasterGameSettings",
|
|
515
|
+
"script": "\npreHandlers.dashboard_GetMasterGameSettings = async (request: {}, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GetMasterGameSettings = async (request: {}, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
516
|
+
"hasEdit": false
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"eventName": "dashboard_GetSecretInfoInformation",
|
|
520
|
+
"script": "\npreHandlers.dashboard_GetSecretInfoInformation = async (request: { secretKey: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GetSecretInfoInformation = async (request: { secretKey: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
521
|
+
"hasEdit": false
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"eventName": "dashboard_GetSecretInfoList",
|
|
525
|
+
"script": "\npreHandlers.dashboard_GetSecretInfoList = async (request: {}, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GetSecretInfoList = async (request: {}, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
526
|
+
"hasEdit": false
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"eventName": "dashboard_GetServerGameData",
|
|
530
|
+
"script": "\npreHandlers.dashboard_GetServerGameData = async (request: { gameId: string, requestParams: ServerGameDataRequestParams }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GetServerGameData = async (request: { gameId: string, requestParams: ServerGameDataRequestParams }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
531
|
+
"hasEdit": false
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"eventName": "dashboard_GetServerLog",
|
|
535
|
+
"script": "\npreHandlers.dashboard_GetServerLog = async (request: { skip: number; limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GetServerLog = async (request: { skip: number; limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
536
|
+
"hasEdit": false
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"eventName": "dashboard_GetUsernameAdminAccount",
|
|
540
|
+
"script": "\npreHandlers.dashboard_GetUsernameAdminAccount = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GetUsernameAdminAccount = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
541
|
+
"hasEdit": false
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"eventName": "dashboard_GrantAdminAccount",
|
|
545
|
+
"script": "\npreHandlers.dashboard_GrantAdminAccount = async (request: { username: string, password: string, secretKey: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GrantAdminAccount = async (request: { username: string, password: string, secretKey: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
546
|
+
"hasEdit": false
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"eventName": "dashboard_GrantGame",
|
|
550
|
+
"script": "\npreHandlers.dashboard_GrantGame = async (request: { gameId: string, creatorId: string, }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GrantGame = async (request: { gameId: string, creatorId: string, }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
551
|
+
"hasEdit": false
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"eventName": "dashboard_GrantSecretInfo",
|
|
555
|
+
"script": "\npreHandlers.dashboard_GrantSecretInfo = async (request: { secretKey: string, gameId: string, role: number, creatorId: string, permissionParam: PermissionParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_GrantSecretInfo = async (request: { secretKey: string, gameId: string, role: number, creatorId: string, permissionParam: PermissionParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
556
|
+
"hasEdit": false
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"eventName": "dashboard_LoginByAdminAccount",
|
|
560
|
+
"script": "\npreHandlers.dashboard_LoginByAdminAccount = async (request: { username: string, password: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_LoginByAdminAccount = async (request: { username: string, password: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
561
|
+
"hasEdit": false
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"eventName": "dashboard_RemoveAdminAccount",
|
|
565
|
+
"script": "\npreHandlers.dashboard_RemoveAdminAccount = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_RemoveAdminAccount = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
566
|
+
"hasEdit": false
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"eventName": "dashboard_ResetStatisticsLeaderboard",
|
|
570
|
+
"script": "\npreHandlers.dashboard_ResetStatisticsLeaderboard = async (request: { type: number, key: string, version: string, gameId: string, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_ResetStatisticsLeaderboard = async (request: { type: number, key: string, version: string, gameId: string, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
571
|
+
"hasEdit": false
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"eventName": "dashboard_SetEventCallbackCloudScript",
|
|
575
|
+
"script": "\npreHandlers.dashboard_SetEventCallbackCloudScript = async (request: { eventName: string, script: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_SetEventCallbackCloudScript = async (request: { eventName: string, script: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
576
|
+
"hasEdit": false
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"eventName": "dashboard_SetGameInformation",
|
|
580
|
+
"script": "\npreHandlers.dashboard_SetGameInformation = async (request: { gameId: string, gameName: string, gameDescription: string, gameIconUrl: string, gameSettings: GameSettingsParam, matchmakingQueueSettings: MatchmakingQueueSettingsParam[] }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_SetGameInformation = async (request: { gameId: string, gameName: string, gameDescription: string, gameIconUrl: string, gameSettings: GameSettingsParam, matchmakingQueueSettings: MatchmakingQueueSettingsParam[] }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
581
|
+
"hasEdit": false
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"eventName": "dashboard_SetMasterGameSettings",
|
|
585
|
+
"script": "\npreHandlers.dashboard_SetMasterGameSettings = async (request: { thirtPartySettings: ThirtPartyParam, masterPlayerSettings: MasterPlayerSettingsParam, emailSettings: EmailSettingsParam, pushNotificationSettings: PushNotificationSettingsParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_SetMasterGameSettings = async (request: { thirtPartySettings: ThirtPartyParam, masterPlayerSettings: MasterPlayerSettingsParam, emailSettings: EmailSettingsParam, pushNotificationSettings: PushNotificationSettingsParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
586
|
+
"hasEdit": false
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"eventName": "dashboard_SetPasswordAdminAccount",
|
|
590
|
+
"script": "\npreHandlers.dashboard_SetPasswordAdminAccount = async (request: { userId: string, password: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_SetPasswordAdminAccount = async (request: { userId: string, password: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
591
|
+
"hasEdit": false
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"eventName": "dashboard_SetSecretInfoInformation",
|
|
595
|
+
"script": "\npreHandlers.dashboard_SetSecretInfoInformation = async (request: { secretKey: string, remove: boolean, tsExpire: number, permissionParam: PermissionParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_SetSecretInfoInformation = async (request: { secretKey: string, remove: boolean, tsExpire: number, permissionParam: PermissionParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
596
|
+
"hasEdit": false
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"eventName": "dashboard_SetSecretKeyAdminAccount",
|
|
600
|
+
"script": "\npreHandlers.dashboard_SetSecretKeyAdminAccount = async (request: { userId: string, secretKey: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.dashboard_SetSecretKeyAdminAccount = async (request: { userId: string, secretKey: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
601
|
+
"hasEdit": false
|
|
602
|
+
}
|
|
603
|
+
]
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"type": "gamePlayer",
|
|
607
|
+
"version": "FIRSTVER",
|
|
608
|
+
"fullScript": "// first full script",
|
|
609
|
+
"tsLastUpdate": 1736498427663,
|
|
610
|
+
"childScripts": [
|
|
611
|
+
{
|
|
612
|
+
"eventName": "gamePlayer_AddPlayerFriend",
|
|
613
|
+
"script": "\npreHandlers.gamePlayer_AddPlayerFriend = async (request: { userId: string, friendId: string, catalogId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_AddPlayerFriend = async (request: { userId: string, friendId: string, catalogId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
614
|
+
"hasEdit": false
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"eventName": "gamePlayer_AddSegment",
|
|
618
|
+
"script": "\npreHandlers.gamePlayer_AddSegment = async (request: { userId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_AddSegment = async (request: { userId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
619
|
+
"hasEdit": false
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"eventName": "gamePlayer_GetAvatar",
|
|
623
|
+
"script": "\npreHandlers.gamePlayer_GetAvatar = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetAvatar = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
624
|
+
"hasEdit": false
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"eventName": "gamePlayer_GetCountryCode",
|
|
628
|
+
"script": "\npreHandlers.gamePlayer_GetCountryCode = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetCountryCode = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
629
|
+
"hasEdit": false
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"eventName": "gamePlayer_GetCreateLeaderboard",
|
|
633
|
+
"script": "\npreHandlers.gamePlayer_GetCreateLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetCreateLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
634
|
+
"hasEdit": false
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"eventName": "gamePlayer_GetCurrencyLeaderboard",
|
|
638
|
+
"script": "\npreHandlers.gamePlayer_GetCurrencyLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetCurrencyLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
639
|
+
"hasEdit": false
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"eventName": "gamePlayer_GetCurrencyLog",
|
|
643
|
+
"script": "\npreHandlers.gamePlayer_GetCurrencyLog = async (request: { keys: Array<string>, token: string, limit: number, userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetCurrencyLog = async (request: { keys: Array<string>, token: string, limit: number, userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
644
|
+
"hasEdit": false
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"eventName": "gamePlayer_GetCustomData",
|
|
648
|
+
"script": "\npreHandlers.gamePlayer_GetCustomData = async (request: { userId: string, customDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetCustomData = async (request: { userId: string, customDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
649
|
+
"hasEdit": false
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"eventName": "gamePlayer_GetDisplayName",
|
|
653
|
+
"script": "\npreHandlers.gamePlayer_GetDisplayName = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetDisplayName = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
654
|
+
"hasEdit": false
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"eventName": "gamePlayer_GetFriendStatisticsLeaderboardAroundPlayer",
|
|
658
|
+
"script": "\npreHandlers.gamePlayer_GetFriendStatisticsLeaderboardAroundPlayer = async (request: { userId: string, key: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetFriendStatisticsLeaderboardAroundPlayer = async (request: { userId: string, key: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
659
|
+
"hasEdit": false
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"eventName": "gamePlayer_GetFriendStatisticsLeaderboard",
|
|
663
|
+
"script": "\npreHandlers.gamePlayer_GetFriendStatisticsLeaderboard = async (request: { userId: string, key: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetFriendStatisticsLeaderboard = async (request: { userId: string, key: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
664
|
+
"hasEdit": false
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"eventName": "gamePlayer_GetIpAddressCreate",
|
|
668
|
+
"script": "\npreHandlers.gamePlayer_GetIpAddressCreate = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetIpAddressCreate = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
669
|
+
"hasEdit": false
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"eventName": "gamePlayer_GetOnlineStatus",
|
|
673
|
+
"script": "\npreHandlers.gamePlayer_GetOnlineStatus = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetOnlineStatus = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
674
|
+
"hasEdit": false
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"eventName": "gamePlayer_GetPlayerBan",
|
|
678
|
+
"script": "\npreHandlers.gamePlayer_GetPlayerBan = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetPlayerBan = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
679
|
+
"hasEdit": false
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"eventName": "gamePlayer_GetPlayerCharacter",
|
|
683
|
+
"script": "\npreHandlers.gamePlayer_GetPlayerCharacter = async (request: { userId: string, characterCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetPlayerCharacter = async (request: { userId: string, characterCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
684
|
+
"hasEdit": false
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"eventName": "gamePlayer_GetPlayerCurrency",
|
|
688
|
+
"script": "\npreHandlers.gamePlayer_GetPlayerCurrency = async (request: { userId: string, playerCurrencyKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetPlayerCurrency = async (request: { userId: string, playerCurrencyKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
689
|
+
"hasEdit": false
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"eventName": "gamePlayer_GetPlayerData",
|
|
693
|
+
"script": "\npreHandlers.gamePlayer_GetPlayerData = async (request: { userId: string, playerDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetPlayerData = async (request: { userId: string, playerDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
694
|
+
"hasEdit": false
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"eventName": "gamePlayer_GetPlayerFriend",
|
|
698
|
+
"script": "\npreHandlers.gamePlayer_GetPlayerFriend = async (request: { userId: string, friendCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetPlayerFriend = async (request: { userId: string, friendCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
699
|
+
"hasEdit": false
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"eventName": "gamePlayer_GetPlayerGroup",
|
|
703
|
+
"script": "\npreHandlers.gamePlayer_GetPlayerGroup = async (request: { userId: string, groupCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetPlayerGroup = async (request: { userId: string, groupCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
704
|
+
"hasEdit": false
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"eventName": "gamePlayer_GetPlayerInformation",
|
|
708
|
+
"script": "\npreHandlers.gamePlayer_GetPlayerInformation = async (request: { userId: string, infoRequestParam: gamePlayer_InfoRequestParam, createPlayerIfNotExists: boolean, ipAddress: string, updateTsLastLogin: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetPlayerInformation = async (request: { userId: string, infoRequestParam: gamePlayer_InfoRequestParam, createPlayerIfNotExists: boolean, ipAddress: string, updateTsLastLogin: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
709
|
+
"hasEdit": false
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"eventName": "gamePlayer_GetPlayerInventory",
|
|
713
|
+
"script": "\npreHandlers.gamePlayer_GetPlayerInventory = async (request: { userId: string, itemCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetPlayerInventory = async (request: { userId: string, itemCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
714
|
+
"hasEdit": false
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"eventName": "gamePlayer_GetPlayerStatistics",
|
|
718
|
+
"script": "\npreHandlers.gamePlayer_GetPlayerStatistics = async (request: { userId: string, statisticsKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetPlayerStatistics = async (request: { userId: string, statisticsKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
719
|
+
"hasEdit": false
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"eventName": "gamePlayer_GetPlayersWithDisplayName",
|
|
723
|
+
"script": "\npreHandlers.gamePlayer_GetPlayersWithDisplayName = async (request: { keyword: string, infoRequestParam: gamePlayer_InfoRequestParam, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetPlayersWithDisplayName = async (request: { keyword: string, infoRequestParam: gamePlayer_InfoRequestParam, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
724
|
+
"hasEdit": false
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"eventName": "gamePlayer_GetPlayersWithSegment",
|
|
728
|
+
"script": "\npreHandlers.gamePlayer_GetPlayersWithSegment = async (request: { segment: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetPlayersWithSegment = async (request: { segment: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
729
|
+
"hasEdit": false
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"eventName": "gamePlayer_GetPlayersWithTag",
|
|
733
|
+
"script": "\npreHandlers.gamePlayer_GetPlayersWithTag = async (request: { key: string, value: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetPlayersWithTag = async (request: { key: string, value: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
734
|
+
"hasEdit": false
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"eventName": "gamePlayer_GetSegment",
|
|
738
|
+
"script": "\npreHandlers.gamePlayer_GetSegment = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetSegment = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
739
|
+
"hasEdit": false
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"eventName": "gamePlayer_GetStatisticsLeaderboardAroundPlayer",
|
|
743
|
+
"script": "\npreHandlers.gamePlayer_GetStatisticsLeaderboardAroundPlayer = async (request: { userId: string, key: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetStatisticsLeaderboardAroundPlayer = async (request: { userId: string, key: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
744
|
+
"hasEdit": false
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"eventName": "gamePlayer_GetStatisticsLeaderboard",
|
|
748
|
+
"script": "\npreHandlers.gamePlayer_GetStatisticsLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam, loadFromCache: boolean, version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetStatisticsLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: gamePlayer_InfoRequestParam, loadFromCache: boolean, version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
749
|
+
"hasEdit": false
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"eventName": "gamePlayer_GetStatisticsLog",
|
|
753
|
+
"script": "\npreHandlers.gamePlayer_GetStatisticsLog = async (request: { keys: Array<string>, token: string, limit: number, userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetStatisticsLog = async (request: { keys: Array<string>, token: string, limit: number, userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
754
|
+
"hasEdit": false
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"eventName": "gamePlayer_GetTag",
|
|
758
|
+
"script": "\npreHandlers.gamePlayer_GetTag = async (request: { userId: string, tagKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetTag = async (request: { userId: string, tagKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
759
|
+
"hasEdit": false
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"eventName": "gamePlayer_GetTsCreate",
|
|
763
|
+
"script": "\npreHandlers.gamePlayer_GetTsCreate = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetTsCreate = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
764
|
+
"hasEdit": false
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"eventName": "gamePlayer_GetTsLastLogin",
|
|
768
|
+
"script": "\npreHandlers.gamePlayer_GetTsLastLogin = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GetTsLastLogin = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
769
|
+
"hasEdit": false
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"eventName": "gamePlayer_GrantGroup",
|
|
773
|
+
"script": "\npreHandlers.gamePlayer_GrantGroup = async (request: { userId: string, catalogId: string, groupMembers: Array<GroupMemberParam>, displayName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GrantGroup = async (request: { userId: string, catalogId: string, groupMembers: Array<GroupMemberParam>, displayName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
774
|
+
"hasEdit": false
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"eventName": "gamePlayer_GrantPlayerCharacter",
|
|
778
|
+
"script": "\npreHandlers.gamePlayer_GrantPlayerCharacter = async (request: { userId: string, catalogId: string, displayName: string, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GrantPlayerCharacter = async (request: { userId: string, catalogId: string, displayName: string, ipAddress: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
779
|
+
"hasEdit": false
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"eventName": "gamePlayer_GrantPlayerItem",
|
|
783
|
+
"script": "\npreHandlers.gamePlayer_GrantPlayerItem = async (request: { userId: string, catalogId: string, classId: string, displayName: string, amount: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_GrantPlayerItem = async (request: { userId: string, catalogId: string, classId: string, displayName: string, amount: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
784
|
+
"hasEdit": false
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
"eventName": "gamePlayer_JoinGroup",
|
|
788
|
+
"script": "\npreHandlers.gamePlayer_JoinGroup = async (request: { userId: string, groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_JoinGroup = async (request: { userId: string, groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
789
|
+
"hasEdit": false
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"eventName": "gamePlayer_LeaveGroup",
|
|
793
|
+
"script": "\npreHandlers.gamePlayer_LeaveGroup = async (request: { userId: string, groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_LeaveGroup = async (request: { userId: string, groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
794
|
+
"hasEdit": false
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"eventName": "gamePlayer_RemovePlayerCharacter",
|
|
798
|
+
"script": "\npreHandlers.gamePlayer_RemovePlayerCharacter = async (request: { userId: string, characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_RemovePlayerCharacter = async (request: { userId: string, characterId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
799
|
+
"hasEdit": false
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"eventName": "gamePlayer_RemovePlayerFriend",
|
|
803
|
+
"script": "\npreHandlers.gamePlayer_RemovePlayerFriend = async (request: { userId: string, friendId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_RemovePlayerFriend = async (request: { userId: string, friendId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
804
|
+
"hasEdit": false
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
"eventName": "gamePlayer_RemovePlayerItem",
|
|
808
|
+
"script": "\npreHandlers.gamePlayer_RemovePlayerItem = async (request: { userId: string, itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_RemovePlayerItem = async (request: { userId: string, itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
809
|
+
"hasEdit": false
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"eventName": "gamePlayer_RemoveSegment",
|
|
813
|
+
"script": "\npreHandlers.gamePlayer_RemoveSegment = async (request: { userId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_RemoveSegment = async (request: { userId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
814
|
+
"hasEdit": false
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"eventName": "gamePlayer_RemoveTag",
|
|
818
|
+
"script": "\npreHandlers.gamePlayer_RemoveTag = async (request: { userId: string, key: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_RemoveTag = async (request: { userId: string, key: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
819
|
+
"hasEdit": false
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"eventName": "gamePlayer_SetAvatar",
|
|
823
|
+
"script": "\npreHandlers.gamePlayer_SetAvatar = async (request: { userId: string, type: number, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_SetAvatar = async (request: { userId: string, type: number, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
824
|
+
"hasEdit": false
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"eventName": "gamePlayer_SetCountryCode",
|
|
828
|
+
"script": "\npreHandlers.gamePlayer_SetCountryCode = async (request: { userId: string, countryCode: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_SetCountryCode = async (request: { userId: string, countryCode: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
829
|
+
"hasEdit": false
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"eventName": "gamePlayer_SetCustomData",
|
|
833
|
+
"script": "\npreHandlers.gamePlayer_SetCustomData = async (request: { userId: string, customDataParameters: Array<CustomDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_SetCustomData = async (request: { userId: string, customDataParameters: Array<CustomDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
834
|
+
"hasEdit": false
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"eventName": "gamePlayer_SetDisplayName",
|
|
838
|
+
"script": "\npreHandlers.gamePlayer_SetDisplayName = async (request: { userId: string, displayName: string, uniqueDisplayName: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_SetDisplayName = async (request: { userId: string, displayName: string, uniqueDisplayName: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
839
|
+
"hasEdit": false
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"eventName": "gamePlayer_SetPlayerBan",
|
|
843
|
+
"script": "\npreHandlers.gamePlayer_SetPlayerBan = async (request: { userId: string, tsExpire: number, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_SetPlayerBan = async (request: { userId: string, tsExpire: number, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
844
|
+
"hasEdit": false
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"eventName": "gamePlayer_SetPlayerCurrency",
|
|
848
|
+
"script": "\npreHandlers.gamePlayer_SetPlayerCurrency = async (request: { userId: string, playerCurrencyParams: Array<PlayerCurrencyParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_SetPlayerCurrency = async (request: { userId: string, playerCurrencyParams: Array<PlayerCurrencyParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
849
|
+
"hasEdit": false
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"eventName": "gamePlayer_SetPlayerData",
|
|
853
|
+
"script": "\npreHandlers.gamePlayer_SetPlayerData = async (request: { userId: string, playerDataParams: Array<PlayerDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_SetPlayerData = async (request: { userId: string, playerDataParams: Array<PlayerDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
854
|
+
"hasEdit": false
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"eventName": "gamePlayer_SetPlayerStatistics",
|
|
858
|
+
"script": "\npreHandlers.gamePlayer_SetPlayerStatistics = async (request: { userId: string, playerStatisticsParams: Array<PlayerStatisticsParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_SetPlayerStatistics = async (request: { userId: string, playerStatisticsParams: Array<PlayerStatisticsParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
859
|
+
"hasEdit": false
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"eventName": "gamePlayer_SetTag",
|
|
863
|
+
"script": "\npreHandlers.gamePlayer_SetTag = async (request: { userId: string, key: string, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.gamePlayer_SetTag = async (request: { userId: string, key: string, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
864
|
+
"hasEdit": false
|
|
865
|
+
}
|
|
866
|
+
]
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"type": "group",
|
|
870
|
+
"version": "FIRSTVER",
|
|
871
|
+
"fullScript": "// first full script",
|
|
872
|
+
"tsLastUpdate": 1736498427663,
|
|
873
|
+
"childScripts": [
|
|
874
|
+
{
|
|
875
|
+
"eventName": "group_AddMember",
|
|
876
|
+
"script": "\npreHandlers.group_AddMember = async (request: { groupId: string, userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_AddMember = async (request: { groupId: string, userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
877
|
+
"hasEdit": false
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"eventName": "group_AddSegment",
|
|
881
|
+
"script": "\npreHandlers.group_AddSegment = async (request: { groupId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_AddSegment = async (request: { groupId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
882
|
+
"hasEdit": false
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"eventName": "group_GetAvatar",
|
|
886
|
+
"script": "\npreHandlers.group_GetAvatar = async (request: { groupId: string, gameId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetAvatar = async (request: { groupId: string, gameId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
887
|
+
"hasEdit": false
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
"eventName": "group_GetCatalogId",
|
|
891
|
+
"script": "\npreHandlers.group_GetCatalogId = async (request: { groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetCatalogId = async (request: { groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
892
|
+
"hasEdit": false
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
"eventName": "group_GetCreateLeaderboard",
|
|
896
|
+
"script": "\npreHandlers.group_GetCreateLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: group_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetCreateLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: group_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
897
|
+
"hasEdit": false
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"eventName": "group_GetCurrencyLeaderboard",
|
|
901
|
+
"script": "\npreHandlers.group_GetCurrencyLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: group_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetCurrencyLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: group_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
902
|
+
"hasEdit": false
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"eventName": "group_GetCurrencyLog",
|
|
906
|
+
"script": "\npreHandlers.group_GetCurrencyLog = async (request: { keys: Array<string>, token: string, limit: number, groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetCurrencyLog = async (request: { keys: Array<string>, token: string, limit: number, groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
907
|
+
"hasEdit": false
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"eventName": "group_GetCustomData",
|
|
911
|
+
"script": "\npreHandlers.group_GetCustomData = async (request: { groupId: string, customDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetCustomData = async (request: { groupId: string, customDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
912
|
+
"hasEdit": false
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"eventName": "group_GetDisplayName",
|
|
916
|
+
"script": "\npreHandlers.group_GetDisplayName = async (request: { groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetDisplayName = async (request: { groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
917
|
+
"hasEdit": false
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"eventName": "group_GetGroupCurrency",
|
|
921
|
+
"script": "\npreHandlers.group_GetGroupCurrency = async (request: { groupId: string, groupCurrencyKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetGroupCurrency = async (request: { groupId: string, groupCurrencyKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
922
|
+
"hasEdit": false
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"eventName": "group_GetGroupData",
|
|
926
|
+
"script": "\npreHandlers.group_GetGroupData = async (request: { groupId: string, groupDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetGroupData = async (request: { groupId: string, groupDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
927
|
+
"hasEdit": false
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"eventName": "group_GetGroupInformation",
|
|
931
|
+
"script": "\npreHandlers.group_GetGroupInformation = async (request: { groupId: string, infoRequestParam: group_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetGroupInformation = async (request: { groupId: string, infoRequestParam: group_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
932
|
+
"hasEdit": false
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"eventName": "group_GetGroupInventory",
|
|
936
|
+
"script": "\npreHandlers.group_GetGroupInventory = async (request: { groupId: string, itemCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetGroupInventory = async (request: { groupId: string, itemCatalogIds: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
937
|
+
"hasEdit": false
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"eventName": "group_GetGroupMessage",
|
|
941
|
+
"script": "\npreHandlers.group_GetGroupMessage = async (request: { groupId: string, skip: number, limit: number, userId?: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetGroupMessage = async (request: { groupId: string, skip: number, limit: number, userId?: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
942
|
+
"hasEdit": false
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"eventName": "group_GetGroupStatistics",
|
|
946
|
+
"script": "\npreHandlers.group_GetGroupStatistics = async (request: { groupId: string, statisticsKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetGroupStatistics = async (request: { groupId: string, statisticsKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
947
|
+
"hasEdit": false
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"eventName": "group_GetGroupsWithDisplayName",
|
|
951
|
+
"script": "\npreHandlers.group_GetGroupsWithDisplayName = async (request: { keyword: string, infoRequestParam: group_InfoRequestParam, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetGroupsWithDisplayName = async (request: { keyword: string, infoRequestParam: group_InfoRequestParam, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
952
|
+
"hasEdit": false
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"eventName": "group_GetGroupsWithSegment",
|
|
956
|
+
"script": "\npreHandlers.group_GetGroupsWithSegment = async (request: { segment: string, skip: number, limit: number, infoRequestParam: group_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetGroupsWithSegment = async (request: { segment: string, skip: number, limit: number, infoRequestParam: group_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
957
|
+
"hasEdit": false
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"eventName": "group_GetGroupsWithTag",
|
|
961
|
+
"script": "\npreHandlers.group_GetGroupsWithTag = async (request: { key: string, value: string, skip: number, limit: number, infoRequestParam: group_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetGroupsWithTag = async (request: { key: string, value: string, skip: number, limit: number, infoRequestParam: group_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
962
|
+
"hasEdit": false
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"eventName": "group_GetMembers",
|
|
966
|
+
"script": "\npreHandlers.group_GetMembers = async (request: { groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetMembers = async (request: { groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
967
|
+
"hasEdit": false
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"eventName": "group_GetRemoveStatus",
|
|
971
|
+
"script": "\npreHandlers.group_GetRemoveStatus = async (request: { groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetRemoveStatus = async (request: { groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
972
|
+
"hasEdit": false
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"eventName": "group_GetSegment",
|
|
976
|
+
"script": "\npreHandlers.group_GetSegment = async (request: { groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetSegment = async (request: { groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
977
|
+
"hasEdit": false
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"eventName": "group_GetStatisticsLeaderboardAroundGroup",
|
|
981
|
+
"script": "\npreHandlers.group_GetStatisticsLeaderboardAroundGroup = async (request: { groupId: string, key: string, skip: number, limit: number, infoRequestParam: group_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetStatisticsLeaderboardAroundGroup = async (request: { groupId: string, key: string, skip: number, limit: number, infoRequestParam: group_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
982
|
+
"hasEdit": false
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"eventName": "group_GetStatisticsLeaderboard",
|
|
986
|
+
"script": "\npreHandlers.group_GetStatisticsLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: group_InfoRequestParam, loadFromCache: boolean, version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetStatisticsLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: group_InfoRequestParam, loadFromCache: boolean, version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
987
|
+
"hasEdit": false
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
"eventName": "group_GetStatisticsLog",
|
|
991
|
+
"script": "\npreHandlers.group_GetStatisticsLog = async (request: { keys: Array<string>, token: string, limit: number, groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetStatisticsLog = async (request: { keys: Array<string>, token: string, limit: number, groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
992
|
+
"hasEdit": false
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"eventName": "group_GetTag",
|
|
996
|
+
"script": "\npreHandlers.group_GetTag = async (request: { groupId: string, tagKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetTag = async (request: { groupId: string, tagKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
997
|
+
"hasEdit": false
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"eventName": "group_GetTsCreate",
|
|
1001
|
+
"script": "\npreHandlers.group_GetTsCreate = async (request: { groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GetTsCreate = async (request: { groupId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1002
|
+
"hasEdit": false
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"eventName": "group_GrantGroupItem",
|
|
1006
|
+
"script": "\npreHandlers.group_GrantGroupItem = async (request: { groupId: string, catalogId: string, classId: string, displayName: string, amount: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_GrantGroupItem = async (request: { groupId: string, catalogId: string, classId: string, displayName: string, amount: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1007
|
+
"hasEdit": false
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"eventName": "group_RemoveGroupItem",
|
|
1011
|
+
"script": "\npreHandlers.group_RemoveGroupItem = async (request: { groupId: string, itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_RemoveGroupItem = async (request: { groupId: string, itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1012
|
+
"hasEdit": false
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
"eventName": "group_RemoveMember",
|
|
1016
|
+
"script": "\npreHandlers.group_RemoveMember = async (request: { groupId: string, userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_RemoveMember = async (request: { groupId: string, userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1017
|
+
"hasEdit": false
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"eventName": "group_RemoveSegment",
|
|
1021
|
+
"script": "\npreHandlers.group_RemoveSegment = async (request: { groupId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_RemoveSegment = async (request: { groupId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1022
|
+
"hasEdit": false
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"eventName": "group_RemoveTag",
|
|
1026
|
+
"script": "\npreHandlers.group_RemoveTag = async (request: { groupId: string, tag: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_RemoveTag = async (request: { groupId: string, tag: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1027
|
+
"hasEdit": false
|
|
1028
|
+
},
|
|
1029
|
+
{
|
|
1030
|
+
"eventName": "group_SendGroupMessage",
|
|
1031
|
+
"script": "\npreHandlers.group_SendGroupMessage = async (request: { groupId: string, message: string, senderId: string, userId?: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_SendGroupMessage = async (request: { groupId: string, message: string, senderId: string, userId?: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1032
|
+
"hasEdit": false
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"eventName": "group_SetAvatar",
|
|
1036
|
+
"script": "\npreHandlers.group_SetAvatar = async (request: { groupId: string, type: number, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_SetAvatar = async (request: { groupId: string, type: number, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1037
|
+
"hasEdit": false
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"eventName": "group_SetCustomData",
|
|
1041
|
+
"script": "\npreHandlers.group_SetCustomData = async (request: { groupId: string, customDataParameters: Array<CustomDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_SetCustomData = async (request: { groupId: string, customDataParameters: Array<CustomDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1042
|
+
"hasEdit": false
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
"eventName": "group_SetDisplayName",
|
|
1046
|
+
"script": "\npreHandlers.group_SetDisplayName = async (request: { groupId: string, displayName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_SetDisplayName = async (request: { groupId: string, displayName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1047
|
+
"hasEdit": false
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
"eventName": "group_SetGroupCurrency",
|
|
1051
|
+
"script": "\npreHandlers.group_SetGroupCurrency = async (request: { groupId: string, groupCurrencyParams: Array<GroupCurrencyParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_SetGroupCurrency = async (request: { groupId: string, groupCurrencyParams: Array<GroupCurrencyParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1052
|
+
"hasEdit": false
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
"eventName": "group_SetGroupData",
|
|
1056
|
+
"script": "\npreHandlers.group_SetGroupData = async (request: { groupId: string, groupDataParams: Array<GroupDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_SetGroupData = async (request: { groupId: string, groupDataParams: Array<GroupDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1057
|
+
"hasEdit": false
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"eventName": "group_SetGroupStatistics",
|
|
1061
|
+
"script": "\npreHandlers.group_SetGroupStatistics = async (request: { groupId: string, groupStatisticsParams: Array<GroupStatisticsParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_SetGroupStatistics = async (request: { groupId: string, groupStatisticsParams: Array<GroupStatisticsParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1062
|
+
"hasEdit": false
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"eventName": "group_SetRemoveStatus",
|
|
1066
|
+
"script": "\npreHandlers.group_SetRemoveStatus = async (request: { groupId: string, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_SetRemoveStatus = async (request: { groupId: string, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1067
|
+
"hasEdit": false
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"eventName": "group_SetTag",
|
|
1071
|
+
"script": "\npreHandlers.group_SetTag = async (request: { groupId: string, key: string, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.group_SetTag = async (request: { groupId: string, key: string, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1072
|
+
"hasEdit": false
|
|
1073
|
+
}
|
|
1074
|
+
]
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"type": "inventory",
|
|
1078
|
+
"version": "FIRSTVER",
|
|
1079
|
+
"fullScript": "// first full script",
|
|
1080
|
+
"tsLastUpdate": 1736498427663,
|
|
1081
|
+
"childScripts": [
|
|
1082
|
+
{
|
|
1083
|
+
"eventName": "inventory_AddSegment",
|
|
1084
|
+
"script": "\npreHandlers.inventory_AddSegment = async (request: { itemId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_AddSegment = async (request: { itemId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1085
|
+
"hasEdit": false
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"eventName": "inventory_GetAmount",
|
|
1089
|
+
"script": "\npreHandlers.inventory_GetAmount = async (request: { itemId: string, gameId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetAmount = async (request: { itemId: string, gameId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1090
|
+
"hasEdit": false
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
"eventName": "inventory_GetAvatar",
|
|
1094
|
+
"script": "\npreHandlers.inventory_GetAvatar = async (request: { itemId: string, gameId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetAvatar = async (request: { itemId: string, gameId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1095
|
+
"hasEdit": false
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"eventName": "inventory_GetCatalogId",
|
|
1099
|
+
"script": "\npreHandlers.inventory_GetCatalogId = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetCatalogId = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1100
|
+
"hasEdit": false
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"eventName": "inventory_GetClassId",
|
|
1104
|
+
"script": "\npreHandlers.inventory_GetClassId = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetClassId = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1105
|
+
"hasEdit": false
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"eventName": "inventory_GetCreateLeaderboard",
|
|
1109
|
+
"script": "\npreHandlers.inventory_GetCreateLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: inventory_InfoRequestParam, loadFromCache: boolean, }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetCreateLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: inventory_InfoRequestParam, loadFromCache: boolean, }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1110
|
+
"hasEdit": false
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"eventName": "inventory_GetCustomData",
|
|
1114
|
+
"script": "\npreHandlers.inventory_GetCustomData = async (request: { itemId: string, customDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetCustomData = async (request: { itemId: string, customDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1115
|
+
"hasEdit": false
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"eventName": "inventory_GetDisplayName",
|
|
1119
|
+
"script": "\npreHandlers.inventory_GetDisplayName = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetDisplayName = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1120
|
+
"hasEdit": false
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"eventName": "inventory_GetItemData",
|
|
1124
|
+
"script": "\npreHandlers.inventory_GetItemData = async (request: { itemId: string, inventoryDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetItemData = async (request: { itemId: string, inventoryDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1125
|
+
"hasEdit": false
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"eventName": "inventory_GetItemInformation",
|
|
1129
|
+
"script": "\npreHandlers.inventory_GetItemInformation = async (request: { itemId: string, infoRequestParam: inventory_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetItemInformation = async (request: { itemId: string, infoRequestParam: inventory_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1130
|
+
"hasEdit": false
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"eventName": "inventory_GetItemStatistics",
|
|
1134
|
+
"script": "\npreHandlers.inventory_GetItemStatistics = async (request: { itemId: string, statisticsKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetItemStatistics = async (request: { itemId: string, statisticsKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1135
|
+
"hasEdit": false
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"eventName": "inventory_GetItemsWithDisplayName",
|
|
1139
|
+
"script": "\npreHandlers.inventory_GetItemsWithDisplayName = async (request: { keyword: string, infoRequestParam: inventory_InfoRequestParam, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetItemsWithDisplayName = async (request: { keyword: string, infoRequestParam: inventory_InfoRequestParam, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1140
|
+
"hasEdit": false
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"eventName": "inventory_GetItemsWithSegment",
|
|
1144
|
+
"script": "\npreHandlers.inventory_GetItemsWithSegment = async (request: { segment: string, skip: number, limit: number, infoRequestParam: inventory_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetItemsWithSegment = async (request: { segment: string, skip: number, limit: number, infoRequestParam: inventory_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1145
|
+
"hasEdit": false
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"eventName": "inventory_GetItemsWithTag",
|
|
1149
|
+
"script": "\npreHandlers.inventory_GetItemsWithTag = async (request: { key: string, value: string, skip: number, limit: number, infoRequestParam: inventory_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetItemsWithTag = async (request: { key: string, value: string, skip: number, limit: number, infoRequestParam: inventory_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1150
|
+
"hasEdit": false
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
"eventName": "inventory_GetItemType",
|
|
1154
|
+
"script": "\npreHandlers.inventory_GetItemType = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetItemType = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1155
|
+
"hasEdit": false
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"eventName": "inventory_GetOwner",
|
|
1159
|
+
"script": "\npreHandlers.inventory_GetOwner = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetOwner = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1160
|
+
"hasEdit": false
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"eventName": "inventory_GetRemoveStatus",
|
|
1164
|
+
"script": "\npreHandlers.inventory_GetRemoveStatus = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetRemoveStatus = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1165
|
+
"hasEdit": false
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"eventName": "inventory_GetSegment",
|
|
1169
|
+
"script": "\npreHandlers.inventory_GetSegment = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetSegment = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1170
|
+
"hasEdit": false
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"eventName": "inventory_GetStatisticsLeaderboardAroundItem",
|
|
1174
|
+
"script": "\npreHandlers.inventory_GetStatisticsLeaderboardAroundItem = async (request: { itemId: string, key: string, skip: number, limit: number, infoRequestParam: inventory_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetStatisticsLeaderboardAroundItem = async (request: { itemId: string, key: string, skip: number, limit: number, infoRequestParam: inventory_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1175
|
+
"hasEdit": false
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
"eventName": "inventory_GetStatisticsLeaderboard",
|
|
1179
|
+
"script": "\npreHandlers.inventory_GetStatisticsLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: inventory_InfoRequestParam, loadFromCache: boolean, version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetStatisticsLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: inventory_InfoRequestParam, loadFromCache: boolean, version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1180
|
+
"hasEdit": false
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
"eventName": "inventory_GetStatisticsLog",
|
|
1184
|
+
"script": "\npreHandlers.inventory_GetStatisticsLog = async (request: { keys: Array<string>, token: string, limit: number, itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetStatisticsLog = async (request: { keys: Array<string>, token: string, limit: number, itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1185
|
+
"hasEdit": false
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"eventName": "inventory_GetTag",
|
|
1189
|
+
"script": "\npreHandlers.inventory_GetTag = async (request: { itemId: string, tagKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetTag = async (request: { itemId: string, tagKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1190
|
+
"hasEdit": false
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"eventName": "inventory_GetTsCreate",
|
|
1194
|
+
"script": "\npreHandlers.inventory_GetTsCreate = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_GetTsCreate = async (request: { itemId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1195
|
+
"hasEdit": false
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"eventName": "inventory_RemoveSegment",
|
|
1199
|
+
"script": "\npreHandlers.inventory_RemoveSegment = async (request: { itemId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_RemoveSegment = async (request: { itemId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1200
|
+
"hasEdit": false
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"eventName": "inventory_RemoveTag",
|
|
1204
|
+
"script": "\npreHandlers.inventory_RemoveTag = async (request: { itemId: string, tag: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_RemoveTag = async (request: { itemId: string, tag: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1205
|
+
"hasEdit": false
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
"eventName": "inventory_SetAmount",
|
|
1209
|
+
"script": "\npreHandlers.inventory_SetAmount = async (request: { itemId: string, amount: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_SetAmount = async (request: { itemId: string, amount: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1210
|
+
"hasEdit": false
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
"eventName": "inventory_SetAvatar",
|
|
1214
|
+
"script": "\npreHandlers.inventory_SetAvatar = async (request: { itemId: string, type: number, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_SetAvatar = async (request: { itemId: string, type: number, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1215
|
+
"hasEdit": false
|
|
1216
|
+
},
|
|
1217
|
+
{
|
|
1218
|
+
"eventName": "inventory_SetCustomData",
|
|
1219
|
+
"script": "\npreHandlers.inventory_SetCustomData = async (request: { itemId: string, customDataParameters: Array<CustomDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_SetCustomData = async (request: { itemId: string, customDataParameters: Array<CustomDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1220
|
+
"hasEdit": false
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"eventName": "inventory_SetDisplayName",
|
|
1224
|
+
"script": "\npreHandlers.inventory_SetDisplayName = async (request: { itemId: string, displayName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_SetDisplayName = async (request: { itemId: string, displayName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1225
|
+
"hasEdit": false
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"eventName": "inventory_SetItemData",
|
|
1229
|
+
"script": "\npreHandlers.inventory_SetItemData = async (request: { itemId: string, inventoryDataParams: Array<ItemDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_SetItemData = async (request: { itemId: string, inventoryDataParams: Array<ItemDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1230
|
+
"hasEdit": false
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"eventName": "inventory_SetItemStatistics",
|
|
1234
|
+
"script": "\npreHandlers.inventory_SetItemStatistics = async (request: { itemId: string, inventoryStatisticsParams: Array<ItemStatisticsParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_SetItemStatistics = async (request: { itemId: string, inventoryStatisticsParams: Array<ItemStatisticsParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1235
|
+
"hasEdit": false
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"eventName": "inventory_SetOwner",
|
|
1239
|
+
"script": "\npreHandlers.inventory_SetOwner = async (request: { itemId: string, newOwnerId: string, newOwnerType: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_SetOwner = async (request: { itemId: string, newOwnerId: string, newOwnerType: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1240
|
+
"hasEdit": false
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"eventName": "inventory_SetRemoveStatus",
|
|
1244
|
+
"script": "\npreHandlers.inventory_SetRemoveStatus = async (request: { itemId: string, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_SetRemoveStatus = async (request: { itemId: string, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1245
|
+
"hasEdit": false
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"eventName": "inventory_SetTag",
|
|
1249
|
+
"script": "\npreHandlers.inventory_SetTag = async (request: { itemId: string, key: string, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.inventory_SetTag = async (request: { itemId: string, key: string, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1250
|
+
"hasEdit": false
|
|
1251
|
+
}
|
|
1252
|
+
]
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
"type": "masterPlayer",
|
|
1256
|
+
"version": "FIRSTVER",
|
|
1257
|
+
"fullScript": "// first full script",
|
|
1258
|
+
"tsLastUpdate": 1736498427663,
|
|
1259
|
+
"childScripts": [
|
|
1260
|
+
{
|
|
1261
|
+
"eventName": "masterPlayer_AddPushNotification",
|
|
1262
|
+
"script": "\npreHandlers.masterPlayer_AddPushNotification = async (request: { userId: string, token: string, platformType: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_AddPushNotification = async (request: { userId: string, token: string, platformType: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1263
|
+
"hasEdit": false
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
"eventName": "masterPlayer_AddSegment",
|
|
1267
|
+
"script": "\npreHandlers.masterPlayer_AddSegment = async (request: { userId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_AddSegment = async (request: { userId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1268
|
+
"hasEdit": false
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
"eventName": "masterPlayer_ChangeAccountPassword",
|
|
1272
|
+
"script": "\npreHandlers.masterPlayer_ChangeAccountPassword = async (request: { userId: string, currentPassword: string, password: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_ChangeAccountPassword = async (request: { userId: string, currentPassword: string, password: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1273
|
+
"hasEdit": false
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"eventName": "masterPlayer_GetAvatar",
|
|
1277
|
+
"script": "\npreHandlers.masterPlayer_GetAvatar = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetAvatar = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1278
|
+
"hasEdit": false
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"eventName": "masterPlayer_GetCountryCode",
|
|
1282
|
+
"script": "\npreHandlers.masterPlayer_GetCountryCode = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetCountryCode = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1283
|
+
"hasEdit": false
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
"eventName": "masterPlayer_GetCreateLeaderboard",
|
|
1287
|
+
"script": "\npreHandlers.masterPlayer_GetCreateLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam, loadFromCache: boolean, }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetCreateLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam, loadFromCache: boolean, }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1288
|
+
"hasEdit": false
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"eventName": "masterPlayer_GetCurrencyLeaderboard",
|
|
1292
|
+
"script": "\npreHandlers.masterPlayer_GetCurrencyLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetCurrencyLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam, loadFromCache: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1293
|
+
"hasEdit": false
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
"eventName": "masterPlayer_GetCurrencyLog",
|
|
1297
|
+
"script": "\npreHandlers.masterPlayer_GetCurrencyLog = async (request: { keys: Array<string>, token: string, limit: number, userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetCurrencyLog = async (request: { keys: Array<string>, token: string, limit: number, userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1298
|
+
"hasEdit": false
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"eventName": "masterPlayer_GetCustomData",
|
|
1302
|
+
"script": "\npreHandlers.masterPlayer_GetCustomData = async (request: { userId: string, customDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetCustomData = async (request: { userId: string, customDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1303
|
+
"hasEdit": false
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"eventName": "masterPlayer_GetDisplayName",
|
|
1307
|
+
"script": "\npreHandlers.masterPlayer_GetDisplayName = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetDisplayName = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1308
|
+
"hasEdit": false
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
"eventName": "masterPlayer_GetEmail",
|
|
1312
|
+
"script": "\npreHandlers.masterPlayer_GetEmail = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetEmail = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1313
|
+
"hasEdit": false
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"eventName": "masterPlayer_GetExternal",
|
|
1317
|
+
"script": "\npreHandlers.masterPlayer_GetExternal = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetExternal = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1318
|
+
"hasEdit": false
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"eventName": "masterPlayer_GetIpAddressCreate",
|
|
1322
|
+
"script": "\npreHandlers.masterPlayer_GetIpAddressCreate = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetIpAddressCreate = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1323
|
+
"hasEdit": false
|
|
1324
|
+
},
|
|
1325
|
+
{
|
|
1326
|
+
"eventName": "masterPlayer_GetLastLoginLeaderboard",
|
|
1327
|
+
"script": "\npreHandlers.masterPlayer_GetLastLoginLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam, loadFromCache: boolean, }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetLastLoginLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam, loadFromCache: boolean, }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1328
|
+
"hasEdit": false
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
"eventName": "masterPlayer_GetPlayerBan",
|
|
1332
|
+
"script": "\npreHandlers.masterPlayer_GetPlayerBan = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayerBan = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1333
|
+
"hasEdit": false
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
"eventName": "masterPlayer_GetPlayerCurrency",
|
|
1337
|
+
"script": "\npreHandlers.masterPlayer_GetPlayerCurrency = async (request: { userId: string, playerCurrencyKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayerCurrency = async (request: { userId: string, playerCurrencyKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1338
|
+
"hasEdit": false
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
"eventName": "masterPlayer_GetPlayerData",
|
|
1342
|
+
"script": "\npreHandlers.masterPlayer_GetPlayerData = async (request: { userId: string, playerDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayerData = async (request: { userId: string, playerDataKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1343
|
+
"hasEdit": false
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
"eventName": "masterPlayer_GetPlayerInformation",
|
|
1347
|
+
"script": "\npreHandlers.masterPlayer_GetPlayerInformation = async (request: { userId: string, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayerInformation = async (request: { userId: string, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1348
|
+
"hasEdit": false
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
"eventName": "masterPlayer_GetPlayerStatistics",
|
|
1352
|
+
"script": "\npreHandlers.masterPlayer_GetPlayerStatistics = async (request: { userId: string, playerStatisticsKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayerStatistics = async (request: { userId: string, playerStatisticsKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1353
|
+
"hasEdit": false
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
"eventName": "masterPlayer_GetPlayersWithApple",
|
|
1357
|
+
"script": "\npreHandlers.masterPlayer_GetPlayersWithApple = async (request: { appleIds: Array<string>, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayersWithApple = async (request: { appleIds: Array<string>, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1358
|
+
"hasEdit": false
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"eventName": "masterPlayer_GetPlayersWithDisplayName",
|
|
1362
|
+
"script": "\npreHandlers.masterPlayer_GetPlayersWithDisplayName = async (request: { keyword: string, infoRequestParam: masterPlayer_InfoRequestParam, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayersWithDisplayName = async (request: { keyword: string, infoRequestParam: masterPlayer_InfoRequestParam, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1363
|
+
"hasEdit": false
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"eventName": "masterPlayer_GetPlayersWithFacebook",
|
|
1367
|
+
"script": "\npreHandlers.masterPlayer_GetPlayersWithFacebook = async (request: { facebookIds: Array<string>, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayersWithFacebook = async (request: { facebookIds: Array<string>, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1368
|
+
"hasEdit": false
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
"eventName": "masterPlayer_GetPlayersWithGameCenter",
|
|
1372
|
+
"script": "\npreHandlers.masterPlayer_GetPlayersWithGameCenter = async (request: { playerIds: Array<string>, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayersWithGameCenter = async (request: { playerIds: Array<string>, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1373
|
+
"hasEdit": false
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
"eventName": "masterPlayer_GetPlayersWithGenericService",
|
|
1377
|
+
"script": "\npreHandlers.masterPlayer_GetPlayersWithGenericService = async (request: { serviceName: string, genericIds: Array<string>, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayersWithGenericService = async (request: { serviceName: string, genericIds: Array<string>, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1378
|
+
"hasEdit": false
|
|
1379
|
+
},
|
|
1380
|
+
{
|
|
1381
|
+
"eventName": "masterPlayer_GetPlayersWithGooglePlayGameService",
|
|
1382
|
+
"script": "\npreHandlers.masterPlayer_GetPlayersWithGooglePlayGameService = async (request: { playerIds: Array<string>, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayersWithGooglePlayGameService = async (request: { playerIds: Array<string>, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1383
|
+
"hasEdit": false
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
"eventName": "masterPlayer_GetPlayersWithGoogle",
|
|
1387
|
+
"script": "\npreHandlers.masterPlayer_GetPlayersWithGoogle = async (request: { googleIds: Array<string>, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayersWithGoogle = async (request: { googleIds: Array<string>, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1388
|
+
"hasEdit": false
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"eventName": "masterPlayer_GetPlayersWithSegment",
|
|
1392
|
+
"script": "\npreHandlers.masterPlayer_GetPlayersWithSegment = async (request: { segment: string, skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayersWithSegment = async (request: { segment: string, skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1393
|
+
"hasEdit": false
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"eventName": "masterPlayer_GetPlayersWithTag",
|
|
1397
|
+
"script": "\npreHandlers.masterPlayer_GetPlayersWithTag = async (request: { key: string, value: string, skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPlayersWithTag = async (request: { key: string, value: string, skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1398
|
+
"hasEdit": false
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
"eventName": "masterPlayer_GetPushNotification",
|
|
1402
|
+
"script": "\npreHandlers.masterPlayer_GetPushNotification = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetPushNotification = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1403
|
+
"hasEdit": false
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"eventName": "masterPlayer_GetSegment",
|
|
1407
|
+
"script": "\npreHandlers.masterPlayer_GetSegment = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetSegment = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1408
|
+
"hasEdit": false
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
"eventName": "masterPlayer_GetStatisticsLeaderboardAroundPlayer",
|
|
1412
|
+
"script": "\npreHandlers.masterPlayer_GetStatisticsLeaderboardAroundPlayer = async (request: { userId: string, key: string, skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetStatisticsLeaderboardAroundPlayer = async (request: { userId: string, key: string, skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1413
|
+
"hasEdit": false
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
"eventName": "masterPlayer_GetStatisticsLeaderboard",
|
|
1417
|
+
"script": "\npreHandlers.masterPlayer_GetStatisticsLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam, loadFromCache: boolean, version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetStatisticsLeaderboard = async (request: { key: string, skip: number, limit: number, infoRequestParam: masterPlayer_InfoRequestParam, loadFromCache: boolean, version: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1418
|
+
"hasEdit": false
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"eventName": "masterPlayer_GetStatisticsLog",
|
|
1422
|
+
"script": "\npreHandlers.masterPlayer_GetStatisticsLog = async (request: { keys: Array<string>, token: string, limit: number, userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetStatisticsLog = async (request: { keys: Array<string>, token: string, limit: number, userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1423
|
+
"hasEdit": false
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"eventName": "masterPlayer_GetTag",
|
|
1427
|
+
"script": "\npreHandlers.masterPlayer_GetTag = async (request: { userId: string, tagKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetTag = async (request: { userId: string, tagKeys: Array<string> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1428
|
+
"hasEdit": false
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"eventName": "masterPlayer_GetTsCreate",
|
|
1432
|
+
"script": "\npreHandlers.masterPlayer_GetTsCreate = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetTsCreate = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1433
|
+
"hasEdit": false
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
"eventName": "masterPlayer_GetTsLastLogin",
|
|
1437
|
+
"script": "\npreHandlers.masterPlayer_GetTsLastLogin = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_GetTsLastLogin = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1438
|
+
"hasEdit": false
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
"eventName": "masterPlayer_LinkAccount",
|
|
1442
|
+
"script": "\npreHandlers.masterPlayer_LinkAccount = async (request: { userId: string, username: string, password: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkAccount = async (request: { userId: string, username: string, password: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1443
|
+
"hasEdit": false
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
"eventName": "masterPlayer_LinkAndroidDeviceId",
|
|
1447
|
+
"script": "\npreHandlers.masterPlayer_LinkAndroidDeviceId = async (request: { userId: string, androidDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkAndroidDeviceId = async (request: { userId: string, androidDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1448
|
+
"hasEdit": false
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
"eventName": "masterPlayer_LinkApple",
|
|
1452
|
+
"script": "\npreHandlers.masterPlayer_LinkApple = async (request: { userId: string, token: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkApple = async (request: { userId: string, token: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1453
|
+
"hasEdit": false
|
|
1454
|
+
},
|
|
1455
|
+
{
|
|
1456
|
+
"eventName": "masterPlayer_LinkCustomDeviceId",
|
|
1457
|
+
"script": "\npreHandlers.masterPlayer_LinkCustomDeviceId = async (request: { userId: string, customDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkCustomDeviceId = async (request: { userId: string, customDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1458
|
+
"hasEdit": false
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"eventName": "masterPlayer_LinkCustomId",
|
|
1462
|
+
"script": "\npreHandlers.masterPlayer_LinkCustomId = async (request: { userId: string, customId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkCustomId = async (request: { userId: string, customId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1463
|
+
"hasEdit": false
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"eventName": "masterPlayer_LinkEditorDeviceId",
|
|
1467
|
+
"script": "\npreHandlers.masterPlayer_LinkEditorDeviceId = async (request: { userId: string, editorDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkEditorDeviceId = async (request: { userId: string, editorDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1468
|
+
"hasEdit": false
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
"eventName": "masterPlayer_LinkFacebook",
|
|
1472
|
+
"script": "\npreHandlers.masterPlayer_LinkFacebook = async (request: { userId: string, token: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkFacebook = async (request: { userId: string, token: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1473
|
+
"hasEdit": false
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
"eventName": "masterPlayer_LinkGameCenter",
|
|
1477
|
+
"script": "\npreHandlers.masterPlayer_LinkGameCenter = async (request: { userId: string, playerId: string, name: string, publicKeyUrl: string, signature: string, salt: string, timestamp: number, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkGameCenter = async (request: { userId: string, playerId: string, name: string, publicKeyUrl: string, signature: string, salt: string, timestamp: number, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1478
|
+
"hasEdit": false
|
|
1479
|
+
},
|
|
1480
|
+
{
|
|
1481
|
+
"eventName": "masterPlayer_LinkGenericService",
|
|
1482
|
+
"script": "\npreHandlers.masterPlayer_LinkGenericService = async (request: { userId: string, serviceName: string, serviceData: { [k: string]: any }, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkGenericService = async (request: { userId: string, serviceName: string, serviceData: { [k: string]: any }, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1483
|
+
"hasEdit": false
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"eventName": "masterPlayer_LinkGooglePlayGameService",
|
|
1487
|
+
"script": "\npreHandlers.masterPlayer_LinkGooglePlayGameService = async (request: { userId: string, token: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkGooglePlayGameService = async (request: { userId: string, token: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1488
|
+
"hasEdit": false
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
"eventName": "masterPlayer_LinkGoogle",
|
|
1492
|
+
"script": "\npreHandlers.masterPlayer_LinkGoogle = async (request: { userId: string, token: string, googleLoginType: GoogleLoginType, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkGoogle = async (request: { userId: string, token: string, googleLoginType: GoogleLoginType, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1493
|
+
"hasEdit": false
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
"eventName": "masterPlayer_LinkiOSDeviceId",
|
|
1497
|
+
"script": "\npreHandlers.masterPlayer_LinkiOSDeviceId = async (request: { userId: string, iOSDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkiOSDeviceId = async (request: { userId: string, iOSDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1498
|
+
"hasEdit": false
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"eventName": "masterPlayer_LinkLinuxDeviceId",
|
|
1502
|
+
"script": "\npreHandlers.masterPlayer_LinkLinuxDeviceId = async (request: { userId: string, linuxDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkLinuxDeviceId = async (request: { userId: string, linuxDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1503
|
+
"hasEdit": false
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
"eventName": "masterPlayer_LinkMacOSDeviceId",
|
|
1507
|
+
"script": "\npreHandlers.masterPlayer_LinkMacOSDeviceId = async (request: { userId: string, macOSDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkMacOSDeviceId = async (request: { userId: string, macOSDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1508
|
+
"hasEdit": false
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
"eventName": "masterPlayer_LinkWindowsDeviceId",
|
|
1512
|
+
"script": "\npreHandlers.masterPlayer_LinkWindowsDeviceId = async (request: { userId: string, windowsDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkWindowsDeviceId = async (request: { userId: string, windowsDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1513
|
+
"hasEdit": false
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
"eventName": "masterPlayer_LinkWindowsPhoneDeviceId",
|
|
1517
|
+
"script": "\npreHandlers.masterPlayer_LinkWindowsPhoneDeviceId = async (request: { userId: string, windowsPhoneDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_LinkWindowsPhoneDeviceId = async (request: { userId: string, windowsPhoneDeviceId: string, forceLink: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1518
|
+
"hasEdit": false
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
"eventName": "masterPlayer_RemovePushNotification",
|
|
1522
|
+
"script": "\npreHandlers.masterPlayer_RemovePushNotification = async (request: { userId: string, pushId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_RemovePushNotification = async (request: { userId: string, pushId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1523
|
+
"hasEdit": false
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
"eventName": "masterPlayer_RemoveSegment",
|
|
1527
|
+
"script": "\npreHandlers.masterPlayer_RemoveSegment = async (request: { userId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_RemoveSegment = async (request: { userId: string, segment: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1528
|
+
"hasEdit": false
|
|
1529
|
+
},
|
|
1530
|
+
{
|
|
1531
|
+
"eventName": "masterPlayer_RemoveTag",
|
|
1532
|
+
"script": "\npreHandlers.masterPlayer_RemoveTag = async (request: { userId: string, key: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_RemoveTag = async (request: { userId: string, key: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1533
|
+
"hasEdit": false
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
"eventName": "masterPlayer_ResetAccountPassword",
|
|
1537
|
+
"script": "\npreHandlers.masterPlayer_ResetAccountPassword = async (request: { userId: string, password: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_ResetAccountPassword = async (request: { userId: string, password: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1538
|
+
"hasEdit": false
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"eventName": "masterPlayer_SendEmail",
|
|
1542
|
+
"script": "\npreHandlers.masterPlayer_SendEmail = async (request: { userId: string, subject: string, contentHtml: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SendEmail = async (request: { userId: string, subject: string, contentHtml: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1543
|
+
"hasEdit": false
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
"eventName": "masterPlayer_SendPushNotification",
|
|
1547
|
+
"script": "\npreHandlers.masterPlayer_SendPushNotification = async (request: { userId: string, title: string, body: string, badge: number, sound: string, icon: string, data: { [k: string]: any } }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SendPushNotification = async (request: { userId: string, title: string, body: string, badge: number, sound: string, icon: string, data: { [k: string]: any } }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1548
|
+
"hasEdit": false
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
"eventName": "masterPlayer_SendSocketOperationEvent",
|
|
1552
|
+
"script": "\npreHandlers.masterPlayer_SendSocketOperationEvent = async (request: { userId: string, eventCode: number, eventParameters: { [k: string]: any }, eventEncrypted: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SendSocketOperationEvent = async (request: { userId: string, eventCode: number, eventParameters: { [k: string]: any }, eventEncrypted: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1553
|
+
"hasEdit": false
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
"eventName": "masterPlayer_SetAvatar",
|
|
1557
|
+
"script": "\npreHandlers.masterPlayer_SetAvatar = async (request: { userId: string, type: number, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SetAvatar = async (request: { userId: string, type: number, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1558
|
+
"hasEdit": false
|
|
1559
|
+
},
|
|
1560
|
+
{
|
|
1561
|
+
"eventName": "masterPlayer_SetCountryCode",
|
|
1562
|
+
"script": "\npreHandlers.masterPlayer_SetCountryCode = async (request: { userId: string, countryCode: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SetCountryCode = async (request: { userId: string, countryCode: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1563
|
+
"hasEdit": false
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
"eventName": "masterPlayer_SetCustomData",
|
|
1567
|
+
"script": "\npreHandlers.masterPlayer_SetCustomData = async (request: { userId: string, customDataParameters: Array<CustomDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SetCustomData = async (request: { userId: string, customDataParameters: Array<CustomDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1568
|
+
"hasEdit": false
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
"eventName": "masterPlayer_SetDisplayName",
|
|
1572
|
+
"script": "\npreHandlers.masterPlayer_SetDisplayName = async (request: { userId: string, displayName: string, uniqueDisplayName: boolean, }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SetDisplayName = async (request: { userId: string, displayName: string, uniqueDisplayName: boolean, }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1573
|
+
"hasEdit": false
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"eventName": "masterPlayer_SetEmail",
|
|
1577
|
+
"script": "\npreHandlers.masterPlayer_SetEmail = async (request: { userId: string, email: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SetEmail = async (request: { userId: string, email: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1578
|
+
"hasEdit": false
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"eventName": "masterPlayer_SetPlayerBan",
|
|
1582
|
+
"script": "\npreHandlers.masterPlayer_SetPlayerBan = async (request: { userId: string, tsExpire: number, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SetPlayerBan = async (request: { userId: string, tsExpire: number, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1583
|
+
"hasEdit": false
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
"eventName": "masterPlayer_SetPlayerCurrency",
|
|
1587
|
+
"script": "\npreHandlers.masterPlayer_SetPlayerCurrency = async (request: { userId: string, playerCurrencyParams: Array<PlayerCurrencyParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SetPlayerCurrency = async (request: { userId: string, playerCurrencyParams: Array<PlayerCurrencyParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1588
|
+
"hasEdit": false
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
"eventName": "masterPlayer_SetPlayerData",
|
|
1592
|
+
"script": "\npreHandlers.masterPlayer_SetPlayerData = async (request: { userId: string, playerDataParams: Array<PlayerDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SetPlayerData = async (request: { userId: string, playerDataParams: Array<PlayerDataParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1593
|
+
"hasEdit": false
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
"eventName": "masterPlayer_SetPlayerStatistics",
|
|
1597
|
+
"script": "\npreHandlers.masterPlayer_SetPlayerStatistics = async (request: { userId: string, playerStatisticsParams: Array<PlayerStatisticsParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SetPlayerStatistics = async (request: { userId: string, playerStatisticsParams: Array<PlayerStatisticsParam>, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1598
|
+
"hasEdit": false
|
|
1599
|
+
},
|
|
1600
|
+
{
|
|
1601
|
+
"eventName": "masterPlayer_SetTag",
|
|
1602
|
+
"script": "\npreHandlers.masterPlayer_SetTag = async (request: { userId: string, key: string, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SetTag = async (request: { userId: string, key: string, value: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1603
|
+
"hasEdit": false
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
"eventName": "masterPlayer_SetTsLastLogin",
|
|
1607
|
+
"script": "\npreHandlers.masterPlayer_SetTsLastLogin = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_SetTsLastLogin = async (request: { userId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1608
|
+
"hasEdit": false
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
"eventName": "masterPlayer_UnlinkAccount",
|
|
1612
|
+
"script": "\npreHandlers.masterPlayer_UnlinkAccount = async (request: { userId: string, username: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkAccount = async (request: { userId: string, username: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1613
|
+
"hasEdit": false
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
"eventName": "masterPlayer_UnlinkAndroidDeviceId",
|
|
1617
|
+
"script": "\npreHandlers.masterPlayer_UnlinkAndroidDeviceId = async (request: { userId: string, androidDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkAndroidDeviceId = async (request: { userId: string, androidDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1618
|
+
"hasEdit": false
|
|
1619
|
+
},
|
|
1620
|
+
{
|
|
1621
|
+
"eventName": "masterPlayer_UnlinkApple",
|
|
1622
|
+
"script": "\npreHandlers.masterPlayer_UnlinkApple = async (request: { userId: string, appleId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkApple = async (request: { userId: string, appleId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1623
|
+
"hasEdit": false
|
|
1624
|
+
},
|
|
1625
|
+
{
|
|
1626
|
+
"eventName": "masterPlayer_UnlinkCustomDeviceId",
|
|
1627
|
+
"script": "\npreHandlers.masterPlayer_UnlinkCustomDeviceId = async (request: { userId: string, customDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkCustomDeviceId = async (request: { userId: string, customDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1628
|
+
"hasEdit": false
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
"eventName": "masterPlayer_UnlinkCustomId",
|
|
1632
|
+
"script": "\npreHandlers.masterPlayer_UnlinkCustomId = async (request: { userId: string, customId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkCustomId = async (request: { userId: string, customId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1633
|
+
"hasEdit": false
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
"eventName": "masterPlayer_UnlinkEditorDeviceId",
|
|
1637
|
+
"script": "\npreHandlers.masterPlayer_UnlinkEditorDeviceId = async (request: { userId: string, editorDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkEditorDeviceId = async (request: { userId: string, editorDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1638
|
+
"hasEdit": false
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
"eventName": "masterPlayer_UnlinkFacebook",
|
|
1642
|
+
"script": "\npreHandlers.masterPlayer_UnlinkFacebook = async (request: { userId: string, facebookId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkFacebook = async (request: { userId: string, facebookId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1643
|
+
"hasEdit": false
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
"eventName": "masterPlayer_UnlinkGameCenter",
|
|
1647
|
+
"script": "\npreHandlers.masterPlayer_UnlinkGameCenter = async (request: { userId: string, playerId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkGameCenter = async (request: { userId: string, playerId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1648
|
+
"hasEdit": false
|
|
1649
|
+
},
|
|
1650
|
+
{
|
|
1651
|
+
"eventName": "masterPlayer_UnlinkGenericService",
|
|
1652
|
+
"script": "\npreHandlers.masterPlayer_UnlinkGenericService = async (request: { userId: string, serviceName: string, serviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkGenericService = async (request: { userId: string, serviceName: string, serviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1653
|
+
"hasEdit": false
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"eventName": "masterPlayer_UnlinkGooglePlayGameService",
|
|
1657
|
+
"script": "\npreHandlers.masterPlayer_UnlinkGooglePlayGameService = async (request: { userId: string, playerId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkGooglePlayGameService = async (request: { userId: string, playerId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1658
|
+
"hasEdit": false
|
|
1659
|
+
},
|
|
1660
|
+
{
|
|
1661
|
+
"eventName": "masterPlayer_UnlinkGoogle",
|
|
1662
|
+
"script": "\npreHandlers.masterPlayer_UnlinkGoogle = async (request: { userId: string, googleId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkGoogle = async (request: { userId: string, googleId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1663
|
+
"hasEdit": false
|
|
1664
|
+
},
|
|
1665
|
+
{
|
|
1666
|
+
"eventName": "masterPlayer_UnlinkiOSDeviceId",
|
|
1667
|
+
"script": "\npreHandlers.masterPlayer_UnlinkiOSDeviceId = async (request: { userId: string, iOSDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkiOSDeviceId = async (request: { userId: string, iOSDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1668
|
+
"hasEdit": false
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
"eventName": "masterPlayer_UnlinkLinuxDeviceId",
|
|
1672
|
+
"script": "\npreHandlers.masterPlayer_UnlinkLinuxDeviceId = async (request: { userId: string, linuxDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkLinuxDeviceId = async (request: { userId: string, linuxDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1673
|
+
"hasEdit": false
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"eventName": "masterPlayer_UnlinkMacOSDeviceId",
|
|
1677
|
+
"script": "\npreHandlers.masterPlayer_UnlinkMacOSDeviceId = async (request: { userId: string, macOSDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkMacOSDeviceId = async (request: { userId: string, macOSDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1678
|
+
"hasEdit": false
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
"eventName": "masterPlayer_UnlinkWindowsDeviceId",
|
|
1682
|
+
"script": "\npreHandlers.masterPlayer_UnlinkWindowsDeviceId = async (request: { userId: string, windowsDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkWindowsDeviceId = async (request: { userId: string, windowsDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1683
|
+
"hasEdit": false
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
"eventName": "masterPlayer_UnlinkWindowsPhoneDeviceId",
|
|
1687
|
+
"script": "\npreHandlers.masterPlayer_UnlinkWindowsPhoneDeviceId = async (request: { userId: string, windowsPhoneDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.masterPlayer_UnlinkWindowsPhoneDeviceId = async (request: { userId: string, windowsPhoneDeviceId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1688
|
+
"hasEdit": false
|
|
1689
|
+
}
|
|
1690
|
+
]
|
|
1691
|
+
},
|
|
1692
|
+
{
|
|
1693
|
+
"type": "multiplayer",
|
|
1694
|
+
"version": "FIRSTVER",
|
|
1695
|
+
"fullScript": "// first full script",
|
|
1696
|
+
"tsLastUpdate": 1736498427663,
|
|
1697
|
+
"childScripts": [
|
|
1698
|
+
{
|
|
1699
|
+
"eventName": "multiplayer_CancelAllMatchmakingTicket",
|
|
1700
|
+
"script": "\npreHandlers.multiplayer_CancelAllMatchmakingTicket = async (request: { userId: string, queueName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.multiplayer_CancelAllMatchmakingTicket = async (request: { userId: string, queueName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1701
|
+
"hasEdit": false
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
"eventName": "multiplayer_CancelMatchmakingTicket",
|
|
1705
|
+
"script": "\npreHandlers.multiplayer_CancelMatchmakingTicket = async (request: { userId: string, ticketId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.multiplayer_CancelMatchmakingTicket = async (request: { userId: string, ticketId: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1706
|
+
"hasEdit": false
|
|
1707
|
+
},
|
|
1708
|
+
{
|
|
1709
|
+
"eventName": "multiplayer_CreateMatchmakingTicket",
|
|
1710
|
+
"script": "\npreHandlers.multiplayer_CreateMatchmakingTicket = async (request: { userId: string, giveUpAfterSeconds: number, queueName: string, attribute: GNHashtable, members: string[] }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.multiplayer_CreateMatchmakingTicket = async (request: { userId: string, giveUpAfterSeconds: number, queueName: string, attribute: GNHashtable, members: string[] }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1711
|
+
"hasEdit": false
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"eventName": "multiplayer_GetAllMatchmakingTicket",
|
|
1715
|
+
"script": "\npreHandlers.multiplayer_GetAllMatchmakingTicket = async (request: { status: number, returnMember: boolean, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.multiplayer_GetAllMatchmakingTicket = async (request: { status: number, returnMember: boolean, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1716
|
+
"hasEdit": false
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
"eventName": "multiplayer_GetAllMatch",
|
|
1720
|
+
"script": "\npreHandlers.multiplayer_GetAllMatch = async (request: { returnMember: boolean, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.multiplayer_GetAllMatch = async (request: { returnMember: boolean, skip: number, limit: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1721
|
+
"hasEdit": false
|
|
1722
|
+
},
|
|
1723
|
+
{
|
|
1724
|
+
"eventName": "multiplayer_GetMatchmakingTicket",
|
|
1725
|
+
"script": "\npreHandlers.multiplayer_GetMatchmakingTicket = async (request: { userId: string, ticketId: string, returnMember: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.multiplayer_GetMatchmakingTicket = async (request: { userId: string, ticketId: string, returnMember: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1726
|
+
"hasEdit": false
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
"eventName": "multiplayer_GetMatch",
|
|
1730
|
+
"script": "\npreHandlers.multiplayer_GetMatch = async (request: { matchId: string, returnMember: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.multiplayer_GetMatch = async (request: { matchId: string, returnMember: boolean }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1731
|
+
"hasEdit": false
|
|
1732
|
+
},
|
|
1733
|
+
{
|
|
1734
|
+
"eventName": "multiplayer_GetQueueStatistics",
|
|
1735
|
+
"script": "\npreHandlers.multiplayer_GetQueueStatistics = async (request: { queueName: string, timeInSeconds: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.multiplayer_GetQueueStatistics = async (request: { queueName: string, timeInSeconds: number }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1736
|
+
"hasEdit": false
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"eventName": "multiplayer_JoinMatchmakingTicket",
|
|
1740
|
+
"script": "\npreHandlers.multiplayer_JoinMatchmakingTicket = async (request: { userId: string, ticketId: string, attribute: GNHashtable }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.multiplayer_JoinMatchmakingTicket = async (request: { userId: string, ticketId: string, attribute: GNHashtable }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1741
|
+
"hasEdit": false
|
|
1742
|
+
},
|
|
1743
|
+
{
|
|
1744
|
+
"eventName": "multiplayer_ListMatchmakingTicketsForPlayer",
|
|
1745
|
+
"script": "\npreHandlers.multiplayer_ListMatchmakingTicketsForPlayer = async (request: { userId: string, queueName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.multiplayer_ListMatchmakingTicketsForPlayer = async (request: { userId: string, queueName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1746
|
+
"hasEdit": false
|
|
1747
|
+
}
|
|
1748
|
+
]
|
|
1749
|
+
},
|
|
1750
|
+
{
|
|
1751
|
+
"type": "storeInventory",
|
|
1752
|
+
"version": "FIRSTVER",
|
|
1753
|
+
"fullScript": "// first full script",
|
|
1754
|
+
"tsLastUpdate": 1736498427663,
|
|
1755
|
+
"childScripts": [
|
|
1756
|
+
{
|
|
1757
|
+
"eventName": "storeInventory_BuyStoreItem",
|
|
1758
|
+
"script": "\npreHandlers.storeInventory_BuyStoreItem = async (request: { storeId: string, id: string, type: number, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.storeInventory_BuyStoreItem = async (request: { storeId: string, id: string, type: number, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1759
|
+
"hasEdit": false
|
|
1760
|
+
},
|
|
1761
|
+
{
|
|
1762
|
+
"eventName": "storeInventory_GetCreateLeaderboard",
|
|
1763
|
+
"script": "\npreHandlers.storeInventory_GetCreateLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: storeInventory_InfoRequestParam, loadFromCache: boolean, }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.storeInventory_GetCreateLeaderboard = async (request: { skip: number, limit: number, infoRequestParam: storeInventory_InfoRequestParam, loadFromCache: boolean, }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1764
|
+
"hasEdit": false
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
"eventName": "storeInventory_GetStoreItemInformation",
|
|
1768
|
+
"script": "\npreHandlers.storeInventory_GetStoreItemInformation = async (request: { storeId: string, infoRequestParam: storeInventory_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.storeInventory_GetStoreItemInformation = async (request: { storeId: string, infoRequestParam: storeInventory_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1769
|
+
"hasEdit": false
|
|
1770
|
+
},
|
|
1771
|
+
{
|
|
1772
|
+
"eventName": "storeInventory_GetStoreItemsWithTag",
|
|
1773
|
+
"script": "\npreHandlers.storeInventory_GetStoreItemsWithTag = async (request: { key: string, value: string, skip: number, limit: number, infoRequestParam: storeInventory_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.storeInventory_GetStoreItemsWithTag = async (request: { key: string, value: string, skip: number, limit: number, infoRequestParam: storeInventory_InfoRequestParam }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1774
|
+
"hasEdit": false
|
|
1775
|
+
},
|
|
1776
|
+
{
|
|
1777
|
+
"eventName": "storeInventory_GetStoreLog",
|
|
1778
|
+
"script": "\npreHandlers.storeInventory_GetStoreLog = async (request: { storeId: string; storeReceiveTypes: Array<number>; id: string; limit: number; token: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.storeInventory_GetStoreLog = async (request: { storeId: string; storeReceiveTypes: Array<number>; id: string; limit: number; token: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1779
|
+
"hasEdit": false
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
"eventName": "storeInventory_GrantStoreItem",
|
|
1783
|
+
"script": "\npreHandlers.storeInventory_GrantStoreItem = async (request: { storeId: string, displayName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.storeInventory_GrantStoreItem = async (request: { storeId: string, displayName: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1784
|
+
"hasEdit": false
|
|
1785
|
+
},
|
|
1786
|
+
{
|
|
1787
|
+
"eventName": "storeInventory_PresentStoreItem",
|
|
1788
|
+
"script": "\npreHandlers.storeInventory_PresentStoreItem = async (request: { storeId: string, id: string, type: number, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.storeInventory_PresentStoreItem = async (request: { storeId: string, id: string, type: number, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1789
|
+
"hasEdit": false
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
"eventName": "storeInventory_SetRemoveStatus",
|
|
1793
|
+
"script": "\npreHandlers.storeInventory_SetRemoveStatus = async (request: { storeId: string, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.storeInventory_SetRemoveStatus = async (request: { storeId: string, reason: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1794
|
+
"hasEdit": false
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
"eventName": "storeInventory_SetStoreItemInformation",
|
|
1798
|
+
"script": "\npreHandlers.storeInventory_SetStoreItemInformation = async (request: { storeId: string, storeDataParams: Array<StoreDataParam>, storeItemParams: Array<StoreItemParam>, storeCurrencyParams: Array<CurrencyParam>, priceCurrencyParams: Array<CurrencyParam>, inAppPurchaseParam: InAppPurchaseParam, displayName: string, avatarParam: AvatarParam, tagParams: Array<TagParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.storeInventory_SetStoreItemInformation = async (request: { storeId: string, storeDataParams: Array<StoreDataParam>, storeItemParams: Array<StoreItemParam>, storeCurrencyParams: Array<CurrencyParam>, priceCurrencyParams: Array<CurrencyParam>, inAppPurchaseParam: InAppPurchaseParam, displayName: string, avatarParam: AvatarParam, tagParams: Array<TagParam> }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1799
|
+
"hasEdit": false
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
"eventName": "storeInventory_ValidateAppleAppStoreReceipt",
|
|
1803
|
+
"script": "\npreHandlers.storeInventory_ValidateAppleAppStoreReceipt = async (request: { receipt: string, id: string, type: number, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.storeInventory_ValidateAppleAppStoreReceipt = async (request: { receipt: string, id: string, type: number, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1804
|
+
"hasEdit": false
|
|
1805
|
+
},
|
|
1806
|
+
{
|
|
1807
|
+
"eventName": "storeInventory_ValidateFacebookStoreReceipt",
|
|
1808
|
+
"script": "\npreHandlers.storeInventory_ValidateFacebookStoreReceipt = async (request: { receipt: string, id: string, type: number, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.storeInventory_ValidateFacebookStoreReceipt = async (request: { receipt: string, id: string, type: number, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1809
|
+
"hasEdit": false
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
"eventName": "storeInventory_ValidateGooglePlayStoreReceipt",
|
|
1813
|
+
"script": "\npreHandlers.storeInventory_ValidateGooglePlayStoreReceipt = async (request: { receipt: string, id: string, type: number, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, log: (log: any) => void) => {\n\n\treturn null;\n}\n\npostHandlers.storeInventory_ValidateGooglePlayStoreReceipt = async (request: { receipt: string, id: string, type: number, log: string }, secretInfo: SecretInfo, operationRequest: OperationRequest, operationResponse: OperationResponse, log: (log: any) => void) => {\n\n\treturn operationResponse;\n}\n",
|
|
1814
|
+
"hasEdit": false
|
|
1815
|
+
}
|
|
1816
|
+
]
|
|
1817
|
+
}
|
|
1818
|
+
]
|