@theoplayer/extended 9.12.0 → 10.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/THEOplayer.chromeless.d.ts +2 -2
- package/THEOplayer.chromeless.esm.js +2 -2
- package/THEOplayer.chromeless.js +3 -3
- package/THEOplayer.common.d.ts +20 -120
- 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 +2 -2
package/THEOplayer.common.d.ts
CHANGED
|
@@ -963,11 +963,17 @@ interface GoogleImaConfiguration {
|
|
|
963
963
|
* Whether to use an ad UI element for clickthrough and displaying other ad UI.
|
|
964
964
|
*
|
|
965
965
|
* @remarks
|
|
966
|
-
* <br/> -
|
|
967
|
-
*
|
|
968
|
-
*
|
|
969
|
-
*
|
|
970
|
-
* <br/> -
|
|
966
|
+
* <br/> - Available since v8.6.0.
|
|
967
|
+
* <br/> - If set to `true`, Google DAI can show additional ad UI elements
|
|
968
|
+
* on top of the player for certain ads, such as a skip button for skippable ads
|
|
969
|
+
* or a specific UI for GDPR compliance.
|
|
970
|
+
* <br/> - If set to `false`, Google DAI ads will only show a basic "Learn More" button.
|
|
971
|
+
* Ads that need additional UI elements will not be played.
|
|
972
|
+
* <br/> - This only applies to Google DAI server-side inserted ads.
|
|
973
|
+
* Client-side ads from Google IMA can always show additional UI elements.
|
|
974
|
+
* <br/> - This flag is enabled by default since v10.0.0.
|
|
975
|
+
*
|
|
976
|
+
* @defaultValue `true` (was `false` in version 9 and lower)
|
|
971
977
|
*/
|
|
972
978
|
useAdUiElementForSsai?: boolean;
|
|
973
979
|
/**
|
|
@@ -1522,12 +1528,6 @@ interface AdBreakEvent<TType extends string> extends Event<TType> {
|
|
|
1522
1528
|
* The ad break.
|
|
1523
1529
|
*/
|
|
1524
1530
|
readonly adBreak: AdBreak;
|
|
1525
|
-
/**
|
|
1526
|
-
* The ad break.
|
|
1527
|
-
*
|
|
1528
|
-
* @deprecated use {@link AdBreakEvent.adBreak}
|
|
1529
|
-
*/
|
|
1530
|
-
readonly ad: AdBreak;
|
|
1531
1531
|
}
|
|
1532
1532
|
/**
|
|
1533
1533
|
* The API for advertisements.
|
|
@@ -1982,14 +1982,6 @@ type CustomAdIntegrationKind = string & {};
|
|
|
1982
1982
|
* @public
|
|
1983
1983
|
*/
|
|
1984
1984
|
type VPAIDMode = 'enabled' | 'insecure' | 'disabled';
|
|
1985
|
-
/**
|
|
1986
|
-
* Describes an ad break request.
|
|
1987
|
-
*
|
|
1988
|
-
* @category Ads
|
|
1989
|
-
* @public
|
|
1990
|
-
* @deprecated Replaced by {@link CsaiAdDescription}.
|
|
1991
|
-
*/
|
|
1992
|
-
type THEOplayerAdDescription = CsaiAdDescription;
|
|
1993
1985
|
/**
|
|
1994
1986
|
* Describes an ad break request.
|
|
1995
1987
|
*
|
|
@@ -2720,22 +2712,6 @@ interface SourceAbrConfiguration {
|
|
|
2720
2712
|
restrictToPlayerSize?: boolean;
|
|
2721
2713
|
}
|
|
2722
2714
|
|
|
2723
|
-
/**
|
|
2724
|
-
* Describes the VR configuration
|
|
2725
|
-
*
|
|
2726
|
-
* @category VR
|
|
2727
|
-
* @public
|
|
2728
|
-
* @deprecated Ignored.
|
|
2729
|
-
*/
|
|
2730
|
-
interface VRPlayerConfiguration {
|
|
2731
|
-
/**
|
|
2732
|
-
* Whether to use the {@link https://immersiveweb.dev/ | WebXR API}.
|
|
2733
|
-
*
|
|
2734
|
-
* @deprecated Ignored, always assumed to be `true`.
|
|
2735
|
-
*/
|
|
2736
|
-
useWebXR?: boolean;
|
|
2737
|
-
}
|
|
2738
|
-
|
|
2739
2715
|
/**
|
|
2740
2716
|
* Object containing values used for the player's retry mechanisms.
|
|
2741
2717
|
*
|
|
@@ -2900,12 +2876,6 @@ interface PlayerConfiguration {
|
|
|
2900
2876
|
* The cast configuration for the player.
|
|
2901
2877
|
*/
|
|
2902
2878
|
cast?: CastConfiguration;
|
|
2903
|
-
/**
|
|
2904
|
-
* The Verizon Media configuration for the player.
|
|
2905
|
-
*
|
|
2906
|
-
* @deprecated Superseded by {@link uplynk}
|
|
2907
|
-
*/
|
|
2908
|
-
verizonMedia?: UplynkConfiguration;
|
|
2909
2879
|
/**
|
|
2910
2880
|
* The Uplynk configuration for the player.
|
|
2911
2881
|
*/
|
|
@@ -2931,12 +2901,6 @@ interface PlayerConfiguration {
|
|
|
2931
2901
|
* <br/> - Used for DASH and LL-HLS streams.
|
|
2932
2902
|
*/
|
|
2933
2903
|
abr?: SourceAbrConfiguration;
|
|
2934
|
-
/**
|
|
2935
|
-
* The vr configuration for the player.
|
|
2936
|
-
*
|
|
2937
|
-
* @deprecated Ignored.
|
|
2938
|
-
*/
|
|
2939
|
-
vr?: VRPlayerConfiguration;
|
|
2940
2904
|
/**
|
|
2941
2905
|
* The retry configuration for the player.
|
|
2942
2906
|
*/
|
|
@@ -3218,9 +3182,8 @@ interface UplynkSource extends BaseSource {
|
|
|
3218
3182
|
/**
|
|
3219
3183
|
* The integration ID of the source, represented by a value from the following list:
|
|
3220
3184
|
* <br/> - `'uplynk'`: The source is an {@link UplynkSource}.
|
|
3221
|
-
* <br/> - `'verizon-media'`: The source is an {@link UplynkSource}. (Deprecated, superseded by `'uplynk'`)
|
|
3222
3185
|
*/
|
|
3223
|
-
integration: 'uplynk'
|
|
3186
|
+
integration: 'uplynk';
|
|
3224
3187
|
/**
|
|
3225
3188
|
* One or multiple asset identifiers for the source.
|
|
3226
3189
|
*
|
|
@@ -4207,10 +4170,6 @@ interface TextTrack extends Track, EventDispatcher<TextTrackEventMap> {
|
|
|
4207
4170
|
*/
|
|
4208
4171
|
interface TheoLiveSource extends TypedSource {
|
|
4209
4172
|
type: 'theolive';
|
|
4210
|
-
/**
|
|
4211
|
-
* @deprecated use {@link TheoLiveSource.type} instead.
|
|
4212
|
-
*/
|
|
4213
|
-
integration?: 'theolive';
|
|
4214
4173
|
}
|
|
4215
4174
|
|
|
4216
4175
|
/**
|
|
@@ -4856,15 +4815,13 @@ interface TypedSource extends BaseSource {
|
|
|
4856
4815
|
type StreamType = 'live' | 'dvr' | 'vod';
|
|
4857
4816
|
/**
|
|
4858
4817
|
* The integration identifier of a source specific to a pre-integration, represented by a value from the following list:
|
|
4859
|
-
* <br/> - `'verizon-media'`: The source is a {@link UplynkSource}. (Deprecated, superseded by `'uplynk'`)
|
|
4860
4818
|
* <br/> - `'mediatailor'`: The source contains the MediaTailor initialization url.
|
|
4861
|
-
* <br/> - `'theolive'`: The source is a {@link TheoLiveSource}. (Deprecated, see {@link TheoLiveSource.integration})
|
|
4862
4819
|
* <br/> - `'uplynk'`: The source is an {@link UplynkSource}.
|
|
4863
4820
|
*
|
|
4864
4821
|
* @category Source
|
|
4865
4822
|
* @public
|
|
4866
4823
|
*/
|
|
4867
|
-
type SourceIntegrationId = '
|
|
4824
|
+
type SourceIntegrationId = 'mediatailor' | 'uplynk';
|
|
4868
4825
|
/**
|
|
4869
4826
|
* The integration identifier of an analytics description, represented by a value from the following list:
|
|
4870
4827
|
* <br/> - `'agama'`: The description is an {@link AgamaConfiguration}
|
|
@@ -9344,16 +9301,6 @@ interface TimeRanges {
|
|
|
9344
9301
|
end(index: number): number;
|
|
9345
9302
|
}
|
|
9346
9303
|
|
|
9347
|
-
/**
|
|
9348
|
-
* Fired when the loading of a THEOlive publication starts.
|
|
9349
|
-
*
|
|
9350
|
-
* @deprecated use {@link DistributionLoadStartEvent} instead.
|
|
9351
|
-
*
|
|
9352
|
-
* @public
|
|
9353
|
-
*/
|
|
9354
|
-
interface PublicationLoadStartEvent extends Event<'publicationloadstart'> {
|
|
9355
|
-
readonly publicationId: string;
|
|
9356
|
-
}
|
|
9357
9304
|
/**
|
|
9358
9305
|
* Fired when the loading of a THEOlive distribution starts.
|
|
9359
9306
|
*
|
|
@@ -9362,18 +9309,6 @@ interface PublicationLoadStartEvent extends Event<'publicationloadstart'> {
|
|
|
9362
9309
|
interface DistributionLoadStartEvent extends Event<'distributionloadstart'> {
|
|
9363
9310
|
readonly distributionId: string;
|
|
9364
9311
|
}
|
|
9365
|
-
/**
|
|
9366
|
-
* Fired when the loading of a THEOlive publication is complete and playback can start. This event is dispatched on publication reloads as well, which
|
|
9367
|
-
* can happen when an error is encountered or the player fallbacks.
|
|
9368
|
-
*
|
|
9369
|
-
* @deprecated use {@link EndpointLoadedEvent} instead.
|
|
9370
|
-
*
|
|
9371
|
-
* @public
|
|
9372
|
-
*/
|
|
9373
|
-
interface PublicationLoadedEvent extends Event<'publicationloaded'> {
|
|
9374
|
-
readonly publicationId: string;
|
|
9375
|
-
readonly channelName: string;
|
|
9376
|
-
}
|
|
9377
9312
|
/**
|
|
9378
9313
|
* Fired when the loading of a THEOlive endpoint is complete and playback can start. This event is dispatched on every endpoint load, when an error
|
|
9379
9314
|
* is encountered and the player recovers by choosing a new one.
|
|
@@ -9386,16 +9321,6 @@ interface EndpointLoadedEvent extends Event<'endpointloaded'> {
|
|
|
9386
9321
|
*/
|
|
9387
9322
|
readonly endpoint: Endpoint;
|
|
9388
9323
|
}
|
|
9389
|
-
/**
|
|
9390
|
-
* Fired when loading a THEOlive publication that cannot be played, for example because the publication is stopped.
|
|
9391
|
-
*
|
|
9392
|
-
* @deprecated use {@link DistributionOfflineEvent} instead.
|
|
9393
|
-
*
|
|
9394
|
-
* @public
|
|
9395
|
-
*/
|
|
9396
|
-
interface PublicationOfflineEvent extends Event<'publicationoffline'> {
|
|
9397
|
-
readonly publicationId: string;
|
|
9398
|
-
}
|
|
9399
9324
|
/**
|
|
9400
9325
|
* Fired when loading a THEOlive distribution that cannot be played, for example because the publication is stopped or is still starting up.
|
|
9401
9326
|
*
|
|
@@ -9436,11 +9361,8 @@ interface ExitBadNetworkModeEvent extends Event<'exitbadnetworkmode'> {
|
|
|
9436
9361
|
* @public
|
|
9437
9362
|
*/
|
|
9438
9363
|
interface TheoLiveApiEventMap {
|
|
9439
|
-
readonly publicationloadstart: PublicationLoadStartEvent;
|
|
9440
9364
|
readonly distributionloadstart: DistributionLoadStartEvent;
|
|
9441
|
-
readonly publicationloaded: PublicationLoadedEvent;
|
|
9442
9365
|
readonly endpointloaded: EndpointLoadedEvent;
|
|
9443
|
-
readonly publicationoffline: PublicationOfflineEvent;
|
|
9444
9366
|
readonly distributionoffline: DistributionOfflineEvent;
|
|
9445
9367
|
readonly intenttofallback: IntentToFallbackEvent;
|
|
9446
9368
|
readonly enterbadnetworkmode: EnterBadNetworkModeEvent;
|
|
@@ -9539,12 +9461,6 @@ interface WebVTTRegion {
|
|
|
9539
9461
|
* The width of the region, as a percentage of the video width.
|
|
9540
9462
|
*/
|
|
9541
9463
|
readonly width: number;
|
|
9542
|
-
/**
|
|
9543
|
-
* The identifier of the region.
|
|
9544
|
-
*
|
|
9545
|
-
* @deprecated Superseded by {@link WebVTTRegion.id}.
|
|
9546
|
-
*/
|
|
9547
|
-
readonly identifier: string;
|
|
9548
9464
|
}
|
|
9549
9465
|
|
|
9550
9466
|
/**
|
|
@@ -9841,6 +9757,12 @@ interface Interstitial {
|
|
|
9841
9757
|
*
|
|
9842
9758
|
*/
|
|
9843
9759
|
duration: number | undefined;
|
|
9760
|
+
/**
|
|
9761
|
+
* The ad tag parameters that are used for this specific ad break.
|
|
9762
|
+
* @remarks
|
|
9763
|
+
* <br/> - The set values are combined and potentially override parameters set on the {@link TheoAdDescription.adTagParameters} or through {@link TheoAds.replaceAdTagParameters}.
|
|
9764
|
+
*/
|
|
9765
|
+
adTagParameters: Record<string, string>;
|
|
9844
9766
|
}
|
|
9845
9767
|
/**
|
|
9846
9768
|
* The layout of the THEOad.
|
|
@@ -9872,12 +9794,6 @@ interface AdBreakInterstitial extends Interstitial {
|
|
|
9872
9794
|
* - <br/> - Only available during ad playback.
|
|
9873
9795
|
*/
|
|
9874
9796
|
ads: readonly Ad[];
|
|
9875
|
-
/**
|
|
9876
|
-
* The ad tag parameters that are used for this specific ad break.
|
|
9877
|
-
* @remarks
|
|
9878
|
-
* <br/> - The set values are combined and potentially override parameters set on the {@link TheoAdDescription.adTagParameters} or through {@link TheoAds.replaceAdTagParameters}.
|
|
9879
|
-
*/
|
|
9880
|
-
adTagParameters: Record<string, string>;
|
|
9881
9797
|
}
|
|
9882
9798
|
/**
|
|
9883
9799
|
* The THEOads interstitial that corresponds with overlay playback.
|
|
@@ -12023,13 +11939,6 @@ interface MediaTailorSource extends TypedSource {
|
|
|
12023
11939
|
* The integration ID of the source.
|
|
12024
11940
|
*/
|
|
12025
11941
|
integration: 'mediatailor';
|
|
12026
|
-
/**
|
|
12027
|
-
* Optional ad parameters to perform client-side ad reporting.
|
|
12028
|
-
* For more information visit https://docs.aws.amazon.com/mediatailor/latest/ug/ad-reporting-client-side.html .
|
|
12029
|
-
*
|
|
12030
|
-
* @deprecated Superseded by `adsParams`.
|
|
12031
|
-
*/
|
|
12032
|
-
adParams?: Record<string, string>;
|
|
12033
11942
|
/**
|
|
12034
11943
|
* Optional ad parameters to perform client-side ad reporting.
|
|
12035
11944
|
* For more information visit https://docs.aws.amazon.com/mediatailor/latest/ug/ad-reporting-client-side.html .
|
|
@@ -12791,15 +12700,6 @@ interface TheoAdDescription extends AdDescription {
|
|
|
12791
12700
|
* Override the layout of all THEOads ad breaks, if set.
|
|
12792
12701
|
*/
|
|
12793
12702
|
overrideLayout?: TheoAdsLayoutOverride;
|
|
12794
|
-
/**
|
|
12795
|
-
* Overrides the ad source of all THEOads ad breaks, if set.
|
|
12796
|
-
*
|
|
12797
|
-
* @remarks
|
|
12798
|
-
* <br/> - Only VOD streams are currently supported
|
|
12799
|
-
*
|
|
12800
|
-
* @internal
|
|
12801
|
-
*/
|
|
12802
|
-
overrideAdSrc?: string;
|
|
12803
12703
|
/**
|
|
12804
12704
|
* The ad tag parameters added to the GAM stream request.
|
|
12805
12705
|
*
|
|
@@ -13781,4 +13681,4 @@ declare function registerContentProtectionIntegration(integrationId: string, key
|
|
|
13781
13681
|
*/
|
|
13782
13682
|
declare const utils: CommonUtils;
|
|
13783
13683
|
|
|
13784
|
-
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, 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, CrossOriginSetting, CsaiAdDescription, CurrentSourceChangeEvent, CustomAdIntegrationKind, CustomTextTrackMap, CustomTextTrackOptions, CustomWebVTTTextTrack, DAIAvailabilityType, DRMConfiguration, DRMTodayDRMConfiguration, DRMTodayIntegrationID, DashPlaybackConfiguration, DateRangeCue, DeliveryType, DeviceBasedTitaniumDRMConfiguration, DimensionChangeEvent, DirectionChangeEvent, DistributionLoadStartEvent, 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, 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, MaybeAsync, MeasurableNetworkEstimator, MediaError, MediaErrorCode, MediaFile, MediaMelonConfiguration, MediaTailorSource, MediaTrack, MediaTrackEventMap, MediaTrackList, 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, PreloadType, Presentation, PresentationEventMap, PresentationMode, PresentationModeChangeEvent, ProgressEvent,
|
|
13684
|
+
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, 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, CrossOriginSetting, CsaiAdDescription, CurrentSourceChangeEvent, CustomAdIntegrationKind, CustomTextTrackMap, CustomTextTrackOptions, CustomWebVTTTextTrack, DAIAvailabilityType, DRMConfiguration, DRMTodayDRMConfiguration, DRMTodayIntegrationID, DashPlaybackConfiguration, DateRangeCue, DeliveryType, DeviceBasedTitaniumDRMConfiguration, DimensionChangeEvent, DirectionChangeEvent, DistributionLoadStartEvent, 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, 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, MaybeAsync, MeasurableNetworkEstimator, MediaError, MediaErrorCode, MediaFile, MediaMelonConfiguration, MediaTailorSource, MediaTrack, MediaTrackEventMap, MediaTrackList, 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, 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, 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, WebVTTCue, WebVTTRegion, WidevineKeySystemConfiguration, XstreamDRMConfiguration, XstreamIntegrationID, YospaceId, YouboraAnalyticsIntegrationID, YouboraOptions, cache, cast, features, players, registerContentProtectionIntegration, utils, version, videojs };
|