@xmobitea/gn-server 2.5.1 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -0
- package/README.md +3 -0
- package/THIRD_PARTY_LICENSES +97 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/SetSecretInfoInformationRequestHandler.d.ts +1 -0
- package/dist/GN-app-api/handler/controller/handler/dashboard/model/EmailSettingsParam.d.ts +5 -1
- package/dist/GN-app-api/service/EmailService.d.ts +9 -4
- package/dist/GN-app-api/service/IEmailService.d.ts +2 -2
- package/dist/GN-app-api/service/IPlayStationNetworkService.d.ts +5 -0
- package/dist/GN-app-api/service/ISteamService.d.ts +5 -0
- package/dist/GN-app-api/service/PlayStationNetworkService.d.ts +14 -0
- package/dist/GN-app-api/service/SteamService.d.ts +12 -0
- package/dist/GN-common/constant/parameterCode/GNParameterCode.d.ts +6 -0
- package/dist/GN-common/entity/SecretInfo.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/entity/pro/masterAdmin/SecretInfoItem.d.ts +4 -0
- package/dist/GN-library/xdatabase/lib/xDatabase.d.ts +15 -8
- package/dist/GN-library/xsettings/lib/entity/xEmailSettings.d.ts +5 -1
- package/dist/GN-startup/cloudScript/eventCallbackCloudScriptData.json +1 -1
- package/dist/GN-startup/middleware/AntiDdosMiddleware.d.ts +1 -0
- package/dist/GN-startup/routes/SocketAppHandler.d.ts +7 -8
- package/dist/GN-startup/routes/utils/wrap.d.ts +2 -0
- package/dist/GNServer.d.ts +6 -5
- package/dist/index.d.ts +0 -4
- package/dist/index.js +841 -460
- package/gn.sh +1 -1
- package/package.json +9 -21
- package/dist/GN-app-api/service/ILockService.d.ts +0 -4
- package/dist/GN-app-api/service/LockService.d.ts +0 -5
package/dist/index.d.ts
CHANGED
|
@@ -26,8 +26,6 @@ import { IGenericService, IGenericServiceHandler } from "./GN-app-api/service/IG
|
|
|
26
26
|
export { IGenericService, IGenericServiceHandler };
|
|
27
27
|
import { IGoogleService } from "./GN-app-api/service/IGoogleService";
|
|
28
28
|
export { IGoogleService };
|
|
29
|
-
import { ILockService } from "./GN-app-api/service/ILockService";
|
|
30
|
-
export { ILockService };
|
|
31
29
|
import { IPushNotificationService } from "./GN-app-api/service/IPushNotificationService";
|
|
32
30
|
export { IPushNotificationService };
|
|
33
31
|
import { PushNotificationService } from "./GN-app-api/service/PushNotificationService";
|
|
@@ -50,8 +48,6 @@ import { ConfigService } from "./GN-app-api/service/ConfigService";
|
|
|
50
48
|
export { ConfigService };
|
|
51
49
|
import { ITimerService } from "./GN-app-api/service/ITimerService";
|
|
52
50
|
export { ITimerService };
|
|
53
|
-
import { LockService } from "./GN-app-api/service/LockService";
|
|
54
|
-
export { LockService };
|
|
55
51
|
import { TimerService } from "./GN-app-api/service/TimerService";
|
|
56
52
|
export { TimerService };
|
|
57
53
|
import { GNData, GNArray, GNArrayBuilder, GNHashtable, GNHashtableBuilder } from "./GN-common/common/GNData";
|