@theoplayer/extended 7.8.0 → 7.10.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.
@@ -713,7 +713,11 @@ interface Ad {
713
713
  * The integration of the ad, represented by a value from {@link AdIntegrationKind}
714
714
  * or {@link CustomAdIntegrationKind | the identifier of a custom integration} added with {@link Ads.registerServerSideIntegration}.
715
715
  *
716
- * @defaultValue `'theo'`
716
+ * @defaultValue `'csai'`
717
+ *
718
+ * @remarks
719
+ * <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.
717
721
  */
718
722
  integration?: AdIntegrationKind | CustomAdIntegrationKind;
719
723
  /**
@@ -779,7 +783,7 @@ interface Ad {
779
783
  *
780
784
  * @remarks
781
785
  * <br/> - Available when the {@link Ad.readyState} is `'ready'`.
782
- * <br/> - Only supported for `'theo'` and `'google-dai'`.
786
+ * <br/> - Only supported for `'csai'`, `'theo'` (deprecated) and `'google-dai'`.
783
787
  */
784
788
  companions: CompanionAd[];
785
789
  /**
@@ -803,7 +807,7 @@ interface Ad {
803
807
  * The list of universal ad ID information of the selected creative for the ad.
804
808
  *
805
809
  * @remarks
806
- * <br/> - Only supported for `'theo'` and `'google-ima'`.
810
+ * <br/> - Only supported for `'csai'`, `'theo'` (deprecated) and `'google-ima'`.
807
811
  */
808
812
  universalAdIds: UniversalAdId[];
809
813
  }
@@ -1133,6 +1137,10 @@ interface AdBreak {
1133
1137
  /**
1134
1138
  * The integration of the ad break, represented by a value from {@link AdIntegrationKind}
1135
1139
  * or {@link CustomAdIntegrationKind | the identifier of a custom integration} registered with {@link Ads.registerServerSideIntegration}.
1140
+ *
1141
+ * @remarks
1142
+ * <br/> - The `'theo'` integration naming is deprecated and has been replaced with `'csai'`.
1143
+ * <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.
1136
1144
  */
1137
1145
  integration: AdIntegrationKind | CustomAdIntegrationKind | undefined;
1138
1146
  /**
@@ -1377,7 +1385,7 @@ interface AdBreakEvent<TType extends string> extends Event<TType> {
1377
1385
  * The API for advertisements.
1378
1386
  *
1379
1387
  * @remarks
1380
- * <br/> - Integrates with `'theo'`, `'google-ima'`, `'google-dai'`, `'freewheel'` or `'sgai'`.
1388
+ * <br/> - Integrates with `'csai'`, `'theo'` (deprecated), `'google-ima'`, `'google-dai'`, `'freewheel'` or `'theoads'`.
1381
1389
  *
1382
1390
  * @category Ads
1383
1391
  * @public
@@ -1488,7 +1496,7 @@ interface AdDescription {
1488
1496
  * The integration of the ad, represented by a value from {@link AdIntegrationKind}
1489
1497
  * or {@link CustomAdIntegrationKind | the identifier of a custom integration} registered with {@link Ads.registerServerSideIntegration}.
1490
1498
  *
1491
- * @defaultValue `'theo'`
1499
+ * @defaultValue `'csai'`
1492
1500
  */
1493
1501
  integration?: AdIntegrationKind | CustomAdIntegrationKind;
1494
1502
  /**
@@ -1790,22 +1798,23 @@ interface SpotxQueryParameter {
1790
1798
  }
1791
1799
  /**
1792
1800
  * The integration of an ad or ad break, represented by a value from the following list:
1793
- * <br/> - `'theo'`: Default ad playback.
1801
+ * <br/> - `'csai'`: Default CSAI ad playback.
1802
+ * <br/> - `'theo'`: Old naming for `'csai'` - Default ad playback. (Deprecated). APIs will still default to `'theo'` until THEOplayer 8.0.0.
1794
1803
  * <br/> - `'google-ima'`: {@link https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side | Google IMA} pre-integrated ad playback.
1795
1804
  * <br/> - `'google-dai'`: {@link https://developers.google.com/ad-manager/dynamic-ad-insertion/sdk/html5 | Google DAI} pre-integrated ad playback.
1796
1805
  * <br/> - `'spotx'`: {@link https://developer.spotxchange.com/ | SpotX} pre-integrated ad playback.
1797
1806
  * <br/> - `'freewheel'`: {@link https://vi.freewheel.tv/ | FreeWheel} pre-integrated ad playback.
1798
1807
  * <br/> - `'mediatailor'`: {@link https://aws.amazon.com/mediatailor/ | MediaTailor} pre-integrated ad playback.
1799
1808
  * <br/> - `'chromecast'`: {@link https://developers.google.com/cast/docs/web_receiver/ad_breaks | Chromecast} ads playing on a remote receiver.
1800
- * <br/> - `'sgai'`: [Experimental] - API under development, do not use without consulting THEO Technologies.
1809
+ * <br/> - `'theoads'`: [Experimental] - API under development, do not use without consulting THEO Technologies.
1801
1810
  *
1802
1811
  * @remarks
1803
- * <br/> - An empty string defaults to `'theo'`.
1812
+ * <br/> - An empty string will default to `'theo'` up until THEOplayer 8.0.0, after which it will default to `'csai'`.
1804
1813
  *
1805
1814
  * @category Ads
1806
1815
  * @public
1807
1816
  */
1808
- type AdIntegrationKind = '' | 'theo' | 'google-ima' | 'spotx' | 'freewheel' | 'sgai';
1817
+ type AdIntegrationKind = '' | 'csai' | 'theo' | 'google-ima' | 'spotx' | 'freewheel' | 'theoads';
1809
1818
  /**
1810
1819
  * The identifier of a custom ad integration registered with {@link Ads.registerServerSideIntegration}.
1811
1820
  *
@@ -1828,14 +1837,25 @@ type VPAIDMode = 'enabled' | 'insecure' | 'disabled';
1828
1837
  *
1829
1838
  * @category Ads
1830
1839
  * @public
1840
+ * @deprecated Replaced by {@link CsaiAdDescription}.
1831
1841
  */
1832
- interface THEOplayerAdDescription extends AdDescription {
1842
+ type THEOplayerAdDescription = CsaiAdDescription;
1843
+ /**
1844
+ * Describes an ad break request.
1845
+ *
1846
+ * @category Ads
1847
+ * @public
1848
+ */
1849
+ interface CsaiAdDescription extends AdDescription {
1833
1850
  /**
1834
1851
  * The integration of the ad break.
1835
1852
  *
1836
1853
  * @defaultValue `'theo'`
1854
+ * @remarks
1855
+ * <br/> - The `'theo'` integration naming is deprecated and has been replaced with `'csai'`.
1856
+ * <br/> - If left empty, will default to `'theo'` for now but will default to `'csai'` starting from THEOplayer 8.0.0.
1837
1857
  */
1838
- integration?: 'theo';
1858
+ integration?: 'csai' | 'theo';
1839
1859
  /**
1840
1860
  * The source of the ad
1841
1861
  *
@@ -2129,6 +2149,9 @@ type KeySystemId = 'widevine' | 'fairplay' | 'playready';
2129
2149
  * @category Source
2130
2150
  * @category SSAI
2131
2151
  * @public
2152
+ *
2153
+ * @deprecated
2154
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
2132
2155
  */
2133
2156
  type YospaceSSAIIntegrationID = 'yospace';
2134
2157
  /**
@@ -2141,6 +2164,9 @@ type YospaceSSAIIntegrationID = 'yospace';
2141
2164
  * @category Source
2142
2165
  * @category SSAI
2143
2166
  * @public
2167
+ *
2168
+ * @deprecated
2169
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
2144
2170
  */
2145
2171
  type YospaceStreamType = 'vod' | 'live' | 'livepause' | 'nonlinear';
2146
2172
  /**
@@ -2152,6 +2178,9 @@ type YospaceStreamType = 'vod' | 'live' | 'livepause' | 'nonlinear';
2152
2178
  * @category Source
2153
2179
  * @category SSAI
2154
2180
  * @public
2181
+ *
2182
+ * @deprecated
2183
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
2155
2184
  */
2156
2185
  interface YospaceServerSideAdInsertionConfiguration extends ServerSideAdInsertionConfiguration {
2157
2186
  /**
@@ -2171,6 +2200,9 @@ interface YospaceServerSideAdInsertionConfiguration extends ServerSideAdInsertio
2171
2200
  * @category Source
2172
2201
  * @category SSAI
2173
2202
  * @public
2203
+ *
2204
+ * @deprecated
2205
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
2174
2206
  */
2175
2207
  interface YospaceTypedSource extends TypedSource {
2176
2208
  ssai: YospaceServerSideAdInsertionConfiguration;
@@ -2355,7 +2387,7 @@ interface ImagineTypedSource extends TypedSource {
2355
2387
 
2356
2388
  /**
2357
2389
  * The identifier of a server-side ad insertion pre-integration, represented by a value from the following list:
2358
- * <br/> - `'yospace'`: The configuration with this identifier is a {@link YospaceServerSideAdInsertionConfiguration}
2390
+ * <br/> - `'yospace'`: The configuration with this identifier is a {@link YospaceServerSideAdInsertionConfiguration} (deprecated)
2359
2391
  * <br/> - `'google-dai'`: The configuration with this identifier is a {@link GoogleDAIConfiguration}
2360
2392
  * <br/> - `'imagine'`: The configuration with this identifier is a {@link ImagineServerSideAdInsertionConfiguration}
2361
2393
  *
@@ -2579,12 +2611,12 @@ interface VerizonMediaUiConfiguration {
2579
2611
  */
2580
2612
  interface SourceAbrConfiguration {
2581
2613
  /**
2582
- * A list of preferred audio codecs which will be used by the ABR algorithm to make an initial selection, if the codec is supported.
2614
+ * A list of preferred audio codecs which will be used by the ABR algorithm for track selection, if the codec is supported.
2583
2615
  *
2584
2616
  */
2585
2617
  preferredAudioCodecs?: string[];
2586
2618
  /**
2587
- * A list of preferred video codecs which will be used by the ABR algorithm to make an initial selection, if the codec is supported.
2619
+ * A list of preferred video codecs which will be used by the ABR algorithm for track selection, if the codec is supported.
2588
2620
  */
2589
2621
  preferredVideoCodecs?: string[];
2590
2622
  /**
@@ -4611,7 +4643,7 @@ type SourceIntegrationId = 'verizon-media' | 'mediatailor' | 'theolive';
4611
4643
  /**
4612
4644
  * The integration identifier of an analytics description, represented by a value from the following list:
4613
4645
  * <br/> - `'agama'`: The description is an {@link AgamaConfiguration}
4614
- * <br/> - `'conviva'`: The description is a {@link ConvivaConfiguration}
4646
+ * <br/> - `'conviva'`: The description is a {@link ConvivaConfiguration} (deprecated)
4615
4647
  * <br/> - `'youbora'`: The description is a {@link YouboraOptions}
4616
4648
  * <br/> - `'moat'`: The description is a {@link MoatConfiguration}
4617
4649
  * <br/> - `'streamone'`: The description is a {@link StreamOneConfiguration}
@@ -6814,6 +6846,9 @@ interface ABRConfiguration {
6814
6846
  *
6815
6847
  * @category Analytics
6816
6848
  * @public
6849
+ *
6850
+ * @deprecated
6851
+ * Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
6817
6852
  */
6818
6853
  type ConvivaAnalyticsIntegrationID = 'conviva';
6819
6854
  /**
@@ -6824,6 +6859,9 @@ type ConvivaAnalyticsIntegrationID = 'conviva';
6824
6859
  *
6825
6860
  * @category Analytics
6826
6861
  * @public
6862
+ *
6863
+ * @deprecated
6864
+ * Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
6827
6865
  */
6828
6866
  interface ConvivaConfiguration extends AnalyticsDescription {
6829
6867
  /**
@@ -6864,6 +6902,9 @@ interface ConvivaConfiguration extends AnalyticsDescription {
6864
6902
  *
6865
6903
  * @category Analytics
6866
6904
  * @public
6905
+ *
6906
+ * @deprecated
6907
+ * Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
6867
6908
  */
6868
6909
  interface Conviva {
6869
6910
  /**
@@ -6907,6 +6948,9 @@ interface Conviva {
6907
6948
  *
6908
6949
  * @category Analytics
6909
6950
  * @public
6951
+ *
6952
+ * @deprecated
6953
+ * Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
6910
6954
  */
6911
6955
  interface ConvivaContentMetadata {
6912
6956
  /**
@@ -6979,6 +7023,9 @@ interface Analytics {
6979
7023
  *
6980
7024
  * @remarks
6981
7025
  * <br/> - Only available with the feature `'conviva'`.
7026
+ *
7027
+ * @deprecated
7028
+ * Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
6982
7029
  */
6983
7030
  conviva?: Conviva;
6984
7031
  }
@@ -8616,6 +8663,9 @@ interface VerizonMedia extends EventDispatcher<VerizonMediaEventMap> {
8616
8663
  *
8617
8664
  * @category SSAI
8618
8665
  * @public
8666
+ *
8667
+ * @deprecated
8668
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
8619
8669
  */
8620
8670
  interface YospaceEventMap {
8621
8671
  /**
@@ -8631,6 +8681,9 @@ interface YospaceEventMap {
8631
8681
  *
8632
8682
  * @category SSAI
8633
8683
  * @public
8684
+ *
8685
+ * @deprecated
8686
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
8634
8687
  */
8635
8688
  interface YospaceCallbackObject {
8636
8689
  AdBreakStart: () => void;
@@ -8648,6 +8701,9 @@ interface YospaceCallbackObject {
8648
8701
  *
8649
8702
  * @category SSAI
8650
8703
  * @public
8704
+ *
8705
+ * @deprecated
8706
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
8651
8707
  */
8652
8708
  interface Yospace extends EventDispatcher<YospaceEventMap> {
8653
8709
  /**
@@ -9304,13 +9360,13 @@ interface EncryptedEvent extends Event<'encrypted'> {
9304
9360
  interface LatencyManager {
9305
9361
  /**
9306
9362
  * Whether the latency manager is enabled.
9307
- *
9308
- * @remarks
9309
- * <br/> - Can only be enabled for live playback.
9310
9363
  */
9311
9364
  enabled: boolean;
9312
9365
  /**
9313
9366
  * Whether the latency manager is monitoring to stay within the {@link LatencyManager.currentConfiguration | live playback configuration}.
9367
+ *
9368
+ * @remarks
9369
+ * <br/> - Can only be monitored for live playback.
9314
9370
  */
9315
9371
  readonly monitoringLivePlayback: boolean;
9316
9372
  /**
@@ -9998,6 +10054,9 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
9998
10054
  *
9999
10055
  * @remarks
10000
10056
  * <br/> - Only available with the feature `'yospace'`.
10057
+ *
10058
+ * @deprecated
10059
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
10001
10060
  */
10002
10061
  readonly yospace?: Yospace;
10003
10062
  /**
@@ -12353,20 +12412,20 @@ interface TTMLCue extends TextTrackCue {
12353
12412
  }
12354
12413
 
12355
12414
  /**
12356
- * Describes a THEOads SGAI ad break request.
12415
+ * Describes a THEOads ad break request.
12357
12416
  *
12358
12417
  * @remarks
12359
- * <br/> - For SGAI, one configured ad break request suffices to enable SGAI ad playback for the entire stream.
12418
+ * <br/> - For THEOads, one configured ad break request enables server guided ad playback for the entire stream.
12360
12419
  *
12361
12420
  * @category Ads
12362
12421
  * @internal
12363
12422
  */
12364
- interface SgaiAdDescription extends AdDescription {
12423
+ interface TheoAdDescription extends AdDescription {
12365
12424
  /**
12366
12425
  * The integration of the ad break.
12367
12426
  */
12368
- integration: 'sgai';
12369
- /**
12427
+ integration: 'theoads';
12428
+ /** // TODO Move to internal api
12370
12429
  * For SGAI, this should be configured with the signaling server base URI.
12371
12430
  *
12372
12431
  * If configured, the player will attempt to sideload the modified manifest from the signaling server separate from the source manifest.
@@ -12377,48 +12436,56 @@ interface SgaiAdDescription extends AdDescription {
12377
12436
  * Default network code to use for ad requests.
12378
12437
  *
12379
12438
  * @remarks
12380
- * <br/> - This will be overridden by network codes parsed from SGAI ad cues.
12381
- * <br/> - If no network code is configured, and it cannot be parsed from the SGAI ad cue, ads will not be loaded.
12439
+ * <br/> - This will be overridden by network codes parsed from THEOads ad markers.
12440
+ * <br/> - If no network code is configured, and it cannot be parsed from the THEOads ad marker, ads will not be loaded.
12382
12441
  */
12383
12442
  networkCode?: string;
12384
12443
  /**
12385
12444
  * Default custom asset key to use for ad requests.
12386
12445
  *
12387
12446
  * @remarks
12388
- * <br/> - This will be overridden by custom asset keys parsed from SGAI ad cues.
12389
- * <br/> - If no custom asset key is configured, and it cannot be parsed from the SGAI ad cue, ads will not be loaded.
12447
+ * <br/> - This will be overridden by custom asset keys parsed from THEOads ad markers.
12448
+ * <br/> - If no custom asset key is configured, and it cannot be parsed from the THEOads ad marker, ads will not be loaded.
12390
12449
  */
12391
12450
  customAssetKey?: string;
12392
12451
  /**
12393
12452
  * Default backdrop image URI to be used as a background for ads in double box layout.
12394
12453
  *
12395
12454
  * @remarks
12396
- * <br/> - This will be overridden by backdrop image URIs parsed from SGAI ad cues.
12397
- * <br/> - If no URI is configured, and it cannot be parsed from the SGAI ad cue, a black screen will be shown as background.
12455
+ * <br/> - This will be overridden by backdrop image URIs parsed from THEOads ad markers or returned in the ad response.
12456
+ * <br/> - If no URI is configured, and no backdrop companion is parsed from the marker or returned in the ad response, a black screen will be shown as background.
12398
12457
  */
12399
12458
  backdropDoubleBox?: string;
12400
12459
  /**
12401
12460
  * Default backdrop image URI to be used as a background for ads in L-shape layout.
12402
12461
  *
12403
12462
  * @remarks
12404
- * <br/> - This will be overridden by backdrop image URIs parsed from SGAI ad cues.
12405
- * <br/> - If no URI is configured, and it cannot be parsed from the SGAI ad cue, a black screen will be shown as background.
12463
+ * <br/> - This will be overridden by backdrop image URIs parsed from THEOads ad markers or returned in the ad response.
12464
+ * <br/> - If no URI is configured, and no backdrop companion is parsed from the marker or returned in the ad response, a black screen will be shown as background.
12406
12465
  */
12407
12466
  backdropLShape?: string;
12408
12467
  /**
12409
- * Override the layout of all SGAI ad breaks, if set.
12468
+ * Override the layout of all THEOads ad breaks, if set.
12410
12469
  */
12411
- overrideLayout?: SgaiLayoutOverride;
12470
+ overrideLayout?: TheoAdsLayoutOverride;
12471
+ /**
12472
+ * The ad tag parameters added to stream request.
12473
+ *
12474
+ * @remarks
12475
+ * <br/> - Each entry contains the parameter name with associated value.
12476
+ * <br/> - Values added must be strings.
12477
+ */
12478
+ adTagParameters?: Record<string, string>;
12412
12479
  }
12413
12480
  /**
12414
- * Describes how and when the layout of a THEOads SGAI ad break should be overridden:
12481
+ * Describes how and when the layout of a THEOads ad break should be overridden:
12415
12482
  * - `'single'`: Override to play all ad breaks using the "single" layout mode.
12416
12483
  * - `'single-if-mobile'`: When on a mobile device, override to play all ad breaks using the "single" layout mode.
12417
12484
  *
12418
12485
  * @category Ads
12419
12486
  * @internal
12420
12487
  */
12421
- type SgaiLayoutOverride = 'single' | 'single-if-mobile';
12488
+ type TheoAdsLayoutOverride = 'single' | 'single-if-mobile';
12422
12489
 
12423
12490
  /**
12424
12491
  * @category HESP
@@ -13355,4 +13422,4 @@ declare function registerContentProtectionIntegration(integrationId: string, key
13355
13422
  */
13356
13423
  declare const utils: CommonUtils;
13357
13424
 
13358
- 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, 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, SgaiAdDescription, SgaiLayoutOverride, 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, 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 };
13425
+ 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 };