@theoplayer/extended 9.1.0 → 9.3.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 +23 -0
- 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.sw.js +3 -3
package/THEOplayer.common.d.ts
CHANGED
|
@@ -988,6 +988,15 @@ interface GoogleImaConfiguration {
|
|
|
988
988
|
* <br/> - Available since v6.13.0.
|
|
989
989
|
*/
|
|
990
990
|
uiElements?: string[];
|
|
991
|
+
/**
|
|
992
|
+
* A flag to enable seeking during an ad break in a DAI stream.
|
|
993
|
+
*
|
|
994
|
+
* @remarks
|
|
995
|
+
* <br/> - Available since v9.2.0
|
|
996
|
+
*
|
|
997
|
+
* @defaultValue false
|
|
998
|
+
*/
|
|
999
|
+
allowSeekingForGoogleDai?: boolean;
|
|
991
1000
|
}
|
|
992
1001
|
/**
|
|
993
1002
|
* Represents a non-linear ad in the VAST specification.
|
|
@@ -2340,6 +2349,15 @@ interface GoogleDAIConfiguration extends ServerSideAdInsertionConfiguration {
|
|
|
2340
2349
|
* for more information.
|
|
2341
2350
|
*/
|
|
2342
2351
|
omidAccessModeRules?: Record<number, string>;
|
|
2352
|
+
/**
|
|
2353
|
+
* A flag to indicate that the DAI SDK should send an encrypted nonce to the DAI servers.
|
|
2354
|
+
*
|
|
2355
|
+
* @remarks
|
|
2356
|
+
* <br/> - See {@link https://developers.google.com/ad-manager/dynamic-ad-insertion/sdk/html5/sending-ad-signals-through-third-party-servers}
|
|
2357
|
+
* for more information.
|
|
2358
|
+
* <br/> - Available since 9.2.0.
|
|
2359
|
+
*/
|
|
2360
|
+
enableNonce?: boolean;
|
|
2343
2361
|
}
|
|
2344
2362
|
/**
|
|
2345
2363
|
* Represents a configuration for server-side ad insertion with the Google DAI pre-integration for a Live media stream.
|
|
@@ -8708,6 +8726,11 @@ interface HespApi extends EventDispatcher<HespApiEventMap> {
|
|
|
8708
8726
|
* @public
|
|
8709
8727
|
*/
|
|
8710
8728
|
interface HespSourceConfiguration {
|
|
8729
|
+
/**
|
|
8730
|
+
* The maximum bitrate to choose from during ABR for mobile devices
|
|
8731
|
+
* @internal
|
|
8732
|
+
*/
|
|
8733
|
+
maxMobileBitrate?: number;
|
|
8711
8734
|
}
|
|
8712
8735
|
/**
|
|
8713
8736
|
* Specific {@link TypedSource} variant for an HESP media resource.
|