@theoplayer/extended 8.6.3 → 8.8.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.
- package/README.md +8 -8
- package/THEOplayer.chromeless.d.ts +1 -1
- package/THEOplayer.chromeless.esm.js +2 -2
- package/THEOplayer.chromeless.js +3 -3
- package/THEOplayer.common.d.ts +22 -1
- package/THEOplayer.common.esm.js +3 -3
- package/THEOplayer.d.ts +1 -1
- package/THEOplayer.esm.js +3 -3
- package/THEOplayer.js +3 -3
- package/THEOplayer.transmux.asmjs.js +3 -3
- package/THEOplayer.transmux.js +3 -3
- package/package.json +1 -1
- package/theoplayer.d.js +3 -3
package/THEOplayer.common.d.ts
CHANGED
|
@@ -1420,6 +1420,10 @@ interface AdsEventMap {
|
|
|
1420
1420
|
* <br/> - only available in the Google IMA integration.
|
|
1421
1421
|
*/
|
|
1422
1422
|
adsmanagerloaded: AdsManagerLoadedEvent;
|
|
1423
|
+
/**
|
|
1424
|
+
* @internal
|
|
1425
|
+
*/
|
|
1426
|
+
overlaybegin: Event<'overlaybegin'>;
|
|
1423
1427
|
}
|
|
1424
1428
|
/**
|
|
1425
1429
|
* Base type for events related to a single ad.
|
|
@@ -8955,7 +8959,15 @@ interface ReadyStateChangeEvent extends Event<'readystatechange'> {
|
|
|
8955
8959
|
*/
|
|
8956
8960
|
readonly currentTime: number;
|
|
8957
8961
|
/**
|
|
8958
|
-
* The player's new ready state
|
|
8962
|
+
* The player's new ready state, represented by a value from the following list:
|
|
8963
|
+
* <br/> - 0 (HAVE_NOTHING): The player has no information about the duration of its source.
|
|
8964
|
+
* <br/> - 1 (HAVE_METADATA): The player has information about the duration of its source.
|
|
8965
|
+
* <br/> - 2 (HAVE_CURRENT_DATA): The player has its current frame in its buffer.
|
|
8966
|
+
* <br/> - 3 (HAVE_FUTURE_DATA): The player has enough data for immediate playback.
|
|
8967
|
+
* <br/> - 4 (HAVE_ENOUGH_DATA): The player has enough data for continuous playback.
|
|
8968
|
+
*
|
|
8969
|
+
* @remarks
|
|
8970
|
+
* <br/> - See the {@link https://html.spec.whatwg.org/multipage/media.html#ready-states | HTML Media Specification}
|
|
8959
8971
|
*/
|
|
8960
8972
|
readonly readyState: number;
|
|
8961
8973
|
}
|
|
@@ -12384,6 +12396,15 @@ interface TheoAdDescription extends AdDescription {
|
|
|
12384
12396
|
* <br/> - Contact THEO Technologies for more information.
|
|
12385
12397
|
*/
|
|
12386
12398
|
useId3?: boolean;
|
|
12399
|
+
/**
|
|
12400
|
+
* The URI from where to retrieve the PodID's as returned from the EABN service from Google.
|
|
12401
|
+
*
|
|
12402
|
+
* @remarks
|
|
12403
|
+
* <br/> - This is specific for our NFL integration at the moment, so it's marked internal.
|
|
12404
|
+
*
|
|
12405
|
+
* @internal
|
|
12406
|
+
*/
|
|
12407
|
+
retrievePodIdURI?: string;
|
|
12387
12408
|
}
|
|
12388
12409
|
/**
|
|
12389
12410
|
* Describes how and when the layout of a THEOads ad break should be overridden:
|