theoplayer 3.2.2 → 3.4.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/THEOplayer.chromeless.js +8 -6
- package/THEOplayer.d.ts +17 -2
- package/THEOplayer.js +8 -7
- package/package.json +1 -1
- package/theoplayer.d.js +3 -3
- package/theoplayer.e.js +3 -3
- package/theoplayer.p.js +3 -3
- package/ui.css +1 -1
package/THEOplayer.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* THEOplayer
|
|
3
3
|
* https://www.theoplayer.com
|
|
4
4
|
*
|
|
5
|
-
* Version: 2022.1
|
|
5
|
+
* Version: 2022.2.1 (3.4.0)
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
/**
|
|
@@ -7414,6 +7414,14 @@ export declare interface SourceConfiguration {
|
|
|
7414
7414
|
* @defaultValue `false`
|
|
7415
7415
|
*/
|
|
7416
7416
|
blockContentIfAdError?: boolean;
|
|
7417
|
+
/**
|
|
7418
|
+
* If set, only allow ads to play that are scheduled after this time.
|
|
7419
|
+
*
|
|
7420
|
+
* @remarks
|
|
7421
|
+
* <br/> - This setting is strictly after - e.g. setting `playAdsAfterTime` to 15 will cause the player to ignore an ad break scheduled to play at 15s.
|
|
7422
|
+
*
|
|
7423
|
+
*/
|
|
7424
|
+
playAdsAfterTime?: number;
|
|
7417
7425
|
/**
|
|
7418
7426
|
* Content protection configuration.
|
|
7419
7427
|
*/
|
|
@@ -7537,10 +7545,11 @@ export declare interface SourceDescription extends SourceConfiguration {
|
|
|
7537
7545
|
/**
|
|
7538
7546
|
* The integration identifier of a source specific to a pre-integration, represented by a value from the following list:
|
|
7539
7547
|
* <br/> - `'verizon-media'`: The source is a {@link VerizonMediaSource}
|
|
7548
|
+
* <br/> - `'mediatailor'`: The source contains the MediaTailor initialization url
|
|
7540
7549
|
*
|
|
7541
7550
|
* @public
|
|
7542
7551
|
*/
|
|
7543
|
-
export declare type SourceIntegrationId = 'verizon-media';
|
|
7552
|
+
export declare type SourceIntegrationId = 'verizon-media' | 'mediatailor';
|
|
7544
7553
|
|
|
7545
7554
|
/**
|
|
7546
7555
|
* A media resource or list of media resources.
|
|
@@ -10571,6 +10580,12 @@ export declare interface VerizonMediaSource extends BaseSource {
|
|
|
10571
10580
|
* <br/> - The order of a list of asset identifiers is the order their corresponding assets will be played in.
|
|
10572
10581
|
*/
|
|
10573
10582
|
id: VerizonMediaAssetId | VerizonMediaAssetId[] | VerizonMediaExternalId;
|
|
10583
|
+
/**
|
|
10584
|
+
* The prefix to use for Verizon Media Preplay API and Asset Info API requests.
|
|
10585
|
+
*
|
|
10586
|
+
* @defaultValue `'https://content.uplynk.com'`
|
|
10587
|
+
*/
|
|
10588
|
+
prefix?: string;
|
|
10574
10589
|
/**
|
|
10575
10590
|
* The query string parameters added to Verizon Media Preplay requests.
|
|
10576
10591
|
*
|