@theoplayer/extended 8.0.1 → 8.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.
- 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 +11 -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
|
@@ -2371,7 +2371,7 @@ interface ServerSideAdInsertionConfiguration {
|
|
|
2371
2371
|
/**
|
|
2372
2372
|
* The identifier for the SSAI integration.
|
|
2373
2373
|
*/
|
|
2374
|
-
integration: SSAIIntegrationId;
|
|
2374
|
+
integration: SSAIIntegrationId | CustomAdIntegrationKind;
|
|
2375
2375
|
}
|
|
2376
2376
|
|
|
2377
2377
|
/**
|
|
@@ -2808,6 +2808,7 @@ interface TheoLiveConfiguration {
|
|
|
2808
2808
|
* Whether this player should fallback or not when it has a fallback configured.
|
|
2809
2809
|
*/
|
|
2810
2810
|
readonly fallbackEnabled?: boolean;
|
|
2811
|
+
readonly discoveryHeader?: string;
|
|
2811
2812
|
}
|
|
2812
2813
|
|
|
2813
2814
|
/**
|
|
@@ -12160,6 +12161,15 @@ interface TheoAdDescription extends AdDescription {
|
|
|
12160
12161
|
* Override the layout of all THEOads ad breaks, if set.
|
|
12161
12162
|
*/
|
|
12162
12163
|
overrideLayout?: TheoAdsLayoutOverride;
|
|
12164
|
+
/**
|
|
12165
|
+
* Overrides the ad source of all THEOads ad breaks, if set.
|
|
12166
|
+
*
|
|
12167
|
+
* @remarks
|
|
12168
|
+
* <br/> - Only VOD streams are currently supported
|
|
12169
|
+
*
|
|
12170
|
+
* @internal
|
|
12171
|
+
*/
|
|
12172
|
+
overrideAdSrc?: string;
|
|
12163
12173
|
/**
|
|
12164
12174
|
* The ad tag parameters added to stream request.
|
|
12165
12175
|
*
|