@theoplayer/extended 11.1.0 → 11.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -957,12 +957,6 @@ interface AdsConfiguration {
957
957
  * @public
958
958
  */
959
959
  interface GoogleImaConfiguration {
960
- /**
961
- * Whether the native (mobile) IMA implementation will be used.
962
- *
963
- * @internal
964
- */
965
- useNativeIma: boolean;
966
960
  /**
967
961
  * Whether to use an ad UI element for clickthrough and displaying other ad UI.
968
962
  *
@@ -1189,6 +1183,7 @@ interface GoogleImaAd extends Ad {
1189
1183
  *
1190
1184
  * @remarks
1191
1185
  * <br/> - Available when the {@link Ad.readyState} is `'ready'`.
1186
+ * <br/> - Only available for the `google-ima` integration.
1192
1187
  */
1193
1188
  traffickingParameters: {
1194
1189
  [parameterKey: string]: string;
@@ -1204,7 +1199,8 @@ interface GoogleImaAd extends Ad {
1204
1199
  * The custom parameters for the ad at the time of ad trafficking, as a string.
1205
1200
  *
1206
1201
  * @remarks
1207
- * <br/> - A parsed version is available as {@link GoogleImaAd.traffickingParameters}.
1202
+ * <br/> - Available for `google-ima` since v2.60.0 and for `google-dai` since v11.2.0.
1203
+ * <br/> - A parsed version is available as {@link GoogleImaAd.traffickingParameters} (only when using the `google-ima` integration).
1208
1204
  * <br/> - Available when the {@link Ad.readyState} is `'ready'`.
1209
1205
  */
1210
1206
  traffickingParametersString: string | undefined;
@@ -1429,8 +1425,6 @@ interface AdsEventMap {
1429
1425
  * <br/> - Available since v2.60.0.
1430
1426
  */
1431
1427
  addad: AdEvent<'addad'>;
1432
- /** @internal */
1433
- adadded: Event<'adadded'>;
1434
1428
  /**
1435
1429
  * Fired when an ad is updated.
1436
1430
  *
@@ -1668,9 +1662,10 @@ interface AdDescription {
1668
1662
  *
1669
1663
  * @remarks
1670
1664
  * <br/> - When the ad ends, the content will resume at the ad break's offset plus its duration.
1665
+ * <br/> - Available for `theoads` since v11.2.0.
1671
1666
  *
1672
1667
  * @defaultValue
1673
- * <br/> - `true` for live content,
1668
+ * <br/> - `true` for live content and `theoads` VOD content.
1674
1669
  * <br/> - `false` for VOD content.
1675
1670
  */
1676
1671
  replaceContent?: boolean;
@@ -2102,12 +2097,6 @@ interface KeySystemConfiguration {
2102
2097
  * <br/> - If not provided, the player will use the default license acquisition URLs.
2103
2098
  */
2104
2099
  licenseAcquisitionURL?: string;
2105
- /**
2106
- * The licence type.
2107
- *
2108
- * @internal
2109
- */
2110
- licenseType?: LicenseType;
2111
2100
  /**
2112
2101
  * Record of HTTP headers for the licence acquisition request.
2113
2102
  * Each entry contains a header name with associated value.
@@ -2620,7 +2609,7 @@ interface ChromecastConfiguration {
2620
2609
  /**
2621
2610
  * The identifier of a custom Chromecast receiver app.
2622
2611
  *
2623
- * @defaultValue The default THEOplayer receiver app ID: 8E80B9CE.
2612
+ * @defaultValue The default THEOplayer receiver app ID: `8E80B9CE`. This is a Shaka-based CAF receiver. Use `44BAE7D1` for an MPL-based CAF receiver for THEOplayer.
2624
2613
  */
2625
2614
  appID?: string;
2626
2615
  }
@@ -2808,12 +2797,6 @@ interface PlayStation5Configuration {
2808
2797
  * @public
2809
2798
  */
2810
2799
  interface PlayerConfiguration {
2811
- /**
2812
- * A unique identifier for the player.
2813
- *
2814
- * @internal
2815
- */
2816
- uid?: number;
2817
2800
  /**
2818
2801
  * The directory in which the THEOplayer library worker files are located.
2819
2802
  * These worker files are theoplayer.d.js, theoplayer.e.js, theoplayer.p.js.
@@ -3450,12 +3433,6 @@ interface DashPlaybackConfiguration {
3450
3433
  * THEOplayer support or engineering.
3451
3434
  */
3452
3435
  desiredTimescale?: number;
3453
- /**
3454
- * Whether the player should try to force the seek on period switching to realign video and audio.
3455
- *
3456
- * @internal
3457
- */
3458
- forceSeekToSynchronize?: boolean;
3459
3436
  /**
3460
3437
  * (Experimental) Force the player to ignore the availability window of individual segments in the MPD,
3461
3438
  * and instead consider every listed segment to be immediately available.
@@ -3466,12 +3443,6 @@ interface DashPlaybackConfiguration {
3466
3443
  * <br/> - This only applies to streams that use `<SegmentTimeline>`.
3467
3444
  */
3468
3445
  ignoreAvailabilityWindow?: boolean;
3469
- /**
3470
- * Whether the player should perform a hard switch when seeking backwards.
3471
- *
3472
- * @internal
3473
- */
3474
- forceHardSwitchWhenSeekingBackwards?: boolean;
3475
3446
  /**
3476
3447
  * A flag to indicate whether or not timestamps of segmented WebVTT subtitles are relative to the segment start time.
3477
3448
  *
@@ -3481,17 +3452,6 @@ interface DashPlaybackConfiguration {
3481
3452
  * @defaultValue `true`
3482
3453
  */
3483
3454
  segmentRelativeVttTiming?: boolean;
3484
- /**
3485
- * A flag to force re-creation of the MediaSource when switching audio tracks.
3486
- *
3487
- * @remarks
3488
- * <br/> - Available since v8.14.0.
3489
- *
3490
- * @defaultValue `false`
3491
- *
3492
- * @internal
3493
- */
3494
- forceRecreateMediaSourceOnAudioSwitch?: boolean;
3495
3455
  /**
3496
3456
  * A flag to enable or disable content steering for this source.
3497
3457
  *
@@ -3523,6 +3483,7 @@ interface DashPlaybackConfiguration {
3523
3483
  *
3524
3484
  * @category Source
3525
3485
  * @public
3486
+ * @deprecated Will be removed in a future version.
3526
3487
  */
3527
3488
  type HlsDiscontinuityAlignment = 'auto' | 'playlist' | 'media';
3528
3489
  /**
@@ -3539,6 +3500,7 @@ interface HlsPlaybackConfiguration {
3539
3500
  * The strategy for aligning HLS discontinuities.
3540
3501
  *
3541
3502
  * @defaultValue `'auto'`
3503
+ * @deprecated This is no longer supported and is ignored by the player. Will be removed in a future version.
3542
3504
  */
3543
3505
  discontinuityAlignment?: HlsDiscontinuityAlignment;
3544
3506
  /**
@@ -3553,20 +3515,6 @@ interface HlsPlaybackConfiguration {
3553
3515
  delaySubtitlePreload?: boolean;
3554
3516
  }
3555
3517
 
3556
- /**
3557
- * Describes the DVR configuration for a specific source.
3558
- *
3559
- * @category Source
3560
- * @category DVR
3561
- * @internal
3562
- */
3563
- interface SourceDVRConfiguration {
3564
- /**
3565
- * The expected length of the DVR window, in seconds. It must be larger than 60 seconds to enable DVR seeking.
3566
- */
3567
- windowSize: number;
3568
- }
3569
-
3570
3518
  /**
3571
3519
  * Fired when a text track cue is entered.
3572
3520
  *
@@ -3633,10 +3581,6 @@ interface TextTrackCueEventMap {
3633
3581
  * @public
3634
3582
  */
3635
3583
  interface TextTrackCue extends EventDispatcher<TextTrackCueEventMap> {
3636
- /**
3637
- * @internal
3638
- */
3639
- _internalCue: unknown;
3640
3584
  /**
3641
3585
  * The text track of the cue.
3642
3586
  */
@@ -4778,15 +4722,6 @@ interface SourceConfiguration {
4778
4722
  * @deprecated Superseded by {@link SourceConfiguration.contentProtection}.
4779
4723
  */
4780
4724
  drm?: DRMConfiguration;
4781
- /**
4782
- * Enables smooth DVR seeking for THEOlive and Millicast streams.
4783
- *
4784
- * THEOlive and Millicast sources normally only support live playback without DVR functionality. When enabled, this option allows the player to
4785
- * seamlessly switch to a fallback HLS or DASH source (specified in [SourceDescription.sources]) when the user seeks away from the live point.
4786
- *
4787
- * @internal
4788
- */
4789
- dvr?: SourceDVRConfiguration;
4790
4725
  /**
4791
4726
  * The poster of the media source.
4792
4727
  *
@@ -4958,12 +4893,6 @@ interface TextTrackDescription {
4958
4893
  * <br/> - This will be used as an identifier on the player API and in the UI.
4959
4894
  */
4960
4895
  label?: string;
4961
- /**
4962
- * The identifier of this text track.
4963
- *
4964
- * @internal
4965
- */
4966
- id?: string;
4967
4896
  }
4968
4897
  /**
4969
4898
  * Represents the common properties of a media resource.
@@ -5027,22 +4956,6 @@ interface BaseSource {
5027
4956
  * <br/> - Available since v2.61.0.
5028
4957
  */
5029
4958
  hlsDateRange?: boolean;
5030
- /**
5031
- * Whether to use an experimental rendering pipeline for playback.
5032
- *
5033
- * @remarks
5034
- * <br/> - The availability of an experimental rendering pipeline depends on the platform.
5035
- * <br/> - Only use after specifically being advised to.
5036
- *
5037
- * @internal
5038
- */
5039
- experimentalRendering?: boolean;
5040
- /**
5041
- * Whether to use native ui rendering.
5042
- *
5043
- * @internal
5044
- */
5045
- nativeUiRendering?: boolean;
5046
4959
  /**
5047
4960
  * Whether the source should be played in the low-latency-mode of the player.
5048
4961
  *
@@ -5211,18 +5124,6 @@ interface TypedSource extends BaseSource {
5211
5124
  * <br/> - Available since v2.4.0.
5212
5125
  */
5213
5126
  type?: string;
5214
- /**
5215
- * The source URL of the media resource that will be played during airplay.
5216
- *
5217
- * @internal
5218
- */
5219
- airplaySrc?: string;
5220
- /**
5221
- * The content type (MIME type) of the media resource that will be played during airplay.
5222
- *
5223
- * @internal
5224
- */
5225
- airplaySrcType?: string;
5226
5127
  /**
5227
5128
  * The content protection parameters for the media resource.
5228
5129
  *
@@ -5243,12 +5144,6 @@ interface TypedSource extends BaseSource {
5243
5144
  * <br/> - Available since v2.12.0.
5244
5145
  */
5245
5146
  ssai?: ServerSideAdInsertionConfiguration;
5246
- /**
5247
- * Whether the source is for an ad or a content playback
5248
- *
5249
- * @internal
5250
- */
5251
- isAdvertisement?: boolean;
5252
5147
  }
5253
5148
  /**
5254
5149
  * The stream type, represented by a value from the following list:
@@ -10258,24 +10153,6 @@ interface HespApi extends EventDispatcher<HespApiEventMap> {
10258
10153
  * <br/> - Undefined if no HESP source is configured.
10259
10154
  */
10260
10155
  readonly manifest: object | undefined;
10261
- /**
10262
- * Returns an overview of the latencies of different parts of the pipeline.
10263
- *
10264
- * @internal
10265
- */
10266
- readonly latencies: Latencies | undefined;
10267
- /**
10268
- * Returns an overview of the video latencies of different parts of the pipeline.
10269
- *
10270
- * @internal
10271
- */
10272
- readonly videoLatencies: Latencies | undefined;
10273
- /**
10274
- * Returns an overview of the audio latencies of different parts of the pipeline.
10275
- *
10276
- * @internal
10277
- */
10278
- readonly audioLatencies: Latencies | undefined;
10279
10156
  }
10280
10157
  /**
10281
10158
  * Specific source configuration for an HESP media resource.
@@ -10312,29 +10189,6 @@ interface HespTypedSource extends TypedSource {
10312
10189
  */
10313
10190
  hesp?: HespSourceConfiguration;
10314
10191
  }
10315
- /**
10316
- * An overview of different latencies in the pipeline.
10317
- *
10318
- * @internal
10319
- */
10320
- interface Latencies {
10321
- /**
10322
- * The total latency between a frame entering the transcoder and being displayed on the screen.
10323
- */
10324
- readonly theolive: number;
10325
- /**
10326
- * The latency a frame spends in the transcoding and packaging step.
10327
- */
10328
- readonly engine: number;
10329
- /**
10330
- * The latency between a frame exiting the packager and being received by the player.
10331
- */
10332
- readonly distribution: number;
10333
- /**
10334
- * The latency added by the player in the form of buffer.
10335
- */
10336
- readonly player: number;
10337
- }
10338
10192
 
10339
10193
  /**
10340
10194
  * @category HESP
@@ -13672,28 +13526,6 @@ interface PlayerEventMap {
13672
13526
  * <br/> - Available since v2.33.3.
13673
13527
  */
13674
13528
  destroy: Event<'destroy'>;
13675
- /** @internal */
13676
- airplaychanged_: Event<'airplaychanged_'>;
13677
- /** @internal */
13678
- fullscreenVideoElementChange_: Event<'fullscreenVideoElementChange_'>;
13679
- /** @internal */
13680
- imagesourcechange_: Event<'imagesourcechange_'>;
13681
- /** @internal */
13682
- nosupportedrepresentationfound: Event<'nosupportedrepresentationfound'>;
13683
- /** @internal */
13684
- metricschange: Event<'metricschange'>;
13685
- /** @internal */
13686
- offline: Event<'offline'>;
13687
- /** @internal */
13688
- online: Event<'online'>;
13689
- /** @internal */
13690
- presentationmodechange: Event<'presentationmodechange'>;
13691
- /** @internal */
13692
- segmentrequest_: Event<'segmentrequest_'>;
13693
- /** @internal */
13694
- segmentresponse_: Event<'segmentresponse_'>;
13695
- /** @internal */
13696
- manifestnotfound_: Event<'manifestnotfound_'>;
13697
13529
  }
13698
13530
  /**
13699
13531
  * The player API.
@@ -14109,4 +13941,5 @@ declare function registerContentProtectionIntegration(integrationId: string, key
14109
13941
  */
14110
13942
  declare const utils: CommonUtils;
14111
13943
 
14112
- export { ABRConfiguration, ABRMetadata, ABRStrategy, ABRStrategyConfiguration, ABRStrategyType, AES128KeySystemConfiguration, AccessibilityRole, Ad, AdBreak, AdBreakEvent, AdBreakInit, AdBreakInterstitial, AdBufferingEvent, AdDescription, AdEvent, AdInit, AdIntegrationKind, AdMetadataEvent, AdPreloadType, AdReadyState, AdSkipEvent, AdSource, AdSourceType, AdType, AddCachingTaskEvent, AddTrackEvent, AddViewEvent, Ads, AdsConfiguration, AdsEventMap, AdsManagerLoadedEvent, AgamaAnalyticsIntegrationID, AgamaConfiguration, AgamaLogLevelType, AgamaPlayerConfiguration, AgamaServiceName, AgamaSourceConfiguration, AgamaStreamType, AirPlay, AnalyticsDescription, AnalyticsIntegrationID, AudioQuality, AxinomDRMConfiguration, AxinomIntegrationID, AzureDRMConfiguration, AzureIntegrationID, Base64Util, BaseSource, Boundary, BoundaryC3, BoundaryC7, BoundaryHalftime, BoundaryInfo, BufferSource, BufferedSegments, Cache, CacheEventMap, CacheStatus, CacheTaskStatus, CachingTask, CachingTaskEventMap, CachingTaskLicense, CachingTaskList, CachingTaskListEventMap, CachingTaskParameters, CanPlayEvent, CanPlayThroughEvent, Canvas, Cast, CastConfiguration, CastEventMap, CastState, CastStateChangeEvent, CertificateRequest, CertificateResponse, ChannelDrmConfigResponse, ChannelMillicastSource, Chromecast, ChromecastConfiguration, ChromecastConnectionCallback, ChromecastError, ChromecastErrorCode, ChromecastErrorEvent, ChromecastEventMap, ChromecastMetadataDescription, ChromecastMetadataImage, ChromecastMetadataType, ChromelessPlayer, ClearkeyDecryptionKey, ClearkeyKeySystemConfiguration, Clip, ClipEventMap, ClosedCaptionFile, ComcastDRMConfiguration, ComcastIntegrationID, CommonUtils, CompanionAd, ConaxDRMConfiguration, ConaxIntegrationID, ContentProtectionError, ContentProtectionErrorCode, ContentProtectionErrorEvent, ContentProtectionIntegration, ContentProtectionIntegrationFactory, ContentProtectionRequest, ContentProtectionRequestSubType, ContentProtectionResponse, ContentSteeringErrorEvent, ContentSteeringLocationChangeEvent, ContentSteeringStartEvent, ContentSteeringStopEvent, ContentSteeringUpdateEvent, CrossOriginSetting, CsaiAdDescription, CurrentSourceChangeEvent, CustomAdIntegrationKind, CustomTextTrackMap, CustomTextTrackOptions, CustomWebVTTTextTrack, DAIAvailabilityType, DRMConfiguration, DRMTodayDRMConfiguration, DRMTodayIntegrationID, DashPlaybackConfiguration, DateRangeCue, DeliveryType, DeviceBasedTitaniumDRMConfiguration, DimensionChangeEvent, DirectionChangeEvent, Distribution, DistributionLoadStartEvent, DistributionLoadedEvent, DistributionOfflineEvent, DurationChangeEvent, EdgeStyle, EmptiedEvent, EmsgCue, EncryptedEvent, EndedEvent, Endpoint, EndpointLoadedEvent, 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, HTTPHeadersInit, HespApi, HespApiEventMap, 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, IntentToFallbackEvent, InterceptableRequest, InterceptableResponse, Interstitial, InterstitialEvent, InterstitialType, IrdetoDRMConfiguration, IrdetoIntegrationID, JoinStrategy, KeyOSDRMConfiguration, KeyOSFairplayKeySystemConfiguration, KeyOSIntegrationID, KeyOSKeySystemConfiguration, KeySystemConfiguration, KeySystemId, Latencies, LatencyConfiguration, LatencyManager, LayoutChangeEvent, LicenseRequest, LicenseResponse, LicenseType, LinearAd, List, LoadedDataEvent, LoadedMetadataEvent, ManifestErrorEvent, MaybeAsync, MeasurableNetworkEstimator, MediaError, MediaErrorCode, MediaFile, MediaMelonConfiguration, MediaTailorSource, MediaTrack, MediaTrackEventMap, MediaTrackList, MediaTrackType, MediaType, MetadataDescription, Metrics, Millicast, MillicastEventMap, MillicastMetadataCue, MillicastSource, MillicastStatsEvent, MoatAnalyticsIntegrationID, MoatConfiguration, MultiViewPlayer, MultiViewPlayerEventMap, MultiViewPlayerLayout, MutedAutoplayConfiguration, Network, NetworkEstimator, NetworkEstimatorController, NetworkEventMap, NetworkInterceptorController, NodeStyleVoidCallback, NonLinearAd, OverlayInterstitial, OverlayPosition, OverlaySize, PauseEvent, PiPConfiguration, PiPPosition, PlayEvent, PlayReadyKeySystemConfiguration, PlayStation5Configuration, PlayStation5PlayMode, PlayerConfiguration, PlayerEventMap, PlayerList, PlayingEvent, PlayoutDelay, PreloadType, Presentation, PresentationEventMap, PresentationMode, PresentationModeChangeEvent, ProgressEvent, 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, SegmentErrorEvent, 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, SupportedCustomTextTrackCueTypes, THEOplayerError, TTMLCue, TTMLExtent, 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, TheoAds, TheoAdsEventsMap, TheoAdsLayout, 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, Uplynk, UplynkAd, UplynkAdBeginEvent, UplynkAdBreak, UplynkAdBreakBeginEvent, UplynkAdBreakEndEvent, UplynkAdBreakEventMap, UplynkAdBreakList, UplynkAdBreakListEventMap, UplynkAdBreakSkipEvent, UplynkAdCompleteEvent, UplynkAdEndEvent, UplynkAdEventMap, UplynkAdFirstQuartileEvent, UplynkAdList, UplynkAdListEventMap, UplynkAdMidpointEvent, UplynkAdThirdQuartileEvent, UplynkAddAdBreakEvent, UplynkAddAssetEvent, UplynkAds, UplynkAsset, UplynkAssetEventMap, UplynkAssetId, UplynkAssetInfoResponse, UplynkAssetInfoResponseEvent, UplynkAssetList, UplynkAssetMovieRating, UplynkAssetTvRating, UplynkAssetType, UplynkConfiguration, UplynkDRMConfiguration, UplynkEventMap, UplynkExternalId, UplynkIntegrationID, UplynkPingConfiguration, UplynkPingErrorEvent, UplynkPingResponse, UplynkPingResponseEvent, UplynkPreplayBaseResponse, UplynkPreplayLiveResponse, UplynkPreplayResponse, UplynkPreplayResponseEvent, UplynkPreplayResponseType, UplynkPreplayVodResponse, UplynkRemoveAdBreakEvent, UplynkRemoveAdEvent, UplynkRemoveAssetEvent, UplynkResponseDrm, UplynkResponseLiveAd, UplynkResponseLiveAdBreak, UplynkResponseLiveAds, UplynkResponseVodAd, UplynkResponseVodAdBreak, UplynkResponseVodAdBreakOffset, UplynkResponseVodAdPlaceholder, UplynkResponseVodAds, UplynkSource, UplynkUiConfiguration, UplynkUpdateAdBreakEvent, UserActions, VPAIDMode, VR, VRConfiguration, VRDirection, VREventMap, VRPanoramaMode, VRState, VRStereoMode, VTTAlignSetting, VTTDirectionSetting, VTTLine, VTTLineAlignSetting, VTTPosition, VTTPositionAlignSetting, VTTScrollSetting, VastExtension, VendorCast, VendorCastEventMap, VerimatrixDRMConfiguration, VerimatrixIntegrationID, VideoFrameCallbackMetadata, VideoFrameRequestCallback, VideoQuality, View, ViewChangeEvent, ViewPositionChangeEvent, VimondDRMConfiguration, VimondIntegrationID, Visibility, VisibilityObserver, VisibilityObserverCallback, VoidPromiseCallback, VolumeChangeEvent, VudrmDRMConfiguration, VudrmIntegrationID, WaitUntilCallback, WaitingEvent, WebAudio, WebRTCOptions, WebVTTCue, WebVTTRegion, WidevineKeySystemConfiguration, XstreamDRMConfiguration, XstreamIntegrationID, YospaceId, YouboraAnalyticsIntegrationID, YouboraOptions, cache, cast, features, players, registerContentProtectionIntegration, utils, version, videojs };
13944
+ export { ChromelessPlayer, ErrorCategory, ErrorCode, MultiViewPlayer, cache, cast, features, players, registerContentProtectionIntegration, utils, version, videojs };
13945
+ export type { ABRConfiguration, ABRMetadata, ABRStrategy, ABRStrategyConfiguration, ABRStrategyType, AES128KeySystemConfiguration, AccessibilityRole, Ad, AdBreak, AdBreakEvent, AdBreakInit, AdBreakInterstitial, AdBufferingEvent, AdDescription, AdEvent, AdInit, AdIntegrationKind, AdMetadataEvent, AdPreloadType, AdReadyState, AdSkipEvent, AdSource, AdSourceType, AdType, AddCachingTaskEvent, AddTrackEvent, AddViewEvent, Ads, AdsConfiguration, AdsEventMap, AdsManagerLoadedEvent, AgamaAnalyticsIntegrationID, AgamaConfiguration, AgamaLogLevelType, AgamaPlayerConfiguration, AgamaServiceName, AgamaSourceConfiguration, AgamaStreamType, AirPlay, AnalyticsDescription, AnalyticsIntegrationID, AudioQuality, AxinomDRMConfiguration, AxinomIntegrationID, AzureDRMConfiguration, AzureIntegrationID, Base64Util, BaseSource, Boundary, BoundaryC3, BoundaryC7, BoundaryHalftime, BoundaryInfo, BufferSource, BufferedSegments, Cache, CacheEventMap, CacheStatus, CacheTaskStatus, CachingTask, CachingTaskEventMap, CachingTaskLicense, CachingTaskList, CachingTaskListEventMap, CachingTaskParameters, CanPlayEvent, CanPlayThroughEvent, Canvas, Cast, CastConfiguration, CastEventMap, CastState, CastStateChangeEvent, CertificateRequest, CertificateResponse, ChannelDrmConfigResponse, ChannelMillicastSource, Chromecast, ChromecastConfiguration, ChromecastConnectionCallback, ChromecastError, ChromecastErrorCode, ChromecastErrorEvent, ChromecastEventMap, ChromecastMetadataDescription, ChromecastMetadataImage, ChromecastMetadataType, ClearkeyDecryptionKey, ClearkeyKeySystemConfiguration, Clip, ClipEventMap, ClosedCaptionFile, ComcastDRMConfiguration, ComcastIntegrationID, CommonUtils, CompanionAd, ConaxDRMConfiguration, ConaxIntegrationID, ContentProtectionError, ContentProtectionErrorCode, ContentProtectionErrorEvent, ContentProtectionIntegration, ContentProtectionIntegrationFactory, ContentProtectionRequest, ContentProtectionRequestSubType, ContentProtectionResponse, ContentSteeringErrorEvent, ContentSteeringLocationChangeEvent, ContentSteeringStartEvent, ContentSteeringStopEvent, ContentSteeringUpdateEvent, CrossOriginSetting, CsaiAdDescription, CurrentSourceChangeEvent, CustomAdIntegrationKind, CustomTextTrackMap, CustomTextTrackOptions, CustomWebVTTTextTrack, DAIAvailabilityType, DRMConfiguration, DRMTodayDRMConfiguration, DRMTodayIntegrationID, DashPlaybackConfiguration, DateRangeCue, DeliveryType, DeviceBasedTitaniumDRMConfiguration, DimensionChangeEvent, DirectionChangeEvent, Distribution, DistributionLoadStartEvent, DistributionLoadedEvent, DistributionOfflineEvent, DurationChangeEvent, EdgeStyle, EmptiedEvent, EmsgCue, EncryptedEvent, EndedEvent, Endpoint, EndpointLoadedEvent, EnterBadNetworkModeEvent, 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, HTTPHeadersInit, HespApi, HespApiEventMap, 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, IntentToFallbackEvent, InterceptableRequest, InterceptableResponse, Interstitial, InterstitialEvent, InterstitialType, IrdetoDRMConfiguration, IrdetoIntegrationID, JoinStrategy, KeyOSDRMConfiguration, KeyOSFairplayKeySystemConfiguration, KeyOSIntegrationID, KeyOSKeySystemConfiguration, KeySystemConfiguration, KeySystemId, LatencyConfiguration, LatencyManager, LayoutChangeEvent, LicenseRequest, LicenseResponse, LicenseType, LinearAd, List, LoadedDataEvent, LoadedMetadataEvent, ManifestErrorEvent, MaybeAsync, MeasurableNetworkEstimator, MediaError, MediaErrorCode, MediaFile, MediaMelonConfiguration, MediaTailorSource, MediaTrack, MediaTrackEventMap, MediaTrackList, MediaTrackType, MediaType, MetadataDescription, Metrics, Millicast, MillicastEventMap, MillicastMetadataCue, MillicastSource, MillicastStatsEvent, MoatAnalyticsIntegrationID, MoatConfiguration, MultiViewPlayerEventMap, MultiViewPlayerLayout, MutedAutoplayConfiguration, Network, NetworkEstimator, NetworkEstimatorController, NetworkEventMap, NetworkInterceptorController, NodeStyleVoidCallback, NonLinearAd, OverlayInterstitial, OverlayPosition, OverlaySize, PauseEvent, PiPConfiguration, PiPPosition, PlayEvent, PlayReadyKeySystemConfiguration, PlayStation5Configuration, PlayStation5PlayMode, PlayerConfiguration, PlayerEventMap, PlayerList, PlayingEvent, PlayoutDelay, PreloadType, Presentation, PresentationEventMap, PresentationMode, PresentationModeChangeEvent, ProgressEvent, 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, SegmentErrorEvent, 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, SupportedCustomTextTrackCueTypes, THEOplayerError, TTMLCue, TTMLExtent, 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, TheoAds, TheoAdsEventsMap, TheoAdsLayout, 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, Uplynk, UplynkAd, UplynkAdBeginEvent, UplynkAdBreak, UplynkAdBreakBeginEvent, UplynkAdBreakEndEvent, UplynkAdBreakEventMap, UplynkAdBreakList, UplynkAdBreakListEventMap, UplynkAdBreakSkipEvent, UplynkAdCompleteEvent, UplynkAdEndEvent, UplynkAdEventMap, UplynkAdFirstQuartileEvent, UplynkAdList, UplynkAdListEventMap, UplynkAdMidpointEvent, UplynkAdThirdQuartileEvent, UplynkAddAdBreakEvent, UplynkAddAssetEvent, UplynkAds, UplynkAsset, UplynkAssetEventMap, UplynkAssetId, UplynkAssetInfoResponse, UplynkAssetInfoResponseEvent, UplynkAssetList, UplynkAssetMovieRating, UplynkAssetTvRating, UplynkAssetType, UplynkConfiguration, UplynkDRMConfiguration, UplynkEventMap, UplynkExternalId, UplynkIntegrationID, UplynkPingConfiguration, UplynkPingErrorEvent, UplynkPingResponse, UplynkPingResponseEvent, UplynkPreplayBaseResponse, UplynkPreplayLiveResponse, UplynkPreplayResponse, UplynkPreplayResponseEvent, UplynkPreplayResponseType, UplynkPreplayVodResponse, UplynkRemoveAdBreakEvent, UplynkRemoveAdEvent, UplynkRemoveAssetEvent, UplynkResponseDrm, UplynkResponseLiveAd, UplynkResponseLiveAdBreak, UplynkResponseLiveAds, UplynkResponseVodAd, UplynkResponseVodAdBreak, UplynkResponseVodAdBreakOffset, UplynkResponseVodAdPlaceholder, UplynkResponseVodAds, UplynkSource, UplynkUiConfiguration, UplynkUpdateAdBreakEvent, UserActions, VPAIDMode, VR, VRConfiguration, VRDirection, VREventMap, VRPanoramaMode, VRState, VRStereoMode, VTTAlignSetting, VTTDirectionSetting, VTTLine, VTTLineAlignSetting, VTTPosition, VTTPositionAlignSetting, VTTScrollSetting, VastExtension, VendorCast, VendorCastEventMap, VerimatrixDRMConfiguration, VerimatrixIntegrationID, VideoFrameCallbackMetadata, VideoFrameRequestCallback, VideoQuality, View, ViewChangeEvent, ViewPositionChangeEvent, VimondDRMConfiguration, VimondIntegrationID, Visibility, VisibilityObserver, VisibilityObserverCallback, VoidPromiseCallback, VolumeChangeEvent, VudrmDRMConfiguration, VudrmIntegrationID, WaitUntilCallback, WaitingEvent, WebAudio, WebRTCOptions, WebVTTCue, WebVTTRegion, WidevineKeySystemConfiguration, XstreamDRMConfiguration, XstreamIntegrationID, YospaceId, YouboraAnalyticsIntegrationID, YouboraOptions };