@arkadiuminc/sdk 2.24.0 → 2.24.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.
|
@@ -2,6 +2,7 @@ import { RpcProvider } from '../../core/rpc';
|
|
|
2
2
|
import { AnalyticsProviderType, IAnalyticConfig } from './defs';
|
|
3
3
|
import { DimensionsObject, Dimension } from './dimensions';
|
|
4
4
|
import { IHost } from '../host';
|
|
5
|
+
import { DebugProvider } from '../../core/debug-provider';
|
|
5
6
|
|
|
6
7
|
interface EnvironmentVersion {
|
|
7
8
|
GameKey: string;
|
|
@@ -26,12 +27,13 @@ export interface AnalyticsApiContract {
|
|
|
26
27
|
export declare class AnalyticsApi implements AnalyticsApiContract {
|
|
27
28
|
private host;
|
|
28
29
|
private rpcProvider;
|
|
30
|
+
private debugProvider;
|
|
29
31
|
private providers;
|
|
30
32
|
private configuredProviders;
|
|
31
33
|
private disabledProviders;
|
|
32
34
|
private info;
|
|
33
35
|
providersTypes: typeof AnalyticsProviderType;
|
|
34
|
-
constructor(host: IHost, rpcProvider: RpcProvider);
|
|
36
|
+
constructor(host: IHost, rpcProvider: RpcProvider, debugProvider: DebugProvider);
|
|
35
37
|
getEnvVersion(): Promise<EnvironmentVersion>;
|
|
36
38
|
setGameVersion(v: string): Promise<void>;
|
|
37
39
|
setNestVersion(v: string): Promise<void>;
|