@theoplayer/extended 8.14.0 → 9.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 +3 -3
- package/THEOplayer.chromeless.js +3 -3
- package/THEOplayer.common.d.ts +11 -724
- 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
|
@@ -716,28 +716,6 @@ interface AdsManagerLoadedEvent extends Event<'adsmanagerloaded'> {
|
|
|
716
716
|
readonly adsManager: any;
|
|
717
717
|
}
|
|
718
718
|
|
|
719
|
-
/**
|
|
720
|
-
* The THEOads API.
|
|
721
|
-
*
|
|
722
|
-
* @remarks
|
|
723
|
-
* <br/> - Available since v8.2.0.
|
|
724
|
-
*
|
|
725
|
-
* @deprecated Use {@link TheoAds.replaceAdTagParameters} instead
|
|
726
|
-
* @category Ads
|
|
727
|
-
* @public
|
|
728
|
-
*/
|
|
729
|
-
interface LegacyTheoAds {
|
|
730
|
-
/**
|
|
731
|
-
* Replaces all the ad tag parameters used for upcoming ad requests for a live stream.
|
|
732
|
-
*
|
|
733
|
-
* @param adTagParameters - The new ad tag parameters.
|
|
734
|
-
*
|
|
735
|
-
* @remarks
|
|
736
|
-
* <br/> - If set, this value overrides any parameters set on the {@link TheoAdDescription.adTagParameters}.
|
|
737
|
-
*/
|
|
738
|
-
replaceAdTagParameters(adTagParameters?: Record<string, string>): void;
|
|
739
|
-
}
|
|
740
|
-
|
|
741
719
|
/**
|
|
742
720
|
* Represents a VAST creative. It is either a linear or non-linear ad.
|
|
743
721
|
*
|
|
@@ -1544,15 +1522,6 @@ interface Ads extends EventDispatcher<AdsEventMap> {
|
|
|
1544
1522
|
* <br/> - Only available with the feature `'google-dai'`.
|
|
1545
1523
|
*/
|
|
1546
1524
|
readonly dai?: GoogleDAI;
|
|
1547
|
-
/**
|
|
1548
|
-
* The THEOads API.
|
|
1549
|
-
*
|
|
1550
|
-
* @deprecated use {@link TheoAds} instead.
|
|
1551
|
-
*
|
|
1552
|
-
* @remarks
|
|
1553
|
-
* <br/> - Only available with the feature `'theoads'`.
|
|
1554
|
-
*/
|
|
1555
|
-
readonly theoads?: LegacyTheoAds;
|
|
1556
1525
|
/**
|
|
1557
1526
|
* Add an ad break request.
|
|
1558
1527
|
*
|
|
@@ -2444,48 +2413,15 @@ interface GoogleDAITypedSource extends TypedSource {
|
|
|
2444
2413
|
ssai: GoogleDAIVodConfiguration | GoogleDAILiveConfiguration;
|
|
2445
2414
|
}
|
|
2446
2415
|
|
|
2447
|
-
/**
|
|
2448
|
-
* The identifier of the Imagine integration.
|
|
2449
|
-
*
|
|
2450
|
-
* @category Source
|
|
2451
|
-
* @category SSAI
|
|
2452
|
-
* @public
|
|
2453
|
-
*/
|
|
2454
|
-
type ImagineSSAIIntegrationID = 'imagine';
|
|
2455
|
-
/**
|
|
2456
|
-
* Describes the SSAI configuration of the Imagine integration.
|
|
2457
|
-
*
|
|
2458
|
-
* @category Source
|
|
2459
|
-
* @category SSAI
|
|
2460
|
-
* @public
|
|
2461
|
-
*/
|
|
2462
|
-
interface ImagineServerSideAdInsertionConfiguration extends ServerSideAdInsertionConfiguration {
|
|
2463
|
-
/**
|
|
2464
|
-
* {@inheritDoc ServerSideAdInsertionConfiguration.integration}
|
|
2465
|
-
*/
|
|
2466
|
-
integration: ImagineSSAIIntegrationID;
|
|
2467
|
-
}
|
|
2468
|
-
/**
|
|
2469
|
-
* Describes a source of the Imagine integration.
|
|
2470
|
-
*
|
|
2471
|
-
* @category Source
|
|
2472
|
-
* @category SSAI
|
|
2473
|
-
* @public
|
|
2474
|
-
*/
|
|
2475
|
-
interface ImagineTypedSource extends TypedSource {
|
|
2476
|
-
ssai: ImagineServerSideAdInsertionConfiguration;
|
|
2477
|
-
}
|
|
2478
|
-
|
|
2479
2416
|
/**
|
|
2480
2417
|
* The identifier of a server-side ad insertion pre-integration, represented by a value from the following list:
|
|
2481
2418
|
* <br/> - `'google-dai'`: The configuration with this identifier is a {@link GoogleDAIConfiguration}
|
|
2482
|
-
* <br/> - `'imagine'`: The configuration with this identifier is a {@link ImagineServerSideAdInsertionConfiguration}
|
|
2483
2419
|
*
|
|
2484
2420
|
* @category Source
|
|
2485
2421
|
* @category SSAI
|
|
2486
2422
|
* @public
|
|
2487
2423
|
*/
|
|
2488
|
-
type SSAIIntegrationId = GoogleDAISSAIIntegrationID
|
|
2424
|
+
type SSAIIntegrationId = GoogleDAISSAIIntegrationID;
|
|
2489
2425
|
/**
|
|
2490
2426
|
* Represents a configuration for server-side ad insertion (SSAI).
|
|
2491
2427
|
*
|
|
@@ -2517,7 +2453,7 @@ type VRStereoMode = '' | 'horizontal' | 'vertical';
|
|
|
2517
2453
|
* The panorama mode of the VR content, represented by a value from the following list:
|
|
2518
2454
|
* <br/> - `''`: No panorama mode.
|
|
2519
2455
|
* <br/> - `'360'`: The video contains content with a full 360 degree field of view.
|
|
2520
|
-
* <br/> - `'180'`: The video contains content with a 180 degree field of view.
|
|
2456
|
+
* <br/> - `'180'`: The video contains content with a 180 degree field of view.
|
|
2521
2457
|
*
|
|
2522
2458
|
* @category VR
|
|
2523
2459
|
* @public
|
|
@@ -2617,27 +2553,10 @@ interface ChromecastConfiguration {
|
|
|
2617
2553
|
* <br/> - `'play-none'`: Plays none of the ad breaks skipped due to a seek.
|
|
2618
2554
|
* <br/> - `'play-last'`: Plays the last ad break skipped due to a seek.
|
|
2619
2555
|
*
|
|
2620
|
-
* @category Verizon Media
|
|
2621
2556
|
* @category Uplynk
|
|
2622
2557
|
* @public
|
|
2623
2558
|
*/
|
|
2624
2559
|
type SkippedAdStrategy = 'play-all' | 'play-none' | 'play-last';
|
|
2625
|
-
/**
|
|
2626
|
-
* Describes the configuration of the Verizon Media integration.
|
|
2627
|
-
*
|
|
2628
|
-
* @category Verizon Media
|
|
2629
|
-
* @public
|
|
2630
|
-
* @deprecated Superseded by {@link UplynkConfiguration}
|
|
2631
|
-
*/
|
|
2632
|
-
interface VerizonMediaConfiguration extends UplynkConfiguration {
|
|
2633
|
-
/**
|
|
2634
|
-
* The Verizon Media UI configuration.
|
|
2635
|
-
*
|
|
2636
|
-
* @remarks
|
|
2637
|
-
* Only available with the features `'verizon-media'` and `'ui'`.
|
|
2638
|
-
*/
|
|
2639
|
-
ui?: VerizonMediaUiConfiguration;
|
|
2640
|
-
}
|
|
2641
2560
|
/**
|
|
2642
2561
|
* Describes the configuration of the Uplynk integration.
|
|
2643
2562
|
*
|
|
@@ -2670,15 +2589,6 @@ interface UplynkConfiguration {
|
|
|
2670
2589
|
*/
|
|
2671
2590
|
ui?: UplynkUiConfiguration;
|
|
2672
2591
|
}
|
|
2673
|
-
/**
|
|
2674
|
-
* Describes the UI configuration of the Verizon Media integration.
|
|
2675
|
-
*
|
|
2676
|
-
* @category Verizon Media
|
|
2677
|
-
* @public
|
|
2678
|
-
* @deprecated Superseded by {@link UplynkUiConfiguration}
|
|
2679
|
-
*/
|
|
2680
|
-
interface VerizonMediaUiConfiguration extends UplynkUiConfiguration {
|
|
2681
|
-
}
|
|
2682
2592
|
/**
|
|
2683
2593
|
* Describes the UI configuration of the Uplynk integration.
|
|
2684
2594
|
*
|
|
@@ -2753,12 +2663,13 @@ interface SourceAbrConfiguration {
|
|
|
2753
2663
|
*
|
|
2754
2664
|
* @category VR
|
|
2755
2665
|
* @public
|
|
2666
|
+
* @deprecated Ignored.
|
|
2756
2667
|
*/
|
|
2757
2668
|
interface VRPlayerConfiguration {
|
|
2758
2669
|
/**
|
|
2759
2670
|
* Whether to use the {@link https://immersiveweb.dev/ | WebXR API}.
|
|
2760
2671
|
*
|
|
2761
|
-
* @
|
|
2672
|
+
* @deprecated Ignored, always assumed to be `true`.
|
|
2762
2673
|
*/
|
|
2763
2674
|
useWebXR?: boolean;
|
|
2764
2675
|
}
|
|
@@ -2899,7 +2810,7 @@ interface PlayerConfiguration {
|
|
|
2899
2810
|
*
|
|
2900
2811
|
* @deprecated Superseded by {@link uplynk}
|
|
2901
2812
|
*/
|
|
2902
|
-
verizonMedia?:
|
|
2813
|
+
verizonMedia?: UplynkConfiguration;
|
|
2903
2814
|
/**
|
|
2904
2815
|
* The Uplynk configuration for the player.
|
|
2905
2816
|
*/
|
|
@@ -2927,6 +2838,8 @@ interface PlayerConfiguration {
|
|
|
2927
2838
|
abr?: SourceAbrConfiguration;
|
|
2928
2839
|
/**
|
|
2929
2840
|
* The vr configuration for the player.
|
|
2841
|
+
*
|
|
2842
|
+
* @deprecated Ignored.
|
|
2930
2843
|
*/
|
|
2931
2844
|
vr?: VRPlayerConfiguration;
|
|
2932
2845
|
/**
|
|
@@ -3195,15 +3108,6 @@ interface ChromecastMetadataDescription extends MetadataDescription {
|
|
|
3195
3108
|
readonly type?: ChromecastMetadataType;
|
|
3196
3109
|
}
|
|
3197
3110
|
|
|
3198
|
-
/**
|
|
3199
|
-
* Represents a media resource which is found on the Verizon Media Platform.
|
|
3200
|
-
*
|
|
3201
|
-
* @category Source
|
|
3202
|
-
* @category Verizon Media
|
|
3203
|
-
* @public
|
|
3204
|
-
* @deprecated Superseded by {@link UplynkSource}
|
|
3205
|
-
*/
|
|
3206
|
-
type VerizonMediaSource = UplynkSource;
|
|
3207
3111
|
/**
|
|
3208
3112
|
* Represents a media resource which is found on the Uplynk Platform.
|
|
3209
3113
|
*
|
|
@@ -3215,7 +3119,7 @@ interface UplynkSource extends BaseSource {
|
|
|
3215
3119
|
/**
|
|
3216
3120
|
* The integration ID of the source, represented by a value from the following list:
|
|
3217
3121
|
* <br/> - `'uplynk'`: The source is an {@link UplynkSource}.
|
|
3218
|
-
* <br/> - `'verizon-media'`: The source is
|
|
3122
|
+
* <br/> - `'verizon-media'`: The source is an {@link UplynkSource}. (Deprecated, superseded by `'uplynk'`)
|
|
3219
3123
|
*/
|
|
3220
3124
|
integration: 'uplynk' | 'verizon-media';
|
|
3221
3125
|
/**
|
|
@@ -3288,18 +3192,6 @@ interface UplynkSource extends BaseSource {
|
|
|
3288
3192
|
*/
|
|
3289
3193
|
assetInfo?: boolean;
|
|
3290
3194
|
}
|
|
3291
|
-
/**
|
|
3292
|
-
* Represents a unique asset identifier for a Verizon Media asset.
|
|
3293
|
-
*
|
|
3294
|
-
* @remarks
|
|
3295
|
-
* <br/> - This asset identifier determines a unique asset on the Verizon Media Platform.
|
|
3296
|
-
*
|
|
3297
|
-
* @category Source
|
|
3298
|
-
* @category Verizon Media
|
|
3299
|
-
* @public
|
|
3300
|
-
* @deprecated Superseded by {@link UplynkAssetId}
|
|
3301
|
-
*/
|
|
3302
|
-
type VerizonMediaAssetId = UplynkAssetId;
|
|
3303
3195
|
/**
|
|
3304
3196
|
* Represents a unique asset identifier for an Uplynk asset.
|
|
3305
3197
|
*
|
|
@@ -3311,18 +3203,6 @@ type VerizonMediaAssetId = UplynkAssetId;
|
|
|
3311
3203
|
* @public
|
|
3312
3204
|
*/
|
|
3313
3205
|
type UplynkAssetId = string;
|
|
3314
|
-
/**
|
|
3315
|
-
* Represents a combination of user identifier and one or more external identifiers for Verizon Media assets.
|
|
3316
|
-
*
|
|
3317
|
-
* @remarks
|
|
3318
|
-
* <br/> - Each combination of the user identifier and external identifier determines a unique asset on the Verizon Media Platform.
|
|
3319
|
-
*
|
|
3320
|
-
* @category Source
|
|
3321
|
-
* @category Verizon Media
|
|
3322
|
-
* @public
|
|
3323
|
-
* @deprecated Superseded by {@link UplynkExternalId}
|
|
3324
|
-
*/
|
|
3325
|
-
type VerizonMediaExternalId = UplynkExternalId;
|
|
3326
3206
|
/**
|
|
3327
3207
|
* Represents a combination of user identifier and one or more external identifiers for Uplynk assets.
|
|
3328
3208
|
*
|
|
@@ -3343,15 +3223,6 @@ interface UplynkExternalId {
|
|
|
3343
3223
|
*/
|
|
3344
3224
|
externalId: string | string[];
|
|
3345
3225
|
}
|
|
3346
|
-
/**
|
|
3347
|
-
* Describes the configuration of Verizon Media Ping features.
|
|
3348
|
-
*
|
|
3349
|
-
* @category Source
|
|
3350
|
-
* @category Verizon Media
|
|
3351
|
-
* @public
|
|
3352
|
-
* @deprecated Superseded by {@link UplynkPingConfiguration}
|
|
3353
|
-
*/
|
|
3354
|
-
type VerizonMediaPingConfiguration = UplynkPingConfiguration;
|
|
3355
3226
|
/**
|
|
3356
3227
|
* Describes the configuration of Uplynk Ping features.
|
|
3357
3228
|
*
|
|
@@ -3390,18 +3261,6 @@ interface UplynkPingConfiguration {
|
|
|
3390
3261
|
*/
|
|
3391
3262
|
linearAdData?: boolean;
|
|
3392
3263
|
}
|
|
3393
|
-
/**
|
|
3394
|
-
* The type of an asset on the Verizon Media Platform, represented by a value from the following list:
|
|
3395
|
-
* <br/> - `'asset'`: A Video-on-demand content asset.
|
|
3396
|
-
* <br/> - `'channel'`: A Live content channel.
|
|
3397
|
-
* <br/> - `'event'`: A Live event.
|
|
3398
|
-
*
|
|
3399
|
-
* @category Source
|
|
3400
|
-
* @category Verizon Media
|
|
3401
|
-
* @public
|
|
3402
|
-
* @deprecated Superseded by {@link UplynkAssetType}
|
|
3403
|
-
*/
|
|
3404
|
-
type VerizonMediaAssetType = UplynkAssetType;
|
|
3405
3264
|
/**
|
|
3406
3265
|
* The type of an asset on the Uplynk Platform, represented by a value from the following list:
|
|
3407
3266
|
* <br/> - `'asset'`: A Video-on-demand content asset.
|
|
@@ -4275,13 +4134,6 @@ interface MillicastSource extends TypedSource {
|
|
|
4275
4134
|
* @see https://millicast.github.io/millicast-sdk/global.html#DirectorSubscriberOptions
|
|
4276
4135
|
*/
|
|
4277
4136
|
src: string;
|
|
4278
|
-
/**
|
|
4279
|
-
* The name of the Millicast stream to subscribe to.
|
|
4280
|
-
*
|
|
4281
|
-
* @see https://millicast.github.io/millicast-sdk/global.html#DirectorSubscriberOptions
|
|
4282
|
-
* @deprecated use {@link MillicastSource.src} instead
|
|
4283
|
-
*/
|
|
4284
|
-
streamName?: string;
|
|
4285
4137
|
/**
|
|
4286
4138
|
* The Millicast account identifier.
|
|
4287
4139
|
*
|
|
@@ -4503,12 +4355,6 @@ interface SourceConfiguration {
|
|
|
4503
4355
|
* <br/> - Available since v2.21.0.
|
|
4504
4356
|
*/
|
|
4505
4357
|
metadata?: ChromecastMetadataDescription;
|
|
4506
|
-
/**
|
|
4507
|
-
* Whether segments in a HLS manifest should be represented by cues in a metadata text track.
|
|
4508
|
-
*
|
|
4509
|
-
* @deprecated Do not use this feature without consulting THEO Technologies.
|
|
4510
|
-
*/
|
|
4511
|
-
manifestMetadataTrack?: boolean;
|
|
4512
4358
|
}
|
|
4513
4359
|
/**
|
|
4514
4360
|
* Describes the configuration of a player's source.
|
|
@@ -4905,7 +4751,7 @@ interface TypedSource extends BaseSource {
|
|
|
4905
4751
|
type StreamType = 'live' | 'dvr' | 'vod';
|
|
4906
4752
|
/**
|
|
4907
4753
|
* The integration identifier of a source specific to a pre-integration, represented by a value from the following list:
|
|
4908
|
-
* <br/> - `'verizon-media'`: The source is a {@link
|
|
4754
|
+
* <br/> - `'verizon-media'`: The source is a {@link UplynkSource}. (Deprecated, superseded by `'uplynk'`)
|
|
4909
4755
|
* <br/> - `'mediatailor'`: The source contains the MediaTailor initialization url.
|
|
4910
4756
|
* <br/> - `'theolive'`: The source is a {@link TheoLiveSource}. (Deprecated, see {@link TheoLiveSource.integration})
|
|
4911
4757
|
* <br/> - `'uplynk'`: The source is an {@link UplynkSource}.
|
|
@@ -7217,74 +7063,6 @@ interface Metrics {
|
|
|
7217
7063
|
*/
|
|
7218
7064
|
type PreloadType = 'none' | 'metadata' | 'auto' | '';
|
|
7219
7065
|
|
|
7220
|
-
/**
|
|
7221
|
-
* Fired when an event related to the Imagine integration occurs.
|
|
7222
|
-
*
|
|
7223
|
-
* @category SSAI
|
|
7224
|
-
* @category Events
|
|
7225
|
-
* @public
|
|
7226
|
-
*/
|
|
7227
|
-
interface ImagineTrackingEvent extends Event<'start' | 'firstquartile' | 'midpoint' | 'thirdquartile' | 'complete' | 'pause' | 'resume'> {
|
|
7228
|
-
}
|
|
7229
|
-
|
|
7230
|
-
/**
|
|
7231
|
-
* The events fired by the {@link Imagine | Imagine API}.
|
|
7232
|
-
*
|
|
7233
|
-
* @category SSAI
|
|
7234
|
-
* @public
|
|
7235
|
-
*/
|
|
7236
|
-
interface ImagineEventMap {
|
|
7237
|
-
/**
|
|
7238
|
-
* Fired when the ad starts.
|
|
7239
|
-
*/
|
|
7240
|
-
start: ImagineTrackingEvent;
|
|
7241
|
-
/**
|
|
7242
|
-
* Fired when the ad reaches the first quartile.
|
|
7243
|
-
*/
|
|
7244
|
-
firstquartile: ImagineTrackingEvent;
|
|
7245
|
-
/**
|
|
7246
|
-
* Fired when the ad reaches the mid point.
|
|
7247
|
-
*/
|
|
7248
|
-
midpoint: ImagineTrackingEvent;
|
|
7249
|
-
/**
|
|
7250
|
-
* Fired when the ad reaches the third quartile.
|
|
7251
|
-
*/
|
|
7252
|
-
thirdquartile: ImagineTrackingEvent;
|
|
7253
|
-
/**
|
|
7254
|
-
* Fired when the ad is completed.
|
|
7255
|
-
*/
|
|
7256
|
-
complete: ImagineTrackingEvent;
|
|
7257
|
-
/**
|
|
7258
|
-
* Fired when the ad pauses.
|
|
7259
|
-
*/
|
|
7260
|
-
pause: ImagineTrackingEvent;
|
|
7261
|
-
/**
|
|
7262
|
-
* Fired when the ad resumes.
|
|
7263
|
-
*/
|
|
7264
|
-
resume: ImagineTrackingEvent;
|
|
7265
|
-
}
|
|
7266
|
-
/**
|
|
7267
|
-
* The Imagine API.
|
|
7268
|
-
*
|
|
7269
|
-
* @category SSAI
|
|
7270
|
-
* @public
|
|
7271
|
-
*/
|
|
7272
|
-
interface Imagine extends EventDispatcher<ImagineEventMap> {
|
|
7273
|
-
/**
|
|
7274
|
-
* Whether an Imagine ad is playing.
|
|
7275
|
-
*/
|
|
7276
|
-
readonly playing: boolean;
|
|
7277
|
-
}
|
|
7278
|
-
|
|
7279
|
-
/**
|
|
7280
|
-
* Fired when the ad break begins.
|
|
7281
|
-
*
|
|
7282
|
-
* @category Verizon Media
|
|
7283
|
-
* @category Events
|
|
7284
|
-
* @public
|
|
7285
|
-
* @deprecated Superseded by {@link UplynkAdBreakBeginEvent}
|
|
7286
|
-
*/
|
|
7287
|
-
type VerizonMediaAdBreakBeginEvent = UplynkAdBreakBeginEvent;
|
|
7288
7066
|
/**
|
|
7289
7067
|
* Fired when the ad break begins.
|
|
7290
7068
|
*
|
|
@@ -7299,15 +7077,6 @@ interface UplynkAdBreakBeginEvent extends Event<'adbreakbegin'> {
|
|
|
7299
7077
|
readonly adBreak: UplynkAdBreak;
|
|
7300
7078
|
}
|
|
7301
7079
|
|
|
7302
|
-
/**
|
|
7303
|
-
* Fired when the ad break ends.
|
|
7304
|
-
*
|
|
7305
|
-
* @category Verizon Media
|
|
7306
|
-
* @category Events
|
|
7307
|
-
* @public
|
|
7308
|
-
* @deprecated Superseded by {@link UplynkAdBreakEndEvent}
|
|
7309
|
-
*/
|
|
7310
|
-
type VerizonMediaAdBreakEndEvent = UplynkAdBreakEndEvent;
|
|
7311
7080
|
/**
|
|
7312
7081
|
* Fired when the ad break ends.
|
|
7313
7082
|
*
|
|
@@ -7322,15 +7091,6 @@ interface UplynkAdBreakEndEvent extends Event<'adbreakend'> {
|
|
|
7322
7091
|
readonly adBreak: UplynkAdBreak;
|
|
7323
7092
|
}
|
|
7324
7093
|
|
|
7325
|
-
/**
|
|
7326
|
-
* Fired when the ad break is skipped.
|
|
7327
|
-
*
|
|
7328
|
-
* @category Verizon Media
|
|
7329
|
-
* @category Events
|
|
7330
|
-
* @public
|
|
7331
|
-
* @deprecated Superseded by {@link UplynkAdBreakSkipEvent}
|
|
7332
|
-
*/
|
|
7333
|
-
type VerizonMediaAdBreakSkipEvent = UplynkAdBreakSkipEvent;
|
|
7334
7094
|
/**
|
|
7335
7095
|
* Fired when the ad break is skipped.
|
|
7336
7096
|
*
|
|
@@ -7345,15 +7105,6 @@ interface UplynkAdBreakSkipEvent extends Event<'adbreakskip'> {
|
|
|
7345
7105
|
readonly adBreak: UplynkAdBreak;
|
|
7346
7106
|
}
|
|
7347
7107
|
|
|
7348
|
-
/**
|
|
7349
|
-
* Fired when the ad break is updated.
|
|
7350
|
-
*
|
|
7351
|
-
* @category Verizon Media
|
|
7352
|
-
* @category Events
|
|
7353
|
-
* @public
|
|
7354
|
-
* @deprecated Superseded by {@link UplynkUpdateAdBreakEvent}
|
|
7355
|
-
*/
|
|
7356
|
-
type VerizonMediaUpdateAdBreakEvent = UplynkUpdateAdBreakEvent;
|
|
7357
7108
|
/**
|
|
7358
7109
|
* Fired when the ad break is updated.
|
|
7359
7110
|
*
|
|
@@ -7396,15 +7147,6 @@ interface List<T> extends Array<T> {
|
|
|
7396
7147
|
interface EventedList<T, M extends EventMap<StringKeyOf<M>>> extends List<T>, EventDispatcher<M> {
|
|
7397
7148
|
}
|
|
7398
7149
|
|
|
7399
|
-
/**
|
|
7400
|
-
* Fired when an ad begins.
|
|
7401
|
-
*
|
|
7402
|
-
* @category Verizon Media
|
|
7403
|
-
* @category Events
|
|
7404
|
-
* @public
|
|
7405
|
-
* @deprecated Superseded by {@link UplynkAdBeginEvent}
|
|
7406
|
-
*/
|
|
7407
|
-
type VerizonMediaAdBeginEvent = UplynkAdBeginEvent;
|
|
7408
7150
|
/**
|
|
7409
7151
|
* Fired when an ad begins.
|
|
7410
7152
|
*
|
|
@@ -7419,15 +7161,6 @@ interface UplynkAdBeginEvent extends Event<'adbegin'> {
|
|
|
7419
7161
|
readonly ad: UplynkAd;
|
|
7420
7162
|
}
|
|
7421
7163
|
|
|
7422
|
-
/**
|
|
7423
|
-
* Fired when the ad ends.
|
|
7424
|
-
*
|
|
7425
|
-
* @category Verizon Media
|
|
7426
|
-
* @category Events
|
|
7427
|
-
* @public
|
|
7428
|
-
* @deprecated Superseded by {@link UplynkAdEndEvent}
|
|
7429
|
-
*/
|
|
7430
|
-
type VerizonMediaAdEndEvent = UplynkAdEndEvent;
|
|
7431
7164
|
/**
|
|
7432
7165
|
* Fired when the ad ends.
|
|
7433
7166
|
*
|
|
@@ -7442,15 +7175,6 @@ interface UplynkAdEndEvent extends Event<'adend'> {
|
|
|
7442
7175
|
readonly ad: UplynkAd;
|
|
7443
7176
|
}
|
|
7444
7177
|
|
|
7445
|
-
/**
|
|
7446
|
-
* Fired when the ad reaches the first quartile.
|
|
7447
|
-
*
|
|
7448
|
-
* @category Verizon Media
|
|
7449
|
-
* @category Events
|
|
7450
|
-
* @public
|
|
7451
|
-
* @deprecated Superseded by {@link UplynkAdFirstQuartileEvent}
|
|
7452
|
-
*/
|
|
7453
|
-
type VerizonMediaAdFirstQuartileEvent = UplynkAdFirstQuartileEvent;
|
|
7454
7178
|
/**
|
|
7455
7179
|
* Fired when the ad reaches the first quartile.
|
|
7456
7180
|
*
|
|
@@ -7464,15 +7188,6 @@ interface UplynkAdFirstQuartileEvent extends Event<'adfirstquartile'> {
|
|
|
7464
7188
|
*/
|
|
7465
7189
|
readonly ad: UplynkAd;
|
|
7466
7190
|
}
|
|
7467
|
-
/**
|
|
7468
|
-
* Fired when the ad reaches the mid point.
|
|
7469
|
-
*
|
|
7470
|
-
* @category Verizon Media
|
|
7471
|
-
* @category Events
|
|
7472
|
-
* @public
|
|
7473
|
-
* @deprecated Superseded by {@link UplynkAdMidpointEvent}
|
|
7474
|
-
*/
|
|
7475
|
-
type VerizonMediaAdMidpointEvent = UplynkAdMidpointEvent;
|
|
7476
7191
|
/**
|
|
7477
7192
|
* Fired when the ad reaches the mid point.
|
|
7478
7193
|
*
|
|
@@ -7486,15 +7201,6 @@ interface UplynkAdMidpointEvent extends Event<'admidpoint'> {
|
|
|
7486
7201
|
*/
|
|
7487
7202
|
readonly ad: UplynkAd;
|
|
7488
7203
|
}
|
|
7489
|
-
/**
|
|
7490
|
-
* Fired when the ad reaches the third quartile.
|
|
7491
|
-
*
|
|
7492
|
-
* @category Verizon Media
|
|
7493
|
-
* @category Events
|
|
7494
|
-
* @public
|
|
7495
|
-
* @deprecated Superseded by {@link UplynkAdThirdQuartileEvent}
|
|
7496
|
-
*/
|
|
7497
|
-
type VerizonMediaAdThirdQuartileEvent = UplynkAdThirdQuartileEvent;
|
|
7498
7204
|
/**
|
|
7499
7205
|
* Fired when the ad reaches the third quartile.
|
|
7500
7206
|
*
|
|
@@ -7508,15 +7214,6 @@ interface UplynkAdThirdQuartileEvent extends Event<'adthirdquartile'> {
|
|
|
7508
7214
|
*/
|
|
7509
7215
|
readonly ad: UplynkAd;
|
|
7510
7216
|
}
|
|
7511
|
-
/**
|
|
7512
|
-
* Fired when the ad is completed.
|
|
7513
|
-
*
|
|
7514
|
-
* @category Verizon Media
|
|
7515
|
-
* @category Events
|
|
7516
|
-
* @public
|
|
7517
|
-
* @deprecated Superseded by {@link UplynkAdCompleteEvent}
|
|
7518
|
-
*/
|
|
7519
|
-
type VerizonMediaAdCompleteEvent = UplynkAdCompleteEvent;
|
|
7520
7217
|
/**
|
|
7521
7218
|
* Fired when the ad is completed.
|
|
7522
7219
|
*
|
|
@@ -7531,14 +7228,6 @@ interface UplynkAdCompleteEvent extends Event<'adcomplete'> {
|
|
|
7531
7228
|
readonly ad: UplynkAd;
|
|
7532
7229
|
}
|
|
7533
7230
|
|
|
7534
|
-
/**
|
|
7535
|
-
* The events fired by the {@link VerizonMediaAd}.
|
|
7536
|
-
*
|
|
7537
|
-
* @category Verizon Media
|
|
7538
|
-
* @public
|
|
7539
|
-
* @deprecated Superseded by {@link UplynkAdEventMap}
|
|
7540
|
-
*/
|
|
7541
|
-
type VerizonMediaAdEventMap = UplynkAdEventMap;
|
|
7542
7231
|
/**
|
|
7543
7232
|
* The events fired by the {@link UplynkAd}.
|
|
7544
7233
|
*
|
|
@@ -7571,14 +7260,6 @@ interface UplynkAdEventMap {
|
|
|
7571
7260
|
*/
|
|
7572
7261
|
adcomplete: UplynkAdCompleteEvent;
|
|
7573
7262
|
}
|
|
7574
|
-
/**
|
|
7575
|
-
* Represents a Verizon Media ad.
|
|
7576
|
-
*
|
|
7577
|
-
* @category Verizon Media
|
|
7578
|
-
* @public
|
|
7579
|
-
* @deprecated Superseded by {@link UplynkAd}
|
|
7580
|
-
*/
|
|
7581
|
-
type VerizonMediaAd = UplynkAd;
|
|
7582
7263
|
/**
|
|
7583
7264
|
* Represents an Uplynk ad.
|
|
7584
7265
|
*
|
|
@@ -7656,15 +7337,6 @@ interface UplynkAd extends EventDispatcher<UplynkAdEventMap> {
|
|
|
7656
7337
|
readonly freeWheelParameters: Record<string, string>;
|
|
7657
7338
|
}
|
|
7658
7339
|
|
|
7659
|
-
/**
|
|
7660
|
-
* Fired when the ad is removed.
|
|
7661
|
-
*
|
|
7662
|
-
* @category Verizon Media
|
|
7663
|
-
* @category Events
|
|
7664
|
-
* @public
|
|
7665
|
-
* @deprecated Superseded by {@link UplynkRemoveAdEvent}
|
|
7666
|
-
*/
|
|
7667
|
-
type VerizonMediaRemoveAdEvent = UplynkRemoveAdEvent;
|
|
7668
7340
|
/**
|
|
7669
7341
|
* Fired when the ad is removed.
|
|
7670
7342
|
*
|
|
@@ -7676,14 +7348,6 @@ interface UplynkRemoveAdEvent extends Event<'removead'> {
|
|
|
7676
7348
|
readonly ad: UplynkAd;
|
|
7677
7349
|
}
|
|
7678
7350
|
|
|
7679
|
-
/**
|
|
7680
|
-
* Events fired by the {@link VerizonMediaAdList}.
|
|
7681
|
-
*
|
|
7682
|
-
* @category Verizon Media
|
|
7683
|
-
* @public
|
|
7684
|
-
* @deprecated Superseded by {@link UplynkAdListEventMap}
|
|
7685
|
-
*/
|
|
7686
|
-
type VerizonMediaAdListEventMap = UplynkAdListEventMap;
|
|
7687
7351
|
/**
|
|
7688
7352
|
* Events fired by the {@link UplynkAdList}.
|
|
7689
7353
|
*
|
|
@@ -7696,14 +7360,6 @@ interface UplynkAdListEventMap {
|
|
|
7696
7360
|
*/
|
|
7697
7361
|
removead: UplynkRemoveAdEvent;
|
|
7698
7362
|
}
|
|
7699
|
-
/**
|
|
7700
|
-
* List of Verizon Media ads.
|
|
7701
|
-
*
|
|
7702
|
-
* @category Verizon Media
|
|
7703
|
-
* @public
|
|
7704
|
-
* @deprecated Superseded by {@link UplynkAdList}
|
|
7705
|
-
*/
|
|
7706
|
-
type VerizonMediaAdList = UplynkAdList;
|
|
7707
7363
|
/**
|
|
7708
7364
|
* List of Uplynk ads.
|
|
7709
7365
|
*
|
|
@@ -7713,14 +7369,6 @@ type VerizonMediaAdList = UplynkAdList;
|
|
|
7713
7369
|
interface UplynkAdList extends EventedList<UplynkAd, UplynkAdListEventMap> {
|
|
7714
7370
|
}
|
|
7715
7371
|
|
|
7716
|
-
/**
|
|
7717
|
-
* The events fired by the {@link VerizonMediaAdBreak}.
|
|
7718
|
-
*
|
|
7719
|
-
* @category Verizon Media
|
|
7720
|
-
* @public
|
|
7721
|
-
* @deprecated Superseded by {@link UplynkAdBreakEventMap}
|
|
7722
|
-
*/
|
|
7723
|
-
type VerizonMediaAdBreakEventMap = UplynkAdBreakEventMap;
|
|
7724
7372
|
/**
|
|
7725
7373
|
* The events fired by the {@link UplynkAdBreak}.
|
|
7726
7374
|
*
|
|
@@ -7745,14 +7393,6 @@ interface UplynkAdBreakEventMap {
|
|
|
7745
7393
|
*/
|
|
7746
7394
|
updateadbreak: UplynkUpdateAdBreakEvent;
|
|
7747
7395
|
}
|
|
7748
|
-
/**
|
|
7749
|
-
* Represents a Verizon Media ad break.
|
|
7750
|
-
*
|
|
7751
|
-
* @category Verizon Media
|
|
7752
|
-
* @public
|
|
7753
|
-
* @deprecated Superseded by {@link UplynkAdBreak}
|
|
7754
|
-
*/
|
|
7755
|
-
type VerizonMediaAdBreak = UplynkAdBreak;
|
|
7756
7396
|
/**
|
|
7757
7397
|
* Represents an Uplynk ad break.
|
|
7758
7398
|
*
|
|
@@ -7794,20 +7434,11 @@ interface UplynkAdBreak extends EventDispatcher<UplynkAdBreakEventMap> {
|
|
|
7794
7434
|
* @example
|
|
7795
7435
|
* To be able to skip the first ad after 10 seconds use: `10`.
|
|
7796
7436
|
*
|
|
7797
|
-
* @defaultValue The {@link
|
|
7437
|
+
* @defaultValue The {@link UplynkConfiguration.defaultSkipOffset}.
|
|
7798
7438
|
*/
|
|
7799
7439
|
skipOffset: number;
|
|
7800
7440
|
}
|
|
7801
7441
|
|
|
7802
|
-
/**
|
|
7803
|
-
* Fired when the ad break is added.
|
|
7804
|
-
*
|
|
7805
|
-
* @category Verizon Media
|
|
7806
|
-
* @category Events
|
|
7807
|
-
* @public
|
|
7808
|
-
* @deprecated Superseded by {@link UplynkAddAdBreakEvent}
|
|
7809
|
-
*/
|
|
7810
|
-
type VerizonMediaAddAdBreakEvent = UplynkAddAdBreakEvent;
|
|
7811
7442
|
/**
|
|
7812
7443
|
* Fired when the ad break is added.
|
|
7813
7444
|
*
|
|
@@ -7822,15 +7453,6 @@ interface UplynkAddAdBreakEvent extends Event<'addadbreak'> {
|
|
|
7822
7453
|
readonly adBreak: UplynkAdBreak;
|
|
7823
7454
|
}
|
|
7824
7455
|
|
|
7825
|
-
/**
|
|
7826
|
-
* Fired when the ad break is removed.
|
|
7827
|
-
*
|
|
7828
|
-
* @category Verizon Media
|
|
7829
|
-
* @category Events
|
|
7830
|
-
* @public
|
|
7831
|
-
* @deprecated Superseded by {@link UplynkRemoveAdBreakEvent}
|
|
7832
|
-
*/
|
|
7833
|
-
type VerizonMediaRemoveAdBreakEvent = UplynkRemoveAdBreakEvent;
|
|
7834
7456
|
/**
|
|
7835
7457
|
* Fired when the ad break is removed.
|
|
7836
7458
|
*
|
|
@@ -7845,14 +7467,6 @@ interface UplynkRemoveAdBreakEvent extends Event<'removeadbreak'> {
|
|
|
7845
7467
|
readonly adBreak: UplynkAdBreak;
|
|
7846
7468
|
}
|
|
7847
7469
|
|
|
7848
|
-
/**
|
|
7849
|
-
* The events fired by the {@link VerizonMediaAdBreakList}.
|
|
7850
|
-
*
|
|
7851
|
-
* @category Verizon Media
|
|
7852
|
-
* @public
|
|
7853
|
-
* @deprecated Superseded by {@link UplynkAdBreakListEventMap}
|
|
7854
|
-
*/
|
|
7855
|
-
type VerizonMediaAdBreakListEventMap = UplynkAdBreakListEventMap;
|
|
7856
7470
|
/**
|
|
7857
7471
|
* The events fired by the {@link UplynkAdBreakList}.
|
|
7858
7472
|
*
|
|
@@ -7869,14 +7483,6 @@ interface UplynkAdBreakListEventMap {
|
|
|
7869
7483
|
*/
|
|
7870
7484
|
removeadbreak: UplynkRemoveAdBreakEvent;
|
|
7871
7485
|
}
|
|
7872
|
-
/**
|
|
7873
|
-
* List with Verizon Media ad breaks.
|
|
7874
|
-
*
|
|
7875
|
-
* @category Verizon Media
|
|
7876
|
-
* @public
|
|
7877
|
-
* @deprecated Superseded by {@link UplynkAdBreakList}
|
|
7878
|
-
*/
|
|
7879
|
-
type VerizonMediaAdBreakList = UplynkAdBreakList;
|
|
7880
7486
|
/**
|
|
7881
7487
|
* List with Uplynk ad breaks.
|
|
7882
7488
|
*
|
|
@@ -7886,14 +7492,6 @@ type VerizonMediaAdBreakList = UplynkAdBreakList;
|
|
|
7886
7492
|
interface UplynkAdBreakList extends EventedList<UplynkAdBreak, UplynkAdBreakListEventMap> {
|
|
7887
7493
|
}
|
|
7888
7494
|
|
|
7889
|
-
/**
|
|
7890
|
-
* The Verizon Media ads API.
|
|
7891
|
-
*
|
|
7892
|
-
* @category Verizon Media
|
|
7893
|
-
* @public
|
|
7894
|
-
* @deprecated Superseded by {@link UplynkAds}
|
|
7895
|
-
*/
|
|
7896
|
-
type VerizonMediaAds = UplynkAds;
|
|
7897
7495
|
/**
|
|
7898
7496
|
* The Uplynk ads API.
|
|
7899
7497
|
*
|
|
@@ -7925,14 +7523,6 @@ interface UplynkAds {
|
|
|
7925
7523
|
skip(): void;
|
|
7926
7524
|
}
|
|
7927
7525
|
|
|
7928
|
-
/**
|
|
7929
|
-
* Represents a Verizon Media response with advertisement information for VOD assets.
|
|
7930
|
-
*
|
|
7931
|
-
* @category Verizon Media
|
|
7932
|
-
* @public
|
|
7933
|
-
* @deprecated Superseded by {@link UplynkResponseVodAds}
|
|
7934
|
-
*/
|
|
7935
|
-
type VerizonMediaResponseVodAds = UplynkResponseVodAds;
|
|
7936
7526
|
/**
|
|
7937
7527
|
* Represents an Uplynk response with advertisement information for VOD assets.
|
|
7938
7528
|
*
|
|
@@ -7956,14 +7546,6 @@ interface UplynkResponseVodAds {
|
|
|
7956
7546
|
*/
|
|
7957
7547
|
placeholderOffsets?: UplynkResponseVodAdPlaceholder[];
|
|
7958
7548
|
}
|
|
7959
|
-
/**
|
|
7960
|
-
* Represents a Verizon Media response with ad break information for VOD assets.
|
|
7961
|
-
*
|
|
7962
|
-
* @category Verizon Media
|
|
7963
|
-
* @public
|
|
7964
|
-
* @deprecated Superseded by {@link UplynkResponseVodAdBreak}
|
|
7965
|
-
*/
|
|
7966
|
-
type VerizonMediaResponseVodAdBreak = UplynkResponseVodAdBreak;
|
|
7967
7549
|
/**
|
|
7968
7550
|
* Represents an Uplynk response with ad break information for VOD assets.
|
|
7969
7551
|
*
|
|
@@ -8003,14 +7585,6 @@ interface UplynkResponseVodAdBreak {
|
|
|
8003
7585
|
*/
|
|
8004
7586
|
events: Record<string, string[]>;
|
|
8005
7587
|
}
|
|
8006
|
-
/**
|
|
8007
|
-
* The Verizon Media response with ad information for VOD assets.
|
|
8008
|
-
*
|
|
8009
|
-
* @category Verizon Media
|
|
8010
|
-
* @public
|
|
8011
|
-
* @deprecated Superseded by {@link UplynkResponseVodAd}
|
|
8012
|
-
*/
|
|
8013
|
-
type VerizonMediaResponseVodAd = UplynkResponseVodAd;
|
|
8014
7588
|
/**
|
|
8015
7589
|
* The Uplynk response with ad information for VOD assets.
|
|
8016
7590
|
*
|
|
@@ -8079,14 +7653,6 @@ interface UplynkResponseVodAd {
|
|
|
8079
7653
|
*/
|
|
8080
7654
|
events: Record<string, string[]>;
|
|
8081
7655
|
}
|
|
8082
|
-
/**
|
|
8083
|
-
* Represents the offset of a Verizon Media ad break.
|
|
8084
|
-
*
|
|
8085
|
-
* @category Verizon Media
|
|
8086
|
-
* @public
|
|
8087
|
-
* @deprecated Superseded by {@link UplynkResponseVodAdBreakOffset}
|
|
8088
|
-
*/
|
|
8089
|
-
type VerizonMediaResponseVodAdBreakOffset = UplynkResponseVodAdBreakOffset;
|
|
8090
7656
|
/**
|
|
8091
7657
|
* Represents the offset of an Uplynk ad break.
|
|
8092
7658
|
*
|
|
@@ -8103,19 +7669,6 @@ interface UplynkResponseVodAdBreakOffset {
|
|
|
8103
7669
|
*/
|
|
8104
7670
|
timeOffset: number;
|
|
8105
7671
|
}
|
|
8106
|
-
/**
|
|
8107
|
-
* Represents a Verizon Media response with a placeholder for an ad for VOD assets.
|
|
8108
|
-
*
|
|
8109
|
-
* @remarks
|
|
8110
|
-
* A placeholder is an ad which
|
|
8111
|
-
* <br/> - is a short blank video for non-video ads (e.g. VPAID ads).
|
|
8112
|
-
* <br/> - is a system asset which is potentially subject to change.
|
|
8113
|
-
*
|
|
8114
|
-
* @category Verizon Media
|
|
8115
|
-
* @public
|
|
8116
|
-
* @deprecated Superseded by {@link UplynkResponseVodAdPlaceholder}
|
|
8117
|
-
*/
|
|
8118
|
-
type VerizonMediaResponseVodAdPlaceholder = UplynkResponseVodAdPlaceholder;
|
|
8119
7672
|
/**
|
|
8120
7673
|
* Represents an Uplynk response with a placeholder for an ad for VOD assets.
|
|
8121
7674
|
*
|
|
@@ -8146,16 +7699,6 @@ interface UplynkResponseVodAdPlaceholder {
|
|
|
8146
7699
|
endTime: number;
|
|
8147
7700
|
}
|
|
8148
7701
|
|
|
8149
|
-
/**
|
|
8150
|
-
* The response type of the Verizon Media Preplay request, represented by a value from the following list:
|
|
8151
|
-
* <br/> - `'vod'`
|
|
8152
|
-
* <br/> - `'live'`
|
|
8153
|
-
*
|
|
8154
|
-
* @category Verizon Media
|
|
8155
|
-
* @public
|
|
8156
|
-
* @deprecated Superseded by {@link UplynkPreplayResponseType}
|
|
8157
|
-
*/
|
|
8158
|
-
type VerizonMediaPreplayResponseType = UplynkPreplayResponseType;
|
|
8159
7702
|
/**
|
|
8160
7703
|
* The response type of the Uplynk Preplay request, represented by a value from the following list:
|
|
8161
7704
|
* <br/> - `'vod'`
|
|
@@ -8165,14 +7708,6 @@ type VerizonMediaPreplayResponseType = UplynkPreplayResponseType;
|
|
|
8165
7708
|
* @public
|
|
8166
7709
|
*/
|
|
8167
7710
|
type UplynkPreplayResponseType = 'vod' | 'live';
|
|
8168
|
-
/**
|
|
8169
|
-
* Type of a Verizon Media Preplay response.
|
|
8170
|
-
*
|
|
8171
|
-
* @category Verizon Media
|
|
8172
|
-
* @public
|
|
8173
|
-
* @deprecated Superseded by {@link UplynkPreplayResponse}
|
|
8174
|
-
*/
|
|
8175
|
-
type VerizonMediaPreplayResponse = UplynkPreplayResponse;
|
|
8176
7711
|
/**
|
|
8177
7712
|
* Type of an Uplynk Preplay response.
|
|
8178
7713
|
*
|
|
@@ -8180,14 +7715,6 @@ type VerizonMediaPreplayResponse = UplynkPreplayResponse;
|
|
|
8180
7715
|
* @public
|
|
8181
7716
|
*/
|
|
8182
7717
|
type UplynkPreplayResponse = UplynkPreplayVodResponse | UplynkPreplayLiveResponse;
|
|
8183
|
-
/**
|
|
8184
|
-
* Represents a Verizon Media Preplay base response.
|
|
8185
|
-
*
|
|
8186
|
-
* @category Verizon Media
|
|
8187
|
-
* @public
|
|
8188
|
-
* @deprecated Superseded by {@link UplynkPreplayBaseResponse}
|
|
8189
|
-
*/
|
|
8190
|
-
type VerizonMediaPreplayBaseResponse = UplynkPreplayBaseResponse;
|
|
8191
7718
|
/**
|
|
8192
7719
|
* Represents an Uplynk Preplay base response.
|
|
8193
7720
|
*
|
|
@@ -8227,14 +7754,6 @@ interface UplynkPreplayBaseResponse {
|
|
|
8227
7754
|
*/
|
|
8228
7755
|
drm?: UplynkResponseDrm;
|
|
8229
7756
|
}
|
|
8230
|
-
/**
|
|
8231
|
-
* Represents a Verizon Media DRM response.
|
|
8232
|
-
*
|
|
8233
|
-
* @category Verizon Media
|
|
8234
|
-
* @public
|
|
8235
|
-
* @deprecated Superseded by {@link UplynkResponseDrm}
|
|
8236
|
-
*/
|
|
8237
|
-
type VerizonMediaResponseDrm = UplynkResponseDrm;
|
|
8238
7757
|
/**
|
|
8239
7758
|
* Represents an Uplynk DRM response.
|
|
8240
7759
|
*
|
|
@@ -8259,14 +7778,6 @@ interface UplynkResponseDrm {
|
|
|
8259
7778
|
*/
|
|
8260
7779
|
playreadyLicenseURL?: string;
|
|
8261
7780
|
}
|
|
8262
|
-
/**
|
|
8263
|
-
* Represents a Verizon Media Preplay response for VOD assets.
|
|
8264
|
-
*
|
|
8265
|
-
* @category Verizon Media
|
|
8266
|
-
* @public
|
|
8267
|
-
* @deprecated Superseded by {@link UplynkPreplayVodResponse}
|
|
8268
|
-
*/
|
|
8269
|
-
type VerizonMediaPreplayVodResponse = UplynkPreplayVodResponse;
|
|
8270
7781
|
/**
|
|
8271
7782
|
* Represents an Uplynk Preplay response for VOD assets.
|
|
8272
7783
|
*
|
|
@@ -8292,14 +7803,6 @@ interface UplynkPreplayVodResponse extends UplynkPreplayBaseResponse {
|
|
|
8292
7803
|
*/
|
|
8293
7804
|
interstitialURL: string | null | undefined;
|
|
8294
7805
|
}
|
|
8295
|
-
/**
|
|
8296
|
-
* Represents a Verizon Media Preplay response for live assets.
|
|
8297
|
-
*
|
|
8298
|
-
* @category Verizon Media
|
|
8299
|
-
* @public
|
|
8300
|
-
* @deprecated Superseded by {@link UplynkPreplayLiveResponse}
|
|
8301
|
-
*/
|
|
8302
|
-
type VerizonMediaPreplayLiveResponse = UplynkPreplayLiveResponse;
|
|
8303
7806
|
/**
|
|
8304
7807
|
* Represents an Uplynk Preplay response for live assets.
|
|
8305
7808
|
*
|
|
@@ -8313,14 +7816,6 @@ interface UplynkPreplayLiveResponse extends UplynkPreplayBaseResponse {
|
|
|
8313
7816
|
type: 'live';
|
|
8314
7817
|
}
|
|
8315
7818
|
|
|
8316
|
-
/**
|
|
8317
|
-
* Fired when a Preplay response is received.
|
|
8318
|
-
*
|
|
8319
|
-
* @category Verizon Media
|
|
8320
|
-
* @public
|
|
8321
|
-
* @deprecated Superseded by {@link UplynkPreplayResponseEvent}
|
|
8322
|
-
*/
|
|
8323
|
-
type VerizonMediaPreplayResponseEvent = UplynkPreplayResponseEvent;
|
|
8324
7819
|
/**
|
|
8325
7820
|
* Fired when a Preplay response is received.
|
|
8326
7821
|
*
|
|
@@ -8334,17 +7829,6 @@ interface UplynkPreplayResponseEvent extends Event<'preplayresponse'> {
|
|
|
8334
7829
|
readonly response: UplynkPreplayResponse;
|
|
8335
7830
|
}
|
|
8336
7831
|
|
|
8337
|
-
/**
|
|
8338
|
-
* Represents a Verizon Media Asset Info Response.
|
|
8339
|
-
*
|
|
8340
|
-
* @remarks
|
|
8341
|
-
* <br/> - See {@link https://docs.vdms.com/video/#Develop/AssetInfo.htm%3FTocPath%3DDevelop%7CClient%2520(Media%2520Player)%7C_____1 | Asset Info}.
|
|
8342
|
-
*
|
|
8343
|
-
* @category Verizon Media
|
|
8344
|
-
* @public
|
|
8345
|
-
* @deprecated Superseded by {@link UplynkAssetInfoResponse}
|
|
8346
|
-
*/
|
|
8347
|
-
type VerizonMediaAssetInfoResponse = UplynkAssetInfoResponse;
|
|
8348
7832
|
/**
|
|
8349
7833
|
* Represents an Uplynk Asset Info Response.
|
|
8350
7834
|
*
|
|
@@ -8490,7 +7974,6 @@ interface UplynkAssetInfoResponse {
|
|
|
8490
7974
|
* @remarks
|
|
8491
7975
|
* <br/> - See {@link https://api-docs.uplynk.com/index.html#Setup/Boundaries-Setup-Playback.htm | Boundaries }
|
|
8492
7976
|
*
|
|
8493
|
-
* @category Verizon Media
|
|
8494
7977
|
* @category Uplynk
|
|
8495
7978
|
* @public
|
|
8496
7979
|
*/
|
|
@@ -8498,7 +7981,6 @@ type Boundary = BoundaryC3 | BoundaryC7 | BoundaryHalftime;
|
|
|
8498
7981
|
/**
|
|
8499
7982
|
* Represents the information of an ad boundary.
|
|
8500
7983
|
*
|
|
8501
|
-
* @category Verizon Media
|
|
8502
7984
|
* @category Uplynk
|
|
8503
7985
|
* @public
|
|
8504
7986
|
*/
|
|
@@ -8515,7 +7997,6 @@ interface BoundaryInfo {
|
|
|
8515
7997
|
/**
|
|
8516
7998
|
* Represents the boundary of an ad that is relevant for up to three days after the original airing.
|
|
8517
7999
|
*
|
|
8518
|
-
* @category Verizon Media
|
|
8519
8000
|
* @category Uplynk
|
|
8520
8001
|
* @public
|
|
8521
8002
|
*/
|
|
@@ -8525,7 +8006,6 @@ interface BoundaryC3 {
|
|
|
8525
8006
|
/**
|
|
8526
8007
|
* Represents the boundary of an ad that is relevant for up to seven days after the original airing.
|
|
8527
8008
|
*
|
|
8528
|
-
* @category Verizon Media
|
|
8529
8009
|
* @category Uplynk
|
|
8530
8010
|
* @public
|
|
8531
8011
|
*/
|
|
@@ -8535,7 +8015,6 @@ interface BoundaryC7 {
|
|
|
8535
8015
|
/**
|
|
8536
8016
|
* Represents the boundary that identifies special content.
|
|
8537
8017
|
*
|
|
8538
|
-
* @category Verizon Media
|
|
8539
8018
|
* @category Uplynk
|
|
8540
8019
|
* @public
|
|
8541
8020
|
*/
|
|
@@ -8545,7 +8024,6 @@ interface BoundaryHalftime {
|
|
|
8545
8024
|
/**
|
|
8546
8025
|
* Represents the resolution of an Uplynk thumbnail.
|
|
8547
8026
|
*
|
|
8548
|
-
* @category Verizon Media
|
|
8549
8027
|
* @category Uplynk
|
|
8550
8028
|
* @public
|
|
8551
8029
|
*/
|
|
@@ -8577,27 +8055,6 @@ interface ThumbnailResolution {
|
|
|
8577
8055
|
*/
|
|
8578
8056
|
height?: number;
|
|
8579
8057
|
}
|
|
8580
|
-
/**
|
|
8581
|
-
* The TV rating of an asset, represented by a value from the following list:
|
|
8582
|
-
* <br/> - `-1` (NOT_AVAILABLE)
|
|
8583
|
-
* <br/> - `0` (NOT_APPLICABLE)
|
|
8584
|
-
* <br/> - `1` (TV_Y)
|
|
8585
|
-
* <br/> - `2` (TV_Y7)
|
|
8586
|
-
* <br/> - `3` (TV_G)
|
|
8587
|
-
* <br/> - `4` (TV_PG)
|
|
8588
|
-
* <br/> - `5` (TV_14)
|
|
8589
|
-
* <br/> - `6` (TV_MA)
|
|
8590
|
-
* <br/> - `7` (NOT_RATED)
|
|
8591
|
-
*
|
|
8592
|
-
* @remarks
|
|
8593
|
-
* In the online documentation the value for 0 is also "NOT RATED". Since this is counter-intuitive, we have assumed
|
|
8594
|
-
* this to be erronous and have modeled this according to the Movie Ratings, with 0 being "NOT APPLICABLE".
|
|
8595
|
-
*
|
|
8596
|
-
* @category Verizon Media
|
|
8597
|
-
* @public
|
|
8598
|
-
* @deprecated Superseded by {@link UplynkAssetTvRating}
|
|
8599
|
-
*/
|
|
8600
|
-
type VerizonMediaAssetTvRating = UplynkAssetTvRating;
|
|
8601
8058
|
/**
|
|
8602
8059
|
* The TV rating of an asset, represented by a value from the following list:
|
|
8603
8060
|
* <br/> - `-1` (NOT_AVAILABLE)
|
|
@@ -8618,23 +8075,6 @@ type VerizonMediaAssetTvRating = UplynkAssetTvRating;
|
|
|
8618
8075
|
* @public
|
|
8619
8076
|
*/
|
|
8620
8077
|
type UplynkAssetTvRating = -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
8621
|
-
/**
|
|
8622
|
-
* The movie rating of an asset, represented by a value from the following list:
|
|
8623
|
-
* <br/> - `-1` (NOT_AVAILABLE)
|
|
8624
|
-
* <br/> - `0` (NOT_APPLICABLE)
|
|
8625
|
-
* <br/> - `1` (G)
|
|
8626
|
-
* <br/> - `2` (PG)
|
|
8627
|
-
* <br/> - `3` (PG_13)
|
|
8628
|
-
* <br/> - `4` (R)
|
|
8629
|
-
* <br/> - `5` (NC_17)
|
|
8630
|
-
* <br/> - `6` (X)
|
|
8631
|
-
* <br/> - `7` (NOT_RATED)
|
|
8632
|
-
*
|
|
8633
|
-
* @category Verizon Media
|
|
8634
|
-
* @public
|
|
8635
|
-
* @deprecated Superseded by {@link UplynkAssetMovieRating}
|
|
8636
|
-
*/
|
|
8637
|
-
type VerizonMediaAssetMovieRating = UplynkAssetMovieRating;
|
|
8638
8078
|
/**
|
|
8639
8079
|
* The movie rating of an asset, represented by a value from the following list:
|
|
8640
8080
|
* <br/> - `-1` (NOT_AVAILABLE)
|
|
@@ -8652,15 +8092,6 @@ type VerizonMediaAssetMovieRating = UplynkAssetMovieRating;
|
|
|
8652
8092
|
*/
|
|
8653
8093
|
type UplynkAssetMovieRating = -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
8654
8094
|
|
|
8655
|
-
/**
|
|
8656
|
-
* Fired when an asset info response is received.
|
|
8657
|
-
*
|
|
8658
|
-
* @category Verizon Media
|
|
8659
|
-
* @category Events
|
|
8660
|
-
* @public
|
|
8661
|
-
* @deprecated Superseded by {@link UplynkAssetInfoResponseEvent}
|
|
8662
|
-
*/
|
|
8663
|
-
type VerizonMediaAssetInfoResponseEvent = UplynkAssetInfoResponseEvent;
|
|
8664
8095
|
/**
|
|
8665
8096
|
* Fired when an asset info response is received.
|
|
8666
8097
|
*
|
|
@@ -8675,14 +8106,6 @@ interface UplynkAssetInfoResponseEvent extends Event<'assetinforesponse'> {
|
|
|
8675
8106
|
readonly response: UplynkAssetInfoResponse;
|
|
8676
8107
|
}
|
|
8677
8108
|
|
|
8678
|
-
/**
|
|
8679
|
-
* Represents a Verizon Media response with advertisement information for live assets.
|
|
8680
|
-
*
|
|
8681
|
-
* @category Verizon Media
|
|
8682
|
-
* @public
|
|
8683
|
-
* @deprecated Superseded by {@link UplynkResponseLiveAds}
|
|
8684
|
-
*/
|
|
8685
|
-
type VerizonMediaResponseLiveAds = UplynkResponseLiveAds;
|
|
8686
8109
|
/**
|
|
8687
8110
|
* Represents an Uplynk response with advertisement information for live assets.
|
|
8688
8111
|
*
|
|
@@ -8698,14 +8121,6 @@ interface UplynkResponseLiveAds {
|
|
|
8698
8121
|
*/
|
|
8699
8122
|
breaks: UplynkResponseLiveAdBreak[];
|
|
8700
8123
|
}
|
|
8701
|
-
/**
|
|
8702
|
-
* Represents a Verizon Media response for live ad breaks.
|
|
8703
|
-
*
|
|
8704
|
-
* @category Verizon Media
|
|
8705
|
-
* @public
|
|
8706
|
-
* @deprecated Superseded by {@link UplynkResponseLiveAdBreak}
|
|
8707
|
-
*/
|
|
8708
|
-
type VerizonMediaResponseLiveAdBreak = UplynkResponseLiveAdBreak;
|
|
8709
8124
|
/**
|
|
8710
8125
|
* Represents an Uplynk response for live ad breaks.
|
|
8711
8126
|
*
|
|
@@ -8763,14 +8178,6 @@ interface UplynkResponseLiveAdBreak {
|
|
|
8763
8178
|
*/
|
|
8764
8179
|
events: Record<string, string[]>;
|
|
8765
8180
|
}
|
|
8766
|
-
/**
|
|
8767
|
-
* Represents a Verizon Media response with live ads.
|
|
8768
|
-
*
|
|
8769
|
-
* @category Verizon Media
|
|
8770
|
-
* @public
|
|
8771
|
-
* @deprecated Superseded by {@link UplynkResponseLiveAd}
|
|
8772
|
-
*/
|
|
8773
|
-
type VerizonMediaResponseLiveAd = UplynkResponseLiveAd;
|
|
8774
8181
|
/**
|
|
8775
8182
|
* Represents an Uplynk response with live ads.
|
|
8776
8183
|
*
|
|
@@ -8839,17 +8246,6 @@ interface UplynkResponseLiveAd {
|
|
|
8839
8246
|
fw_parameters?: Record<string, string>;
|
|
8840
8247
|
}
|
|
8841
8248
|
|
|
8842
|
-
/**
|
|
8843
|
-
* Represents a Verizon Media Ping response.
|
|
8844
|
-
*
|
|
8845
|
-
* @remarks
|
|
8846
|
-
* <br/> - See {@link https://docs.vdms.com/video/#Develop/Pingv2.htm%3FTocPath%3DDevelop%7CClient%2520(Media%2520Player)%7C_____3 | Ping API (Version 2)}.
|
|
8847
|
-
*
|
|
8848
|
-
* @category Verizon Media
|
|
8849
|
-
* @public
|
|
8850
|
-
* @deprecated Superseded by {@link UplynkPingResponse}
|
|
8851
|
-
*/
|
|
8852
|
-
type VerizonMediaPingResponse = UplynkPingResponse;
|
|
8853
8249
|
/**
|
|
8854
8250
|
* Represents an Uplynk Ping response.
|
|
8855
8251
|
*
|
|
@@ -8888,15 +8284,6 @@ interface UplynkPingResponse {
|
|
|
8888
8284
|
error?: string;
|
|
8889
8285
|
}
|
|
8890
8286
|
|
|
8891
|
-
/**
|
|
8892
|
-
* Fired when a Ping response is received.
|
|
8893
|
-
*
|
|
8894
|
-
* @category Verizon Media
|
|
8895
|
-
* @category Events
|
|
8896
|
-
* @public
|
|
8897
|
-
* @deprecated Superseded by {@link UplynkPingResponseEvent}
|
|
8898
|
-
*/
|
|
8899
|
-
type VerizonMediaPingResponseEvent = UplynkPingResponseEvent;
|
|
8900
8287
|
/**
|
|
8901
8288
|
* Fired when a Ping response is received.
|
|
8902
8289
|
*
|
|
@@ -8911,15 +8298,6 @@ interface UplynkPingResponseEvent extends Event<'pingresponse'> {
|
|
|
8911
8298
|
readonly response: UplynkPingResponse;
|
|
8912
8299
|
}
|
|
8913
8300
|
|
|
8914
|
-
/**
|
|
8915
|
-
* Fired when an error or invalid response is received from the Ping API.
|
|
8916
|
-
*
|
|
8917
|
-
* @category Verizon Media
|
|
8918
|
-
* @category Events
|
|
8919
|
-
* @public
|
|
8920
|
-
* @deprecated Superseded by {@link UplynkPingErrorEvent}
|
|
8921
|
-
*/
|
|
8922
|
-
type VerizonMediaPingErrorEvent = UplynkPingErrorEvent;
|
|
8923
8301
|
/**
|
|
8924
8302
|
* Fired when an error or invalid response is received from the Ping API.
|
|
8925
8303
|
*
|
|
@@ -8934,14 +8312,6 @@ interface UplynkPingErrorEvent extends Event<'pingerror'> {
|
|
|
8934
8312
|
readonly error: string;
|
|
8935
8313
|
}
|
|
8936
8314
|
|
|
8937
|
-
/**
|
|
8938
|
-
* Represents a Verizon Media asset.
|
|
8939
|
-
*
|
|
8940
|
-
* @category Verizon Media
|
|
8941
|
-
* @public
|
|
8942
|
-
* @deprecated Superseded by {@link UplynkAsset}
|
|
8943
|
-
*/
|
|
8944
|
-
type VerizonMediaAsset = UplynkAsset;
|
|
8945
8315
|
/**
|
|
8946
8316
|
* Represents an Uplynk asset.
|
|
8947
8317
|
*
|
|
@@ -9078,15 +8448,6 @@ interface UplynkAsset {
|
|
|
9078
8448
|
assetId: string;
|
|
9079
8449
|
}
|
|
9080
8450
|
|
|
9081
|
-
/**
|
|
9082
|
-
* Fired when an asset is added.
|
|
9083
|
-
*
|
|
9084
|
-
* @category Verizon Media
|
|
9085
|
-
* @category Events
|
|
9086
|
-
* @public
|
|
9087
|
-
* @deprecated Superseded by {@link UplynkAddAssetEvent}
|
|
9088
|
-
*/
|
|
9089
|
-
type VerizonMediaAddAssetEvent = UplynkAddAssetEvent;
|
|
9090
8451
|
/**
|
|
9091
8452
|
* Fired when an asset is added.
|
|
9092
8453
|
*
|
|
@@ -9101,15 +8462,6 @@ interface UplynkAddAssetEvent extends Event<'addasset'> {
|
|
|
9101
8462
|
readonly asset: UplynkAsset;
|
|
9102
8463
|
}
|
|
9103
8464
|
|
|
9104
|
-
/**
|
|
9105
|
-
* Fired when an asset is removed.
|
|
9106
|
-
*
|
|
9107
|
-
* @category Verizon Media
|
|
9108
|
-
* @category Events
|
|
9109
|
-
* @public
|
|
9110
|
-
* @deprecated Superseded by {@link UplynkRemoveAssetEvent}
|
|
9111
|
-
*/
|
|
9112
|
-
type VerizonMediaRemoveAssetEvent = UplynkRemoveAssetEvent;
|
|
9113
8465
|
/**
|
|
9114
8466
|
* Fired when an asset is removed.
|
|
9115
8467
|
*
|
|
@@ -9124,14 +8476,6 @@ interface UplynkRemoveAssetEvent extends Event<'removeasset'> {
|
|
|
9124
8476
|
readonly asset: UplynkAsset;
|
|
9125
8477
|
}
|
|
9126
8478
|
|
|
9127
|
-
/**
|
|
9128
|
-
* The events fired by the {@link VerizonMediaAssetList}.
|
|
9129
|
-
*
|
|
9130
|
-
* @category Verizon Media
|
|
9131
|
-
* @public
|
|
9132
|
-
* @deprecated Superseded by {@link UplynkAssetEventMap}
|
|
9133
|
-
*/
|
|
9134
|
-
type VerizonMediaAssetEventMap = UplynkAssetEventMap;
|
|
9135
8479
|
/**
|
|
9136
8480
|
* The events fired by the {@link UplynkAssetList}.
|
|
9137
8481
|
*
|
|
@@ -9148,14 +8492,6 @@ interface UplynkAssetEventMap {
|
|
|
9148
8492
|
*/
|
|
9149
8493
|
removeasset: UplynkRemoveAssetEvent;
|
|
9150
8494
|
}
|
|
9151
|
-
/**
|
|
9152
|
-
* List of Verizon Media assets.
|
|
9153
|
-
*
|
|
9154
|
-
* @category Verizon Media
|
|
9155
|
-
* @public
|
|
9156
|
-
* @deprecated Superseded by {@link UplynkAssetList}
|
|
9157
|
-
*/
|
|
9158
|
-
type VerizonMediaAssetList = UplynkAssetList;
|
|
9159
8495
|
/**
|
|
9160
8496
|
* List of Uplynk assets.
|
|
9161
8497
|
*
|
|
@@ -9165,14 +8501,6 @@ type VerizonMediaAssetList = UplynkAssetList;
|
|
|
9165
8501
|
interface UplynkAssetList extends EventedList<UplynkAsset, UplynkAssetEventMap> {
|
|
9166
8502
|
}
|
|
9167
8503
|
|
|
9168
|
-
/**
|
|
9169
|
-
* The events fired by the {@link VerizonMedia | Verizon Media API}.
|
|
9170
|
-
*
|
|
9171
|
-
* @category Verizon Media
|
|
9172
|
-
* @public
|
|
9173
|
-
* @deprecated Superseded by {@link UplynkEventMap}.
|
|
9174
|
-
*/
|
|
9175
|
-
type VerizonMediaEventMap = UplynkEventMap;
|
|
9176
8504
|
/**
|
|
9177
8505
|
* The events fired by the {@link Uplynk | Uplynk API}.
|
|
9178
8506
|
*
|
|
@@ -9197,17 +8525,6 @@ interface UplynkEventMap {
|
|
|
9197
8525
|
*/
|
|
9198
8526
|
pingerror: UplynkPingErrorEvent;
|
|
9199
8527
|
}
|
|
9200
|
-
/**
|
|
9201
|
-
* The Verizon Media API.
|
|
9202
|
-
*
|
|
9203
|
-
* @remarks
|
|
9204
|
-
* <br/> - Only available with the feature 'verizonmedia'.
|
|
9205
|
-
*
|
|
9206
|
-
* @category Verizon Media
|
|
9207
|
-
* @public
|
|
9208
|
-
* @deprecated Superseded by {@link Uplynk}.
|
|
9209
|
-
*/
|
|
9210
|
-
type VerizonMedia = Uplynk;
|
|
9211
8528
|
/**
|
|
9212
8529
|
* The Uplynk API.
|
|
9213
8530
|
*
|
|
@@ -10910,13 +10227,6 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
|
|
|
10910
10227
|
* <br/> - Only available with the feature `'ads'`.
|
|
10911
10228
|
*/
|
|
10912
10229
|
readonly ads?: Ads;
|
|
10913
|
-
/**
|
|
10914
|
-
* The Imagine API.
|
|
10915
|
-
*
|
|
10916
|
-
* @remarks
|
|
10917
|
-
* <br/> - Only available with the feature `'imagine'`.
|
|
10918
|
-
*/
|
|
10919
|
-
imagine?: Imagine;
|
|
10920
10230
|
/**
|
|
10921
10231
|
* The cast API.
|
|
10922
10232
|
*
|
|
@@ -10942,14 +10252,6 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
|
|
|
10942
10252
|
* The visibility API.
|
|
10943
10253
|
*/
|
|
10944
10254
|
readonly visibility: Visibility;
|
|
10945
|
-
/**
|
|
10946
|
-
* The Verizon Media API.
|
|
10947
|
-
*
|
|
10948
|
-
* @remarks
|
|
10949
|
-
* <br/> - Only available with the feature `'verizonmedia'`.
|
|
10950
|
-
* @deprecated Superseded by `uplynk`.
|
|
10951
|
-
*/
|
|
10952
|
-
readonly verizonMedia?: VerizonMedia;
|
|
10953
10255
|
/**
|
|
10954
10256
|
* The Uplynk API.
|
|
10955
10257
|
*
|
|
@@ -13224,13 +12526,6 @@ interface TheoAdDescription extends AdDescription {
|
|
|
13224
12526
|
* The integration of the ad break.
|
|
13225
12527
|
*/
|
|
13226
12528
|
integration: 'theoads';
|
|
13227
|
-
/** // TODO Move to internal api
|
|
13228
|
-
* For SGAI, this should be configured with the signaling server base URI.
|
|
13229
|
-
*
|
|
13230
|
-
* If configured, the player will attempt to sideload the modified manifest from the signaling server separate from the source manifest.
|
|
13231
|
-
* If not configured, the player will assume that the ad markers are part of the source manifest.
|
|
13232
|
-
*/
|
|
13233
|
-
sources?: string;
|
|
13234
12529
|
/**
|
|
13235
12530
|
* Default GAM network code to use for ad requests.
|
|
13236
12531
|
*
|
|
@@ -14191,14 +13486,6 @@ interface LayoutChangeEvent extends Event<'layoutchange'> {
|
|
|
14191
13486
|
* @public
|
|
14192
13487
|
*/
|
|
14193
13488
|
declare const version: string;
|
|
14194
|
-
/**
|
|
14195
|
-
* The player suite version of the THEOplayer SDK.
|
|
14196
|
-
*
|
|
14197
|
-
* @category API
|
|
14198
|
-
* @public
|
|
14199
|
-
* @deprecated Use {@link version | THEOplayer.version} instead.
|
|
14200
|
-
*/
|
|
14201
|
-
declare const playerSuiteVersion: string;
|
|
14202
13489
|
/**
|
|
14203
13490
|
* The features included in the THEOplayer SDK.
|
|
14204
13491
|
*
|
|
@@ -14257,4 +13544,4 @@ declare function registerContentProtectionIntegration(integrationId: string, key
|
|
|
14257
13544
|
*/
|
|
14258
13545
|
declare const utils: CommonUtils;
|
|
14259
13546
|
|
|
14260
|
-
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, 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, DurationChangeEvent, EdgeStyle, EmptiedEvent, EmsgCue, EncryptedEvent, EndedEvent, EnterBadNetworkModeEvent, ErrorCategory, ErrorCode, ErrorEvent, Event, EventDispatcher, EventListener, EventMap, EventStreamCue, EventedList, ExitBadNetworkModeEvent, ExpressPlayDRMConfiguration, ExpressPlayIntegrationID, EzdrmDRMConfiguration, EzdrmIntegrationID, FairPlayKeySystemConfiguration, FreeWheelAdDescription, FreeWheelAdUnitType, FreeWheelCue, FullscreenOptions$1 as FullscreenOptions, Geo, GlobalCast, GlobalChromecast, GoogleDAI, GoogleDAIConfiguration, GoogleDAILiveConfiguration, GoogleDAISSAIIntegrationID, GoogleDAITypedSource, GoogleDAIVodConfiguration, GoogleImaAd, GoogleImaConfiguration, HTTPHeaders, HespApi, HespApiEventMap, HespMediaType, HespSourceConfiguration, HespTypedSource, HlsDiscontinuityAlignment, HlsPlaybackConfiguration, ID3AttachedPicture, ID3BaseFrame, ID3Comments, ID3CommercialFrame, ID3Cue, ID3Frame, ID3GenericEncapsulatedObject, ID3InvolvedPeopleList, ID3PositionSynchronisationFrame, ID3PrivateFrame, ID3SynchronizedLyricsText, ID3TermsOfUse, ID3Text, ID3UniqueFileIdentifier, ID3Unknown, ID3UnsynchronisedLyricsTextTranscription, ID3UrlLink, ID3UserDefinedText, ID3UserDefinedUrlLink, ID3Yospace, IMAAdDescription, Imagine, ImagineEventMap, ImagineSSAIIntegrationID, ImagineServerSideAdInsertionConfiguration, ImagineTrackingEvent, ImagineTypedSource, IntentToFallbackEvent, InterceptableRequest, InterceptableResponse, Interstitial, InterstitialEvent, InterstitialType, IrdetoDRMConfiguration, IrdetoIntegrationID, JoinStrategy, KeyOSDRMConfiguration, KeyOSFairplayKeySystemConfiguration, KeyOSIntegrationID, KeyOSKeySystemConfiguration, KeySystemConfiguration, KeySystemId, Latencies, LatencyConfiguration, LatencyManager, LayoutChangeEvent, LegacyTheoAds, LicenseRequest, LicenseResponse, LicenseType, LinearAd, List, LoadedDataEvent, LoadedMetadataEvent, MaybeAsync, MeasurableNetworkEstimator, MediaError, MediaErrorCode, MediaFile, MediaMelonConfiguration, MediaTailorSource, MediaTrack, MediaTrackEventMap, MediaTrackList, MediaType, MetadataDescription, Metrics, MillicastMetadataCue, MillicastSource, MoatAnalyticsIntegrationID, MoatConfiguration, MultiViewPlayer, MultiViewPlayerEventMap, MultiViewPlayerLayout, MutedAutoplayConfiguration, Network, NetworkEstimator, NetworkEstimatorController, NetworkEventMap, NetworkInterceptorController, NodeStyleVoidCallback, NonLinearAd, OverlayInterstitial, OverlayPosition, OverlaySize, PauseEvent, PiPConfiguration, PiPPosition, PlayEvent, PlayReadyKeySystemConfiguration, PlayerConfiguration, PlayerEventMap, PlayerList, PlayingEvent, PreloadType, Presentation, PresentationEventMap, PresentationMode, PresentationModeChangeEvent, ProgressEvent, PublicationLoadStartEvent, PublicationLoadedEvent, PublicationOfflineEvent, Quality, QualityEvent, QualityEventMap, QualityList, RateChangeEvent, ReadyStateChangeEvent, RelatedChangeEvent, RelatedContent, RelatedContentEventMap, RelatedContentSource, RelatedHideEvent, RelatedShowEvent, RemoveCachingTaskEvent, RemoveTrackEvent, RemoveViewEvent, Representation, RepresentationChangeEvent, Request, RequestBody, RequestInit, RequestInterceptor, RequestLike, RequestMeasurer, RequestMethod, RequestSubType, RequestType, ResponseBody, ResponseInit, ResponseInterceptor, ResponseLike, ResponseType, RetryConfiguration, SSAIIntegrationId, SeamlessPeriodSwitchStrategy, SeamlessSwitchStrategy, SeekedEvent, SeekingEvent, ServerSideAdInsertionConfiguration, ServerSideAdIntegrationController, ServerSideAdIntegrationFactory, ServerSideAdIntegrationHandler, SkippedAdStrategy, SmartSightConfiguration, SmartSightIntegrationID, Source, SourceAbrConfiguration, SourceChangeEvent, SourceConfiguration, SourceDescription, SourceIntegrationId, SourceLatencyConfiguration, Sources, SpotXAdDescription, SpotxData, SpotxQueryParameter, StateChangeEvent, StereoChangeEvent, StreamOneAnalyticsIntegrationID, StreamOneConfiguration, StreamType, StringKeyOf, StylePropertyRecord, SupportedCustomTextTrackCueTypes, THEOplayerAdDescription, 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, VRPlayerConfiguration, VRState, VRStereoMode, VTTAlignSetting, VTTDirectionSetting, VTTLine, VTTLineAlignSetting, VTTPosition, VTTPositionAlignSetting, VTTScrollSetting, VendorCast, VendorCastEventMap, VerimatrixDRMConfiguration, VerimatrixIntegrationID, VerizonMedia, VerizonMediaAd, VerizonMediaAdBeginEvent, VerizonMediaAdBreak, VerizonMediaAdBreakBeginEvent, VerizonMediaAdBreakEndEvent, VerizonMediaAdBreakEventMap, VerizonMediaAdBreakList, VerizonMediaAdBreakListEventMap, VerizonMediaAdBreakSkipEvent, VerizonMediaAdCompleteEvent, VerizonMediaAdEndEvent, VerizonMediaAdEventMap, VerizonMediaAdFirstQuartileEvent, VerizonMediaAdList, VerizonMediaAdListEventMap, VerizonMediaAdMidpointEvent, VerizonMediaAdThirdQuartileEvent, VerizonMediaAddAdBreakEvent, VerizonMediaAddAssetEvent, VerizonMediaAds, VerizonMediaAsset, VerizonMediaAssetEventMap, VerizonMediaAssetId, VerizonMediaAssetInfoResponse, VerizonMediaAssetInfoResponseEvent, VerizonMediaAssetList, VerizonMediaAssetMovieRating, VerizonMediaAssetTvRating, VerizonMediaAssetType, VerizonMediaConfiguration, VerizonMediaEventMap, VerizonMediaExternalId, VerizonMediaPingConfiguration, VerizonMediaPingErrorEvent, VerizonMediaPingResponse, VerizonMediaPingResponseEvent, VerizonMediaPreplayBaseResponse, VerizonMediaPreplayLiveResponse, VerizonMediaPreplayResponse, VerizonMediaPreplayResponseEvent, VerizonMediaPreplayResponseType, VerizonMediaPreplayVodResponse, VerizonMediaRemoveAdBreakEvent, VerizonMediaRemoveAdEvent, VerizonMediaRemoveAssetEvent, VerizonMediaResponseDrm, VerizonMediaResponseLiveAd, VerizonMediaResponseLiveAdBreak, VerizonMediaResponseLiveAds, VerizonMediaResponseVodAd, VerizonMediaResponseVodAdBreak, VerizonMediaResponseVodAdBreakOffset, VerizonMediaResponseVodAdPlaceholder, VerizonMediaResponseVodAds, VerizonMediaSource, VerizonMediaUiConfiguration, VerizonMediaUpdateAdBreakEvent, VideoFrameCallbackMetadata, VideoFrameRequestCallback, VideoQuality, View, ViewChangeEvent, ViewPositionChangeEvent, VimondDRMConfiguration, VimondIntegrationID, Visibility, VisibilityObserver, VisibilityObserverCallback, VoidPromiseCallback, VolumeChangeEvent, VudrmDRMConfiguration, VudrmIntegrationID, WaitUntilCallback, WaitingEvent, WebAudio, WebVTTCue, WebVTTRegion, WidevineKeySystemConfiguration, XstreamDRMConfiguration, XstreamIntegrationID, YospaceId, YouboraAnalyticsIntegrationID, YouboraOptions, cache, cast, features, playerSuiteVersion, players, registerContentProtectionIntegration, utils, version, videojs };
|
|
13547
|
+
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, 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, DurationChangeEvent, EdgeStyle, EmptiedEvent, EmsgCue, EncryptedEvent, EndedEvent, EnterBadNetworkModeEvent, ErrorCategory, ErrorCode, ErrorEvent, Event, EventDispatcher, EventListener, EventMap, EventStreamCue, EventedList, ExitBadNetworkModeEvent, ExpressPlayDRMConfiguration, ExpressPlayIntegrationID, EzdrmDRMConfiguration, EzdrmIntegrationID, FairPlayKeySystemConfiguration, FreeWheelAdDescription, FreeWheelAdUnitType, FreeWheelCue, FullscreenOptions$1 as FullscreenOptions, Geo, GlobalCast, GlobalChromecast, GoogleDAI, GoogleDAIConfiguration, GoogleDAILiveConfiguration, GoogleDAISSAIIntegrationID, GoogleDAITypedSource, GoogleDAIVodConfiguration, GoogleImaAd, GoogleImaConfiguration, HTTPHeaders, HespApi, HespApiEventMap, 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, MillicastMetadataCue, MillicastSource, MoatAnalyticsIntegrationID, MoatConfiguration, MultiViewPlayer, MultiViewPlayerEventMap, MultiViewPlayerLayout, MutedAutoplayConfiguration, Network, NetworkEstimator, NetworkEstimatorController, NetworkEventMap, NetworkInterceptorController, NodeStyleVoidCallback, NonLinearAd, OverlayInterstitial, OverlayPosition, OverlaySize, PauseEvent, PiPConfiguration, PiPPosition, PlayEvent, PlayReadyKeySystemConfiguration, PlayerConfiguration, PlayerEventMap, PlayerList, PlayingEvent, PreloadType, Presentation, PresentationEventMap, PresentationMode, PresentationModeChangeEvent, ProgressEvent, PublicationLoadStartEvent, PublicationLoadedEvent, PublicationOfflineEvent, Quality, QualityEvent, QualityEventMap, QualityList, RateChangeEvent, ReadyStateChangeEvent, RelatedChangeEvent, RelatedContent, RelatedContentEventMap, RelatedContentSource, RelatedHideEvent, RelatedShowEvent, RemoveCachingTaskEvent, RemoveTrackEvent, RemoveViewEvent, Representation, RepresentationChangeEvent, Request, RequestBody, RequestInit, RequestInterceptor, RequestLike, RequestMeasurer, RequestMethod, RequestSubType, RequestType, ResponseBody, ResponseInit, ResponseInterceptor, ResponseLike, ResponseType, RetryConfiguration, SSAIIntegrationId, SeamlessPeriodSwitchStrategy, SeamlessSwitchStrategy, SeekedEvent, SeekingEvent, ServerSideAdInsertionConfiguration, ServerSideAdIntegrationController, ServerSideAdIntegrationFactory, ServerSideAdIntegrationHandler, SkippedAdStrategy, SmartSightConfiguration, SmartSightIntegrationID, Source, SourceAbrConfiguration, SourceChangeEvent, SourceConfiguration, SourceDescription, SourceIntegrationId, SourceLatencyConfiguration, Sources, SpotXAdDescription, SpotxData, SpotxQueryParameter, StateChangeEvent, StereoChangeEvent, StreamOneAnalyticsIntegrationID, StreamOneConfiguration, StreamType, StringKeyOf, StylePropertyRecord, SupportedCustomTextTrackCueTypes, THEOplayerAdDescription, 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, VRPlayerConfiguration, VRState, VRStereoMode, VTTAlignSetting, VTTDirectionSetting, VTTLine, VTTLineAlignSetting, VTTPosition, VTTPositionAlignSetting, VTTScrollSetting, 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 };
|