bitmovin-analytics 2.23.0 → 2.24.0
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.
|
@@ -11,10 +11,12 @@ import { InternalAdapterAPI } from './InternalAdapterAPI';
|
|
|
11
11
|
export declare class CAFv3InternalAdapter extends InternalAdapter implements InternalAdapterAPI {
|
|
12
12
|
protected context: any;
|
|
13
13
|
private playerManager;
|
|
14
|
+
private queueManager;
|
|
14
15
|
private mediaInformation;
|
|
15
16
|
private activeAudioTrack;
|
|
16
17
|
private activeTextTracks;
|
|
17
18
|
private currentItem;
|
|
19
|
+
private currentItemIndex;
|
|
18
20
|
private isSeeking;
|
|
19
21
|
constructor(context: any, opts?: AnalyticsStateMachineOptions);
|
|
20
22
|
initialize(analytics: Analytics): Array<Feature<FeatureConfigContainer, FeatureConfig>>;
|
package/js/enums/Event.d.ts
CHANGED
|
@@ -30,7 +30,8 @@ export declare enum Event {
|
|
|
30
30
|
SOURCE_UNLOADED = "sourceUnloaded",
|
|
31
31
|
MANUAL_SOURCE_CHANGE = "manualSourceChangeInitiated",
|
|
32
32
|
VIDEOSTART_TIMEOUT = "VIDEOSTART_TIMEOUT",
|
|
33
|
-
CUSTOM_DATA_CHANGE = "customDataChange"
|
|
33
|
+
CUSTOM_DATA_CHANGE = "customDataChange",
|
|
34
|
+
PLAYLIST_TRANSITION = "playlistTransition"
|
|
34
35
|
}
|
|
35
36
|
export interface EventMap {
|
|
36
37
|
[Event.READY]: AnalyticsEventBase;
|
|
@@ -64,4 +65,5 @@ export interface EventMap {
|
|
|
64
65
|
[Event.MANUAL_SOURCE_CHANGE]: SourceChangeEvent;
|
|
65
66
|
[Event.VIDEOSTART_TIMEOUT]: AnalyticsEventBase;
|
|
66
67
|
[Event.CUSTOM_DATA_CHANGE]: AnalyticsEventBase;
|
|
68
|
+
[Event.PLAYLIST_TRANSITION]: AnalyticsEventBase;
|
|
67
69
|
}
|
|
@@ -24,9 +24,18 @@ export interface CustomDataValues {
|
|
|
24
24
|
customData23?: string;
|
|
25
25
|
customData24?: string;
|
|
26
26
|
customData25?: string;
|
|
27
|
+
customData26?: string;
|
|
28
|
+
customData27?: string;
|
|
29
|
+
customData28?: string;
|
|
30
|
+
customData29?: string;
|
|
31
|
+
customData30?: string;
|
|
27
32
|
experimentName?: string;
|
|
28
33
|
}
|
|
29
34
|
/**
|
|
30
35
|
* Lists all keys of the {@see CustomDataValues} interface.
|
|
31
36
|
*/
|
|
32
37
|
export declare const customDataValuesKeys: Array<keyof CustomDataValues>;
|
|
38
|
+
/**
|
|
39
|
+
* The number of CustomDataXX fields in {@see CustomDataValues}.
|
|
40
|
+
*/
|
|
41
|
+
export declare const customDataFieldCount: number;
|
|
@@ -43,5 +43,6 @@ export interface StateMachineCallbacks {
|
|
|
43
43
|
values: CustomDataValues;
|
|
44
44
|
}) => void;
|
|
45
45
|
release: () => void;
|
|
46
|
+
playlistTransition: (event: Readonly<EventData.AnalyticsEventBase>) => void;
|
|
46
47
|
}
|
|
47
48
|
export declare const defaultStateMachineCallbacks: StateMachineCallbacks;
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"bitmovin-analytics","version":"v2.
|
|
1
|
+
{"name":"bitmovin-analytics","version":"v2.24.0","description":"Bitmovin Analytics Collector collects monitoring devents from video players for the Bitmovin Analytics Service","license":"MIT","repository":{"type":"git","url":"git+https://github.com/bitmovin/bitmovin-analytics-collector.git"},"main":"bitmovinanalytics.min.js","types":"bitmovin-analytics.d.ts","author":"Bitmovin Inc","homepage":"https://bitmovin.com/video-analytics/","maintainers":[{"name":"bitadmin","email":"admin@bitmovin.com"}]}
|