@theoplayer/extended 7.11.0 → 8.0.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 +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 +27 -362
- 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
|
/**
|
|
@@ -661,6 +658,10 @@ interface AdInit extends Omit<Partial<Ad>, 'integration' | 'adBreak'> {
|
|
|
661
658
|
* The time offset at which content will be paused to play the ad, in seconds.
|
|
662
659
|
*/
|
|
663
660
|
timeOffset?: number;
|
|
661
|
+
/**
|
|
662
|
+
* Additional integration-specific data associated with this ad.
|
|
663
|
+
*/
|
|
664
|
+
customData?: unknown;
|
|
664
665
|
}
|
|
665
666
|
/**
|
|
666
667
|
* An initializer for a custom {@link AdBreak}.
|
|
@@ -669,7 +670,6 @@ interface AdInit extends Omit<Partial<Ad>, 'integration' | 'adBreak'> {
|
|
|
669
670
|
* @see {@link ServerSideAdIntegrationController.updateAdBreak}
|
|
670
671
|
*
|
|
671
672
|
* @category Ads
|
|
672
|
-
* @experimental
|
|
673
673
|
*/
|
|
674
674
|
interface AdBreakInit {
|
|
675
675
|
/**
|
|
@@ -680,6 +680,10 @@ interface AdBreakInit {
|
|
|
680
680
|
* The duration of the ad break, in seconds.
|
|
681
681
|
*/
|
|
682
682
|
maxDuration?: number | undefined;
|
|
683
|
+
/**
|
|
684
|
+
* Additional integration-specific data associated with this ad break.
|
|
685
|
+
*/
|
|
686
|
+
customData?: unknown;
|
|
683
687
|
}
|
|
684
688
|
/**
|
|
685
689
|
* Factory to create an {@link ServerSideAdIntegrationHandler}.
|
|
@@ -691,7 +695,6 @@ interface AdBreakInit {
|
|
|
691
695
|
* @see {@link Ads.registerServerSideIntegration}
|
|
692
696
|
*
|
|
693
697
|
* @category Ads
|
|
694
|
-
* @experimental
|
|
695
698
|
*/
|
|
696
699
|
type ServerSideAdIntegrationFactory = (controller: ServerSideAdIntegrationController) => ServerSideAdIntegrationHandler;
|
|
697
700
|
|
|
@@ -717,7 +720,6 @@ interface Ad {
|
|
|
717
720
|
*
|
|
718
721
|
* @remarks
|
|
719
722
|
* <br/> - The `'theo'` integration naming is deprecated and has been replaced with `'csai'`.
|
|
720
|
-
* <br/> - If unset, will default to `'theo'` for now but will default to `'csai'` starting from THEOplayer 8.0.0.
|
|
721
723
|
*/
|
|
722
724
|
integration?: AdIntegrationKind | CustomAdIntegrationKind;
|
|
723
725
|
/**
|
|
@@ -783,7 +785,7 @@ interface Ad {
|
|
|
783
785
|
*
|
|
784
786
|
* @remarks
|
|
785
787
|
* <br/> - Available when the {@link Ad.readyState} is `'ready'`.
|
|
786
|
-
* <br/> - Only supported for `'csai'
|
|
788
|
+
* <br/> - Only supported for `'csai'` and `'google-dai'`.
|
|
787
789
|
*/
|
|
788
790
|
companions: CompanionAd[];
|
|
789
791
|
/**
|
|
@@ -807,9 +809,13 @@ interface Ad {
|
|
|
807
809
|
* The list of universal ad ID information of the selected creative for the ad.
|
|
808
810
|
*
|
|
809
811
|
* @remarks
|
|
810
|
-
* <br/> - Only supported for `'csai'
|
|
812
|
+
* <br/> - Only supported for `'csai'` and `'google-ima'`.
|
|
811
813
|
*/
|
|
812
814
|
universalAdIds: UniversalAdId[];
|
|
815
|
+
/**
|
|
816
|
+
* Additional integration-specific data associated with this ad.
|
|
817
|
+
*/
|
|
818
|
+
customData: unknown;
|
|
813
819
|
/**
|
|
814
820
|
* Whether the ad is a slate or not.
|
|
815
821
|
*
|
|
@@ -1147,7 +1153,6 @@ interface AdBreak {
|
|
|
1147
1153
|
*
|
|
1148
1154
|
* @remarks
|
|
1149
1155
|
* <br/> - The `'theo'` integration naming is deprecated and has been replaced with `'csai'`.
|
|
1150
|
-
* <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.
|
|
1151
1156
|
*/
|
|
1152
1157
|
integration: AdIntegrationKind | CustomAdIntegrationKind | undefined;
|
|
1153
1158
|
/**
|
|
@@ -1173,6 +1178,10 @@ interface AdBreak {
|
|
|
1173
1178
|
* <br/> - This feature is not available in the Google IMA integration and will default to -1.
|
|
1174
1179
|
*/
|
|
1175
1180
|
maxRemainingDuration: number | undefined;
|
|
1181
|
+
/**
|
|
1182
|
+
* Additional integration-specific data associated with this ad.
|
|
1183
|
+
*/
|
|
1184
|
+
customData: unknown;
|
|
1176
1185
|
}
|
|
1177
1186
|
/**
|
|
1178
1187
|
* Represents a companion ad which is displayed near the video player.
|
|
@@ -1392,7 +1401,7 @@ interface AdBreakEvent<TType extends string> extends Event<TType> {
|
|
|
1392
1401
|
* The API for advertisements.
|
|
1393
1402
|
*
|
|
1394
1403
|
* @remarks
|
|
1395
|
-
* <br/> - Integrates with `'csai'`, `'
|
|
1404
|
+
* <br/> - Integrates with `'csai'`, `'google-ima'`, `'google-dai'`, `'freewheel'` or `'theoads'`.
|
|
1396
1405
|
*
|
|
1397
1406
|
* @category Ads
|
|
1398
1407
|
* @public
|
|
@@ -1448,16 +1457,10 @@ interface Ads extends EventDispatcher<AdsEventMap> {
|
|
|
1448
1457
|
* This allows you to integrate with third-party advertisement providers,
|
|
1449
1458
|
* and have them report their ads and ad-related events through the THEOplayer {@link Ads} API.
|
|
1450
1459
|
*
|
|
1451
|
-
* @remarks
|
|
1452
|
-
* This API is **experimental** and is subject to change in any minor version of THEOplayer.
|
|
1453
|
-
* Please consult with THEO Technologies before using this API.
|
|
1454
|
-
*
|
|
1455
1460
|
* @param integrationId
|
|
1456
1461
|
* An identifier of the integration.
|
|
1457
1462
|
* @param integrationFactory
|
|
1458
1463
|
* Factory that will construct an {@link ServerSideAdIntegrationHandler} for this integration.
|
|
1459
|
-
*
|
|
1460
|
-
* @experimental
|
|
1461
1464
|
*/
|
|
1462
1465
|
registerServerSideIntegration(integrationId: CustomAdIntegrationKind, integrationFactory: ServerSideAdIntegrationFactory): void;
|
|
1463
1466
|
}
|
|
@@ -1806,7 +1809,7 @@ interface SpotxQueryParameter {
|
|
|
1806
1809
|
/**
|
|
1807
1810
|
* The integration of an ad or ad break, represented by a value from the following list:
|
|
1808
1811
|
* <br/> - `'csai'`: Default CSAI ad playback.
|
|
1809
|
-
* <br/> - `'theo'`: Old naming for `'csai'` - Default ad playback. (Deprecated)
|
|
1812
|
+
* <br/> - `'theo'`: Old naming for `'csai'` - Default ad playback. (Deprecated)
|
|
1810
1813
|
* <br/> - `'google-ima'`: {@link https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side | Google IMA} pre-integrated ad playback.
|
|
1811
1814
|
* <br/> - `'google-dai'`: {@link https://developers.google.com/ad-manager/dynamic-ad-insertion/sdk/html5 | Google DAI} pre-integrated ad playback.
|
|
1812
1815
|
* <br/> - `'spotx'`: {@link https://developer.spotxchange.com/ | SpotX} pre-integrated ad playback.
|
|
@@ -1816,7 +1819,7 @@ interface SpotxQueryParameter {
|
|
|
1816
1819
|
* <br/> - `'theoads'`: [Experimental] - API under development, do not use without consulting THEO Technologies.
|
|
1817
1820
|
*
|
|
1818
1821
|
* @remarks
|
|
1819
|
-
* <br/> - An empty string will default to `'
|
|
1822
|
+
* <br/> - An empty string will default to `'csai'`.
|
|
1820
1823
|
*
|
|
1821
1824
|
* @category Ads
|
|
1822
1825
|
* @public
|
|
@@ -1826,9 +1829,8 @@ type AdIntegrationKind = '' | 'csai' | 'theo' | 'google-ima' | 'spotx' | 'freewh
|
|
|
1826
1829
|
* The identifier of a custom ad integration registered with {@link Ads.registerServerSideIntegration}.
|
|
1827
1830
|
*
|
|
1828
1831
|
* @category Ads
|
|
1829
|
-
* @experimental
|
|
1830
1832
|
*/
|
|
1831
|
-
type CustomAdIntegrationKind = string;
|
|
1833
|
+
type CustomAdIntegrationKind = string & {};
|
|
1832
1834
|
/**
|
|
1833
1835
|
* The iframe policies for VPAID ads, represented by a value from the following list:
|
|
1834
1836
|
* <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.
|
|
@@ -1857,10 +1859,9 @@ interface CsaiAdDescription extends AdDescription {
|
|
|
1857
1859
|
/**
|
|
1858
1860
|
* The integration of the ad break.
|
|
1859
1861
|
*
|
|
1860
|
-
* @defaultValue `'
|
|
1862
|
+
* @defaultValue `'csai'`
|
|
1861
1863
|
* @remarks
|
|
1862
1864
|
* <br/> - The `'theo'` integration naming is deprecated and has been replaced with `'csai'`.
|
|
1863
|
-
* <br/> - If left empty, will default to `'theo'` for now but will default to `'csai'` starting from THEOplayer 8.0.0.
|
|
1864
1865
|
*/
|
|
1865
1866
|
integration?: 'csai' | 'theo';
|
|
1866
1867
|
/**
|
|
@@ -2139,7 +2140,7 @@ interface DRMConfiguration {
|
|
|
2139
2140
|
*
|
|
2140
2141
|
* Default value is ['widevine', 'playready', 'fairplay'].
|
|
2141
2142
|
*/
|
|
2142
|
-
preferredKeySystems?: Array<KeySystemId | string>;
|
|
2143
|
+
preferredKeySystems?: Array<KeySystemId | (string & {})>;
|
|
2143
2144
|
}
|
|
2144
2145
|
/**
|
|
2145
2146
|
* The id of a key system. Possible values are 'widevine', 'fairplay' and 'playready'.
|
|
@@ -2150,71 +2151,6 @@ interface DRMConfiguration {
|
|
|
2150
2151
|
*/
|
|
2151
2152
|
type KeySystemId = 'widevine' | 'fairplay' | 'playready';
|
|
2152
2153
|
|
|
2153
|
-
/**
|
|
2154
|
-
* The identifier of the Yospace integration.
|
|
2155
|
-
*
|
|
2156
|
-
* @category Source
|
|
2157
|
-
* @category SSAI
|
|
2158
|
-
* @public
|
|
2159
|
-
*
|
|
2160
|
-
* @deprecated
|
|
2161
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
2162
|
-
*/
|
|
2163
|
-
type YospaceSSAIIntegrationID = 'yospace';
|
|
2164
|
-
/**
|
|
2165
|
-
* The type of the Yospace stream, represented by a value from the following list:
|
|
2166
|
-
* <br/> - `'live'`: The stream is a live stream.
|
|
2167
|
-
* <br/> - `'livepause'`: The stream is a live stream with a large DVR window.
|
|
2168
|
-
* <br/> - `'nonlinear'`: The stream is a Non-Linear Start-Over stream.
|
|
2169
|
-
* <br/> - `'vod'`: The stream is a video-on-demand stream.
|
|
2170
|
-
*
|
|
2171
|
-
* @category Source
|
|
2172
|
-
* @category SSAI
|
|
2173
|
-
* @public
|
|
2174
|
-
*
|
|
2175
|
-
* @deprecated
|
|
2176
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
2177
|
-
*/
|
|
2178
|
-
type YospaceStreamType = 'vod' | 'live' | 'livepause' | 'nonlinear';
|
|
2179
|
-
/**
|
|
2180
|
-
* Represents a configuration for server-side ad insertion with the Yospace pre-integration.
|
|
2181
|
-
*
|
|
2182
|
-
* @remarks
|
|
2183
|
-
* <br/> - Available since v2.14.7.
|
|
2184
|
-
*
|
|
2185
|
-
* @category Source
|
|
2186
|
-
* @category SSAI
|
|
2187
|
-
* @public
|
|
2188
|
-
*
|
|
2189
|
-
* @deprecated
|
|
2190
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
2191
|
-
*/
|
|
2192
|
-
interface YospaceServerSideAdInsertionConfiguration extends ServerSideAdInsertionConfiguration {
|
|
2193
|
-
/**
|
|
2194
|
-
* The identifier for the SSAI pre-integration.
|
|
2195
|
-
*/
|
|
2196
|
-
integration: YospaceSSAIIntegrationID;
|
|
2197
|
-
/**
|
|
2198
|
-
* The type of the requested stream.
|
|
2199
|
-
*
|
|
2200
|
-
* @defaultValue `'live'`
|
|
2201
|
-
*/
|
|
2202
|
-
streamType?: YospaceStreamType;
|
|
2203
|
-
}
|
|
2204
|
-
/**
|
|
2205
|
-
* Represents a media resource with a Yospace server-side ad insertion request.
|
|
2206
|
-
*
|
|
2207
|
-
* @category Source
|
|
2208
|
-
* @category SSAI
|
|
2209
|
-
* @public
|
|
2210
|
-
*
|
|
2211
|
-
* @deprecated
|
|
2212
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
2213
|
-
*/
|
|
2214
|
-
interface YospaceTypedSource extends TypedSource {
|
|
2215
|
-
ssai: YospaceServerSideAdInsertionConfiguration;
|
|
2216
|
-
}
|
|
2217
|
-
|
|
2218
2154
|
/**
|
|
2219
2155
|
* The identifier of the Google DAI integration.
|
|
2220
2156
|
*
|
|
@@ -2394,7 +2330,6 @@ interface ImagineTypedSource extends TypedSource {
|
|
|
2394
2330
|
|
|
2395
2331
|
/**
|
|
2396
2332
|
* The identifier of a server-side ad insertion pre-integration, represented by a value from the following list:
|
|
2397
|
-
* <br/> - `'yospace'`: The configuration with this identifier is a {@link YospaceServerSideAdInsertionConfiguration} (deprecated)
|
|
2398
2333
|
* <br/> - `'google-dai'`: The configuration with this identifier is a {@link GoogleDAIConfiguration}
|
|
2399
2334
|
* <br/> - `'imagine'`: The configuration with this identifier is a {@link ImagineServerSideAdInsertionConfiguration}
|
|
2400
2335
|
*
|
|
@@ -2402,7 +2337,7 @@ interface ImagineTypedSource extends TypedSource {
|
|
|
2402
2337
|
* @category SSAI
|
|
2403
2338
|
* @public
|
|
2404
2339
|
*/
|
|
2405
|
-
type SSAIIntegrationId =
|
|
2340
|
+
type SSAIIntegrationId = GoogleDAISSAIIntegrationID | ImagineSSAIIntegrationID;
|
|
2406
2341
|
/**
|
|
2407
2342
|
* Represents a configuration for server-side ad insertion (SSAI).
|
|
2408
2343
|
*
|
|
@@ -4650,7 +4585,6 @@ type SourceIntegrationId = 'verizon-media' | 'mediatailor' | 'theolive';
|
|
|
4650
4585
|
/**
|
|
4651
4586
|
* The integration identifier of an analytics description, represented by a value from the following list:
|
|
4652
4587
|
* <br/> - `'agama'`: The description is an {@link AgamaConfiguration}
|
|
4653
|
-
* <br/> - `'conviva'`: The description is a {@link ConvivaConfiguration} (deprecated)
|
|
4654
4588
|
* <br/> - `'youbora'`: The description is a {@link YouboraOptions}
|
|
4655
4589
|
* <br/> - `'moat'`: The description is a {@link MoatConfiguration}
|
|
4656
4590
|
* <br/> - `'streamone'`: The description is a {@link StreamOneConfiguration}
|
|
@@ -4659,7 +4593,7 @@ type SourceIntegrationId = 'verizon-media' | 'mediatailor' | 'theolive';
|
|
|
4659
4593
|
* @category Source
|
|
4660
4594
|
* @public
|
|
4661
4595
|
*/
|
|
4662
|
-
type AnalyticsIntegrationID = 'agama' | '
|
|
4596
|
+
type AnalyticsIntegrationID = 'agama' | 'youbora' | 'moat' | 'streamone' | 'smartsight';
|
|
4663
4597
|
/**
|
|
4664
4598
|
* Describes the configuration of an analytics integration.
|
|
4665
4599
|
*
|
|
@@ -6848,195 +6782,6 @@ interface ABRConfiguration {
|
|
|
6848
6782
|
clearBufferWhenSettingTargetQuality: boolean;
|
|
6849
6783
|
}
|
|
6850
6784
|
|
|
6851
|
-
/**
|
|
6852
|
-
* The identifier of the Conviva integration.
|
|
6853
|
-
*
|
|
6854
|
-
* @category Analytics
|
|
6855
|
-
* @public
|
|
6856
|
-
*
|
|
6857
|
-
* @deprecated
|
|
6858
|
-
* Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
|
|
6859
|
-
*/
|
|
6860
|
-
type ConvivaAnalyticsIntegrationID = 'conviva';
|
|
6861
|
-
/**
|
|
6862
|
-
* Describes the configuration of the Conviva integration.
|
|
6863
|
-
*
|
|
6864
|
-
* @remarks
|
|
6865
|
-
* <br/> - Available since v2.14.4.
|
|
6866
|
-
*
|
|
6867
|
-
* @category Analytics
|
|
6868
|
-
* @public
|
|
6869
|
-
*
|
|
6870
|
-
* @deprecated
|
|
6871
|
-
* Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
|
|
6872
|
-
*/
|
|
6873
|
-
interface ConvivaConfiguration extends AnalyticsDescription {
|
|
6874
|
-
/**
|
|
6875
|
-
* {@inheritDoc AnalyticsDescription.integration}
|
|
6876
|
-
*/
|
|
6877
|
-
integration: ConvivaAnalyticsIntegrationID;
|
|
6878
|
-
/**
|
|
6879
|
-
* The customer key.
|
|
6880
|
-
*/
|
|
6881
|
-
customerKey: string;
|
|
6882
|
-
/**
|
|
6883
|
-
* The interval at which metrics are reported, in seconds.
|
|
6884
|
-
*/
|
|
6885
|
-
heartbeatInterval?: number;
|
|
6886
|
-
/**
|
|
6887
|
-
* The URL of your Conviva gateway.
|
|
6888
|
-
*
|
|
6889
|
-
* @remarks
|
|
6890
|
-
* <br/> - When not filled in, no gateway will be used.
|
|
6891
|
-
*/
|
|
6892
|
-
gatewayUrl?: string;
|
|
6893
|
-
/**
|
|
6894
|
-
* The metadata which will be sent to Conviva.
|
|
6895
|
-
*/
|
|
6896
|
-
contentMetadata: ConvivaContentMetadata;
|
|
6897
|
-
/**
|
|
6898
|
-
* Whether the player should not handle sessions automatically.
|
|
6899
|
-
*
|
|
6900
|
-
* @remarks
|
|
6901
|
-
* <br/> - This should be used if you manually want to {@link Conviva.createSession | create} and {@link Conviva.cleanupSession | cleanup} sessions.
|
|
6902
|
-
*
|
|
6903
|
-
* @defaultValue `false`
|
|
6904
|
-
*/
|
|
6905
|
-
manualSessionControl?: boolean;
|
|
6906
|
-
}
|
|
6907
|
-
/**
|
|
6908
|
-
* The Conviva API.
|
|
6909
|
-
*
|
|
6910
|
-
* @category Analytics
|
|
6911
|
-
* @public
|
|
6912
|
-
*
|
|
6913
|
-
* @deprecated
|
|
6914
|
-
* Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
|
|
6915
|
-
*/
|
|
6916
|
-
interface Conviva {
|
|
6917
|
-
/**
|
|
6918
|
-
* The Conviva client used by the player.
|
|
6919
|
-
*
|
|
6920
|
-
* @remarks
|
|
6921
|
-
* <br/> - Available since v2.31.2.
|
|
6922
|
-
* <br/> - For more information, consult the Conviva SDK documentation.
|
|
6923
|
-
*/
|
|
6924
|
-
readonly client: any;
|
|
6925
|
-
/**
|
|
6926
|
-
* The session key of the active Conviva session, if any.
|
|
6927
|
-
*
|
|
6928
|
-
* @remarks
|
|
6929
|
-
* <br/> - Available since v2.31.2.
|
|
6930
|
-
* <br/> - For more information, consult the Conviva SDK documentation.
|
|
6931
|
-
*/
|
|
6932
|
-
readonly contentSessionKey: number | undefined;
|
|
6933
|
-
/**
|
|
6934
|
-
* Create a Conviva session.
|
|
6935
|
-
*
|
|
6936
|
-
* @remarks
|
|
6937
|
-
* <br/> - This should only be used together with {@link ConvivaConfiguration.manualSessionControl}.
|
|
6938
|
-
* <br/> - For more information, consult the Conviva SDK documentation about `Client.createSession`.
|
|
6939
|
-
*/
|
|
6940
|
-
createSession(): void;
|
|
6941
|
-
/**
|
|
6942
|
-
* Clean up a Conviva session.
|
|
6943
|
-
*
|
|
6944
|
-
* @remarks
|
|
6945
|
-
* <br/> - This should only be used together with {@link ConvivaConfiguration.manualSessionControl}.
|
|
6946
|
-
* <br/> - For more information, consult the Conviva SDK documentation about `Client.cleanupSession`.
|
|
6947
|
-
*/
|
|
6948
|
-
cleanupSession(): void;
|
|
6949
|
-
}
|
|
6950
|
-
/**
|
|
6951
|
-
* Describes the content's metadata.
|
|
6952
|
-
*
|
|
6953
|
-
* @remarks
|
|
6954
|
-
* <br/> - Available since v2.14.4.
|
|
6955
|
-
*
|
|
6956
|
-
* @category Analytics
|
|
6957
|
-
* @public
|
|
6958
|
-
*
|
|
6959
|
-
* @deprecated
|
|
6960
|
-
* Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
|
|
6961
|
-
*/
|
|
6962
|
-
interface ConvivaContentMetadata {
|
|
6963
|
-
/**
|
|
6964
|
-
* The name of the asset.
|
|
6965
|
-
*/
|
|
6966
|
-
assetName: string;
|
|
6967
|
-
/**
|
|
6968
|
-
* Whether a live asset is being tracked.
|
|
6969
|
-
*
|
|
6970
|
-
* @remarks
|
|
6971
|
-
* <br/> - `false` refers to a VOD stream.
|
|
6972
|
-
* <br/> - If this property is omitted, `'UNKNOWN'` will be reported to Conviva.
|
|
6973
|
-
*/
|
|
6974
|
-
live?: boolean;
|
|
6975
|
-
/**
|
|
6976
|
-
* The default bitrate of the asset, in kpbs.
|
|
6977
|
-
*
|
|
6978
|
-
* @remarks
|
|
6979
|
-
* <br/> - If this property is omitted, it will not be reported to Conviva.
|
|
6980
|
-
*/
|
|
6981
|
-
defaultBitrateKbps?: number;
|
|
6982
|
-
/**
|
|
6983
|
-
* The default resource.
|
|
6984
|
-
*
|
|
6985
|
-
* @remarks
|
|
6986
|
-
* <br/> - If this property is omitted, it will not be reported to Conviva.
|
|
6987
|
-
*/
|
|
6988
|
-
defaultResource?: string;
|
|
6989
|
-
/**
|
|
6990
|
-
* The duration of the asset.
|
|
6991
|
-
*
|
|
6992
|
-
* @remarks
|
|
6993
|
-
* <br/> - If this property is omitted, it will not be reported to Conviva.
|
|
6994
|
-
*/
|
|
6995
|
-
duration?: number;
|
|
6996
|
-
/**
|
|
6997
|
-
* The encoded frame rate of the asset.
|
|
6998
|
-
*
|
|
6999
|
-
* @remarks
|
|
7000
|
-
* <br/> - If this property is omitted, it will not be reported to Conviva.
|
|
7001
|
-
*/
|
|
7002
|
-
encodedFrameRate?: number;
|
|
7003
|
-
/**
|
|
7004
|
-
* The application name.
|
|
7005
|
-
*
|
|
7006
|
-
* @defaultValue `'THEOplayer'`
|
|
7007
|
-
*/
|
|
7008
|
-
applicationName?: string;
|
|
7009
|
-
/**
|
|
7010
|
-
* The identifier of the viewer.
|
|
7011
|
-
*
|
|
7012
|
-
* @defaultValue A randomly generated identifier.
|
|
7013
|
-
*/
|
|
7014
|
-
viewerId?: string;
|
|
7015
|
-
/**
|
|
7016
|
-
* A record of Conviva tags.
|
|
7017
|
-
*/
|
|
7018
|
-
custom?: object;
|
|
7019
|
-
}
|
|
7020
|
-
|
|
7021
|
-
/**
|
|
7022
|
-
* The analytics API.
|
|
7023
|
-
*
|
|
7024
|
-
* @category Analytics
|
|
7025
|
-
* @public
|
|
7026
|
-
*/
|
|
7027
|
-
interface Analytics {
|
|
7028
|
-
/**
|
|
7029
|
-
* The Conviva analytics API.
|
|
7030
|
-
*
|
|
7031
|
-
* @remarks
|
|
7032
|
-
* <br/> - Only available with the feature `'conviva'`.
|
|
7033
|
-
*
|
|
7034
|
-
* @deprecated
|
|
7035
|
-
* Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
|
|
7036
|
-
*/
|
|
7037
|
-
conviva?: Conviva;
|
|
7038
|
-
}
|
|
7039
|
-
|
|
7040
6785
|
/**
|
|
7041
6786
|
* The events fired by the {@link Clip | clip API}.
|
|
7042
6787
|
*
|
|
@@ -8665,70 +8410,6 @@ interface VerizonMedia extends EventDispatcher<VerizonMediaEventMap> {
|
|
|
8665
8410
|
readonly assets: VerizonMediaAssetList;
|
|
8666
8411
|
}
|
|
8667
8412
|
|
|
8668
|
-
/**
|
|
8669
|
-
* The events fired by the {@link Yospace | Yospace API}.
|
|
8670
|
-
*
|
|
8671
|
-
* @category SSAI
|
|
8672
|
-
* @public
|
|
8673
|
-
*
|
|
8674
|
-
* @deprecated
|
|
8675
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
8676
|
-
*/
|
|
8677
|
-
interface YospaceEventMap {
|
|
8678
|
-
/**
|
|
8679
|
-
* Fired when a new Yospace session starts.
|
|
8680
|
-
*/
|
|
8681
|
-
sessionavailable: Event<'sessionavailable'>;
|
|
8682
|
-
}
|
|
8683
|
-
/**
|
|
8684
|
-
* Represents the collection of standard callback functions for a Yospace SessionManager.
|
|
8685
|
-
*
|
|
8686
|
-
* @remarks
|
|
8687
|
-
* <br/> - These callbacks will be used by the Yospace SDK to provide feedback to the player.
|
|
8688
|
-
*
|
|
8689
|
-
* @category SSAI
|
|
8690
|
-
* @public
|
|
8691
|
-
*
|
|
8692
|
-
* @deprecated
|
|
8693
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
8694
|
-
*/
|
|
8695
|
-
interface YospaceCallbackObject {
|
|
8696
|
-
AdBreakStart: () => void;
|
|
8697
|
-
AdvertStart: (mediaID: string) => void;
|
|
8698
|
-
AdvertEnd: (mediaID: string) => void;
|
|
8699
|
-
AdBreakEnd: () => void;
|
|
8700
|
-
InjectVast: () => void;
|
|
8701
|
-
UpdateTimeline: (timeline: any) => void;
|
|
8702
|
-
}
|
|
8703
|
-
/**
|
|
8704
|
-
* The Yospace API.
|
|
8705
|
-
*
|
|
8706
|
-
* @remarks
|
|
8707
|
-
* <br/> - Available since v2.14.7.
|
|
8708
|
-
*
|
|
8709
|
-
* @category SSAI
|
|
8710
|
-
* @public
|
|
8711
|
-
*
|
|
8712
|
-
* @deprecated
|
|
8713
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
8714
|
-
*/
|
|
8715
|
-
interface Yospace extends EventDispatcher<YospaceEventMap> {
|
|
8716
|
-
/**
|
|
8717
|
-
* The Yospace session.
|
|
8718
|
-
*
|
|
8719
|
-
*/
|
|
8720
|
-
readonly session: object;
|
|
8721
|
-
/**
|
|
8722
|
-
* Register a set of callbacks to the player to the Yospace SDK.
|
|
8723
|
-
*
|
|
8724
|
-
* @remarks
|
|
8725
|
-
* <br/> - These callbacks will be used by the Yospace SDK to provide feedback to the player.
|
|
8726
|
-
*
|
|
8727
|
-
* @param callbackCollection - The {@link YospaceCallbackObject}
|
|
8728
|
-
*/
|
|
8729
|
-
registerPlayer(callbackCollection: YospaceCallbackObject): void;
|
|
8730
|
-
}
|
|
8731
|
-
|
|
8732
8413
|
/**
|
|
8733
8414
|
* An error code whose category is `ErrorCategory.CONTENT_PROTECTION`.
|
|
8734
8415
|
*
|
|
@@ -9751,10 +9432,6 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
|
|
|
9751
9432
|
* List of audio tracks of the current source.
|
|
9752
9433
|
*/
|
|
9753
9434
|
audioTracks: MediaTrackList;
|
|
9754
|
-
/**
|
|
9755
|
-
* The analytics API.
|
|
9756
|
-
*/
|
|
9757
|
-
readonly analytics: Analytics;
|
|
9758
9435
|
/**
|
|
9759
9436
|
* Whether the player should immediately start playback after source change.
|
|
9760
9437
|
*
|
|
@@ -10056,16 +9733,6 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
|
|
|
10056
9733
|
* <br/> - Only available with the feature `'verizonmedia'`.
|
|
10057
9734
|
*/
|
|
10058
9735
|
readonly verizonMedia?: VerizonMedia;
|
|
10059
|
-
/**
|
|
10060
|
-
* The Yospace API.
|
|
10061
|
-
*
|
|
10062
|
-
* @remarks
|
|
10063
|
-
* <br/> - Only available with the feature `'yospace'`.
|
|
10064
|
-
*
|
|
10065
|
-
* @deprecated
|
|
10066
|
-
* Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
|
|
10067
|
-
*/
|
|
10068
|
-
readonly yospace?: Yospace;
|
|
10069
9736
|
/**
|
|
10070
9737
|
* The HESP API.
|
|
10071
9738
|
* @remarks
|
|
@@ -12425,7 +12092,6 @@ interface TTMLCue extends TextTrackCue {
|
|
|
12425
12092
|
* <br/> - For THEOads, one configured ad break request enables server guided ad playback for the entire stream.
|
|
12426
12093
|
*
|
|
12427
12094
|
* @category Ads
|
|
12428
|
-
* @internal
|
|
12429
12095
|
*/
|
|
12430
12096
|
interface TheoAdDescription extends AdDescription {
|
|
12431
12097
|
/**
|
|
@@ -12502,7 +12168,6 @@ interface TheoAdDescription extends AdDescription {
|
|
|
12502
12168
|
* - `'single-if-mobile'`: When on a mobile device, override to play all ad breaks using the "single" layout mode.
|
|
12503
12169
|
*
|
|
12504
12170
|
* @category Ads
|
|
12505
|
-
* @internal
|
|
12506
12171
|
*/
|
|
12507
12172
|
type TheoAdsLayoutOverride = 'single' | 'l-shape' | 'double' | 'single-if-mobile';
|
|
12508
12173
|
|
|
@@ -13441,4 +13106,4 @@ declare function registerContentProtectionIntegration(integrationId: string, key
|
|
|
13441
13106
|
*/
|
|
13442
13107
|
declare const utils: CommonUtils;
|
|
13443
13108
|
|
|
13444
|
-
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 };
|
|
13109
|
+
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, 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 };
|