@theoplayer/extended 7.12.0 → 8.0.1
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 +1 -0
- package/THEOplayer.chromeless.d.ts +2 -2
- package/THEOplayer.chromeless.esm.js +2 -2
- package/THEOplayer.chromeless.js +3 -3
- package/THEOplayer.common.d.ts +32 -364
- package/THEOplayer.common.esm.js +3 -3
- package/THEOplayer.d.ts +2 -2
- 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/ui.css +1 -1
package/THEOplayer.common.d.ts
CHANGED
|
@@ -421,7 +421,6 @@ declare namespace ErrorCategory {
|
|
|
421
421
|
* @see {@link Ads.registerServerSideIntegration}
|
|
422
422
|
*
|
|
423
423
|
* @category Ads
|
|
424
|
-
* @experimental
|
|
425
424
|
*/
|
|
426
425
|
interface ServerSideAdIntegrationHandler {
|
|
427
426
|
/**
|
|
@@ -482,7 +481,6 @@ interface ServerSideAdIntegrationHandler {
|
|
|
482
481
|
* @see {@link Ads.registerServerSideIntegration}
|
|
483
482
|
*
|
|
484
483
|
* @category Ads
|
|
485
|
-
* @experimental
|
|
486
484
|
*/
|
|
487
485
|
interface ServerSideAdIntegrationController {
|
|
488
486
|
/**
|
|
@@ -650,7 +648,6 @@ interface ServerSideAdIntegrationController {
|
|
|
650
648
|
* @see {@link ServerSideAdIntegrationController.updateAd}
|
|
651
649
|
*
|
|
652
650
|
* @category Ads
|
|
653
|
-
* @experimental
|
|
654
651
|
*/
|
|
655
652
|
interface AdInit extends Omit<Partial<Ad>, 'integration' | 'adBreak'> {
|
|
656
653
|
/**
|
|
@@ -673,7 +670,6 @@ interface AdInit extends Omit<Partial<Ad>, 'integration' | 'adBreak'> {
|
|
|
673
670
|
* @see {@link ServerSideAdIntegrationController.updateAdBreak}
|
|
674
671
|
*
|
|
675
672
|
* @category Ads
|
|
676
|
-
* @experimental
|
|
677
673
|
*/
|
|
678
674
|
interface AdBreakInit {
|
|
679
675
|
/**
|
|
@@ -699,10 +695,23 @@ interface AdBreakInit {
|
|
|
699
695
|
* @see {@link Ads.registerServerSideIntegration}
|
|
700
696
|
*
|
|
701
697
|
* @category Ads
|
|
702
|
-
* @experimental
|
|
703
698
|
*/
|
|
704
699
|
type ServerSideAdIntegrationFactory = (controller: ServerSideAdIntegrationController) => ServerSideAdIntegrationHandler;
|
|
705
700
|
|
|
701
|
+
/**
|
|
702
|
+
* Fired when the {@link https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side/reference/js/google.ima.AdsManager | google.ima.AdsManager} is created.
|
|
703
|
+
*
|
|
704
|
+
* @category Ads
|
|
705
|
+
* @category Events
|
|
706
|
+
* @public
|
|
707
|
+
*/
|
|
708
|
+
interface AdsManagerLoadedEvent extends Event<'adsmanagerloaded'> {
|
|
709
|
+
/**
|
|
710
|
+
* The {@link https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side/reference/js/google.ima.AdsManager | google.ima.AdsManager}
|
|
711
|
+
*/
|
|
712
|
+
readonly adsManager: any;
|
|
713
|
+
}
|
|
714
|
+
|
|
706
715
|
/**
|
|
707
716
|
* Represents a VAST creative. It is either a linear or non-linear ad.
|
|
708
717
|
*
|
|
@@ -725,7 +734,6 @@ interface Ad {
|
|
|
725
734
|
*
|
|
726
735
|
* @remarks
|
|
727
736
|
* <br/> - The `'theo'` integration naming is deprecated and has been replaced with `'csai'`.
|
|
728
|
-
* <br/> - If unset, will default to `'theo'` for now but will default to `'csai'` starting from THEOplayer 8.0.0.
|
|
729
737
|
*/
|
|
730
738
|
integration?: AdIntegrationKind | CustomAdIntegrationKind;
|
|
731
739
|
/**
|
|
@@ -791,7 +799,7 @@ interface Ad {
|
|
|
791
799
|
*
|
|
792
800
|
* @remarks
|
|
793
801
|
* <br/> - Available when the {@link Ad.readyState} is `'ready'`.
|
|
794
|
-
* <br/> - Only supported for `'csai'
|
|
802
|
+
* <br/> - Only supported for `'csai'` and `'google-dai'`.
|
|
795
803
|
*/
|
|
796
804
|
companions: CompanionAd[];
|
|
797
805
|
/**
|
|
@@ -815,7 +823,7 @@ interface Ad {
|
|
|
815
823
|
* The list of universal ad ID information of the selected creative for the ad.
|
|
816
824
|
*
|
|
817
825
|
* @remarks
|
|
818
|
-
* <br/> - Only supported for `'csai'
|
|
826
|
+
* <br/> - Only supported for `'csai'` and `'google-ima'`.
|
|
819
827
|
*/
|
|
820
828
|
universalAdIds: UniversalAdId[];
|
|
821
829
|
/**
|
|
@@ -1159,7 +1167,6 @@ interface AdBreak {
|
|
|
1159
1167
|
*
|
|
1160
1168
|
* @remarks
|
|
1161
1169
|
* <br/> - The `'theo'` integration naming is deprecated and has been replaced with `'csai'`.
|
|
1162
|
-
* <br/> - If unconfigured or if any ads have integration `'theo'`, will default to `'theo'` for now but will default to `'csai'` starting from THEOplayer 8.0.0.
|
|
1163
1170
|
*/
|
|
1164
1171
|
integration: AdIntegrationKind | CustomAdIntegrationKind | undefined;
|
|
1165
1172
|
/**
|
|
@@ -1292,8 +1299,6 @@ interface AdsEventMap {
|
|
|
1292
1299
|
addad: AdEvent<'addad'>;
|
|
1293
1300
|
/** @internal */
|
|
1294
1301
|
adadded: Event<'adadded'>;
|
|
1295
|
-
/** @internal */
|
|
1296
|
-
adsmanagerloaded_: Event<'adsmanagerloaded_'>;
|
|
1297
1302
|
/**
|
|
1298
1303
|
* Fired when an ad is updated.
|
|
1299
1304
|
*
|
|
@@ -1358,6 +1363,13 @@ interface AdsEventMap {
|
|
|
1358
1363
|
* <br/> - only available in the Google IMA integration.
|
|
1359
1364
|
*/
|
|
1360
1365
|
admetadata: AdMetadataEvent;
|
|
1366
|
+
/**
|
|
1367
|
+
* Fired when the {@link https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side/reference/js/google.ima.AdsManager | google.ima.AdsManager} is created.
|
|
1368
|
+
*
|
|
1369
|
+
* @remarks
|
|
1370
|
+
* <br/> - only available in the Google IMA integration.
|
|
1371
|
+
*/
|
|
1372
|
+
adsmanagerloaded: AdsManagerLoadedEvent;
|
|
1361
1373
|
}
|
|
1362
1374
|
/**
|
|
1363
1375
|
* Base type for events related to a single ad.
|
|
@@ -1408,7 +1420,7 @@ interface AdBreakEvent<TType extends string> extends Event<TType> {
|
|
|
1408
1420
|
* The API for advertisements.
|
|
1409
1421
|
*
|
|
1410
1422
|
* @remarks
|
|
1411
|
-
* <br/> - Integrates with `'csai'`, `'
|
|
1423
|
+
* <br/> - Integrates with `'csai'`, `'google-ima'`, `'google-dai'`, `'freewheel'` or `'theoads'`.
|
|
1412
1424
|
*
|
|
1413
1425
|
* @category Ads
|
|
1414
1426
|
* @public
|
|
@@ -1464,16 +1476,10 @@ interface Ads extends EventDispatcher<AdsEventMap> {
|
|
|
1464
1476
|
* This allows you to integrate with third-party advertisement providers,
|
|
1465
1477
|
* and have them report their ads and ad-related events through the THEOplayer {@link Ads} API.
|
|
1466
1478
|
*
|
|
1467
|
-
* @remarks
|
|
1468
|
-
* This API is **experimental** and is subject to change in any minor version of THEOplayer.
|
|
1469
|
-
* Please consult with THEO Technologies before using this API.
|
|
1470
|
-
*
|
|
1471
1479
|
* @param integrationId
|
|
1472
1480
|
* An identifier of the integration.
|
|
1473
1481
|
* @param integrationFactory
|
|
1474
1482
|
* Factory that will construct an {@link ServerSideAdIntegrationHandler} for this integration.
|
|
1475
|
-
*
|
|
1476
|
-
* @experimental
|
|
1477
1483
|
*/
|
|
1478
1484
|
registerServerSideIntegration(integrationId: CustomAdIntegrationKind, integrationFactory: ServerSideAdIntegrationFactory): void;
|
|
1479
1485
|
}
|
|
@@ -1822,7 +1828,7 @@ interface SpotxQueryParameter {
|
|
|
1822
1828
|
/**
|
|
1823
1829
|
* The integration of an ad or ad break, represented by a value from the following list:
|
|
1824
1830
|
* <br/> - `'csai'`: Default CSAI ad playback.
|
|
1825
|
-
* <br/> - `'theo'`: Old naming for `'csai'` - Default ad playback. (Deprecated)
|
|
1831
|
+
* <br/> - `'theo'`: Old naming for `'csai'` - Default ad playback. (Deprecated)
|
|
1826
1832
|
* <br/> - `'google-ima'`: {@link https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side | Google IMA} pre-integrated ad playback.
|
|
1827
1833
|
* <br/> - `'google-dai'`: {@link https://developers.google.com/ad-manager/dynamic-ad-insertion/sdk/html5 | Google DAI} pre-integrated ad playback.
|
|
1828
1834
|
* <br/> - `'spotx'`: {@link https://developer.spotxchange.com/ | SpotX} pre-integrated ad playback.
|
|
@@ -1832,7 +1838,7 @@ interface SpotxQueryParameter {
|
|
|
1832
1838
|
* <br/> - `'theoads'`: [Experimental] - API under development, do not use without consulting THEO Technologies.
|
|
1833
1839
|
*
|
|
1834
1840
|
* @remarks
|
|
1835
|
-
* <br/> - An empty string will default to `'
|
|
1841
|
+
* <br/> - An empty string will default to `'csai'`.
|
|
1836
1842
|
*
|
|
1837
1843
|
* @category Ads
|
|
1838
1844
|
* @public
|
|
@@ -1842,9 +1848,8 @@ type AdIntegrationKind = '' | 'csai' | 'theo' | 'google-ima' | 'spotx' | 'freewh
|
|
|
1842
1848
|
* The identifier of a custom ad integration registered with {@link Ads.registerServerSideIntegration}.
|
|
1843
1849
|
*
|
|
1844
1850
|
* @category Ads
|
|
1845
|
-
* @experimental
|
|
1846
1851
|
*/
|
|
1847
|
-
type CustomAdIntegrationKind = string;
|
|
1852
|
+
type CustomAdIntegrationKind = string & {};
|
|
1848
1853
|
/**
|
|
1849
1854
|
* The iframe policies for VPAID ads, represented by a value from the following list:
|
|
1850
1855
|
* <br/> - `'enabled'`: Ads will load in a cross domain iframe. This disables access to the site via JavaScript. Ads that require a friendly iframe will fail to play.
|
|
@@ -1873,10 +1878,9 @@ interface CsaiAdDescription extends AdDescription {
|
|
|
1873
1878
|
/**
|
|
1874
1879
|
* The integration of the ad break.
|
|
1875
1880
|
*
|
|
1876
|
-
* @defaultValue `'
|
|
1881
|
+
* @defaultValue `'csai'`
|
|
1877
1882
|
* @remarks
|
|
1878
1883
|
* <br/> - The `'theo'` integration naming is deprecated and has been replaced with `'csai'`.
|
|
1879
|
-
* <br/> - If left empty, will default to `'theo'` for now but will default to `'csai'` starting from THEOplayer 8.0.0.
|
|
1880
1884
|
*/
|
|
1881
1885
|
integration?: 'csai' | 'theo';
|
|
1882
1886
|
/**
|
|
@@ -2155,7 +2159,7 @@ interface DRMConfiguration {
|
|
|
2155
2159
|
*
|
|
2156
2160
|
* Default value is ['widevine', 'playready', 'fairplay'].
|
|
2157
2161
|
*/
|
|
2158
|
-
preferredKeySystems?: Array<KeySystemId | string>;
|
|
2162
|
+
preferredKeySystems?: Array<KeySystemId | (string & {})>;
|
|
2159
2163
|
}
|
|
2160
2164
|
/**
|
|
2161
2165
|
* The id of a key system. Possible values are 'widevine', 'fairplay' and 'playready'.
|
|
@@ -2166,71 +2170,6 @@ interface DRMConfiguration {
|
|
|
2166
2170
|
*/
|
|
2167
2171
|
type KeySystemId = 'widevine' | 'fairplay' | 'playready';
|
|
2168
2172
|
|
|
2169
|
-
/**
|
|
2170
|
-
* The identifier of the Yospace integration.
|
|
2171
|
-
*
|
|
2172
|
-
* @category Source
|
|
2173
|
-
* @category SSAI
|
|
2174
|
-
* @public
|
|
2175
|
-
*
|
|
2176
|
-
* @deprecated
|
|
2177
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
2178
|
-
*/
|
|
2179
|
-
type YospaceSSAIIntegrationID = 'yospace';
|
|
2180
|
-
/**
|
|
2181
|
-
* The type of the Yospace stream, represented by a value from the following list:
|
|
2182
|
-
* <br/> - `'live'`: The stream is a live stream.
|
|
2183
|
-
* <br/> - `'livepause'`: The stream is a live stream with a large DVR window.
|
|
2184
|
-
* <br/> - `'nonlinear'`: The stream is a Non-Linear Start-Over stream.
|
|
2185
|
-
* <br/> - `'vod'`: The stream is a video-on-demand stream.
|
|
2186
|
-
*
|
|
2187
|
-
* @category Source
|
|
2188
|
-
* @category SSAI
|
|
2189
|
-
* @public
|
|
2190
|
-
*
|
|
2191
|
-
* @deprecated
|
|
2192
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
2193
|
-
*/
|
|
2194
|
-
type YospaceStreamType = 'vod' | 'live' | 'livepause' | 'nonlinear';
|
|
2195
|
-
/**
|
|
2196
|
-
* Represents a configuration for server-side ad insertion with the Yospace pre-integration.
|
|
2197
|
-
*
|
|
2198
|
-
* @remarks
|
|
2199
|
-
* <br/> - Available since v2.14.7.
|
|
2200
|
-
*
|
|
2201
|
-
* @category Source
|
|
2202
|
-
* @category SSAI
|
|
2203
|
-
* @public
|
|
2204
|
-
*
|
|
2205
|
-
* @deprecated
|
|
2206
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
2207
|
-
*/
|
|
2208
|
-
interface YospaceServerSideAdInsertionConfiguration extends ServerSideAdInsertionConfiguration {
|
|
2209
|
-
/**
|
|
2210
|
-
* The identifier for the SSAI pre-integration.
|
|
2211
|
-
*/
|
|
2212
|
-
integration: YospaceSSAIIntegrationID;
|
|
2213
|
-
/**
|
|
2214
|
-
* The type of the requested stream.
|
|
2215
|
-
*
|
|
2216
|
-
* @defaultValue `'live'`
|
|
2217
|
-
*/
|
|
2218
|
-
streamType?: YospaceStreamType;
|
|
2219
|
-
}
|
|
2220
|
-
/**
|
|
2221
|
-
* Represents a media resource with a Yospace server-side ad insertion request.
|
|
2222
|
-
*
|
|
2223
|
-
* @category Source
|
|
2224
|
-
* @category SSAI
|
|
2225
|
-
* @public
|
|
2226
|
-
*
|
|
2227
|
-
* @deprecated
|
|
2228
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
2229
|
-
*/
|
|
2230
|
-
interface YospaceTypedSource extends TypedSource {
|
|
2231
|
-
ssai: YospaceServerSideAdInsertionConfiguration;
|
|
2232
|
-
}
|
|
2233
|
-
|
|
2234
2173
|
/**
|
|
2235
2174
|
* The identifier of the Google DAI integration.
|
|
2236
2175
|
*
|
|
@@ -2410,7 +2349,6 @@ interface ImagineTypedSource extends TypedSource {
|
|
|
2410
2349
|
|
|
2411
2350
|
/**
|
|
2412
2351
|
* The identifier of a server-side ad insertion pre-integration, represented by a value from the following list:
|
|
2413
|
-
* <br/> - `'yospace'`: The configuration with this identifier is a {@link YospaceServerSideAdInsertionConfiguration} (deprecated)
|
|
2414
2352
|
* <br/> - `'google-dai'`: The configuration with this identifier is a {@link GoogleDAIConfiguration}
|
|
2415
2353
|
* <br/> - `'imagine'`: The configuration with this identifier is a {@link ImagineServerSideAdInsertionConfiguration}
|
|
2416
2354
|
*
|
|
@@ -2418,7 +2356,7 @@ interface ImagineTypedSource extends TypedSource {
|
|
|
2418
2356
|
* @category SSAI
|
|
2419
2357
|
* @public
|
|
2420
2358
|
*/
|
|
2421
|
-
type SSAIIntegrationId =
|
|
2359
|
+
type SSAIIntegrationId = GoogleDAISSAIIntegrationID | ImagineSSAIIntegrationID;
|
|
2422
2360
|
/**
|
|
2423
2361
|
* Represents a configuration for server-side ad insertion (SSAI).
|
|
2424
2362
|
*
|
|
@@ -4666,7 +4604,6 @@ type SourceIntegrationId = 'verizon-media' | 'mediatailor' | 'theolive';
|
|
|
4666
4604
|
/**
|
|
4667
4605
|
* The integration identifier of an analytics description, represented by a value from the following list:
|
|
4668
4606
|
* <br/> - `'agama'`: The description is an {@link AgamaConfiguration}
|
|
4669
|
-
* <br/> - `'conviva'`: The description is a {@link ConvivaConfiguration} (deprecated)
|
|
4670
4607
|
* <br/> - `'youbora'`: The description is a {@link YouboraOptions}
|
|
4671
4608
|
* <br/> - `'moat'`: The description is a {@link MoatConfiguration}
|
|
4672
4609
|
* <br/> - `'streamone'`: The description is a {@link StreamOneConfiguration}
|
|
@@ -4675,7 +4612,7 @@ type SourceIntegrationId = 'verizon-media' | 'mediatailor' | 'theolive';
|
|
|
4675
4612
|
* @category Source
|
|
4676
4613
|
* @public
|
|
4677
4614
|
*/
|
|
4678
|
-
type AnalyticsIntegrationID = 'agama' | '
|
|
4615
|
+
type AnalyticsIntegrationID = 'agama' | 'youbora' | 'moat' | 'streamone' | 'smartsight';
|
|
4679
4616
|
/**
|
|
4680
4617
|
* Describes the configuration of an analytics integration.
|
|
4681
4618
|
*
|
|
@@ -6864,195 +6801,6 @@ interface ABRConfiguration {
|
|
|
6864
6801
|
clearBufferWhenSettingTargetQuality: boolean;
|
|
6865
6802
|
}
|
|
6866
6803
|
|
|
6867
|
-
/**
|
|
6868
|
-
* The identifier of the Conviva integration.
|
|
6869
|
-
*
|
|
6870
|
-
* @category Analytics
|
|
6871
|
-
* @public
|
|
6872
|
-
*
|
|
6873
|
-
* @deprecated
|
|
6874
|
-
* Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
|
|
6875
|
-
*/
|
|
6876
|
-
type ConvivaAnalyticsIntegrationID = 'conviva';
|
|
6877
|
-
/**
|
|
6878
|
-
* Describes the configuration of the Conviva integration.
|
|
6879
|
-
*
|
|
6880
|
-
* @remarks
|
|
6881
|
-
* <br/> - Available since v2.14.4.
|
|
6882
|
-
*
|
|
6883
|
-
* @category Analytics
|
|
6884
|
-
* @public
|
|
6885
|
-
*
|
|
6886
|
-
* @deprecated
|
|
6887
|
-
* Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
|
|
6888
|
-
*/
|
|
6889
|
-
interface ConvivaConfiguration extends AnalyticsDescription {
|
|
6890
|
-
/**
|
|
6891
|
-
* {@inheritDoc AnalyticsDescription.integration}
|
|
6892
|
-
*/
|
|
6893
|
-
integration: ConvivaAnalyticsIntegrationID;
|
|
6894
|
-
/**
|
|
6895
|
-
* The customer key.
|
|
6896
|
-
*/
|
|
6897
|
-
customerKey: string;
|
|
6898
|
-
/**
|
|
6899
|
-
* The interval at which metrics are reported, in seconds.
|
|
6900
|
-
*/
|
|
6901
|
-
heartbeatInterval?: number;
|
|
6902
|
-
/**
|
|
6903
|
-
* The URL of your Conviva gateway.
|
|
6904
|
-
*
|
|
6905
|
-
* @remarks
|
|
6906
|
-
* <br/> - When not filled in, no gateway will be used.
|
|
6907
|
-
*/
|
|
6908
|
-
gatewayUrl?: string;
|
|
6909
|
-
/**
|
|
6910
|
-
* The metadata which will be sent to Conviva.
|
|
6911
|
-
*/
|
|
6912
|
-
contentMetadata: ConvivaContentMetadata;
|
|
6913
|
-
/**
|
|
6914
|
-
* Whether the player should not handle sessions automatically.
|
|
6915
|
-
*
|
|
6916
|
-
* @remarks
|
|
6917
|
-
* <br/> - This should be used if you manually want to {@link Conviva.createSession | create} and {@link Conviva.cleanupSession | cleanup} sessions.
|
|
6918
|
-
*
|
|
6919
|
-
* @defaultValue `false`
|
|
6920
|
-
*/
|
|
6921
|
-
manualSessionControl?: boolean;
|
|
6922
|
-
}
|
|
6923
|
-
/**
|
|
6924
|
-
* The Conviva API.
|
|
6925
|
-
*
|
|
6926
|
-
* @category Analytics
|
|
6927
|
-
* @public
|
|
6928
|
-
*
|
|
6929
|
-
* @deprecated
|
|
6930
|
-
* Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
|
|
6931
|
-
*/
|
|
6932
|
-
interface Conviva {
|
|
6933
|
-
/**
|
|
6934
|
-
* The Conviva client used by the player.
|
|
6935
|
-
*
|
|
6936
|
-
* @remarks
|
|
6937
|
-
* <br/> - Available since v2.31.2.
|
|
6938
|
-
* <br/> - For more information, consult the Conviva SDK documentation.
|
|
6939
|
-
*/
|
|
6940
|
-
readonly client: any;
|
|
6941
|
-
/**
|
|
6942
|
-
* The session key of the active Conviva session, if any.
|
|
6943
|
-
*
|
|
6944
|
-
* @remarks
|
|
6945
|
-
* <br/> - Available since v2.31.2.
|
|
6946
|
-
* <br/> - For more information, consult the Conviva SDK documentation.
|
|
6947
|
-
*/
|
|
6948
|
-
readonly contentSessionKey: number | undefined;
|
|
6949
|
-
/**
|
|
6950
|
-
* Create a Conviva session.
|
|
6951
|
-
*
|
|
6952
|
-
* @remarks
|
|
6953
|
-
* <br/> - This should only be used together with {@link ConvivaConfiguration.manualSessionControl}.
|
|
6954
|
-
* <br/> - For more information, consult the Conviva SDK documentation about `Client.createSession`.
|
|
6955
|
-
*/
|
|
6956
|
-
createSession(): void;
|
|
6957
|
-
/**
|
|
6958
|
-
* Clean up a Conviva session.
|
|
6959
|
-
*
|
|
6960
|
-
* @remarks
|
|
6961
|
-
* <br/> - This should only be used together with {@link ConvivaConfiguration.manualSessionControl}.
|
|
6962
|
-
* <br/> - For more information, consult the Conviva SDK documentation about `Client.cleanupSession`.
|
|
6963
|
-
*/
|
|
6964
|
-
cleanupSession(): void;
|
|
6965
|
-
}
|
|
6966
|
-
/**
|
|
6967
|
-
* Describes the content's metadata.
|
|
6968
|
-
*
|
|
6969
|
-
* @remarks
|
|
6970
|
-
* <br/> - Available since v2.14.4.
|
|
6971
|
-
*
|
|
6972
|
-
* @category Analytics
|
|
6973
|
-
* @public
|
|
6974
|
-
*
|
|
6975
|
-
* @deprecated
|
|
6976
|
-
* Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
|
|
6977
|
-
*/
|
|
6978
|
-
interface ConvivaContentMetadata {
|
|
6979
|
-
/**
|
|
6980
|
-
* The name of the asset.
|
|
6981
|
-
*/
|
|
6982
|
-
assetName: string;
|
|
6983
|
-
/**
|
|
6984
|
-
* Whether a live asset is being tracked.
|
|
6985
|
-
*
|
|
6986
|
-
* @remarks
|
|
6987
|
-
* <br/> - `false` refers to a VOD stream.
|
|
6988
|
-
* <br/> - If this property is omitted, `'UNKNOWN'` will be reported to Conviva.
|
|
6989
|
-
*/
|
|
6990
|
-
live?: boolean;
|
|
6991
|
-
/**
|
|
6992
|
-
* The default bitrate of the asset, in kpbs.
|
|
6993
|
-
*
|
|
6994
|
-
* @remarks
|
|
6995
|
-
* <br/> - If this property is omitted, it will not be reported to Conviva.
|
|
6996
|
-
*/
|
|
6997
|
-
defaultBitrateKbps?: number;
|
|
6998
|
-
/**
|
|
6999
|
-
* The default resource.
|
|
7000
|
-
*
|
|
7001
|
-
* @remarks
|
|
7002
|
-
* <br/> - If this property is omitted, it will not be reported to Conviva.
|
|
7003
|
-
*/
|
|
7004
|
-
defaultResource?: string;
|
|
7005
|
-
/**
|
|
7006
|
-
* The duration of the asset.
|
|
7007
|
-
*
|
|
7008
|
-
* @remarks
|
|
7009
|
-
* <br/> - If this property is omitted, it will not be reported to Conviva.
|
|
7010
|
-
*/
|
|
7011
|
-
duration?: number;
|
|
7012
|
-
/**
|
|
7013
|
-
* The encoded frame rate of the asset.
|
|
7014
|
-
*
|
|
7015
|
-
* @remarks
|
|
7016
|
-
* <br/> - If this property is omitted, it will not be reported to Conviva.
|
|
7017
|
-
*/
|
|
7018
|
-
encodedFrameRate?: number;
|
|
7019
|
-
/**
|
|
7020
|
-
* The application name.
|
|
7021
|
-
*
|
|
7022
|
-
* @defaultValue `'THEOplayer'`
|
|
7023
|
-
*/
|
|
7024
|
-
applicationName?: string;
|
|
7025
|
-
/**
|
|
7026
|
-
* The identifier of the viewer.
|
|
7027
|
-
*
|
|
7028
|
-
* @defaultValue A randomly generated identifier.
|
|
7029
|
-
*/
|
|
7030
|
-
viewerId?: string;
|
|
7031
|
-
/**
|
|
7032
|
-
* A record of Conviva tags.
|
|
7033
|
-
*/
|
|
7034
|
-
custom?: object;
|
|
7035
|
-
}
|
|
7036
|
-
|
|
7037
|
-
/**
|
|
7038
|
-
* The analytics API.
|
|
7039
|
-
*
|
|
7040
|
-
* @category Analytics
|
|
7041
|
-
* @public
|
|
7042
|
-
*/
|
|
7043
|
-
interface Analytics {
|
|
7044
|
-
/**
|
|
7045
|
-
* The Conviva analytics API.
|
|
7046
|
-
*
|
|
7047
|
-
* @remarks
|
|
7048
|
-
* <br/> - Only available with the feature `'conviva'`.
|
|
7049
|
-
*
|
|
7050
|
-
* @deprecated
|
|
7051
|
-
* Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
|
|
7052
|
-
*/
|
|
7053
|
-
conviva?: Conviva;
|
|
7054
|
-
}
|
|
7055
|
-
|
|
7056
6804
|
/**
|
|
7057
6805
|
* The events fired by the {@link Clip | clip API}.
|
|
7058
6806
|
*
|
|
@@ -8681,70 +8429,6 @@ interface VerizonMedia extends EventDispatcher<VerizonMediaEventMap> {
|
|
|
8681
8429
|
readonly assets: VerizonMediaAssetList;
|
|
8682
8430
|
}
|
|
8683
8431
|
|
|
8684
|
-
/**
|
|
8685
|
-
* The events fired by the {@link Yospace | Yospace API}.
|
|
8686
|
-
*
|
|
8687
|
-
* @category SSAI
|
|
8688
|
-
* @public
|
|
8689
|
-
*
|
|
8690
|
-
* @deprecated
|
|
8691
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
8692
|
-
*/
|
|
8693
|
-
interface YospaceEventMap {
|
|
8694
|
-
/**
|
|
8695
|
-
* Fired when a new Yospace session starts.
|
|
8696
|
-
*/
|
|
8697
|
-
sessionavailable: Event<'sessionavailable'>;
|
|
8698
|
-
}
|
|
8699
|
-
/**
|
|
8700
|
-
* Represents the collection of standard callback functions for a Yospace SessionManager.
|
|
8701
|
-
*
|
|
8702
|
-
* @remarks
|
|
8703
|
-
* <br/> - These callbacks will be used by the Yospace SDK to provide feedback to the player.
|
|
8704
|
-
*
|
|
8705
|
-
* @category SSAI
|
|
8706
|
-
* @public
|
|
8707
|
-
*
|
|
8708
|
-
* @deprecated
|
|
8709
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
8710
|
-
*/
|
|
8711
|
-
interface YospaceCallbackObject {
|
|
8712
|
-
AdBreakStart: () => void;
|
|
8713
|
-
AdvertStart: (mediaID: string) => void;
|
|
8714
|
-
AdvertEnd: (mediaID: string) => void;
|
|
8715
|
-
AdBreakEnd: () => void;
|
|
8716
|
-
InjectVast: () => void;
|
|
8717
|
-
UpdateTimeline: (timeline: any) => void;
|
|
8718
|
-
}
|
|
8719
|
-
/**
|
|
8720
|
-
* The Yospace API.
|
|
8721
|
-
*
|
|
8722
|
-
* @remarks
|
|
8723
|
-
* <br/> - Available since v2.14.7.
|
|
8724
|
-
*
|
|
8725
|
-
* @category SSAI
|
|
8726
|
-
* @public
|
|
8727
|
-
*
|
|
8728
|
-
* @deprecated
|
|
8729
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
8730
|
-
*/
|
|
8731
|
-
interface Yospace extends EventDispatcher<YospaceEventMap> {
|
|
8732
|
-
/**
|
|
8733
|
-
* The Yospace session.
|
|
8734
|
-
*
|
|
8735
|
-
*/
|
|
8736
|
-
readonly session: object;
|
|
8737
|
-
/**
|
|
8738
|
-
* Register a set of callbacks to the player to the Yospace SDK.
|
|
8739
|
-
*
|
|
8740
|
-
* @remarks
|
|
8741
|
-
* <br/> - These callbacks will be used by the Yospace SDK to provide feedback to the player.
|
|
8742
|
-
*
|
|
8743
|
-
* @param callbackCollection - The {@link YospaceCallbackObject}
|
|
8744
|
-
*/
|
|
8745
|
-
registerPlayer(callbackCollection: YospaceCallbackObject): void;
|
|
8746
|
-
}
|
|
8747
|
-
|
|
8748
8432
|
/**
|
|
8749
8433
|
* An error code whose category is `ErrorCategory.CONTENT_PROTECTION`.
|
|
8750
8434
|
*
|
|
@@ -9767,10 +9451,6 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
|
|
|
9767
9451
|
* List of audio tracks of the current source.
|
|
9768
9452
|
*/
|
|
9769
9453
|
audioTracks: MediaTrackList;
|
|
9770
|
-
/**
|
|
9771
|
-
* The analytics API.
|
|
9772
|
-
*/
|
|
9773
|
-
readonly analytics: Analytics;
|
|
9774
9454
|
/**
|
|
9775
9455
|
* Whether the player should immediately start playback after source change.
|
|
9776
9456
|
*
|
|
@@ -10072,16 +9752,6 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
|
|
|
10072
9752
|
* <br/> - Only available with the feature `'verizonmedia'`.
|
|
10073
9753
|
*/
|
|
10074
9754
|
readonly verizonMedia?: VerizonMedia;
|
|
10075
|
-
/**
|
|
10076
|
-
* The Yospace API.
|
|
10077
|
-
*
|
|
10078
|
-
* @remarks
|
|
10079
|
-
* <br/> - Only available with the feature `'yospace'`.
|
|
10080
|
-
*
|
|
10081
|
-
* @deprecated
|
|
10082
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
10083
|
-
*/
|
|
10084
|
-
readonly yospace?: Yospace;
|
|
10085
9755
|
/**
|
|
10086
9756
|
* The HESP API.
|
|
10087
9757
|
* @remarks
|
|
@@ -12441,7 +12111,6 @@ interface TTMLCue extends TextTrackCue {
|
|
|
12441
12111
|
* <br/> - For THEOads, one configured ad break request enables server guided ad playback for the entire stream.
|
|
12442
12112
|
*
|
|
12443
12113
|
* @category Ads
|
|
12444
|
-
* @internal
|
|
12445
12114
|
*/
|
|
12446
12115
|
interface TheoAdDescription extends AdDescription {
|
|
12447
12116
|
/**
|
|
@@ -12518,7 +12187,6 @@ interface TheoAdDescription extends AdDescription {
|
|
|
12518
12187
|
* - `'single-if-mobile'`: When on a mobile device, override to play all ad breaks using the "single" layout mode.
|
|
12519
12188
|
*
|
|
12520
12189
|
* @category Ads
|
|
12521
|
-
* @internal
|
|
12522
12190
|
*/
|
|
12523
12191
|
type TheoAdsLayoutOverride = 'single' | 'l-shape' | 'double' | 'single-if-mobile';
|
|
12524
12192
|
|
|
@@ -13457,4 +13125,4 @@ declare function registerContentProtectionIntegration(integrationId: string, key
|
|
|
13457
13125
|
*/
|
|
13458
13126
|
declare const utils: CommonUtils;
|
|
13459
13127
|
|
|
13460
|
-
export { ABRConfiguration, ABRMetadata, ABRStrategy, ABRStrategyConfiguration, ABRStrategyType, AES128KeySystemConfiguration, AccessibilityRole, Ad, AdBreak, AdBreakEvent, AdBreakInit, AdBufferingEvent, AdDescription, AdEvent, AdInit, AdIntegrationKind, AdMetadataEvent, AdPreloadType, AdReadyState, AdSkipEvent, AdSource, AdSourceType, AdType, AddCachingTaskEvent, AddTrackEvent, AddViewEvent, Ads, AdsConfiguration, AdsEventMap, AgamaAnalyticsIntegrationID, AgamaConfiguration, AgamaLogLevelType, AgamaPlayerConfiguration, AgamaServiceName, AgamaSourceConfiguration, AgamaStreamType, AirPlay, Analytics, AnalyticsDescription, AnalyticsIntegrationID, AudioQuality, AxinomDRMConfiguration, AxinomIntegrationID, AzureDRMConfiguration, AzureIntegrationID, Base64Util, BaseSource, Boundary, BoundaryC3, BoundaryC7, BoundaryHalftime, BoundaryInfo, BufferSource, BufferedSegments, Cache, CacheEventMap, CacheStatus, CacheTaskStatus, CachingTask, CachingTaskEventMap, CachingTaskLicense, CachingTaskList, CachingTaskListEventMap, CachingTaskParameters, CanPlayEvent, CanPlayThroughEvent, Canvas, Cast, CastConfiguration, CastEventMap, CastState, CastStateChangeEvent, CertificateRequest, CertificateResponse, Chromecast, ChromecastConfiguration, ChromecastConnectionCallback, ChromecastError, ChromecastErrorCode, ChromecastErrorEvent, ChromecastEventMap, ChromecastMetadataDescription, ChromecastMetadataImage, ChromecastMetadataType, ChromelessPlayer, ClearkeyDecryptionKey, ClearkeyKeySystemConfiguration, Clip, ClipEventMap, ComcastDRMConfiguration, ComcastIntegrationID, CommonUtils, CompanionAd, ConaxDRMConfiguration, ConaxIntegrationID, ContentProtectionError, ContentProtectionErrorCode, ContentProtectionErrorEvent, ContentProtectionIntegration, ContentProtectionIntegrationFactory, ContentProtectionRequest, ContentProtectionRequestSubType, ContentProtectionResponse, Conviva, ConvivaAnalyticsIntegrationID, ConvivaConfiguration, ConvivaContentMetadata, CrossOriginSetting, CsaiAdDescription, CurrentSourceChangeEvent, CustomAdIntegrationKind, DAIAvailabilityType, DRMConfiguration, DRMTodayDRMConfiguration, DRMTodayIntegrationID, DashPlaybackConfiguration, DateRangeCue, DeliveryType, DeviceBasedTitaniumDRMConfiguration, DimensionChangeEvent, DirectionChangeEvent, DurationChangeEvent, EdgeStyle, EmptiedEvent, EmsgCue, EncryptedEvent, EndedEvent, EnterBadNetworkModeEvent, ErrorCategory, ErrorCode, ErrorEvent, Event, EventDispatcher, EventListener, EventMap, EventStreamCue, EventedList, ExitBadNetworkModeEvent, ExpressPlayDRMConfiguration, ExpressPlayIntegrationID, EzdrmDRMConfiguration, EzdrmIntegrationID, FairPlayKeySystemConfiguration, FreeWheelAdDescription, FreeWheelAdUnitType, FreeWheelCue, FullscreenOptions$1 as FullscreenOptions, Geo, GlobalCast, GlobalChromecast, GoogleDAI, GoogleDAIConfiguration, GoogleDAILiveConfiguration, GoogleDAISSAIIntegrationID, GoogleDAITypedSource, GoogleDAIVodConfiguration, GoogleImaAd, GoogleImaConfiguration, HTTPHeaders, HespApi, HespApiEventMap, HespLatencyConfiguration, HespMediaType, HespSourceConfiguration, HespTypedSource, HlsDiscontinuityAlignment, HlsPlaybackConfiguration, ID3AttachedPicture, ID3BaseFrame, ID3Comments, ID3CommercialFrame, ID3Cue, ID3Frame, ID3GenericEncapsulatedObject, ID3InvolvedPeopleList, ID3PositionSynchronisationFrame, ID3PrivateFrame, ID3SynchronizedLyricsText, ID3TermsOfUse, ID3Text, ID3UniqueFileIdentifier, ID3Unknown, ID3UnsynchronisedLyricsTextTranscription, ID3UrlLink, ID3UserDefinedText, ID3UserDefinedUrlLink, ID3Yospace, IMAAdDescription, Imagine, ImagineEventMap, ImagineSSAIIntegrationID, ImagineServerSideAdInsertionConfiguration, ImagineTrackingEvent, ImagineTypedSource, IntentToFallbackEvent, InterceptableRequest, InterceptableResponse, IrdetoDRMConfiguration, IrdetoIntegrationID, JoinStrategy, KeyOSDRMConfiguration, KeyOSFairplayKeySystemConfiguration, KeyOSIntegrationID, KeyOSKeySystemConfiguration, KeySystemConfiguration, KeySystemId, Latencies, LatencyConfiguration, LatencyManager, LayoutChangeEvent, LicenseRequest, LicenseResponse, LicenseType, LinearAd, List, LoadedDataEvent, LoadedMetadataEvent, MaybeAsync, MeasurableNetworkEstimator, MediaError, MediaErrorCode, MediaFile, MediaMelonConfiguration, MediaTailorSource, MediaTrack, MediaTrackEventMap, MediaTrackList, MediaType, MetadataDescription, Metrics, MoatAnalyticsIntegrationID, MoatConfiguration, MultiViewPlayer, MultiViewPlayerEventMap, MultiViewPlayerLayout, MutedAutoplayConfiguration, Network, NetworkEstimator, NetworkEstimatorController, NetworkEventMap, NetworkInterceptorController, NodeStyleVoidCallback, NonLinearAd, PauseEvent, PiPConfiguration, PiPPosition, PlayEvent, PlayReadyKeySystemConfiguration, PlayerConfiguration, PlayerEventMap, PlayerList, PlayingEvent, PreloadType, Presentation, PresentationEventMap, PresentationMode, PresentationModeChangeEvent, ProgressEvent, PublicationLoadStartEvent, PublicationLoadedEvent, PublicationOfflineEvent, Quality, QualityEvent, QualityEventMap, QualityList, RateChangeEvent, ReadyStateChangeEvent, RelatedChangeEvent, RelatedContent, RelatedContentEventMap, RelatedContentSource, RelatedHideEvent, RelatedShowEvent, RemoveCachingTaskEvent, RemoveTrackEvent, RemoveViewEvent, Representation, RepresentationChangeEvent, Request, RequestBody, RequestInit, RequestInterceptor, RequestLike, RequestMeasurer, RequestMethod, RequestSubType, RequestType, ResponseBody, ResponseInit, ResponseInterceptor, ResponseLike, ResponseType, RetryConfiguration, SSAIIntegrationId, SeamlessPeriodSwitchStrategy, SeamlessSwitchStrategy, SeekedEvent, SeekingEvent, ServerSideAdInsertionConfiguration, ServerSideAdIntegrationController, ServerSideAdIntegrationFactory, ServerSideAdIntegrationHandler, SkippedAdStrategy, SmartSightConfiguration, SmartSightIntegrationID, Source, SourceAbrConfiguration, SourceChangeEvent, SourceConfiguration, SourceDescription, SourceIntegrationId, SourceLatencyConfiguration, Sources, SpotXAdDescription, SpotxData, SpotxQueryParameter, StateChangeEvent, StereoChangeEvent, StreamOneAnalyticsIntegrationID, StreamOneConfiguration, StreamType, StringKeyOf, StylePropertyRecord, THEOplayerAdDescription, THEOplayerError, TTMLCue, TargetQualityChangedEvent, TextTrack, TextTrackAddCueEvent, TextTrackCue, TextTrackCueChangeEvent, TextTrackCueEnterEvent, TextTrackCueEventMap, TextTrackCueExitEvent, TextTrackCueList, TextTrackCueUpdateEvent, TextTrackDescription, TextTrackEnterCueEvent, TextTrackError, TextTrackErrorCode, TextTrackErrorEvent, TextTrackEventMap, TextTrackExitCueEvent, TextTrackReadyState, TextTrackReadyStateChangeEvent, TextTrackRemoveCueEvent, TextTrackStyle, TextTrackStyleEventMap, TextTrackType, TextTrackTypeChangeEvent, TextTrackUpdateCueEvent, TextTracksList, TheoAdDescription, TheoAdsLayoutOverride, TheoLiveApi, TheoLiveApiEventMap, TheoLiveConfiguration, TheoLivePublication, TheoLiveSource, ThumbnailResolution, TimeRanges, TimeUpdateEvent, TitaniumDRMConfiguration, TitaniumIntegrationID, TokenBasedTitaniumDRMConfiguration, Track, TrackChangeEvent, TrackEventMap, TrackList, TrackListEventMap, TrackUpdateEvent, TypedSource, UIConfiguration, UILanguage, UIPlayerConfiguration, UIRelatedContent, UIRelatedContentEventMap, UniversalAdId, UpdateQualityEvent, UplynkDRMConfiguration, UplynkIntegrationID, UserActions, VPAIDMode, VR, VRConfiguration, VRDirection, VREventMap, VRPanoramaMode, VRPlayerConfiguration, VRState, VRStereoMode, VTTAlignSetting, VTTDirectionSetting, VTTLine, VTTLineAlignSetting, VTTPosition, VTTPositionAlignSetting, VTTScrollSetting, VendorCast, VendorCastEventMap, VerimatrixDRMConfiguration, VerimatrixIntegrationID, VerizonMedia, VerizonMediaAd, VerizonMediaAdBeginEvent, VerizonMediaAdBreak, VerizonMediaAdBreakBeginEvent, VerizonMediaAdBreakEndEvent, VerizonMediaAdBreakEventMap, VerizonMediaAdBreakList, VerizonMediaAdBreakListEventMap, VerizonMediaAdBreakSkipEvent, VerizonMediaAdCompleteEvent, VerizonMediaAdEndEvent, VerizonMediaAdEventMap, VerizonMediaAdFirstQuartileEvent, VerizonMediaAdList, VerizonMediaAdListEventMap, VerizonMediaAdMidpointEvent, VerizonMediaAdThirdQuartileEvent, VerizonMediaAddAdBreakEvent, VerizonMediaAddAssetEvent, VerizonMediaAds, VerizonMediaAsset, VerizonMediaAssetEventMap, VerizonMediaAssetId, VerizonMediaAssetInfoResponse, VerizonMediaAssetInfoResponseEvent, VerizonMediaAssetList, VerizonMediaAssetMovieRating, VerizonMediaAssetTvRating, VerizonMediaAssetType, VerizonMediaConfiguration, VerizonMediaEventMap, VerizonMediaExternalId, VerizonMediaPingConfiguration, VerizonMediaPingErrorEvent, VerizonMediaPingResponse, VerizonMediaPingResponseEvent, VerizonMediaPreplayBaseResponse, VerizonMediaPreplayLiveResponse, VerizonMediaPreplayResponse, VerizonMediaPreplayResponseEvent, VerizonMediaPreplayResponseType, VerizonMediaPreplayVodResponse, VerizonMediaRemoveAdBreakEvent, VerizonMediaRemoveAdEvent, VerizonMediaRemoveAssetEvent, VerizonMediaResponseDrm, VerizonMediaResponseLiveAd, VerizonMediaResponseLiveAdBreak, VerizonMediaResponseLiveAds, VerizonMediaResponseVodAd, VerizonMediaResponseVodAdBreak, VerizonMediaResponseVodAdBreakOffset, VerizonMediaResponseVodAdPlaceholder, VerizonMediaResponseVodAds, VerizonMediaSource, VerizonMediaUiConfiguration, VerizonMediaUpdateAdBreakEvent, VideoFrameCallbackMetadata, VideoFrameRequestCallback, VideoQuality, View, ViewChangeEvent, ViewPositionChangeEvent, VimondDRMConfiguration, VimondIntegrationID, Visibility, VisibilityObserver, VisibilityObserverCallback, VoidPromiseCallback, VolumeChangeEvent, VudrmDRMConfiguration, VudrmIntegrationID, WaitUntilCallback, WaitingEvent, WebAudio, WebVTTCue, WebVTTRegion, WidevineKeySystemConfiguration, XstreamDRMConfiguration, XstreamIntegrationID, Yospace, YospaceCallbackObject, YospaceEventMap, YospaceId, YospaceSSAIIntegrationID, YospaceServerSideAdInsertionConfiguration, YospaceStreamType, YospaceTypedSource, YouboraAnalyticsIntegrationID, YouboraOptions, cache, cast, features, playerSuiteVersion, players, registerContentProtectionIntegration, utils, version, videojs };
|
|
13128
|
+
export { ABRConfiguration, ABRMetadata, ABRStrategy, ABRStrategyConfiguration, ABRStrategyType, AES128KeySystemConfiguration, AccessibilityRole, Ad, AdBreak, AdBreakEvent, AdBreakInit, AdBufferingEvent, AdDescription, AdEvent, AdInit, AdIntegrationKind, AdMetadataEvent, AdPreloadType, AdReadyState, AdSkipEvent, AdSource, AdSourceType, AdType, AddCachingTaskEvent, AddTrackEvent, AddViewEvent, Ads, AdsConfiguration, AdsEventMap, AdsManagerLoadedEvent, AgamaAnalyticsIntegrationID, AgamaConfiguration, AgamaLogLevelType, AgamaPlayerConfiguration, AgamaServiceName, AgamaSourceConfiguration, AgamaStreamType, AirPlay, AnalyticsDescription, AnalyticsIntegrationID, AudioQuality, AxinomDRMConfiguration, AxinomIntegrationID, AzureDRMConfiguration, AzureIntegrationID, Base64Util, BaseSource, Boundary, BoundaryC3, BoundaryC7, BoundaryHalftime, BoundaryInfo, BufferSource, BufferedSegments, Cache, CacheEventMap, CacheStatus, CacheTaskStatus, CachingTask, CachingTaskEventMap, CachingTaskLicense, CachingTaskList, CachingTaskListEventMap, CachingTaskParameters, CanPlayEvent, CanPlayThroughEvent, Canvas, Cast, CastConfiguration, CastEventMap, CastState, CastStateChangeEvent, CertificateRequest, CertificateResponse, Chromecast, ChromecastConfiguration, ChromecastConnectionCallback, ChromecastError, ChromecastErrorCode, ChromecastErrorEvent, ChromecastEventMap, ChromecastMetadataDescription, ChromecastMetadataImage, ChromecastMetadataType, ChromelessPlayer, ClearkeyDecryptionKey, ClearkeyKeySystemConfiguration, Clip, ClipEventMap, ComcastDRMConfiguration, ComcastIntegrationID, CommonUtils, CompanionAd, ConaxDRMConfiguration, ConaxIntegrationID, ContentProtectionError, ContentProtectionErrorCode, ContentProtectionErrorEvent, ContentProtectionIntegration, ContentProtectionIntegrationFactory, ContentProtectionRequest, ContentProtectionRequestSubType, ContentProtectionResponse, CrossOriginSetting, CsaiAdDescription, CurrentSourceChangeEvent, CustomAdIntegrationKind, DAIAvailabilityType, DRMConfiguration, DRMTodayDRMConfiguration, DRMTodayIntegrationID, DashPlaybackConfiguration, DateRangeCue, DeliveryType, DeviceBasedTitaniumDRMConfiguration, DimensionChangeEvent, DirectionChangeEvent, DurationChangeEvent, EdgeStyle, EmptiedEvent, EmsgCue, EncryptedEvent, EndedEvent, EnterBadNetworkModeEvent, ErrorCategory, ErrorCode, ErrorEvent, Event, EventDispatcher, EventListener, EventMap, EventStreamCue, EventedList, ExitBadNetworkModeEvent, ExpressPlayDRMConfiguration, ExpressPlayIntegrationID, EzdrmDRMConfiguration, EzdrmIntegrationID, FairPlayKeySystemConfiguration, FreeWheelAdDescription, FreeWheelAdUnitType, FreeWheelCue, FullscreenOptions$1 as FullscreenOptions, Geo, GlobalCast, GlobalChromecast, GoogleDAI, GoogleDAIConfiguration, GoogleDAILiveConfiguration, GoogleDAISSAIIntegrationID, GoogleDAITypedSource, GoogleDAIVodConfiguration, GoogleImaAd, GoogleImaConfiguration, HTTPHeaders, HespApi, HespApiEventMap, HespLatencyConfiguration, HespMediaType, HespSourceConfiguration, HespTypedSource, HlsDiscontinuityAlignment, HlsPlaybackConfiguration, ID3AttachedPicture, ID3BaseFrame, ID3Comments, ID3CommercialFrame, ID3Cue, ID3Frame, ID3GenericEncapsulatedObject, ID3InvolvedPeopleList, ID3PositionSynchronisationFrame, ID3PrivateFrame, ID3SynchronizedLyricsText, ID3TermsOfUse, ID3Text, ID3UniqueFileIdentifier, ID3Unknown, ID3UnsynchronisedLyricsTextTranscription, ID3UrlLink, ID3UserDefinedText, ID3UserDefinedUrlLink, ID3Yospace, IMAAdDescription, Imagine, ImagineEventMap, ImagineSSAIIntegrationID, ImagineServerSideAdInsertionConfiguration, ImagineTrackingEvent, ImagineTypedSource, IntentToFallbackEvent, InterceptableRequest, InterceptableResponse, IrdetoDRMConfiguration, IrdetoIntegrationID, JoinStrategy, KeyOSDRMConfiguration, KeyOSFairplayKeySystemConfiguration, KeyOSIntegrationID, KeyOSKeySystemConfiguration, KeySystemConfiguration, KeySystemId, Latencies, LatencyConfiguration, LatencyManager, LayoutChangeEvent, LicenseRequest, LicenseResponse, LicenseType, LinearAd, List, LoadedDataEvent, LoadedMetadataEvent, MaybeAsync, MeasurableNetworkEstimator, MediaError, MediaErrorCode, MediaFile, MediaMelonConfiguration, MediaTailorSource, MediaTrack, MediaTrackEventMap, MediaTrackList, MediaType, MetadataDescription, Metrics, MoatAnalyticsIntegrationID, MoatConfiguration, MultiViewPlayer, MultiViewPlayerEventMap, MultiViewPlayerLayout, MutedAutoplayConfiguration, Network, NetworkEstimator, NetworkEstimatorController, NetworkEventMap, NetworkInterceptorController, NodeStyleVoidCallback, NonLinearAd, PauseEvent, PiPConfiguration, PiPPosition, PlayEvent, PlayReadyKeySystemConfiguration, PlayerConfiguration, PlayerEventMap, PlayerList, PlayingEvent, PreloadType, Presentation, PresentationEventMap, PresentationMode, PresentationModeChangeEvent, ProgressEvent, PublicationLoadStartEvent, PublicationLoadedEvent, PublicationOfflineEvent, Quality, QualityEvent, QualityEventMap, QualityList, RateChangeEvent, ReadyStateChangeEvent, RelatedChangeEvent, RelatedContent, RelatedContentEventMap, RelatedContentSource, RelatedHideEvent, RelatedShowEvent, RemoveCachingTaskEvent, RemoveTrackEvent, RemoveViewEvent, Representation, RepresentationChangeEvent, Request, RequestBody, RequestInit, RequestInterceptor, RequestLike, RequestMeasurer, RequestMethod, RequestSubType, RequestType, ResponseBody, ResponseInit, ResponseInterceptor, ResponseLike, ResponseType, RetryConfiguration, SSAIIntegrationId, SeamlessPeriodSwitchStrategy, SeamlessSwitchStrategy, SeekedEvent, SeekingEvent, ServerSideAdInsertionConfiguration, ServerSideAdIntegrationController, ServerSideAdIntegrationFactory, ServerSideAdIntegrationHandler, SkippedAdStrategy, SmartSightConfiguration, SmartSightIntegrationID, Source, SourceAbrConfiguration, SourceChangeEvent, SourceConfiguration, SourceDescription, SourceIntegrationId, SourceLatencyConfiguration, Sources, SpotXAdDescription, SpotxData, SpotxQueryParameter, StateChangeEvent, StereoChangeEvent, StreamOneAnalyticsIntegrationID, StreamOneConfiguration, StreamType, StringKeyOf, StylePropertyRecord, THEOplayerAdDescription, THEOplayerError, TTMLCue, TargetQualityChangedEvent, TextTrack, TextTrackAddCueEvent, TextTrackCue, TextTrackCueChangeEvent, TextTrackCueEnterEvent, TextTrackCueEventMap, TextTrackCueExitEvent, TextTrackCueList, TextTrackCueUpdateEvent, TextTrackDescription, TextTrackEnterCueEvent, TextTrackError, TextTrackErrorCode, TextTrackErrorEvent, TextTrackEventMap, TextTrackExitCueEvent, TextTrackReadyState, TextTrackReadyStateChangeEvent, TextTrackRemoveCueEvent, TextTrackStyle, TextTrackStyleEventMap, TextTrackType, TextTrackTypeChangeEvent, TextTrackUpdateCueEvent, TextTracksList, TheoAdDescription, TheoAdsLayoutOverride, TheoLiveApi, TheoLiveApiEventMap, TheoLiveConfiguration, TheoLivePublication, TheoLiveSource, ThumbnailResolution, TimeRanges, TimeUpdateEvent, TitaniumDRMConfiguration, TitaniumIntegrationID, TokenBasedTitaniumDRMConfiguration, Track, TrackChangeEvent, TrackEventMap, TrackList, TrackListEventMap, TrackUpdateEvent, TypedSource, UIConfiguration, UILanguage, UIPlayerConfiguration, UIRelatedContent, UIRelatedContentEventMap, UniversalAdId, UpdateQualityEvent, UplynkDRMConfiguration, UplynkIntegrationID, UserActions, VPAIDMode, VR, VRConfiguration, VRDirection, VREventMap, VRPanoramaMode, VRPlayerConfiguration, VRState, VRStereoMode, VTTAlignSetting, VTTDirectionSetting, VTTLine, VTTLineAlignSetting, VTTPosition, VTTPositionAlignSetting, VTTScrollSetting, VendorCast, VendorCastEventMap, VerimatrixDRMConfiguration, VerimatrixIntegrationID, VerizonMedia, VerizonMediaAd, VerizonMediaAdBeginEvent, VerizonMediaAdBreak, VerizonMediaAdBreakBeginEvent, VerizonMediaAdBreakEndEvent, VerizonMediaAdBreakEventMap, VerizonMediaAdBreakList, VerizonMediaAdBreakListEventMap, VerizonMediaAdBreakSkipEvent, VerizonMediaAdCompleteEvent, VerizonMediaAdEndEvent, VerizonMediaAdEventMap, VerizonMediaAdFirstQuartileEvent, VerizonMediaAdList, VerizonMediaAdListEventMap, VerizonMediaAdMidpointEvent, VerizonMediaAdThirdQuartileEvent, VerizonMediaAddAdBreakEvent, VerizonMediaAddAssetEvent, VerizonMediaAds, VerizonMediaAsset, VerizonMediaAssetEventMap, VerizonMediaAssetId, VerizonMediaAssetInfoResponse, VerizonMediaAssetInfoResponseEvent, VerizonMediaAssetList, VerizonMediaAssetMovieRating, VerizonMediaAssetTvRating, VerizonMediaAssetType, VerizonMediaConfiguration, VerizonMediaEventMap, VerizonMediaExternalId, VerizonMediaPingConfiguration, VerizonMediaPingErrorEvent, VerizonMediaPingResponse, VerizonMediaPingResponseEvent, VerizonMediaPreplayBaseResponse, VerizonMediaPreplayLiveResponse, VerizonMediaPreplayResponse, VerizonMediaPreplayResponseEvent, VerizonMediaPreplayResponseType, VerizonMediaPreplayVodResponse, VerizonMediaRemoveAdBreakEvent, VerizonMediaRemoveAdEvent, VerizonMediaRemoveAssetEvent, VerizonMediaResponseDrm, VerizonMediaResponseLiveAd, VerizonMediaResponseLiveAdBreak, VerizonMediaResponseLiveAds, VerizonMediaResponseVodAd, VerizonMediaResponseVodAdBreak, VerizonMediaResponseVodAdBreakOffset, VerizonMediaResponseVodAdPlaceholder, VerizonMediaResponseVodAds, VerizonMediaSource, VerizonMediaUiConfiguration, VerizonMediaUpdateAdBreakEvent, VideoFrameCallbackMetadata, VideoFrameRequestCallback, VideoQuality, View, ViewChangeEvent, ViewPositionChangeEvent, VimondDRMConfiguration, VimondIntegrationID, Visibility, VisibilityObserver, VisibilityObserverCallback, VoidPromiseCallback, VolumeChangeEvent, VudrmDRMConfiguration, VudrmIntegrationID, WaitUntilCallback, WaitingEvent, WebAudio, WebVTTCue, WebVTTRegion, WidevineKeySystemConfiguration, XstreamDRMConfiguration, XstreamIntegrationID, YospaceId, YouboraAnalyticsIntegrationID, YouboraOptions, cache, cast, features, playerSuiteVersion, players, registerContentProtectionIntegration, utils, version, videojs };
|