@guardian/ophan-tracker-js 2.8.3 → 3.1.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.
|
@@ -35,7 +35,11 @@ export type TVideoEventType =
|
|
|
35
35
|
/**
|
|
36
36
|
* The media has been paused before the end.
|
|
37
37
|
**/
|
|
38
|
-
| "video:content:pause"
|
|
38
|
+
| "video:content:pause"
|
|
39
|
+
/**
|
|
40
|
+
* The media player has resumed playing from a paused state.
|
|
41
|
+
**/
|
|
42
|
+
| "video:content:resume" | "video:content:skip" | "video:content:cued"
|
|
39
43
|
/**
|
|
40
44
|
* The media has been muted.
|
|
41
45
|
*/
|
|
@@ -47,11 +51,11 @@ export type TVideoEventType =
|
|
|
47
51
|
/**
|
|
48
52
|
* The media has been displayed in fullscreen mode.
|
|
49
53
|
*/
|
|
50
|
-
| "video:content:
|
|
54
|
+
| "video:content:enter_fullscreen"
|
|
51
55
|
/**
|
|
52
56
|
* The media has left fullscreen mode.
|
|
53
57
|
*/
|
|
54
|
-
| "video:content:
|
|
58
|
+
| "video:content:exit_fullscreen"
|
|
55
59
|
/**
|
|
56
60
|
* The media player has been displayed on the screen.
|
|
57
61
|
* This is separate to the media being played, but may coincide if the player autoplays.
|
|
@@ -121,11 +125,11 @@ export type TAudioEventType =
|
|
|
121
125
|
/**
|
|
122
126
|
* The media has been displayed in fullscreen mode.
|
|
123
127
|
*/
|
|
124
|
-
| "audio:content:
|
|
128
|
+
| "audio:content:enter_fullscreen"
|
|
125
129
|
/**
|
|
126
130
|
* The media has left fullscreen mode.
|
|
127
131
|
*/
|
|
128
|
-
| "audio:content:
|
|
132
|
+
| "audio:content:exit_fullscreen"
|
|
129
133
|
/**
|
|
130
134
|
* The media player has been displayed on the screen.
|
|
131
135
|
* This is separate to the media being played, but may coincide if the player autoplays.
|