keytops-game-framework 1.0.0 → 1.0.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/dist/app/base/utils/Injector.d.ts +9 -0
- package/dist/app/module/net/server/IServer.d.ts +55 -2
- package/dist/app/module/net/server/KKTServer.d.ts +8 -0
- package/dist/app/module/net/server/Server.d.ts +4 -76
- package/dist/app/module/publisher/tt/TTLogin.d.ts +1 -1
- package/dist/app/module/remoteConfig/BaseOnlineConfig.d.ts +15 -0
- package/dist/app/module/remoteConfig/IRemoteConfigStore.d.ts +9 -0
- package/dist/app/module/remoteConfig/LevelOnlineConfig.d.ts +16 -0
- package/dist/app/module/remoteConfig/RemoteConfigDefinitions.d.ts +7 -0
- package/dist/app/module/remoteConfig/RemoteConfigService.d.ts +51 -0
- package/dist/app/module/remoteConfig/RemoteConfigStore.d.ts +20 -0
- package/dist/app/module/remoteConfig/SystemOnlineConfig.d.ts +41 -0
- package/dist/index.d.ts +8 -2
- package/dist/index.js +3848 -3662
- package/package.json +1 -1
- package/dist/app/module/net/server/LevelOnlineConfig.d.ts +0 -9
- package/dist/app/module/net/server/SystemOnlineConfig.d.ts +0 -34
package/package.json
CHANGED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { AliAnalyticsConfig } from "../../analytics/ALiAnalyticsSender";
|
|
2
|
-
import type { KeytopsAnalyticsConfig } from "../../analytics/KeytopsAnalyticsSender";
|
|
3
|
-
import { ADConfig } from "../../publisher/IADAble";
|
|
4
|
-
import { OnlineConfig } from "./IServer";
|
|
5
|
-
export type RelayAnalyticsConfig = Partial<AliAnalyticsConfig> & KeytopsAnalyticsConfig;
|
|
6
|
-
/**
|
|
7
|
-
* system 端口默认配置,承载 SDK 基础运行时能力。
|
|
8
|
-
*/
|
|
9
|
-
export declare class SystemOnlineConfig implements OnlineConfig {
|
|
10
|
-
static KEY: string;
|
|
11
|
-
private _timestampCall;
|
|
12
|
-
url: {
|
|
13
|
-
domain: string;
|
|
14
|
-
configAPI: string;
|
|
15
|
-
loginAPI: string;
|
|
16
|
-
saveStoreAPI: string;
|
|
17
|
-
getStoreAPI: string;
|
|
18
|
-
};
|
|
19
|
-
analytics: RelayAnalyticsConfig;
|
|
20
|
-
assignment: KeytopsAnalyticsConfig;
|
|
21
|
-
ad: ADConfig;
|
|
22
|
-
storage: {
|
|
23
|
-
cacheEnable: boolean;
|
|
24
|
-
cacheCD: number;
|
|
25
|
-
};
|
|
26
|
-
getAnalyticsConfig(): RelayAnalyticsConfig;
|
|
27
|
-
getAssignmentConfig(): KeytopsAnalyticsConfig;
|
|
28
|
-
setTimestampCall(timestampCall: () => number): void;
|
|
29
|
-
getStorageConfig(): {
|
|
30
|
-
cacheEnable: boolean;
|
|
31
|
-
cacheCD: number;
|
|
32
|
-
};
|
|
33
|
-
toString(): string;
|
|
34
|
-
}
|