@theoplayer/extended 11.3.0 → 11.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/THEOplayer.chromeless.d.ts +2 -2
- package/THEOplayer.chromeless.esm.js +2 -2
- package/THEOplayer.chromeless.js +3 -3
- package/THEOplayer.common.d.ts +124 -7
- package/THEOplayer.common.esm.js +3 -3
- package/THEOplayer.d.ts +2 -2
- package/THEOplayer.esm.js +3 -3
- package/THEOplayer.js +3 -3
- package/THEOplayer.transmux.asmjs.js +3 -3
- package/THEOplayer.transmux.js +3 -3
- package/package.json +1 -1
- package/theoplayer.d.js +3 -3
- package/theoplayer.sw.js +3 -3
package/THEOplayer.common.d.ts
CHANGED
|
@@ -1965,7 +1965,7 @@ interface SpotxQueryParameter {
|
|
|
1965
1965
|
* <br/> - `'freewheel'`: {@link https://vi.freewheel.tv/ | FreeWheel} pre-integrated ad playback.
|
|
1966
1966
|
* <br/> - `'mediatailor'`: {@link https://aws.amazon.com/mediatailor/ | MediaTailor} pre-integrated ad playback.
|
|
1967
1967
|
* <br/> - `'chromecast'`: {@link https://developers.google.com/cast/docs/web_receiver/ad_breaks | Chromecast} ads playing on a remote receiver.
|
|
1968
|
-
* <br/> - `'theoads'`:
|
|
1968
|
+
* <br/> - `'theoads'`: {@link https://optiview.dolby.com/docs/ads/ | OptiView Ads} (previously THEOads) pre-integrated ad playback.
|
|
1969
1969
|
*
|
|
1970
1970
|
* @remarks
|
|
1971
1971
|
* <br/> - An empty string will default to `'csai'`.
|
|
@@ -2790,6 +2790,71 @@ interface PlayStation5Configuration {
|
|
|
2790
2790
|
passThrough?: boolean;
|
|
2791
2791
|
}
|
|
2792
2792
|
|
|
2793
|
+
/**
|
|
2794
|
+
* Describes the CMCD (Common Media Client Data) configuration for event mode reporting at the player level.
|
|
2795
|
+
*
|
|
2796
|
+
* @remarks
|
|
2797
|
+
* <br/> - Available since v11.4.0.
|
|
2798
|
+
* <br/> - This configuration is only used for event mode reporting only, for now. For request mode, you should use the
|
|
2799
|
+
* CMCD connector on GitHub (https://github.com/THEOplayer/web-connectors/tree/main/cmcd).
|
|
2800
|
+
* <br/> - This configuration is set at the player level. For source-level configuration, see {@link CmcdSourceConfiguration}.
|
|
2801
|
+
*
|
|
2802
|
+
* @category CMCD
|
|
2803
|
+
* @public
|
|
2804
|
+
*/
|
|
2805
|
+
interface CmcdConfiguration {
|
|
2806
|
+
/**
|
|
2807
|
+
* An external session ID that can be used to identify the current playback session.
|
|
2808
|
+
*/
|
|
2809
|
+
externalSessionId?: string;
|
|
2810
|
+
/**
|
|
2811
|
+
* A user ID that can be used to identify the user.
|
|
2812
|
+
*/
|
|
2813
|
+
userId?: string;
|
|
2814
|
+
/**
|
|
2815
|
+
* A list of CMCD endpoints to which events should be sent.
|
|
2816
|
+
*/
|
|
2817
|
+
eventEndpoints?: CmcdEndpointConfiguration[];
|
|
2818
|
+
}
|
|
2819
|
+
/**
|
|
2820
|
+
* Describes the CMCD (Common Media Client Data) configuration for event mode reporting at the source level.
|
|
2821
|
+
*
|
|
2822
|
+
* @remarks
|
|
2823
|
+
* <br/> - Available since v11.4.0.
|
|
2824
|
+
* <br/> - This configuration is only used for event mode reporting only, for now. For request mode, you should use the
|
|
2825
|
+
* CMCD connector on GitHub (https://github.com/THEOplayer/web-connectors/tree/main/cmcd).
|
|
2826
|
+
* <br/> - This extends the player-level {@link CmcdConfiguration} by additionally allowing a session ID to be specified
|
|
2827
|
+
* per source. Source-level values take precedence over player-level values for overlapping fields,
|
|
2828
|
+
* except for `eventEndpoints` which are merged (both player and source endpoints receive events).
|
|
2829
|
+
*
|
|
2830
|
+
* @category CMCD
|
|
2831
|
+
* @public
|
|
2832
|
+
*/
|
|
2833
|
+
interface CmcdSourceConfiguration extends CmcdConfiguration {
|
|
2834
|
+
/**
|
|
2835
|
+
* A GUID identifying the current playback session.
|
|
2836
|
+
*
|
|
2837
|
+
* @remarks
|
|
2838
|
+
* A playback session typically consists of the playback of a single media
|
|
2839
|
+
* asset along with accompanying content such as advertisements. This session may comprise the playback of primary content
|
|
2840
|
+
* combined with interstitial content. This session is being played on a single device. The maximum length is 64 characters.
|
|
2841
|
+
* It is RECOMMENDED to conform to the UUID specification (https://tools.ietf.org/html/rfc4122).
|
|
2842
|
+
*/
|
|
2843
|
+
sessionId?: string;
|
|
2844
|
+
}
|
|
2845
|
+
/**
|
|
2846
|
+
* Configuration for a CMCD endpoint.
|
|
2847
|
+
*
|
|
2848
|
+
* @category CMCD
|
|
2849
|
+
* @public
|
|
2850
|
+
*/
|
|
2851
|
+
interface CmcdEndpointConfiguration {
|
|
2852
|
+
/**
|
|
2853
|
+
* The URL of the CMCD endpoint.
|
|
2854
|
+
*/
|
|
2855
|
+
url: string;
|
|
2856
|
+
}
|
|
2857
|
+
|
|
2793
2858
|
/**
|
|
2794
2859
|
* Describes a player's configuration.
|
|
2795
2860
|
*
|
|
@@ -2841,7 +2906,7 @@ interface PlayerConfiguration {
|
|
|
2841
2906
|
*
|
|
2842
2907
|
* @remarks
|
|
2843
2908
|
* <br/> - Available since 2.22.0.
|
|
2844
|
-
* <br/> - By default, the player assumes that it cannot load HTTP URLs when inside
|
|
2909
|
+
* <br/> - By default, the player assumes that it cannot load HTTP URLs when inside an HTTPS page because of {@link https://developer.mozilla.org/en-US/docs/Web/Security/Mixed_content | mixed content restrictions}. Therefore, the player will automatically convert HTTP URLs to HTTPS before loading them.
|
|
2845
2910
|
* <br/> - When this option is set to true, the player may assume that mixed content is allowed on the current platform, and will not automatically convert HTTP URLs to HTTPS.
|
|
2846
2911
|
*
|
|
2847
2912
|
* @defaultValue `false`
|
|
@@ -2934,6 +2999,13 @@ interface PlayerConfiguration {
|
|
|
2934
2999
|
* The PlayStation 5 configuration for the player.
|
|
2935
3000
|
*/
|
|
2936
3001
|
ps5?: PlayStation5Configuration;
|
|
3002
|
+
/**
|
|
3003
|
+
* The CMCD configuration for the player.
|
|
3004
|
+
*
|
|
3005
|
+
* @remarks
|
|
3006
|
+
* <br/> - Available since v11.4.0.
|
|
3007
|
+
*/
|
|
3008
|
+
cmcd?: CmcdConfiguration;
|
|
2937
3009
|
}
|
|
2938
3010
|
/**
|
|
2939
3011
|
* The muted autoplay policy of a player.
|
|
@@ -2954,10 +3026,12 @@ type MutedAutoplayConfiguration = 'none' | 'all' | 'content';
|
|
|
2954
3026
|
interface TheoLiveConfiguration {
|
|
2955
3027
|
/**
|
|
2956
3028
|
* An id used to report usage analytics, if not explicitly given a random UUID is used.
|
|
3029
|
+
*
|
|
3030
|
+
* @deprecated Use {@link CmcdConfiguration.externalSessionId} instead.
|
|
2957
3031
|
*/
|
|
2958
3032
|
readonly externalSessionId?: string;
|
|
2959
3033
|
/**
|
|
2960
|
-
* Whether this player should
|
|
3034
|
+
* Whether this player should fall back or not when it has a fallback configured.
|
|
2961
3035
|
*/
|
|
2962
3036
|
readonly fallbackEnabled?: boolean;
|
|
2963
3037
|
readonly discoveryHeader?: string;
|
|
@@ -3879,12 +3953,34 @@ interface Quality extends EventDispatcher<QualityEventMap> {
|
|
|
3879
3953
|
*/
|
|
3880
3954
|
label: string;
|
|
3881
3955
|
/**
|
|
3882
|
-
* Whether the quality is available.
|
|
3956
|
+
* Whether the quality is available for selection.
|
|
3883
3957
|
*
|
|
3884
3958
|
* @remarks
|
|
3885
|
-
* <
|
|
3959
|
+
* <ul>
|
|
3960
|
+
* <li>A quality that is unavailable will be ignored during ABR selection
|
|
3961
|
+
* and when setting {@link MediaTrack.targetQuality}.</li>
|
|
3962
|
+
* <li>A quality can be unavailable due to a DRM restriction (e.g. HDCP).</li>
|
|
3963
|
+
* <li>To prevent a quality from being selected for reasons outside the player,
|
|
3964
|
+
* set {@link enabled} to `false`.</li>
|
|
3965
|
+
* </ul>
|
|
3886
3966
|
*/
|
|
3887
3967
|
readonly available: boolean;
|
|
3968
|
+
/**
|
|
3969
|
+
* Whether the quality is allowed to be selected.
|
|
3970
|
+
*
|
|
3971
|
+
* @remarks
|
|
3972
|
+
* <ul>
|
|
3973
|
+
* <li>A quality that is disabled will be ignored during ABR selection,
|
|
3974
|
+
* and when setting {@link MediaTrack.targetQuality}.</li>
|
|
3975
|
+
* <li>Setting this to `false` will cause {@link available} to become `false`.
|
|
3976
|
+
* However, setting this to `true` **does not** guarantee that {@link available} will become `true`,
|
|
3977
|
+
* since the player might not be able to select this quality for its own reasons.</li>
|
|
3978
|
+
* <li>Available since v11.4.0.</li>
|
|
3979
|
+
* </ul>
|
|
3980
|
+
*
|
|
3981
|
+
* @defaultValue true
|
|
3982
|
+
*/
|
|
3983
|
+
enabled: boolean;
|
|
3888
3984
|
/**
|
|
3889
3985
|
* The HLS SCORE attribute.
|
|
3890
3986
|
*
|
|
@@ -4012,9 +4108,16 @@ interface MediaTrackEventMap extends TrackEventMap {
|
|
|
4012
4108
|
* Fired when a quality of the track becomes unavailable.
|
|
4013
4109
|
*
|
|
4014
4110
|
* @remarks
|
|
4015
|
-
* <br/> - A
|
|
4111
|
+
* <br/> - A quality can become unavailable due to a DRM restriction (e.g. HDCP).
|
|
4016
4112
|
*/
|
|
4017
4113
|
qualityunavailable: QualityEvent<'qualityunavailable'>;
|
|
4114
|
+
/**
|
|
4115
|
+
* Fired when a quality of the track becomes available again.
|
|
4116
|
+
*
|
|
4117
|
+
* @remarks
|
|
4118
|
+
* <br/> - A quality can become unavailable due to a DRM restriction (e.g. HDCP).
|
|
4119
|
+
*/
|
|
4120
|
+
qualityavailable: QualityEvent<'qualityavailable'>;
|
|
4018
4121
|
}
|
|
4019
4122
|
/**
|
|
4020
4123
|
* Represents a media track (audio or video) of a media resource.
|
|
@@ -4781,6 +4884,13 @@ interface SourceConfiguration {
|
|
|
4781
4884
|
* <br/> - Available since v2.21.0.
|
|
4782
4885
|
*/
|
|
4783
4886
|
metadata?: ChromecastMetadataDescription;
|
|
4887
|
+
/**
|
|
4888
|
+
* CMCD configuration.
|
|
4889
|
+
*
|
|
4890
|
+
* @remarks
|
|
4891
|
+
* <br/> - Available since v11.4.0.
|
|
4892
|
+
*/
|
|
4893
|
+
cmcd?: CmcdSourceConfiguration;
|
|
4784
4894
|
}
|
|
4785
4895
|
/**
|
|
4786
4896
|
* Describes the configuration of a player's source.
|
|
@@ -9204,6 +9314,13 @@ interface TheoAdDescription extends AdDescription {
|
|
|
9204
9314
|
* The Google DAI asset key which will be used as a fallback source when THEOads is not supported.
|
|
9205
9315
|
*/
|
|
9206
9316
|
daiAssetKey?: string;
|
|
9317
|
+
/**
|
|
9318
|
+
* The URL of the break manifest.
|
|
9319
|
+
*
|
|
9320
|
+
* @remarks
|
|
9321
|
+
* <br/> - The break manifest describes the upcoming ad breaks in the stream.
|
|
9322
|
+
*/
|
|
9323
|
+
breakManifestUrl?: string;
|
|
9207
9324
|
}
|
|
9208
9325
|
/**
|
|
9209
9326
|
* Describes how and when the layout of a THEOads ad break should be overridden:
|
|
@@ -13942,4 +14059,4 @@ declare function registerContentProtectionIntegration(integrationId: string, key
|
|
|
13942
14059
|
declare const utils: CommonUtils;
|
|
13943
14060
|
|
|
13944
14061
|
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 };
|
|
14062
|
+
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, CmcdConfiguration, CmcdEndpointConfiguration, CmcdSourceConfiguration, 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 };
|