@theoplayer/extended 7.7.1 → 7.9.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.
@@ -819,7 +819,7 @@ type AdType = 'linear' | 'nonlinear';
819
819
  /**
820
820
  * The ad preloading strategy, represented by a value from the following list:
821
821
  * <br/> - `'none'`: Ads are not preloaded.
822
- * <br/> - `'midroll-and-postroll'`: Mid- and postrolls are preloaded.
822
+ * <br/> - `'midroll-and-postroll'`: Media files of mid- and postrolls are preloaded.
823
823
  *
824
824
  * @remarks
825
825
  * <br/> - For Google IMA, preloading starts 8 seconds before ad playback.
@@ -1377,7 +1377,7 @@ interface AdBreakEvent<TType extends string> extends Event<TType> {
1377
1377
  * The API for advertisements.
1378
1378
  *
1379
1379
  * @remarks
1380
- * <br/> - Integrates with `'theo'`, `'google-ima'`, `'google-dai'` or `'freewheel'`.
1380
+ * <br/> - Integrates with `'theo'`, `'google-ima'`, `'google-dai'`, `'freewheel'` or `'sgai'`.
1381
1381
  *
1382
1382
  * @category Ads
1383
1383
  * @public
@@ -2129,6 +2129,9 @@ type KeySystemId = 'widevine' | 'fairplay' | 'playready';
2129
2129
  * @category Source
2130
2130
  * @category SSAI
2131
2131
  * @public
2132
+ *
2133
+ * @deprecated
2134
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
2132
2135
  */
2133
2136
  type YospaceSSAIIntegrationID = 'yospace';
2134
2137
  /**
@@ -2141,6 +2144,9 @@ type YospaceSSAIIntegrationID = 'yospace';
2141
2144
  * @category Source
2142
2145
  * @category SSAI
2143
2146
  * @public
2147
+ *
2148
+ * @deprecated
2149
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
2144
2150
  */
2145
2151
  type YospaceStreamType = 'vod' | 'live' | 'livepause' | 'nonlinear';
2146
2152
  /**
@@ -2152,6 +2158,9 @@ type YospaceStreamType = 'vod' | 'live' | 'livepause' | 'nonlinear';
2152
2158
  * @category Source
2153
2159
  * @category SSAI
2154
2160
  * @public
2161
+ *
2162
+ * @deprecated
2163
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
2155
2164
  */
2156
2165
  interface YospaceServerSideAdInsertionConfiguration extends ServerSideAdInsertionConfiguration {
2157
2166
  /**
@@ -2171,6 +2180,9 @@ interface YospaceServerSideAdInsertionConfiguration extends ServerSideAdInsertio
2171
2180
  * @category Source
2172
2181
  * @category SSAI
2173
2182
  * @public
2183
+ *
2184
+ * @deprecated
2185
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
2174
2186
  */
2175
2187
  interface YospaceTypedSource extends TypedSource {
2176
2188
  ssai: YospaceServerSideAdInsertionConfiguration;
@@ -2355,7 +2367,7 @@ interface ImagineTypedSource extends TypedSource {
2355
2367
 
2356
2368
  /**
2357
2369
  * 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}
2370
+ * <br/> - `'yospace'`: The configuration with this identifier is a {@link YospaceServerSideAdInsertionConfiguration} (deprecated)
2359
2371
  * <br/> - `'google-dai'`: The configuration with this identifier is a {@link GoogleDAIConfiguration}
2360
2372
  * <br/> - `'imagine'`: The configuration with this identifier is a {@link ImagineServerSideAdInsertionConfiguration}
2361
2373
  *
@@ -2579,12 +2591,12 @@ interface VerizonMediaUiConfiguration {
2579
2591
  */
2580
2592
  interface SourceAbrConfiguration {
2581
2593
  /**
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.
2594
+ * A list of preferred audio codecs which will be used by the ABR algorithm for track selection, if the codec is supported.
2583
2595
  *
2584
2596
  */
2585
2597
  preferredAudioCodecs?: string[];
2586
2598
  /**
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.
2599
+ * A list of preferred video codecs which will be used by the ABR algorithm for track selection, if the codec is supported.
2588
2600
  */
2589
2601
  preferredVideoCodecs?: string[];
2590
2602
  /**
@@ -4611,7 +4623,7 @@ type SourceIntegrationId = 'verizon-media' | 'mediatailor' | 'theolive';
4611
4623
  /**
4612
4624
  * The integration identifier of an analytics description, represented by a value from the following list:
4613
4625
  * <br/> - `'agama'`: The description is an {@link AgamaConfiguration}
4614
- * <br/> - `'conviva'`: The description is a {@link ConvivaConfiguration}
4626
+ * <br/> - `'conviva'`: The description is a {@link ConvivaConfiguration} (deprecated)
4615
4627
  * <br/> - `'youbora'`: The description is a {@link YouboraOptions}
4616
4628
  * <br/> - `'moat'`: The description is a {@link MoatConfiguration}
4617
4629
  * <br/> - `'streamone'`: The description is a {@link StreamOneConfiguration}
@@ -4772,6 +4784,29 @@ interface RelatedContentSource {
4772
4784
  title?: string;
4773
4785
  }
4774
4786
 
4787
+ /**
4788
+ * The bundled Video.js library, based on version 5.x.
4789
+ *
4790
+ * @remarks
4791
+ * <br/> - See {@link https://docs.videojs.com/ | documentation}.
4792
+ *
4793
+ * @category API
4794
+ * @category UI
4795
+ * @public
4796
+ */
4797
+ declare namespace videojs {
4798
+ /**
4799
+ * An instance of a player UI.
4800
+ *
4801
+ * @remarks
4802
+ * <br/> - See {@link https://docs.videojs.com/player | documentation}.
4803
+ *
4804
+ * @public
4805
+ */
4806
+ interface Player {
4807
+ }
4808
+ }
4809
+
4775
4810
  /**
4776
4811
  * List of tracks.
4777
4812
  *
@@ -6791,6 +6826,9 @@ interface ABRConfiguration {
6791
6826
  *
6792
6827
  * @category Analytics
6793
6828
  * @public
6829
+ *
6830
+ * @deprecated
6831
+ * Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
6794
6832
  */
6795
6833
  type ConvivaAnalyticsIntegrationID = 'conviva';
6796
6834
  /**
@@ -6801,6 +6839,9 @@ type ConvivaAnalyticsIntegrationID = 'conviva';
6801
6839
  *
6802
6840
  * @category Analytics
6803
6841
  * @public
6842
+ *
6843
+ * @deprecated
6844
+ * Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
6804
6845
  */
6805
6846
  interface ConvivaConfiguration extends AnalyticsDescription {
6806
6847
  /**
@@ -6841,6 +6882,9 @@ interface ConvivaConfiguration extends AnalyticsDescription {
6841
6882
  *
6842
6883
  * @category Analytics
6843
6884
  * @public
6885
+ *
6886
+ * @deprecated
6887
+ * Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
6844
6888
  */
6845
6889
  interface Conviva {
6846
6890
  /**
@@ -6884,6 +6928,9 @@ interface Conviva {
6884
6928
  *
6885
6929
  * @category Analytics
6886
6930
  * @public
6931
+ *
6932
+ * @deprecated
6933
+ * Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
6887
6934
  */
6888
6935
  interface ConvivaContentMetadata {
6889
6936
  /**
@@ -6956,6 +7003,9 @@ interface Analytics {
6956
7003
  *
6957
7004
  * @remarks
6958
7005
  * <br/> - Only available with the feature `'conviva'`.
7006
+ *
7007
+ * @deprecated
7008
+ * Use the new [Conviva web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/conviva/) instead.
6959
7009
  */
6960
7010
  conviva?: Conviva;
6961
7011
  }
@@ -8593,6 +8643,9 @@ interface VerizonMedia extends EventDispatcher<VerizonMediaEventMap> {
8593
8643
  *
8594
8644
  * @category SSAI
8595
8645
  * @public
8646
+ *
8647
+ * @deprecated
8648
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
8596
8649
  */
8597
8650
  interface YospaceEventMap {
8598
8651
  /**
@@ -8608,6 +8661,9 @@ interface YospaceEventMap {
8608
8661
  *
8609
8662
  * @category SSAI
8610
8663
  * @public
8664
+ *
8665
+ * @deprecated
8666
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
8611
8667
  */
8612
8668
  interface YospaceCallbackObject {
8613
8669
  AdBreakStart: () => void;
@@ -8625,6 +8681,9 @@ interface YospaceCallbackObject {
8625
8681
  *
8626
8682
  * @category SSAI
8627
8683
  * @public
8684
+ *
8685
+ * @deprecated
8686
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
8628
8687
  */
8629
8688
  interface Yospace extends EventDispatcher<YospaceEventMap> {
8630
8689
  /**
@@ -9281,13 +9340,13 @@ interface EncryptedEvent extends Event<'encrypted'> {
9281
9340
  interface LatencyManager {
9282
9341
  /**
9283
9342
  * Whether the latency manager is enabled.
9284
- *
9285
- * @remarks
9286
- * <br/> - Can only be enabled for live playback.
9287
9343
  */
9288
9344
  enabled: boolean;
9289
9345
  /**
9290
9346
  * Whether the latency manager is monitoring to stay within the {@link LatencyManager.currentConfiguration | live playback configuration}.
9347
+ *
9348
+ * @remarks
9349
+ * <br/> - Can only be monitored for live playback.
9291
9350
  */
9292
9351
  readonly monitoringLivePlayback: boolean;
9293
9352
  /**
@@ -9975,6 +10034,9 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
9975
10034
  *
9976
10035
  * @remarks
9977
10036
  * <br/> - Only available with the feature `'yospace'`.
10037
+ *
10038
+ * @deprecated
10039
+ * Use the new [Yospace web connector](https://www.theoplayer.com/docs/theoplayer/connectors/web/yospace/) instead.
9978
10040
  */
9979
10041
  readonly yospace?: Yospace;
9980
10042
  /**
@@ -12804,14 +12866,15 @@ interface YouboraOptions extends AnalyticsDescription {
12804
12866
  }
12805
12867
 
12806
12868
  /**
12869
+ * The layout of the MultiViewPlayer.
12870
+ * <br/> - `'gallery'`: The views are structured in a grid.
12871
+ * <br/> - `'spotlight'`: One view is larger while the others are smaller and positioned to the right of the focused view.
12872
+ * <br/> - `'overlay'`: One view takes up the whole player, the remaining views float on top of the focused view.
12873
+ *
12807
12874
  * @category Multi-view
12808
12875
  * @public
12809
12876
  */
12810
- declare enum MultiViewPlayerLayout {
12811
- GALLERY = "gallery",
12812
- OVERLAY = "overlay",
12813
- SPOTLIGHT = "spotlight"
12814
- }
12877
+ type MultiViewPlayerLayout = 'gallery' | 'spotlight' | 'overlay';
12815
12878
  /**
12816
12879
  * The View API
12817
12880
  *
@@ -12842,7 +12905,7 @@ interface View {
12842
12905
  * Returns if the View can be resized.
12843
12906
  *
12844
12907
  * @remarks
12845
- * <br/> - Returns true if {@link MultiViewPlayer.layout} is set to {@link MultiViewPlayerLayout.OVERLAY} and the position is not equal to zero.
12908
+ * <br/> - Returns true if {@link MultiViewPlayer.layout} is set to `'overlay'` and the position is not equal to zero.
12846
12909
  */
12847
12910
  readonly canResize: boolean;
12848
12911
  /**
@@ -13105,6 +13168,10 @@ declare class MultiViewPlayer implements EventDispatcher<MultiViewPlayerEventMap
13105
13168
  * <br/> This is the same as the {@link View} at position zero.
13106
13169
  */
13107
13170
  readonly mainVideoView: View | undefined;
13171
+ /**
13172
+ * The Video.js player on which the UI is built.
13173
+ */
13174
+ readonly ui: videojs.Player;
13108
13175
  /**
13109
13176
  * Whether any of the underlying players is muted.
13110
13177
  */
@@ -13327,4 +13394,4 @@ declare function registerContentProtectionIntegration(integrationId: string, key
13327
13394
  */
13328
13395
  declare const utils: CommonUtils;
13329
13396
 
13330
- 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 };
13397
+ 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 };