@xmobitea/gn-server 2.4.16 → 2.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCreateLeaderboardRequestHandler.d.ts +0 -1
  2. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCurrencyLeaderboardRequestHandler.d.ts +0 -1
  3. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetCurrencyLogRequestHandler.d.ts +0 -1
  4. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetLastLoginLeaderboardRequestHandler.d.ts +22 -0
  5. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetStatisticsLeaderboardRequestHandler.d.ts +0 -1
  6. package/dist/GN-app-api/handler/controller/handler/characterPlayer/GetStatisticsLogRequestHandler.d.ts +0 -1
  7. package/dist/GN-app-api/handler/controller/handler/characterPlayer/SetDisplayNameRequestHandler.d.ts +1 -0
  8. package/dist/GN-app-api/handler/controller/handler/content/SetContentDataRequestHandler.d.ts +2 -0
  9. package/dist/GN-app-api/handler/controller/handler/dashboard/DeleteInDatabaseRequestHandler.d.ts +1 -0
  10. package/dist/GN-app-api/handler/controller/handler/dashboard/GrantGameRequestHandler.d.ts +2 -0
  11. package/dist/GN-app-api/handler/controller/handler/dashboard/SetMasterGameSettingsRequestHandler.d.ts +2 -0
  12. package/dist/GN-app-api/handler/controller/handler/dashboard/model/CharacterPlayerPermissionRulesParam.d.ts +1 -0
  13. package/dist/GN-app-api/handler/controller/handler/dashboard/model/StoreInventoryPermissionRulesParam.d.ts +2 -0
  14. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetCurrencyLogRequestHandler.d.ts +0 -1
  15. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GetStatisticsLogRequestHandler.d.ts +0 -1
  16. package/dist/GN-app-api/handler/controller/handler/gamePlayer/GrantPlayerCharacterRequestHandler.d.ts +1 -0
  17. package/dist/GN-app-api/handler/controller/handler/group/GetCurrencyLogRequestHandler.d.ts +0 -1
  18. package/dist/GN-app-api/handler/controller/handler/group/GetStatisticsLogRequestHandler.d.ts +0 -1
  19. package/dist/GN-app-api/handler/controller/handler/inventory/GetStatisticsLogRequestHandler.d.ts +0 -1
  20. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetCurrencyLogRequestHandler.d.ts +0 -1
  21. package/dist/GN-app-api/handler/controller/handler/masterPlayer/GetStatisticsLogRequestHandler.d.ts +0 -1
  22. package/dist/GN-app-api/handler/controller/handler/storeInventory/GetStoreUsedRequestHandler.d.ts +17 -0
  23. package/dist/GN-app-api/handler/controller/handler/storeInventory/RemoveStoreUsedRequestHandler.d.ts +18 -0
  24. package/dist/GN-app-api/handler/controller/handler/storeInventory/SetStoreItemInformationRequestHandler.d.ts +1 -0
  25. package/dist/GN-app-api/handler/controller/handler/storeInventory/StoreItemBaseRequestHandler.d.ts +1 -0
  26. package/dist/GN-app-api/handler/controller/handler/storeInventory/model/InfoRequestParam.d.ts +1 -0
  27. package/dist/GN-app-api/service/CacheService.d.ts +36 -0
  28. package/dist/GN-app-api/service/CloudScriptService.d.ts +2 -0
  29. package/dist/GN-app-api/service/ConfigService.d.ts +14 -0
  30. package/dist/{GN-library/xmail/lib/xMail.d.ts → GN-app-api/service/EmailService.d.ts} +3 -10
  31. package/dist/GN-app-api/service/EventCallbackService.d.ts +1 -0
  32. package/dist/GN-app-api/service/ICacheService.d.ts +15 -0
  33. package/dist/GN-app-api/service/IConfigService.d.ts +15 -0
  34. package/dist/GN-app-api/service/IEmailService.d.ts +10 -0
  35. package/dist/GN-app-api/service/IPushNotificationService.d.ts +17 -2
  36. package/dist/{GN-library/xnotification/lib/xPushNotification.d.ts → GN-app-api/service/PushNotificationService.d.ts} +8 -13
  37. package/dist/GN-common/constant/OperationCode.d.ts +2 -0
  38. package/dist/GN-common/constant/enumType/OwnerType.d.ts +2 -1
  39. package/dist/GN-common/constant/enumType/StoreItemType.d.ts +4 -0
  40. package/dist/GN-common/constant/errorCode/GNErrorCode.d.ts +2 -0
  41. package/dist/GN-common/constant/parameterCode/GNParameterCode.d.ts +4 -0
  42. package/dist/GN-common/entity/SecretInfo.d.ts +3 -0
  43. package/dist/GN-library/xdatabase/lib/entity/pro/StoreInventory.d.ts +4 -0
  44. package/dist/GN-library/xdatabase/lib/entity/pro/UploadFileInfo.d.ts +4 -2
  45. package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/FileUploadInfoFindOptions.d.ts +9 -0
  46. package/dist/GN-library/xdatabase/lib/entity/pro/findOptions/StoreInventoryFindOptions.d.ts +1 -0
  47. package/dist/GN-library/xdatabase/lib/xDatabase.d.ts +15 -1
  48. package/dist/GN-startup/DefaultApplicationStartup.d.ts +2 -1
  49. package/dist/GN-startup/HttpApp.d.ts +6 -0
  50. package/dist/GN-startup/ServerApplication.d.ts +4 -0
  51. package/dist/GN-startup/cloudScript/eventCallbackCloudScriptData.json +20 -5
  52. package/dist/GN-startup/cloudScript/templateCloudScript.ts +203 -165
  53. package/dist/GN-startup/cloudScript/templateEventCallback.ts +263 -225
  54. package/dist/GN-startup/routes/ClusterHandler.d.ts +34 -0
  55. package/dist/GN-startup/routes/UploadFileHandler.d.ts +1 -0
  56. package/dist/GN-startup/settings/ApplicationSettings.d.ts +3 -0
  57. package/dist/GN-startup/settings/ClusterSettings.d.ts +29 -0
  58. package/dist/GNServer.d.ts +16 -13
  59. package/dist/index.d.ts +20 -14
  60. package/dist/index.js +74426 -82363
  61. package/gn.sh +19 -7
  62. package/package.json +4 -7
  63. package/dist/GN-library/xcachedata/lib/xCacheData.d.ts +0 -10
  64. package/dist/GN-library/xcachedata/lib/xCacheItem.d.ts +0 -8
  65. package/dist/GN-library/xconfig/lib/entity/xConfigItem.d.ts +0 -9
  66. package/dist/GN-library/xconfig/lib/xConfig.d.ts +0 -15

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.