bitmovin-analytics 2.32.0 → 2.32.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/bitmovin-analytics.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export interface CollectorConfig {
|
|
|
7
7
|
enabled?: boolean;
|
|
8
8
|
cookiesEnabled?: boolean;
|
|
9
9
|
cookiesDomain?: string;
|
|
10
|
+
cookiesMaxAge?: number;
|
|
10
11
|
origin?: string;
|
|
11
12
|
}
|
|
12
13
|
export interface AnalyticsConfig {
|
|
@@ -489,6 +490,12 @@ declare class BackendFactory {
|
|
|
489
490
|
declare class Analytics {
|
|
490
491
|
get version(): string;
|
|
491
492
|
static version: string;
|
|
493
|
+
private readonly sessionHandler;
|
|
494
|
+
private readonly adapter;
|
|
495
|
+
private readonly backendFactory;
|
|
496
|
+
private readonly featureManager;
|
|
497
|
+
private readonly onErrorDetailEventDispatcher;
|
|
498
|
+
private readonly adAnalytics;
|
|
492
499
|
pageLoadTime: number;
|
|
493
500
|
playerStartupTime: number;
|
|
494
501
|
videoStartupTime: number;
|
|
@@ -496,18 +503,12 @@ declare class Analytics {
|
|
|
496
503
|
sample: Sample;
|
|
497
504
|
backend: Backend;
|
|
498
505
|
errorDetailTrackingSettingsProvider: ErrorDetailTrackingSettingsProvider;
|
|
499
|
-
get errorDetailSubscribable(): Subscribable<OnErrorDetailEventObject>;
|
|
500
506
|
private config;
|
|
501
|
-
private sessionHandler;
|
|
502
507
|
private droppedSampleFrames;
|
|
503
508
|
private startupTime;
|
|
504
|
-
private adapter;
|
|
505
|
-
private backendFactory;
|
|
506
|
-
private featureManager;
|
|
507
|
-
private onErrorDetailEventDispatcher;
|
|
508
|
-
private adAnalytics;
|
|
509
509
|
private authenticationCallback;
|
|
510
510
|
constructor(config: AnalyticsConfig, adapter: InternalAdapterAPI, backendFactory?: BackendFactory);
|
|
511
|
+
get errorDetailSubscribable(): Subscribable<OnErrorDetailEventObject>;
|
|
511
512
|
getPlayerInformationFromAdapter(): {
|
|
512
513
|
player: string;
|
|
513
514
|
version: string;
|