@theoplayer/extended 8.11.0 → 8.12.1
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 +1024 -217
- 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/ui.css +1 -1
package/THEOplayer.common.d.ts
CHANGED
|
@@ -722,16 +722,17 @@ interface AdsManagerLoadedEvent extends Event<'adsmanagerloaded'> {
|
|
|
722
722
|
* @remarks
|
|
723
723
|
* <br/> - Available since v8.2.0.
|
|
724
724
|
*
|
|
725
|
+
* @deprecated Use {@link TheoAds.replaceAdTagParameters} instead
|
|
725
726
|
* @category Ads
|
|
726
727
|
* @public
|
|
727
728
|
*/
|
|
728
|
-
interface
|
|
729
|
+
interface LegacyTheoAds {
|
|
729
730
|
/**
|
|
730
731
|
* Replaces all the ad tag parameters used for upcoming ad requests for a live stream.
|
|
731
732
|
*
|
|
732
733
|
* @param adTagParameters - The new ad tag parameters.
|
|
733
734
|
*
|
|
734
|
-
* @
|
|
735
|
+
* @remarks
|
|
735
736
|
* <br/> - If set, this value overrides any parameters set on the {@link TheoAdDescription.adTagParameters}.
|
|
736
737
|
*/
|
|
737
738
|
replaceAdTagParameters(adTagParameters?: Record<string, string>): void;
|
|
@@ -1424,10 +1425,6 @@ interface AdsEventMap {
|
|
|
1424
1425
|
* <br/> - only available in the Google IMA integration.
|
|
1425
1426
|
*/
|
|
1426
1427
|
adsmanagerloaded: AdsManagerLoadedEvent;
|
|
1427
|
-
/**
|
|
1428
|
-
* @internal
|
|
1429
|
-
*/
|
|
1430
|
-
overlaybegin: Event<'overlaybegin'>;
|
|
1431
1428
|
}
|
|
1432
1429
|
/**
|
|
1433
1430
|
* Base type for events related to a single ad.
|
|
@@ -1514,10 +1511,12 @@ interface Ads extends EventDispatcher<AdsEventMap> {
|
|
|
1514
1511
|
/**
|
|
1515
1512
|
* The THEOads API.
|
|
1516
1513
|
*
|
|
1514
|
+
* @deprecated use {@link TheoAds} instead.
|
|
1515
|
+
*
|
|
1517
1516
|
* @remarks
|
|
1518
1517
|
* <br/> - Only available with the feature `'theoads'`.
|
|
1519
1518
|
*/
|
|
1520
|
-
readonly theoads?:
|
|
1519
|
+
readonly theoads?: LegacyTheoAds;
|
|
1521
1520
|
/**
|
|
1522
1521
|
* Add an ad break request.
|
|
1523
1522
|
*
|
|
@@ -2583,6 +2582,7 @@ interface ChromecastConfiguration {
|
|
|
2583
2582
|
* <br/> - `'play-last'`: Plays the last ad break skipped due to a seek.
|
|
2584
2583
|
*
|
|
2585
2584
|
* @category Verizon Media
|
|
2585
|
+
* @category Uplynk
|
|
2586
2586
|
* @public
|
|
2587
2587
|
*/
|
|
2588
2588
|
type SkippedAdStrategy = 'play-all' | 'play-none' | 'play-last';
|
|
@@ -2591,8 +2591,24 @@ type SkippedAdStrategy = 'play-all' | 'play-none' | 'play-last';
|
|
|
2591
2591
|
*
|
|
2592
2592
|
* @category Verizon Media
|
|
2593
2593
|
* @public
|
|
2594
|
+
* @deprecated Superseded by {@link UplynkConfiguration}
|
|
2595
|
+
*/
|
|
2596
|
+
interface VerizonMediaConfiguration extends UplynkConfiguration {
|
|
2597
|
+
/**
|
|
2598
|
+
* The Verizon Media UI configuration.
|
|
2599
|
+
*
|
|
2600
|
+
* @remarks
|
|
2601
|
+
* Only available with the features `'verizon-media'` and `'ui'`.
|
|
2602
|
+
*/
|
|
2603
|
+
ui?: VerizonMediaUiConfiguration;
|
|
2604
|
+
}
|
|
2605
|
+
/**
|
|
2606
|
+
* Describes the configuration of the Uplynk integration.
|
|
2607
|
+
*
|
|
2608
|
+
* @category Uplynk
|
|
2609
|
+
* @public
|
|
2594
2610
|
*/
|
|
2595
|
-
interface
|
|
2611
|
+
interface UplynkConfiguration {
|
|
2596
2612
|
/**
|
|
2597
2613
|
* The offset after which an ad break may be skipped, in seconds.
|
|
2598
2614
|
*
|
|
@@ -2611,20 +2627,29 @@ interface VerizonMediaConfiguration {
|
|
|
2611
2627
|
*/
|
|
2612
2628
|
onSeekOverAd?: SkippedAdStrategy;
|
|
2613
2629
|
/**
|
|
2614
|
-
* The
|
|
2630
|
+
* The Uplynk UI configuration.
|
|
2615
2631
|
*
|
|
2616
2632
|
* @remarks
|
|
2617
|
-
* Only available with the features `'
|
|
2633
|
+
* Only available with the features `'uplynk'` and `'ui'`.
|
|
2618
2634
|
*/
|
|
2619
|
-
ui?:
|
|
2635
|
+
ui?: UplynkUiConfiguration;
|
|
2620
2636
|
}
|
|
2621
2637
|
/**
|
|
2622
2638
|
* Describes the UI configuration of the Verizon Media integration.
|
|
2623
2639
|
*
|
|
2624
2640
|
* @category Verizon Media
|
|
2625
2641
|
* @public
|
|
2642
|
+
* @deprecated Superseded by {@link UplynkUiConfiguration}
|
|
2643
|
+
*/
|
|
2644
|
+
interface VerizonMediaUiConfiguration extends UplynkUiConfiguration {
|
|
2645
|
+
}
|
|
2646
|
+
/**
|
|
2647
|
+
* Describes the UI configuration of the Uplynk integration.
|
|
2648
|
+
*
|
|
2649
|
+
* @category Uplynk
|
|
2650
|
+
* @public
|
|
2626
2651
|
*/
|
|
2627
|
-
interface
|
|
2652
|
+
interface UplynkUiConfiguration {
|
|
2628
2653
|
/**
|
|
2629
2654
|
* Whether an up next content countdown is shown on the UI.
|
|
2630
2655
|
*
|
|
@@ -2835,8 +2860,14 @@ interface PlayerConfiguration {
|
|
|
2835
2860
|
cast?: CastConfiguration;
|
|
2836
2861
|
/**
|
|
2837
2862
|
* The Verizon Media configuration for the player.
|
|
2863
|
+
*
|
|
2864
|
+
* @deprecated Superseded by {@link uplynk}
|
|
2838
2865
|
*/
|
|
2839
2866
|
verizonMedia?: VerizonMediaConfiguration;
|
|
2867
|
+
/**
|
|
2868
|
+
* The Uplynk configuration for the player.
|
|
2869
|
+
*/
|
|
2870
|
+
uplynk?: UplynkConfiguration;
|
|
2840
2871
|
/**
|
|
2841
2872
|
* Whether `playbackRate` is retained across sources. When `false`, `playbackRate` will be reset to 1 on each source change.
|
|
2842
2873
|
* Defaults to `false`.
|
|
@@ -3134,47 +3165,58 @@ interface ChromecastMetadataDescription extends MetadataDescription {
|
|
|
3134
3165
|
* @category Source
|
|
3135
3166
|
* @category Verizon Media
|
|
3136
3167
|
* @public
|
|
3168
|
+
* @deprecated Superseded by {@link UplynkSource}
|
|
3169
|
+
*/
|
|
3170
|
+
type VerizonMediaSource = UplynkSource;
|
|
3171
|
+
/**
|
|
3172
|
+
* Represents a media resource which is found on the Uplynk Platform.
|
|
3173
|
+
*
|
|
3174
|
+
* @category Source
|
|
3175
|
+
* @category Uplynk
|
|
3176
|
+
* @public
|
|
3137
3177
|
*/
|
|
3138
|
-
interface
|
|
3178
|
+
interface UplynkSource extends BaseSource {
|
|
3139
3179
|
/**
|
|
3140
|
-
* The integration ID of the source
|
|
3180
|
+
* The integration ID of the source, represented by a value from the following list:
|
|
3181
|
+
* <br/> - `'uplynk'`: The source is an {@link UplynkSource}.
|
|
3182
|
+
* <br/> - `'verizon-media'`: The source is a {@link VerizonMediaSource}. (Deprecated, superseded by `'uplynk'`)
|
|
3141
3183
|
*/
|
|
3142
|
-
integration: 'verizon-media';
|
|
3184
|
+
integration: 'uplynk' | 'verizon-media';
|
|
3143
3185
|
/**
|
|
3144
3186
|
* One or multiple asset identifiers for the source.
|
|
3145
3187
|
*
|
|
3146
3188
|
* @remarks
|
|
3147
3189
|
* <br/> - The order of a list of asset identifiers is the order their corresponding assets will be played in.
|
|
3148
3190
|
*/
|
|
3149
|
-
id:
|
|
3191
|
+
id: UplynkAssetId | UplynkAssetId[] | UplynkExternalId;
|
|
3150
3192
|
/**
|
|
3151
|
-
* The prefix to use for
|
|
3193
|
+
* The prefix to use for Uplynk Preplay API and Asset Info API requests.
|
|
3152
3194
|
*
|
|
3153
3195
|
* @defaultValue `'https://content.uplynk.com'`
|
|
3154
3196
|
*/
|
|
3155
3197
|
prefix?: string;
|
|
3156
3198
|
/**
|
|
3157
|
-
* The query string parameters added to
|
|
3199
|
+
* The query string parameters added to Uplynk Preplay requests.
|
|
3158
3200
|
*
|
|
3159
3201
|
* @remarks
|
|
3160
3202
|
* Each entry contains the parameter name with associated value.
|
|
3161
3203
|
*
|
|
3162
3204
|
* Valid parameters:
|
|
3163
|
-
* <br/> - {@link https://docs.
|
|
3164
|
-
* <br/> - {@link https://docs.
|
|
3165
|
-
* <br/> - {@link https://docs.
|
|
3166
|
-
* <br/> - {@link https://docs.
|
|
3205
|
+
* <br/> - {@link https://api-docs.uplynk.com/index.html#Develop/Preplayv2.htm | Uplynk Preplay parameters}
|
|
3206
|
+
* <br/> - {@link https://api-docs.uplynk.com/index.html#AdIntegration/AOL-One-Video.htm | Uplynk ads with Yahoo SSP (formerly AOL One Video) parameters}
|
|
3207
|
+
* <br/> - {@link https://api-docs.uplynk.com/index.html#AdIntegration/DoubleClick.htm | Uplynk ads with Google Ad Manager (formerly known as DoubleClick for Publishers) parameters}
|
|
3208
|
+
* <br/> - {@link https://api-docs.uplynk.com/index.html#AdIntegration/Freewheel.htm | Uplynk ads with FreeWheel parameters}
|
|
3167
3209
|
*/
|
|
3168
3210
|
preplayParameters?: Record<string, string> | Array<[string, string]>;
|
|
3169
3211
|
/**
|
|
3170
|
-
* The query string parameters added to
|
|
3212
|
+
* The query string parameters added to Uplynk playback URL requests.
|
|
3171
3213
|
*
|
|
3172
3214
|
* @remarks
|
|
3173
3215
|
* Each entry contains the parameter name with associated value.
|
|
3174
3216
|
*
|
|
3175
3217
|
* Valid parameters:
|
|
3176
|
-
* <br/> - {@link https://docs.
|
|
3177
|
-
* <br/> - {@link https://docs.
|
|
3218
|
+
* <br/> - {@link https://api-docs.uplynk.com/index.html#Setup/Customizing-Playback.htm | Uplynk Playback Customization parameters}
|
|
3219
|
+
* <br/> - {@link https://api-docs.uplynk.com/index.html#Setup/Playback-URLs.htm | Uplynk Playback URLs}
|
|
3178
3220
|
*/
|
|
3179
3221
|
playbackUrlParameters?: Record<string, string>;
|
|
3180
3222
|
/**
|
|
@@ -3182,7 +3224,7 @@ interface VerizonMediaSource extends BaseSource {
|
|
|
3182
3224
|
*
|
|
3183
3225
|
* @defaultValue `'asset'`
|
|
3184
3226
|
*/
|
|
3185
|
-
assetType?:
|
|
3227
|
+
assetType?: UplynkAssetType;
|
|
3186
3228
|
/**
|
|
3187
3229
|
* Whether the assets of the source are content protected.
|
|
3188
3230
|
*
|
|
@@ -3196,17 +3238,17 @@ interface VerizonMediaSource extends BaseSource {
|
|
|
3196
3238
|
* <br/> - A configuration with all features disabled will prevent Ping requests being sent.
|
|
3197
3239
|
*
|
|
3198
3240
|
* @defaultValue
|
|
3199
|
-
* A configuration with all features `false` except for `linearAdData`, which will be `true` if {@link
|
|
3241
|
+
* A configuration with all features `false` except for `linearAdData`, which will be `true` if {@link UplynkSource.assetType} is
|
|
3200
3242
|
* `'channel'` or `'event'` and `false` otherwise.
|
|
3201
3243
|
*/
|
|
3202
|
-
ping?:
|
|
3244
|
+
ping?: UplynkPingConfiguration;
|
|
3203
3245
|
/**
|
|
3204
3246
|
* Whether asset info will be fetched from the Verizon Media Asset Info API and exposed on the player API.
|
|
3205
3247
|
*
|
|
3206
3248
|
* @remarks
|
|
3207
|
-
* <br/> - This feature is only available if {@link
|
|
3249
|
+
* <br/> - This feature is only available if {@link UplynkSource.assetType} is `'asset'`
|
|
3208
3250
|
*
|
|
3209
|
-
* @defaultValue `true` if {@link
|
|
3251
|
+
* @defaultValue `true` if {@link UplynkSource.assetType} is `'asset'` and `false` otherwise
|
|
3210
3252
|
*/
|
|
3211
3253
|
assetInfo?: boolean;
|
|
3212
3254
|
}
|
|
@@ -3219,8 +3261,20 @@ interface VerizonMediaSource extends BaseSource {
|
|
|
3219
3261
|
* @category Source
|
|
3220
3262
|
* @category Verizon Media
|
|
3221
3263
|
* @public
|
|
3264
|
+
* @deprecated Superseded by {@link UplynkAssetId}
|
|
3265
|
+
*/
|
|
3266
|
+
type VerizonMediaAssetId = UplynkAssetId;
|
|
3267
|
+
/**
|
|
3268
|
+
* Represents a unique asset identifier for an Uplynk asset.
|
|
3269
|
+
*
|
|
3270
|
+
* @remarks
|
|
3271
|
+
* <br/> - This asset identifier determines a unique asset on the Uplynk Platform.
|
|
3272
|
+
*
|
|
3273
|
+
* @category Source
|
|
3274
|
+
* @category Uplynk
|
|
3275
|
+
* @public
|
|
3222
3276
|
*/
|
|
3223
|
-
type
|
|
3277
|
+
type UplynkAssetId = string;
|
|
3224
3278
|
/**
|
|
3225
3279
|
* Represents a combination of user identifier and one or more external identifiers for Verizon Media assets.
|
|
3226
3280
|
*
|
|
@@ -3230,8 +3284,20 @@ type VerizonMediaAssetId = string;
|
|
|
3230
3284
|
* @category Source
|
|
3231
3285
|
* @category Verizon Media
|
|
3232
3286
|
* @public
|
|
3287
|
+
* @deprecated Superseded by {@link UplynkExternalId}
|
|
3233
3288
|
*/
|
|
3234
|
-
|
|
3289
|
+
type VerizonMediaExternalId = UplynkExternalId;
|
|
3290
|
+
/**
|
|
3291
|
+
* Represents a combination of user identifier and one or more external identifiers for Uplynk assets.
|
|
3292
|
+
*
|
|
3293
|
+
* @remarks
|
|
3294
|
+
* <br/> - Each combination of the user identifier and external identifier determines a unique asset on the Uplynk Platform.
|
|
3295
|
+
*
|
|
3296
|
+
* @category Source
|
|
3297
|
+
* @category Uplynk
|
|
3298
|
+
* @public
|
|
3299
|
+
*/
|
|
3300
|
+
interface UplynkExternalId {
|
|
3235
3301
|
/**
|
|
3236
3302
|
* The user identifier for the asset(s).
|
|
3237
3303
|
*/
|
|
@@ -3247,13 +3313,22 @@ interface VerizonMediaExternalId {
|
|
|
3247
3313
|
* @category Source
|
|
3248
3314
|
* @category Verizon Media
|
|
3249
3315
|
* @public
|
|
3316
|
+
* @deprecated Superseded by {@link UplynkPingConfiguration}
|
|
3250
3317
|
*/
|
|
3251
|
-
|
|
3318
|
+
type VerizonMediaPingConfiguration = UplynkPingConfiguration;
|
|
3319
|
+
/**
|
|
3320
|
+
* Describes the configuration of Uplynk Ping features.
|
|
3321
|
+
*
|
|
3322
|
+
* @category Source
|
|
3323
|
+
* @category Uplynk
|
|
3324
|
+
* @public
|
|
3325
|
+
*/
|
|
3326
|
+
interface UplynkPingConfiguration {
|
|
3252
3327
|
/**
|
|
3253
3328
|
* Whether to increase the accuracy of ad events by passing the current playback time in Ping requests.
|
|
3254
3329
|
*
|
|
3255
3330
|
* @remarks
|
|
3256
|
-
* <br/> - Only available when {@link
|
|
3331
|
+
* <br/> - Only available when {@link UplynkSource.assetType} is `'asset'`.
|
|
3257
3332
|
*
|
|
3258
3333
|
* @defaultValue `false`
|
|
3259
3334
|
*
|
|
@@ -3263,7 +3338,7 @@ interface VerizonMediaPingConfiguration {
|
|
|
3263
3338
|
* Whether to enable FreeWheel's Video View by Callback feature to send content impressions to the FreeWheel server.
|
|
3264
3339
|
*
|
|
3265
3340
|
* @remarks
|
|
3266
|
-
* <br/> - Only available when {@link
|
|
3341
|
+
* <br/> - Only available when {@link UplynkSource.assetType} is `'asset'`.
|
|
3267
3342
|
*
|
|
3268
3343
|
* @defaultValue `false`
|
|
3269
3344
|
*/
|
|
@@ -3272,10 +3347,10 @@ interface VerizonMediaPingConfiguration {
|
|
|
3272
3347
|
* Whether to request information about upcoming ad breaks in the Ping responses.
|
|
3273
3348
|
*
|
|
3274
3349
|
* @remarks
|
|
3275
|
-
* <br/> - This feature will update the exposed ads found on {@link
|
|
3276
|
-
* <br/> - Only available when {@link
|
|
3350
|
+
* <br/> - This feature will update the exposed ads found on {@link Uplynk.ads | player.uplynk.ads }.
|
|
3351
|
+
* <br/> - Only available when {@link UplynkSource.assetType} is `'event'` or `'channel'`.
|
|
3277
3352
|
*
|
|
3278
|
-
* @defaultValue `true` if {@link
|
|
3353
|
+
* @defaultValue `true` if {@link UplynkSource.assetType} is `'event'` or `'channel'`, otherwise `false`.
|
|
3279
3354
|
*/
|
|
3280
3355
|
linearAdData?: boolean;
|
|
3281
3356
|
}
|
|
@@ -3288,8 +3363,20 @@ interface VerizonMediaPingConfiguration {
|
|
|
3288
3363
|
* @category Source
|
|
3289
3364
|
* @category Verizon Media
|
|
3290
3365
|
* @public
|
|
3366
|
+
* @deprecated Superseded by {@link UplynkAssetType}
|
|
3291
3367
|
*/
|
|
3292
|
-
type VerizonMediaAssetType =
|
|
3368
|
+
type VerizonMediaAssetType = UplynkAssetType;
|
|
3369
|
+
/**
|
|
3370
|
+
* The type of an asset on the Uplynk Platform, represented by a value from the following list:
|
|
3371
|
+
* <br/> - `'asset'`: A Video-on-demand content asset.
|
|
3372
|
+
* <br/> - `'channel'`: A Live content channel.
|
|
3373
|
+
* <br/> - `'event'`: A Live event.
|
|
3374
|
+
*
|
|
3375
|
+
* @category Source
|
|
3376
|
+
* @category Uplynk
|
|
3377
|
+
* @public
|
|
3378
|
+
*/
|
|
3379
|
+
type UplynkAssetType = 'asset' | 'channel' | 'event';
|
|
3293
3380
|
|
|
3294
3381
|
/**
|
|
3295
3382
|
* The strategy for period switches (see {@link DashPlaybackConfiguration.useSeamlessPeriodSwitch}), represented by a value from the following list:
|
|
@@ -3821,12 +3908,13 @@ interface TextTrackError extends THEOplayerError {
|
|
|
3821
3908
|
* <br/> - `'id3'`: The track contains ID3 content.
|
|
3822
3909
|
* <br/> - `'cea608'`: The track contains CEA608 content.
|
|
3823
3910
|
* <br/> - `'daterange'`: The track contains HLS EXT-X-DATERANGE content.
|
|
3911
|
+
* <br/> - `'millicast'`: The track contains Millicast metadata content.
|
|
3824
3912
|
* <br/> - `''`: The type of the track contents is unknown.
|
|
3825
3913
|
*
|
|
3826
3914
|
* @category Media and Text Tracks
|
|
3827
3915
|
* @public
|
|
3828
3916
|
*/
|
|
3829
|
-
type TextTrackType = 'srt' | 'ttml' | 'webvtt' | 'emsg' | 'eventstream' | 'id3' | 'cea608' | 'daterange' | '';
|
|
3917
|
+
type TextTrackType = 'srt' | 'ttml' | 'webvtt' | 'emsg' | 'eventstream' | 'id3' | 'cea608' | 'daterange' | 'millicast' | '';
|
|
3830
3918
|
/**
|
|
3831
3919
|
* The ready state of a text track, represented by a value from the following list:
|
|
3832
3920
|
* <br/> - `0`: Indicates that the text track's cues have not been obtained.
|
|
@@ -4169,6 +4257,12 @@ interface MillicastSource extends TypedSource {
|
|
|
4169
4257
|
* @see https://millicast.github.io/millicast-sdk/View.html#connect
|
|
4170
4258
|
*/
|
|
4171
4259
|
connectOptions?: Record<string, any>;
|
|
4260
|
+
/**
|
|
4261
|
+
* The URL of the API endpoint that the SDK communicates with for authentication.
|
|
4262
|
+
*
|
|
4263
|
+
* @see https://millicast.github.io/millicast-sdk/module-Director.html#~setEndpoint
|
|
4264
|
+
*/
|
|
4265
|
+
apiUrl?: string;
|
|
4172
4266
|
}
|
|
4173
4267
|
|
|
4174
4268
|
/**
|
|
@@ -4236,12 +4330,12 @@ interface SourceLatencyConfiguration {
|
|
|
4236
4330
|
* Represents a media resource.
|
|
4237
4331
|
*
|
|
4238
4332
|
* @remarks
|
|
4239
|
-
* <br/> - Can be a string value representing the URL of a media resource, a {@link TypedSource} or
|
|
4333
|
+
* <br/> - Can be a string value representing the URL of a media resource, a {@link TypedSource} or an {@link UplynkSource}.
|
|
4240
4334
|
*
|
|
4241
4335
|
* @category Source
|
|
4242
4336
|
* @public
|
|
4243
4337
|
*/
|
|
4244
|
-
type Source = string | TypedSource |
|
|
4338
|
+
type Source = string | TypedSource | UplynkSource | TheoLiveSource | MillicastSource;
|
|
4245
4339
|
/**
|
|
4246
4340
|
* A media resource or list of media resources.
|
|
4247
4341
|
*
|
|
@@ -4456,18 +4550,15 @@ interface TextTrackDescription {
|
|
|
4456
4550
|
kind?: string;
|
|
4457
4551
|
/**
|
|
4458
4552
|
* The format of the track, represented by a value from the following list:
|
|
4459
|
-
* <br/> - `'srt'
|
|
4460
|
-
* <br/> - `'ttml'
|
|
4461
|
-
* <br/> - `'webvtt'
|
|
4462
|
-
* <br/> - `'
|
|
4463
|
-
* <br/> - `'eventstream'`
|
|
4464
|
-
* <br/> - `'id3'`
|
|
4465
|
-
* <br/> - `'cea608'`
|
|
4466
|
-
* <br/> - `'daterange'`
|
|
4553
|
+
* <br/> - `'srt'`: The track contains SRT (SubRip Text) content.
|
|
4554
|
+
* <br/> - `'ttml'`: The track contains TTML (Timed Text Markup Language) content.
|
|
4555
|
+
* <br/> - `'webvtt'`: The track contains WebVTT (Web Video Text Tracks) content.
|
|
4556
|
+
* <br/> - `''` (default): The format is auto-detected based on its content.
|
|
4467
4557
|
*
|
|
4468
4558
|
* @defaultValue `''`
|
|
4559
|
+
* @see {@link TextTrackType}
|
|
4469
4560
|
*/
|
|
4470
|
-
format?:
|
|
4561
|
+
format?: '' | 'srt' | 'ttml' | 'webvtt';
|
|
4471
4562
|
/**
|
|
4472
4563
|
* The source URL of the text track.
|
|
4473
4564
|
*/
|
|
@@ -4767,14 +4858,15 @@ interface TypedSource extends BaseSource {
|
|
|
4767
4858
|
type StreamType = 'live' | 'dvr' | 'vod';
|
|
4768
4859
|
/**
|
|
4769
4860
|
* The integration identifier of a source specific to a pre-integration, represented by a value from the following list:
|
|
4770
|
-
* <br/> - `'verizon-media'`: The source is a {@link VerizonMediaSource}
|
|
4771
|
-
* <br/> - `'mediatailor'`: The source contains the MediaTailor initialization url
|
|
4861
|
+
* <br/> - `'verizon-media'`: The source is a {@link VerizonMediaSource}. (Deprecated, superseded by `'uplynk'`)
|
|
4862
|
+
* <br/> - `'mediatailor'`: The source contains the MediaTailor initialization url.
|
|
4772
4863
|
* <br/> - `'theolive'`: The source is a {@link TheoLiveSource}. (Deprecated, see {@link TheoLiveSource.integration})
|
|
4864
|
+
* <br/> - `'uplynk'`: The source is an {@link UplynkSource}.
|
|
4773
4865
|
*
|
|
4774
4866
|
* @category Source
|
|
4775
4867
|
* @public
|
|
4776
4868
|
*/
|
|
4777
|
-
type SourceIntegrationId = 'verizon-media' | 'mediatailor' | 'theolive';
|
|
4869
|
+
type SourceIntegrationId = 'verizon-media' | 'mediatailor' | 'theolive' | 'uplynk';
|
|
4778
4870
|
/**
|
|
4779
4871
|
* The integration identifier of an analytics description, represented by a value from the following list:
|
|
4780
4872
|
* <br/> - `'agama'`: The description is an {@link AgamaConfiguration}
|
|
@@ -7143,12 +7235,21 @@ interface Imagine extends EventDispatcher<ImagineEventMap> {
|
|
|
7143
7235
|
* @category Verizon Media
|
|
7144
7236
|
* @category Events
|
|
7145
7237
|
* @public
|
|
7238
|
+
* @deprecated Superseded by {@link UplynkAdBreakBeginEvent}
|
|
7146
7239
|
*/
|
|
7147
|
-
|
|
7240
|
+
type VerizonMediaAdBreakBeginEvent = UplynkAdBreakBeginEvent;
|
|
7241
|
+
/**
|
|
7242
|
+
* Fired when the ad break begins.
|
|
7243
|
+
*
|
|
7244
|
+
* @category Uplynk
|
|
7245
|
+
* @category Events
|
|
7246
|
+
* @public
|
|
7247
|
+
*/
|
|
7248
|
+
interface UplynkAdBreakBeginEvent extends Event<'adbreakbegin'> {
|
|
7148
7249
|
/**
|
|
7149
7250
|
* The ad break which began.
|
|
7150
7251
|
*/
|
|
7151
|
-
readonly adBreak:
|
|
7252
|
+
readonly adBreak: UplynkAdBreak;
|
|
7152
7253
|
}
|
|
7153
7254
|
|
|
7154
7255
|
/**
|
|
@@ -7157,12 +7258,21 @@ interface VerizonMediaAdBreakBeginEvent extends Event<'adbreakbegin'> {
|
|
|
7157
7258
|
* @category Verizon Media
|
|
7158
7259
|
* @category Events
|
|
7159
7260
|
* @public
|
|
7261
|
+
* @deprecated Superseded by {@link UplynkAdBreakEndEvent}
|
|
7262
|
+
*/
|
|
7263
|
+
type VerizonMediaAdBreakEndEvent = UplynkAdBreakEndEvent;
|
|
7264
|
+
/**
|
|
7265
|
+
* Fired when the ad break ends.
|
|
7266
|
+
*
|
|
7267
|
+
* @category Uplynk
|
|
7268
|
+
* @category Events
|
|
7269
|
+
* @public
|
|
7160
7270
|
*/
|
|
7161
|
-
interface
|
|
7271
|
+
interface UplynkAdBreakEndEvent extends Event<'adbreakend'> {
|
|
7162
7272
|
/**
|
|
7163
7273
|
* The ad break which ended.
|
|
7164
7274
|
*/
|
|
7165
|
-
readonly adBreak:
|
|
7275
|
+
readonly adBreak: UplynkAdBreak;
|
|
7166
7276
|
}
|
|
7167
7277
|
|
|
7168
7278
|
/**
|
|
@@ -7171,12 +7281,21 @@ interface VerizonMediaAdBreakEndEvent extends Event<'adbreakend'> {
|
|
|
7171
7281
|
* @category Verizon Media
|
|
7172
7282
|
* @category Events
|
|
7173
7283
|
* @public
|
|
7284
|
+
* @deprecated Superseded by {@link UplynkAdBreakSkipEvent}
|
|
7174
7285
|
*/
|
|
7175
|
-
|
|
7286
|
+
type VerizonMediaAdBreakSkipEvent = UplynkAdBreakSkipEvent;
|
|
7287
|
+
/**
|
|
7288
|
+
* Fired when the ad break is skipped.
|
|
7289
|
+
*
|
|
7290
|
+
* @category Uplynk
|
|
7291
|
+
* @category Events
|
|
7292
|
+
* @public
|
|
7293
|
+
*/
|
|
7294
|
+
interface UplynkAdBreakSkipEvent extends Event<'adbreakskip'> {
|
|
7176
7295
|
/**
|
|
7177
7296
|
* The ad break which has been skipped.
|
|
7178
7297
|
*/
|
|
7179
|
-
readonly adBreak:
|
|
7298
|
+
readonly adBreak: UplynkAdBreak;
|
|
7180
7299
|
}
|
|
7181
7300
|
|
|
7182
7301
|
/**
|
|
@@ -7185,12 +7304,21 @@ interface VerizonMediaAdBreakSkipEvent extends Event<'adbreakskip'> {
|
|
|
7185
7304
|
* @category Verizon Media
|
|
7186
7305
|
* @category Events
|
|
7187
7306
|
* @public
|
|
7307
|
+
* @deprecated Superseded by {@link UplynkUpdateAdBreakEvent}
|
|
7308
|
+
*/
|
|
7309
|
+
type VerizonMediaUpdateAdBreakEvent = UplynkUpdateAdBreakEvent;
|
|
7310
|
+
/**
|
|
7311
|
+
* Fired when the ad break is updated.
|
|
7312
|
+
*
|
|
7313
|
+
* @category Uplynk
|
|
7314
|
+
* @category Events
|
|
7315
|
+
* @public
|
|
7188
7316
|
*/
|
|
7189
|
-
interface
|
|
7317
|
+
interface UplynkUpdateAdBreakEvent extends Event<'updateadbreak'> {
|
|
7190
7318
|
/**
|
|
7191
7319
|
* The ad break which has been updated.
|
|
7192
7320
|
*/
|
|
7193
|
-
readonly adBreak:
|
|
7321
|
+
readonly adBreak: UplynkAdBreak;
|
|
7194
7322
|
}
|
|
7195
7323
|
|
|
7196
7324
|
/**
|
|
@@ -7227,12 +7355,21 @@ interface EventedList<T, M extends EventMap<StringKeyOf<M>>> extends List<T>, Ev
|
|
|
7227
7355
|
* @category Verizon Media
|
|
7228
7356
|
* @category Events
|
|
7229
7357
|
* @public
|
|
7358
|
+
* @deprecated Superseded by {@link UplynkAdBeginEvent}
|
|
7230
7359
|
*/
|
|
7231
|
-
|
|
7360
|
+
type VerizonMediaAdBeginEvent = UplynkAdBeginEvent;
|
|
7361
|
+
/**
|
|
7362
|
+
* Fired when an ad begins.
|
|
7363
|
+
*
|
|
7364
|
+
* @category Uplynk
|
|
7365
|
+
* @category Events
|
|
7366
|
+
* @public
|
|
7367
|
+
*/
|
|
7368
|
+
interface UplynkAdBeginEvent extends Event<'adbegin'> {
|
|
7232
7369
|
/**
|
|
7233
7370
|
* The ad which began.
|
|
7234
7371
|
*/
|
|
7235
|
-
readonly ad:
|
|
7372
|
+
readonly ad: UplynkAd;
|
|
7236
7373
|
}
|
|
7237
7374
|
|
|
7238
7375
|
/**
|
|
@@ -7241,12 +7378,21 @@ interface VerizonMediaAdBeginEvent extends Event<'adbegin'> {
|
|
|
7241
7378
|
* @category Verizon Media
|
|
7242
7379
|
* @category Events
|
|
7243
7380
|
* @public
|
|
7381
|
+
* @deprecated Superseded by {@link UplynkAdEndEvent}
|
|
7382
|
+
*/
|
|
7383
|
+
type VerizonMediaAdEndEvent = UplynkAdEndEvent;
|
|
7384
|
+
/**
|
|
7385
|
+
* Fired when the ad ends.
|
|
7386
|
+
*
|
|
7387
|
+
* @category Uplynk
|
|
7388
|
+
* @category Events
|
|
7389
|
+
* @public
|
|
7244
7390
|
*/
|
|
7245
|
-
interface
|
|
7391
|
+
interface UplynkAdEndEvent extends Event<'adend'> {
|
|
7246
7392
|
/**
|
|
7247
7393
|
* The ad which has ended.
|
|
7248
7394
|
*/
|
|
7249
|
-
readonly ad:
|
|
7395
|
+
readonly ad: UplynkAd;
|
|
7250
7396
|
}
|
|
7251
7397
|
|
|
7252
7398
|
/**
|
|
@@ -7255,12 +7401,21 @@ interface VerizonMediaAdEndEvent extends Event<'adend'> {
|
|
|
7255
7401
|
* @category Verizon Media
|
|
7256
7402
|
* @category Events
|
|
7257
7403
|
* @public
|
|
7404
|
+
* @deprecated Superseded by {@link UplynkAdFirstQuartileEvent}
|
|
7405
|
+
*/
|
|
7406
|
+
type VerizonMediaAdFirstQuartileEvent = UplynkAdFirstQuartileEvent;
|
|
7407
|
+
/**
|
|
7408
|
+
* Fired when the ad reaches the first quartile.
|
|
7409
|
+
*
|
|
7410
|
+
* @category Uplynk
|
|
7411
|
+
* @category Events
|
|
7412
|
+
* @public
|
|
7258
7413
|
*/
|
|
7259
|
-
interface
|
|
7414
|
+
interface UplynkAdFirstQuartileEvent extends Event<'adfirstquartile'> {
|
|
7260
7415
|
/**
|
|
7261
7416
|
* The ad which has progressed.
|
|
7262
7417
|
*/
|
|
7263
|
-
readonly ad:
|
|
7418
|
+
readonly ad: UplynkAd;
|
|
7264
7419
|
}
|
|
7265
7420
|
/**
|
|
7266
7421
|
* Fired when the ad reaches the mid point.
|
|
@@ -7268,12 +7423,21 @@ interface VerizonMediaAdFirstQuartileEvent extends Event<'adfirstquartile'> {
|
|
|
7268
7423
|
* @category Verizon Media
|
|
7269
7424
|
* @category Events
|
|
7270
7425
|
* @public
|
|
7426
|
+
* @deprecated Superseded by {@link UplynkAdMidpointEvent}
|
|
7271
7427
|
*/
|
|
7272
|
-
|
|
7428
|
+
type VerizonMediaAdMidpointEvent = UplynkAdMidpointEvent;
|
|
7429
|
+
/**
|
|
7430
|
+
* Fired when the ad reaches the mid point.
|
|
7431
|
+
*
|
|
7432
|
+
* @category Uplynk
|
|
7433
|
+
* @category Events
|
|
7434
|
+
* @public
|
|
7435
|
+
*/
|
|
7436
|
+
interface UplynkAdMidpointEvent extends Event<'admidpoint'> {
|
|
7273
7437
|
/**
|
|
7274
7438
|
* The ad which has progressed.
|
|
7275
7439
|
*/
|
|
7276
|
-
readonly ad:
|
|
7440
|
+
readonly ad: UplynkAd;
|
|
7277
7441
|
}
|
|
7278
7442
|
/**
|
|
7279
7443
|
* Fired when the ad reaches the third quartile.
|
|
@@ -7281,12 +7445,21 @@ interface VerizonMediaAdMidpointEvent extends Event<'admidpoint'> {
|
|
|
7281
7445
|
* @category Verizon Media
|
|
7282
7446
|
* @category Events
|
|
7283
7447
|
* @public
|
|
7448
|
+
* @deprecated Superseded by {@link UplynkAdThirdQuartileEvent}
|
|
7449
|
+
*/
|
|
7450
|
+
type VerizonMediaAdThirdQuartileEvent = UplynkAdThirdQuartileEvent;
|
|
7451
|
+
/**
|
|
7452
|
+
* Fired when the ad reaches the third quartile.
|
|
7453
|
+
*
|
|
7454
|
+
* @category Uplynk
|
|
7455
|
+
* @category Events
|
|
7456
|
+
* @public
|
|
7284
7457
|
*/
|
|
7285
|
-
interface
|
|
7458
|
+
interface UplynkAdThirdQuartileEvent extends Event<'adthirdquartile'> {
|
|
7286
7459
|
/**
|
|
7287
7460
|
* The ad which has progressed.
|
|
7288
7461
|
*/
|
|
7289
|
-
readonly ad:
|
|
7462
|
+
readonly ad: UplynkAd;
|
|
7290
7463
|
}
|
|
7291
7464
|
/**
|
|
7292
7465
|
* Fired when the ad is completed.
|
|
@@ -7294,12 +7467,21 @@ interface VerizonMediaAdThirdQuartileEvent extends Event<'adthirdquartile'> {
|
|
|
7294
7467
|
* @category Verizon Media
|
|
7295
7468
|
* @category Events
|
|
7296
7469
|
* @public
|
|
7470
|
+
* @deprecated Superseded by {@link UplynkAdCompleteEvent}
|
|
7297
7471
|
*/
|
|
7298
|
-
|
|
7472
|
+
type VerizonMediaAdCompleteEvent = UplynkAdCompleteEvent;
|
|
7473
|
+
/**
|
|
7474
|
+
* Fired when the ad is completed.
|
|
7475
|
+
*
|
|
7476
|
+
* @category Uplynk
|
|
7477
|
+
* @category Events
|
|
7478
|
+
* @public
|
|
7479
|
+
*/
|
|
7480
|
+
interface UplynkAdCompleteEvent extends Event<'adcomplete'> {
|
|
7299
7481
|
/**
|
|
7300
7482
|
* The ad which has progressed.
|
|
7301
7483
|
*/
|
|
7302
|
-
readonly ad:
|
|
7484
|
+
readonly ad: UplynkAd;
|
|
7303
7485
|
}
|
|
7304
7486
|
|
|
7305
7487
|
/**
|
|
@@ -7307,40 +7489,56 @@ interface VerizonMediaAdCompleteEvent extends Event<'adcomplete'> {
|
|
|
7307
7489
|
*
|
|
7308
7490
|
* @category Verizon Media
|
|
7309
7491
|
* @public
|
|
7492
|
+
* @deprecated Superseded by {@link UplynkAdEventMap}
|
|
7310
7493
|
*/
|
|
7311
|
-
|
|
7494
|
+
type VerizonMediaAdEventMap = UplynkAdEventMap;
|
|
7495
|
+
/**
|
|
7496
|
+
* The events fired by the {@link UplynkAd}.
|
|
7497
|
+
*
|
|
7498
|
+
* @category Uplynk
|
|
7499
|
+
* @public
|
|
7500
|
+
*/
|
|
7501
|
+
interface UplynkAdEventMap {
|
|
7312
7502
|
/**
|
|
7313
|
-
* {@inheritDoc
|
|
7503
|
+
* {@inheritDoc UplynkAdBeginEvent}
|
|
7314
7504
|
*/
|
|
7315
|
-
adbegin:
|
|
7505
|
+
adbegin: UplynkAdBeginEvent;
|
|
7316
7506
|
/**
|
|
7317
|
-
* {@inheritDoc
|
|
7507
|
+
* {@inheritDoc UplynkAdEndEvent}
|
|
7318
7508
|
*/
|
|
7319
|
-
adend:
|
|
7509
|
+
adend: UplynkAdEndEvent;
|
|
7320
7510
|
/**
|
|
7321
|
-
* {@inheritDoc
|
|
7511
|
+
* {@inheritDoc UplynkAdFirstQuartileEvent}
|
|
7322
7512
|
*/
|
|
7323
|
-
adfirstquartile:
|
|
7513
|
+
adfirstquartile: UplynkAdFirstQuartileEvent;
|
|
7324
7514
|
/**
|
|
7325
|
-
* {@inheritDoc
|
|
7515
|
+
* {@inheritDoc UplynkAdMidpointEvent}
|
|
7326
7516
|
*/
|
|
7327
|
-
admidpoint:
|
|
7517
|
+
admidpoint: UplynkAdMidpointEvent;
|
|
7328
7518
|
/**
|
|
7329
|
-
* {@inheritDoc
|
|
7519
|
+
* {@inheritDoc UplynkAdThirdQuartileEvent}
|
|
7330
7520
|
*/
|
|
7331
|
-
adthirdquartile:
|
|
7521
|
+
adthirdquartile: UplynkAdThirdQuartileEvent;
|
|
7332
7522
|
/**
|
|
7333
|
-
* {@inheritDoc
|
|
7523
|
+
* {@inheritDoc UplynkAdCompleteEvent}
|
|
7334
7524
|
*/
|
|
7335
|
-
adcomplete:
|
|
7525
|
+
adcomplete: UplynkAdCompleteEvent;
|
|
7336
7526
|
}
|
|
7337
7527
|
/**
|
|
7338
7528
|
* Represents a Verizon Media ad.
|
|
7339
7529
|
*
|
|
7340
7530
|
* @category Verizon Media
|
|
7341
7531
|
* @public
|
|
7532
|
+
* @deprecated Superseded by {@link UplynkAd}
|
|
7533
|
+
*/
|
|
7534
|
+
type VerizonMediaAd = UplynkAd;
|
|
7535
|
+
/**
|
|
7536
|
+
* Represents an Uplynk ad.
|
|
7537
|
+
*
|
|
7538
|
+
* @category Uplynk
|
|
7539
|
+
* @public
|
|
7342
7540
|
*/
|
|
7343
|
-
interface
|
|
7541
|
+
interface UplynkAd extends EventDispatcher<UplynkAdEventMap> {
|
|
7344
7542
|
/**
|
|
7345
7543
|
* The start time of the ad, in seconds.
|
|
7346
7544
|
*/
|
|
@@ -7399,7 +7597,7 @@ interface VerizonMediaAd extends EventDispatcher<VerizonMediaAdEventMap> {
|
|
|
7399
7597
|
/**
|
|
7400
7598
|
* List of companion ads of the ad.
|
|
7401
7599
|
*/
|
|
7402
|
-
readonly companions: ReadonlyArray<
|
|
7600
|
+
readonly companions: ReadonlyArray<UplynkAd>;
|
|
7403
7601
|
/**
|
|
7404
7602
|
* List of VAST extensions returned by the ad server.
|
|
7405
7603
|
*/
|
|
@@ -7415,10 +7613,20 @@ interface VerizonMediaAd extends EventDispatcher<VerizonMediaAdEventMap> {
|
|
|
7415
7613
|
* Fired when the ad is removed.
|
|
7416
7614
|
*
|
|
7417
7615
|
* @category Verizon Media
|
|
7616
|
+
* @category Events
|
|
7617
|
+
* @public
|
|
7618
|
+
* @deprecated Superseded by {@link UplynkRemoveAdEvent}
|
|
7619
|
+
*/
|
|
7620
|
+
type VerizonMediaRemoveAdEvent = UplynkRemoveAdEvent;
|
|
7621
|
+
/**
|
|
7622
|
+
* Fired when the ad is removed.
|
|
7623
|
+
*
|
|
7624
|
+
* @category Uplynk
|
|
7625
|
+
* @category Events
|
|
7418
7626
|
* @public
|
|
7419
7627
|
*/
|
|
7420
|
-
interface
|
|
7421
|
-
readonly ad:
|
|
7628
|
+
interface UplynkRemoveAdEvent extends Event<'removead'> {
|
|
7629
|
+
readonly ad: UplynkAd;
|
|
7422
7630
|
}
|
|
7423
7631
|
|
|
7424
7632
|
/**
|
|
@@ -7426,20 +7634,36 @@ interface VerizonMediaRemoveAdEvent extends Event<'removead'> {
|
|
|
7426
7634
|
*
|
|
7427
7635
|
* @category Verizon Media
|
|
7428
7636
|
* @public
|
|
7637
|
+
* @deprecated Superseded by {@link UplynkAdListEventMap}
|
|
7429
7638
|
*/
|
|
7430
|
-
|
|
7639
|
+
type VerizonMediaAdListEventMap = UplynkAdListEventMap;
|
|
7640
|
+
/**
|
|
7641
|
+
* Events fired by the {@link UplynkAdList}.
|
|
7642
|
+
*
|
|
7643
|
+
* @category Uplynk
|
|
7644
|
+
* @public
|
|
7645
|
+
*/
|
|
7646
|
+
interface UplynkAdListEventMap {
|
|
7431
7647
|
/**
|
|
7432
|
-
*{@inheritDoc
|
|
7648
|
+
*{@inheritDoc UplynkRemoveAdEvent}
|
|
7433
7649
|
*/
|
|
7434
|
-
removead:
|
|
7650
|
+
removead: UplynkRemoveAdEvent;
|
|
7435
7651
|
}
|
|
7436
7652
|
/**
|
|
7437
7653
|
* List of Verizon Media ads.
|
|
7438
7654
|
*
|
|
7439
7655
|
* @category Verizon Media
|
|
7440
7656
|
* @public
|
|
7657
|
+
* @deprecated Superseded by {@link UplynkAdList}
|
|
7658
|
+
*/
|
|
7659
|
+
type VerizonMediaAdList = UplynkAdList;
|
|
7660
|
+
/**
|
|
7661
|
+
* List of Uplynk ads.
|
|
7662
|
+
*
|
|
7663
|
+
* @category Uplynk
|
|
7664
|
+
* @public
|
|
7441
7665
|
*/
|
|
7442
|
-
interface
|
|
7666
|
+
interface UplynkAdList extends EventedList<UplynkAd, UplynkAdListEventMap> {
|
|
7443
7667
|
}
|
|
7444
7668
|
|
|
7445
7669
|
/**
|
|
@@ -7447,32 +7671,48 @@ interface VerizonMediaAdList extends EventedList<VerizonMediaAd, VerizonMediaAdL
|
|
|
7447
7671
|
*
|
|
7448
7672
|
* @category Verizon Media
|
|
7449
7673
|
* @public
|
|
7674
|
+
* @deprecated Superseded by {@link UplynkAdBreakEventMap}
|
|
7450
7675
|
*/
|
|
7451
|
-
|
|
7676
|
+
type VerizonMediaAdBreakEventMap = UplynkAdBreakEventMap;
|
|
7677
|
+
/**
|
|
7678
|
+
* The events fired by the {@link UplynkAdBreak}.
|
|
7679
|
+
*
|
|
7680
|
+
* @category Uplynk
|
|
7681
|
+
* @public
|
|
7682
|
+
*/
|
|
7683
|
+
interface UplynkAdBreakEventMap {
|
|
7452
7684
|
/**
|
|
7453
|
-
* {@inheritDoc
|
|
7685
|
+
* {@inheritDoc UplynkAdBreakBeginEvent}
|
|
7454
7686
|
*/
|
|
7455
|
-
adbreakbegin:
|
|
7687
|
+
adbreakbegin: UplynkAdBreakBeginEvent;
|
|
7456
7688
|
/**
|
|
7457
|
-
* {@inheritDoc
|
|
7689
|
+
* {@inheritDoc UplynkAdBreakEndEvent}
|
|
7458
7690
|
*/
|
|
7459
|
-
adbreakend:
|
|
7691
|
+
adbreakend: UplynkAdBreakEndEvent;
|
|
7460
7692
|
/**
|
|
7461
|
-
* {@inheritDoc
|
|
7693
|
+
* {@inheritDoc UplynkAdBreakSkipEvent}
|
|
7462
7694
|
*/
|
|
7463
|
-
adbreakskip:
|
|
7695
|
+
adbreakskip: UplynkAdBreakSkipEvent;
|
|
7464
7696
|
/**
|
|
7465
|
-
* {@inheritDoc
|
|
7697
|
+
* {@inheritDoc UplynkUpdateAdBreakEvent}
|
|
7466
7698
|
*/
|
|
7467
|
-
updateadbreak:
|
|
7699
|
+
updateadbreak: UplynkUpdateAdBreakEvent;
|
|
7468
7700
|
}
|
|
7469
7701
|
/**
|
|
7470
|
-
* Represents a Verizon Media ad.
|
|
7702
|
+
* Represents a Verizon Media ad break.
|
|
7471
7703
|
*
|
|
7472
7704
|
* @category Verizon Media
|
|
7473
7705
|
* @public
|
|
7706
|
+
* @deprecated Superseded by {@link UplynkAdBreak}
|
|
7474
7707
|
*/
|
|
7475
|
-
|
|
7708
|
+
type VerizonMediaAdBreak = UplynkAdBreak;
|
|
7709
|
+
/**
|
|
7710
|
+
* Represents an Uplynk ad break.
|
|
7711
|
+
*
|
|
7712
|
+
* @category Uplynk
|
|
7713
|
+
* @public
|
|
7714
|
+
*/
|
|
7715
|
+
interface UplynkAdBreak extends EventDispatcher<UplynkAdBreakEventMap> {
|
|
7476
7716
|
/**
|
|
7477
7717
|
* The start time of the ad break, in seconds.
|
|
7478
7718
|
*/
|
|
@@ -7494,14 +7734,14 @@ interface VerizonMediaAdBreak extends EventDispatcher<VerizonMediaAdBreakEventMa
|
|
|
7494
7734
|
/**
|
|
7495
7735
|
* List of ads in the ad break.
|
|
7496
7736
|
*/
|
|
7497
|
-
readonly ads:
|
|
7737
|
+
readonly ads: UplynkAdList;
|
|
7498
7738
|
/**
|
|
7499
7739
|
* Offset after which the ad break may be skipped, in seconds.
|
|
7500
7740
|
*
|
|
7501
7741
|
* @remarks
|
|
7502
7742
|
* If the offset is -1, the ad is unskippable.
|
|
7503
7743
|
* If the offset is 0, the ad is immediately skippable.
|
|
7504
|
-
* Otherwise it must be a positive number indicating the offset.
|
|
7744
|
+
* Otherwise, it must be a positive number indicating the offset.
|
|
7505
7745
|
* Skipping the ad in live streams is unsupported.
|
|
7506
7746
|
*
|
|
7507
7747
|
* @example
|
|
@@ -7518,12 +7758,21 @@ interface VerizonMediaAdBreak extends EventDispatcher<VerizonMediaAdBreakEventMa
|
|
|
7518
7758
|
* @category Verizon Media
|
|
7519
7759
|
* @category Events
|
|
7520
7760
|
* @public
|
|
7761
|
+
* @deprecated Superseded by {@link UplynkAddAdBreakEvent}
|
|
7521
7762
|
*/
|
|
7522
|
-
|
|
7763
|
+
type VerizonMediaAddAdBreakEvent = UplynkAddAdBreakEvent;
|
|
7764
|
+
/**
|
|
7765
|
+
* Fired when the ad break is added.
|
|
7766
|
+
*
|
|
7767
|
+
* @category Uplynk
|
|
7768
|
+
* @category Events
|
|
7769
|
+
* @public
|
|
7770
|
+
*/
|
|
7771
|
+
interface UplynkAddAdBreakEvent extends Event<'addadbreak'> {
|
|
7523
7772
|
/**
|
|
7524
7773
|
* The ad break which has been added.
|
|
7525
7774
|
*/
|
|
7526
|
-
readonly adBreak:
|
|
7775
|
+
readonly adBreak: UplynkAdBreak;
|
|
7527
7776
|
}
|
|
7528
7777
|
|
|
7529
7778
|
/**
|
|
@@ -7532,12 +7781,21 @@ interface VerizonMediaAddAdBreakEvent extends Event<'addadbreak'> {
|
|
|
7532
7781
|
* @category Verizon Media
|
|
7533
7782
|
* @category Events
|
|
7534
7783
|
* @public
|
|
7784
|
+
* @deprecated Superseded by {@link UplynkRemoveAdBreakEvent}
|
|
7785
|
+
*/
|
|
7786
|
+
type VerizonMediaRemoveAdBreakEvent = UplynkRemoveAdBreakEvent;
|
|
7787
|
+
/**
|
|
7788
|
+
* Fired when the ad break is removed.
|
|
7789
|
+
*
|
|
7790
|
+
* @category Uplynk
|
|
7791
|
+
* @category Events
|
|
7792
|
+
* @public
|
|
7535
7793
|
*/
|
|
7536
|
-
interface
|
|
7794
|
+
interface UplynkRemoveAdBreakEvent extends Event<'removeadbreak'> {
|
|
7537
7795
|
/**
|
|
7538
7796
|
* The ad break which has been removed.
|
|
7539
7797
|
*/
|
|
7540
|
-
readonly adBreak:
|
|
7798
|
+
readonly adBreak: UplynkAdBreak;
|
|
7541
7799
|
}
|
|
7542
7800
|
|
|
7543
7801
|
/**
|
|
@@ -7545,24 +7803,40 @@ interface VerizonMediaRemoveAdBreakEvent extends Event<'removeadbreak'> {
|
|
|
7545
7803
|
*
|
|
7546
7804
|
* @category Verizon Media
|
|
7547
7805
|
* @public
|
|
7806
|
+
* @deprecated Superseded by {@link UplynkAdBreakListEventMap}
|
|
7807
|
+
*/
|
|
7808
|
+
type VerizonMediaAdBreakListEventMap = UplynkAdBreakListEventMap;
|
|
7809
|
+
/**
|
|
7810
|
+
* The events fired by the {@link UplynkAdBreakList}.
|
|
7811
|
+
*
|
|
7812
|
+
* @category Uplynk
|
|
7813
|
+
* @public
|
|
7548
7814
|
*/
|
|
7549
|
-
interface
|
|
7815
|
+
interface UplynkAdBreakListEventMap {
|
|
7550
7816
|
/**
|
|
7551
|
-
* {@inheritDoc
|
|
7817
|
+
* {@inheritDoc UplynkAddAdBreakEvent}
|
|
7552
7818
|
*/
|
|
7553
|
-
addadbreak:
|
|
7819
|
+
addadbreak: UplynkAddAdBreakEvent;
|
|
7554
7820
|
/**
|
|
7555
|
-
* {@inheritDoc
|
|
7821
|
+
* {@inheritDoc UplynkRemoveAdBreakEvent}
|
|
7556
7822
|
*/
|
|
7557
|
-
removeadbreak:
|
|
7823
|
+
removeadbreak: UplynkRemoveAdBreakEvent;
|
|
7558
7824
|
}
|
|
7559
7825
|
/**
|
|
7560
7826
|
* List with Verizon Media ad breaks.
|
|
7561
7827
|
*
|
|
7562
7828
|
* @category Verizon Media
|
|
7563
7829
|
* @public
|
|
7830
|
+
* @deprecated Superseded by {@link UplynkAdBreakList}
|
|
7564
7831
|
*/
|
|
7565
|
-
|
|
7832
|
+
type VerizonMediaAdBreakList = UplynkAdBreakList;
|
|
7833
|
+
/**
|
|
7834
|
+
* List with Uplynk ad breaks.
|
|
7835
|
+
*
|
|
7836
|
+
* @category Uplynk
|
|
7837
|
+
* @public
|
|
7838
|
+
*/
|
|
7839
|
+
interface UplynkAdBreakList extends EventedList<UplynkAdBreak, UplynkAdBreakListEventMap> {
|
|
7566
7840
|
}
|
|
7567
7841
|
|
|
7568
7842
|
/**
|
|
@@ -7570,23 +7844,31 @@ interface VerizonMediaAdBreakList extends EventedList<VerizonMediaAdBreak, Veriz
|
|
|
7570
7844
|
*
|
|
7571
7845
|
* @category Verizon Media
|
|
7572
7846
|
* @public
|
|
7847
|
+
* @deprecated Superseded by {@link UplynkAds}
|
|
7848
|
+
*/
|
|
7849
|
+
type VerizonMediaAds = UplynkAds;
|
|
7850
|
+
/**
|
|
7851
|
+
* The Uplynk ads API.
|
|
7852
|
+
*
|
|
7853
|
+
* @category Uplynk
|
|
7854
|
+
* @public
|
|
7573
7855
|
*/
|
|
7574
|
-
interface
|
|
7856
|
+
interface UplynkAds {
|
|
7575
7857
|
/**
|
|
7576
7858
|
* List of ad breaks.
|
|
7577
7859
|
*/
|
|
7578
|
-
readonly adBreaks:
|
|
7860
|
+
readonly adBreaks: UplynkAdBreakList;
|
|
7579
7861
|
/**
|
|
7580
7862
|
* The currently playing ad break.
|
|
7581
7863
|
*/
|
|
7582
|
-
readonly currentAdBreak:
|
|
7864
|
+
readonly currentAdBreak: UplynkAdBreak | undefined;
|
|
7583
7865
|
/**
|
|
7584
7866
|
* The currently playing ads.
|
|
7585
7867
|
*
|
|
7586
7868
|
* @remarks
|
|
7587
|
-
* <br/> - These will always be part of the {@link
|
|
7869
|
+
* <br/> - These will always be part of the {@link UplynkAds.currentAdBreak | current ad break}.
|
|
7588
7870
|
*/
|
|
7589
|
-
readonly currentAds:
|
|
7871
|
+
readonly currentAds: UplynkAdList;
|
|
7590
7872
|
/**
|
|
7591
7873
|
* Seek to the end of the ad if it is skippable.
|
|
7592
7874
|
*
|
|
@@ -7601,31 +7883,47 @@ interface VerizonMediaAds {
|
|
|
7601
7883
|
*
|
|
7602
7884
|
* @category Verizon Media
|
|
7603
7885
|
* @public
|
|
7886
|
+
* @deprecated Superseded by {@link UplynkResponseVodAds}
|
|
7604
7887
|
*/
|
|
7605
|
-
|
|
7888
|
+
type VerizonMediaResponseVodAds = UplynkResponseVodAds;
|
|
7889
|
+
/**
|
|
7890
|
+
* Represents an Uplynk response with advertisement information for VOD assets.
|
|
7891
|
+
*
|
|
7892
|
+
* @category Uplynk
|
|
7893
|
+
* @public
|
|
7894
|
+
*/
|
|
7895
|
+
interface UplynkResponseVodAds {
|
|
7606
7896
|
/**
|
|
7607
7897
|
* List of ad break information.
|
|
7608
7898
|
*
|
|
7609
7899
|
* @remarks
|
|
7610
7900
|
* <br/> - This includes both linear and non-linear ads.
|
|
7611
7901
|
*/
|
|
7612
|
-
breaks:
|
|
7902
|
+
breaks: UplynkResponseVodAdBreak[];
|
|
7613
7903
|
/**
|
|
7614
7904
|
* List of ad break offset information.
|
|
7615
7905
|
*/
|
|
7616
|
-
breakOffsets
|
|
7906
|
+
breakOffsets?: UplynkResponseVodAdBreakOffset[];
|
|
7617
7907
|
/**
|
|
7618
7908
|
* List of placeholder offset information.
|
|
7619
7909
|
*/
|
|
7620
|
-
placeholderOffsets
|
|
7910
|
+
placeholderOffsets?: UplynkResponseVodAdPlaceholder[];
|
|
7621
7911
|
}
|
|
7622
7912
|
/**
|
|
7623
7913
|
* Represents a Verizon Media response with ad break information for VOD assets.
|
|
7624
7914
|
*
|
|
7625
7915
|
* @category Verizon Media
|
|
7626
7916
|
* @public
|
|
7917
|
+
* @deprecated Superseded by {@link UplynkResponseVodAdBreak}
|
|
7918
|
+
*/
|
|
7919
|
+
type VerizonMediaResponseVodAdBreak = UplynkResponseVodAdBreak;
|
|
7920
|
+
/**
|
|
7921
|
+
* Represents an Uplynk response with ad break information for VOD assets.
|
|
7922
|
+
*
|
|
7923
|
+
* @category Uplynk
|
|
7924
|
+
* @public
|
|
7627
7925
|
*/
|
|
7628
|
-
interface
|
|
7926
|
+
interface UplynkResponseVodAdBreak {
|
|
7629
7927
|
/**
|
|
7630
7928
|
* The type of the ad break.
|
|
7631
7929
|
*/
|
|
@@ -7651,7 +7949,7 @@ interface VerizonMediaResponseVodAdBreak {
|
|
|
7651
7949
|
/**
|
|
7652
7950
|
* List of ad information.
|
|
7653
7951
|
*/
|
|
7654
|
-
ads:
|
|
7952
|
+
ads: UplynkResponseVodAd[];
|
|
7655
7953
|
/**
|
|
7656
7954
|
* A record of all VAST 3.0 tracking events for the ad break.
|
|
7657
7955
|
* Each entry contains an event name with associated tracking URLs.
|
|
@@ -7663,8 +7961,16 @@ interface VerizonMediaResponseVodAdBreak {
|
|
|
7663
7961
|
*
|
|
7664
7962
|
* @category Verizon Media
|
|
7665
7963
|
* @public
|
|
7964
|
+
* @deprecated Superseded by {@link UplynkResponseVodAd}
|
|
7965
|
+
*/
|
|
7966
|
+
type VerizonMediaResponseVodAd = UplynkResponseVodAd;
|
|
7967
|
+
/**
|
|
7968
|
+
* The Uplynk response with ad information for VOD assets.
|
|
7969
|
+
*
|
|
7970
|
+
* @category Uplynk
|
|
7971
|
+
* @public
|
|
7666
7972
|
*/
|
|
7667
|
-
interface
|
|
7973
|
+
interface UplynkResponseVodAd {
|
|
7668
7974
|
/**
|
|
7669
7975
|
* The duration of the ad, in seconds.
|
|
7670
7976
|
*/
|
|
@@ -7710,7 +8016,7 @@ interface VerizonMediaResponseVodAd {
|
|
|
7710
8016
|
/**
|
|
7711
8017
|
* List of companion ads of the ad.
|
|
7712
8018
|
*/
|
|
7713
|
-
companions:
|
|
8019
|
+
companions: UplynkResponseVodAd[];
|
|
7714
8020
|
/**
|
|
7715
8021
|
* List of VAST extensions returned by the ad server.
|
|
7716
8022
|
*/
|
|
@@ -7731,8 +8037,16 @@ interface VerizonMediaResponseVodAd {
|
|
|
7731
8037
|
*
|
|
7732
8038
|
* @category Verizon Media
|
|
7733
8039
|
* @public
|
|
8040
|
+
* @deprecated Superseded by {@link UplynkResponseVodAdBreakOffset}
|
|
8041
|
+
*/
|
|
8042
|
+
type VerizonMediaResponseVodAdBreakOffset = UplynkResponseVodAdBreakOffset;
|
|
8043
|
+
/**
|
|
8044
|
+
* Represents the offset of an Uplynk ad break.
|
|
8045
|
+
*
|
|
8046
|
+
* @category Uplynk
|
|
8047
|
+
* @public
|
|
7734
8048
|
*/
|
|
7735
|
-
interface
|
|
8049
|
+
interface UplynkResponseVodAdBreakOffset {
|
|
7736
8050
|
/**
|
|
7737
8051
|
* The index of the ad break in the ads.breaks array.
|
|
7738
8052
|
*/
|
|
@@ -7752,8 +8066,21 @@ interface VerizonMediaResponseVodAdBreakOffset {
|
|
|
7752
8066
|
*
|
|
7753
8067
|
* @category Verizon Media
|
|
7754
8068
|
* @public
|
|
8069
|
+
* @deprecated Superseded by {@link UplynkResponseVodAdPlaceholder}
|
|
7755
8070
|
*/
|
|
7756
|
-
|
|
8071
|
+
type VerizonMediaResponseVodAdPlaceholder = UplynkResponseVodAdPlaceholder;
|
|
8072
|
+
/**
|
|
8073
|
+
* Represents an Uplynk response with a placeholder for an ad for VOD assets.
|
|
8074
|
+
*
|
|
8075
|
+
* @remarks
|
|
8076
|
+
* A placeholder is an ad which
|
|
8077
|
+
* <br/> - is a short blank video for non-video ads (e.g. VPAID ads).
|
|
8078
|
+
* <br/> - is a system asset which is potentially subject to change.
|
|
8079
|
+
*
|
|
8080
|
+
* @category Uplynk
|
|
8081
|
+
* @public
|
|
8082
|
+
*/
|
|
8083
|
+
interface UplynkResponseVodAdPlaceholder {
|
|
7757
8084
|
/**
|
|
7758
8085
|
* The index of the placeholder's ad break in the `ads.breaks` array.
|
|
7759
8086
|
*/
|
|
@@ -7779,26 +8106,52 @@ interface VerizonMediaResponseVodAdPlaceholder {
|
|
|
7779
8106
|
*
|
|
7780
8107
|
* @category Verizon Media
|
|
7781
8108
|
* @public
|
|
8109
|
+
* @deprecated Superseded by {@link UplynkPreplayResponseType}
|
|
8110
|
+
*/
|
|
8111
|
+
type VerizonMediaPreplayResponseType = UplynkPreplayResponseType;
|
|
8112
|
+
/**
|
|
8113
|
+
* The response type of the Uplynk Preplay request, represented by a value from the following list:
|
|
8114
|
+
* <br/> - `'vod'`
|
|
8115
|
+
* <br/> - `'live'`
|
|
8116
|
+
*
|
|
8117
|
+
* @category Uplynk
|
|
8118
|
+
* @public
|
|
7782
8119
|
*/
|
|
7783
|
-
type
|
|
8120
|
+
type UplynkPreplayResponseType = 'vod' | 'live';
|
|
7784
8121
|
/**
|
|
7785
8122
|
* Type of a Verizon Media Preplay response.
|
|
7786
8123
|
*
|
|
7787
8124
|
* @category Verizon Media
|
|
7788
8125
|
* @public
|
|
8126
|
+
* @deprecated Superseded by {@link UplynkPreplayResponse}
|
|
7789
8127
|
*/
|
|
7790
|
-
type VerizonMediaPreplayResponse =
|
|
8128
|
+
type VerizonMediaPreplayResponse = UplynkPreplayResponse;
|
|
8129
|
+
/**
|
|
8130
|
+
* Type of an Uplynk Preplay response.
|
|
8131
|
+
*
|
|
8132
|
+
* @category Uplynk
|
|
8133
|
+
* @public
|
|
8134
|
+
*/
|
|
8135
|
+
type UplynkPreplayResponse = UplynkPreplayVodResponse | UplynkPreplayLiveResponse;
|
|
7791
8136
|
/**
|
|
7792
8137
|
* Represents a Verizon Media Preplay base response.
|
|
7793
8138
|
*
|
|
7794
8139
|
* @category Verizon Media
|
|
7795
8140
|
* @public
|
|
8141
|
+
* @deprecated Superseded by {@link UplynkPreplayBaseResponse}
|
|
8142
|
+
*/
|
|
8143
|
+
type VerizonMediaPreplayBaseResponse = UplynkPreplayBaseResponse;
|
|
8144
|
+
/**
|
|
8145
|
+
* Represents an Uplynk Preplay base response.
|
|
8146
|
+
*
|
|
8147
|
+
* @category Uplynk
|
|
8148
|
+
* @public
|
|
7796
8149
|
*/
|
|
7797
|
-
interface
|
|
8150
|
+
interface UplynkPreplayBaseResponse {
|
|
7798
8151
|
/**
|
|
7799
8152
|
* The response type of the request.
|
|
7800
8153
|
*/
|
|
7801
|
-
type:
|
|
8154
|
+
type: UplynkPreplayResponseType;
|
|
7802
8155
|
/**
|
|
7803
8156
|
* The manifest's URL.
|
|
7804
8157
|
*/
|
|
@@ -7825,15 +8178,27 @@ interface VerizonMediaPreplayBaseResponse {
|
|
|
7825
8178
|
* <br/> - Widevine will default to 'https://content.uplynk.com/wv'.
|
|
7826
8179
|
* <br/> - Playready will default to 'https://content.uplynk.com/pr'.
|
|
7827
8180
|
*/
|
|
7828
|
-
drm?:
|
|
8181
|
+
drm?: UplynkResponseDrm;
|
|
7829
8182
|
}
|
|
7830
8183
|
/**
|
|
7831
8184
|
* Represents a Verizon Media DRM response.
|
|
7832
8185
|
*
|
|
7833
8186
|
* @category Verizon Media
|
|
7834
8187
|
* @public
|
|
8188
|
+
* @deprecated Superseded by {@link UplynkResponseDrm}
|
|
8189
|
+
*/
|
|
8190
|
+
type VerizonMediaResponseDrm = UplynkResponseDrm;
|
|
8191
|
+
/**
|
|
8192
|
+
* Represents an Uplynk DRM response.
|
|
8193
|
+
*
|
|
8194
|
+
* @category Uplynk
|
|
8195
|
+
* @public
|
|
7835
8196
|
*/
|
|
7836
|
-
interface
|
|
8197
|
+
interface UplynkResponseDrm {
|
|
8198
|
+
/**
|
|
8199
|
+
* Indicates whether {@link https://api-docs.uplynk.com/#Develop/Studio-DRM-API.htm%3FTocPath%3D_____11 | Studio DRM} is required for playback.
|
|
8200
|
+
*/
|
|
8201
|
+
required?: boolean;
|
|
7837
8202
|
/**
|
|
7838
8203
|
* The Fairplay certificate URL.
|
|
7839
8204
|
*/
|
|
@@ -7852,8 +8217,16 @@ interface VerizonMediaResponseDrm {
|
|
|
7852
8217
|
*
|
|
7853
8218
|
* @category Verizon Media
|
|
7854
8219
|
* @public
|
|
8220
|
+
* @deprecated Superseded by {@link UplynkPreplayVodResponse}
|
|
8221
|
+
*/
|
|
8222
|
+
type VerizonMediaPreplayVodResponse = UplynkPreplayVodResponse;
|
|
8223
|
+
/**
|
|
8224
|
+
* Represents an Uplynk Preplay response for VOD assets.
|
|
8225
|
+
*
|
|
8226
|
+
* @category Uplynk
|
|
8227
|
+
* @public
|
|
7855
8228
|
*/
|
|
7856
|
-
interface
|
|
8229
|
+
interface UplynkPreplayVodResponse extends UplynkPreplayBaseResponse {
|
|
7857
8230
|
/**
|
|
7858
8231
|
* The response type of the request.
|
|
7859
8232
|
*/
|
|
@@ -7861,12 +8234,12 @@ interface VerizonMediaPreplayVodResponse extends VerizonMediaPreplayBaseResponse
|
|
|
7861
8234
|
/**
|
|
7862
8235
|
* The advertisement information.
|
|
7863
8236
|
*/
|
|
7864
|
-
ads:
|
|
8237
|
+
ads: UplynkResponseVodAds;
|
|
7865
8238
|
/**
|
|
7866
8239
|
* The URL to the interstitial information
|
|
7867
8240
|
*
|
|
7868
8241
|
* @remarks
|
|
7869
|
-
* <br/> - This
|
|
8242
|
+
* <br/> - This is an XML file.
|
|
7870
8243
|
* <br/> - This parameter reports `null` when ads are not found.
|
|
7871
8244
|
* <br/> - It should only be used on Apple TV.
|
|
7872
8245
|
*/
|
|
@@ -7877,8 +8250,16 @@ interface VerizonMediaPreplayVodResponse extends VerizonMediaPreplayBaseResponse
|
|
|
7877
8250
|
*
|
|
7878
8251
|
* @category Verizon Media
|
|
7879
8252
|
* @public
|
|
8253
|
+
* @deprecated Superseded by {@link UplynkPreplayLiveResponse}
|
|
8254
|
+
*/
|
|
8255
|
+
type VerizonMediaPreplayLiveResponse = UplynkPreplayLiveResponse;
|
|
8256
|
+
/**
|
|
8257
|
+
* Represents an Uplynk Preplay response for live assets.
|
|
8258
|
+
*
|
|
8259
|
+
* @category Uplynk
|
|
8260
|
+
* @public
|
|
7880
8261
|
*/
|
|
7881
|
-
interface
|
|
8262
|
+
interface UplynkPreplayLiveResponse extends UplynkPreplayBaseResponse {
|
|
7882
8263
|
/**
|
|
7883
8264
|
* The response type of the request.
|
|
7884
8265
|
*/
|
|
@@ -7890,12 +8271,20 @@ interface VerizonMediaPreplayLiveResponse extends VerizonMediaPreplayBaseRespons
|
|
|
7890
8271
|
*
|
|
7891
8272
|
* @category Verizon Media
|
|
7892
8273
|
* @public
|
|
8274
|
+
* @deprecated Superseded by {@link UplynkPreplayResponseEvent}
|
|
7893
8275
|
*/
|
|
7894
|
-
|
|
8276
|
+
type VerizonMediaPreplayResponseEvent = UplynkPreplayResponseEvent;
|
|
8277
|
+
/**
|
|
8278
|
+
* Fired when a Preplay response is received.
|
|
8279
|
+
*
|
|
8280
|
+
* @category Uplynk
|
|
8281
|
+
* @public
|
|
8282
|
+
*/
|
|
8283
|
+
interface UplynkPreplayResponseEvent extends Event<'preplayresponse'> {
|
|
7895
8284
|
/**
|
|
7896
8285
|
* The response which has been received.
|
|
7897
8286
|
*/
|
|
7898
|
-
readonly response:
|
|
8287
|
+
readonly response: UplynkPreplayResponse;
|
|
7899
8288
|
}
|
|
7900
8289
|
|
|
7901
8290
|
/**
|
|
@@ -7906,10 +8295,24 @@ interface VerizonMediaPreplayResponseEvent extends Event<'preplayresponse'> {
|
|
|
7906
8295
|
*
|
|
7907
8296
|
* @category Verizon Media
|
|
7908
8297
|
* @public
|
|
8298
|
+
* @deprecated Superseded by {@link UplynkAssetInfoResponse}
|
|
7909
8299
|
*/
|
|
7910
|
-
|
|
8300
|
+
type VerizonMediaAssetInfoResponse = UplynkAssetInfoResponse;
|
|
8301
|
+
/**
|
|
8302
|
+
* Represents an Uplynk Asset Info Response.
|
|
8303
|
+
*
|
|
8304
|
+
* @remarks
|
|
8305
|
+
* <br/> - See {@link https://api-docs.uplynk.com/#Develop/AssetInfo.htm | Asset Info}.
|
|
8306
|
+
*
|
|
8307
|
+
* @category Uplynk
|
|
8308
|
+
* @public
|
|
8309
|
+
*/
|
|
8310
|
+
interface UplynkAssetInfoResponse {
|
|
7911
8311
|
/**
|
|
7912
|
-
*
|
|
8312
|
+
* Returns 1 when the asset is audio only.
|
|
8313
|
+
*
|
|
8314
|
+
* @remarks
|
|
8315
|
+
* Valid values are: `0` | `1`.
|
|
7913
8316
|
*/
|
|
7914
8317
|
audio_only: number;
|
|
7915
8318
|
/**
|
|
@@ -7917,14 +8320,14 @@ interface VerizonMediaAssetInfoResponse {
|
|
|
7917
8320
|
*/
|
|
7918
8321
|
boundary_details: Boundary[] | undefined;
|
|
7919
8322
|
/**
|
|
7920
|
-
*
|
|
8323
|
+
* Returns 1 when an error occurred with the asset.
|
|
7921
8324
|
*
|
|
7922
8325
|
* @remarks
|
|
7923
|
-
*
|
|
8326
|
+
* Valid values are: `0` | `1`.
|
|
7924
8327
|
*/
|
|
7925
8328
|
error: number;
|
|
7926
8329
|
/**
|
|
7927
|
-
* The
|
|
8330
|
+
* The TV rating of the asset, represented by a value from the following list:
|
|
7928
8331
|
* <br/> - `-1`: Not Available.
|
|
7929
8332
|
* <br/> - `0`: Not Rated.
|
|
7930
8333
|
* <br/> - `1`: TV-Y.
|
|
@@ -7935,17 +8338,17 @@ interface VerizonMediaAssetInfoResponse {
|
|
|
7935
8338
|
* <br/> - `6`: TV-MA.
|
|
7936
8339
|
* <br/> - `7`: Not Rated.
|
|
7937
8340
|
*/
|
|
7938
|
-
tv_rating:
|
|
8341
|
+
tv_rating: UplynkAssetTvRating;
|
|
7939
8342
|
/**
|
|
7940
8343
|
* The number of slices available for the asset.
|
|
7941
8344
|
*/
|
|
7942
8345
|
max_slice: number;
|
|
7943
8346
|
/**
|
|
7944
|
-
* The
|
|
8347
|
+
* The base URL to the {@link https://api-docs.uplynk.com/Content/Develop/AssetInfo.htm#Thumbnails | thumbnails}.
|
|
7945
8348
|
*/
|
|
7946
8349
|
thumb_prefix: string;
|
|
7947
8350
|
/**
|
|
7948
|
-
* The average slice duration.
|
|
8351
|
+
* The average slice duration, in seconds.
|
|
7949
8352
|
*/
|
|
7950
8353
|
slice_dur: number;
|
|
7951
8354
|
/**
|
|
@@ -7960,7 +8363,7 @@ interface VerizonMediaAssetInfoResponse {
|
|
|
7960
8363
|
* <br/> - `6`: X.
|
|
7961
8364
|
* <br/> - `7`: Not Rated.
|
|
7962
8365
|
*/
|
|
7963
|
-
movie_rating:
|
|
8366
|
+
movie_rating: UplynkAssetMovieRating;
|
|
7964
8367
|
/**
|
|
7965
8368
|
* The identifier of the owner.
|
|
7966
8369
|
*/
|
|
@@ -7985,7 +8388,7 @@ interface VerizonMediaAssetInfoResponse {
|
|
|
7985
8388
|
*/
|
|
7986
8389
|
poster_url: string;
|
|
7987
8390
|
/**
|
|
7988
|
-
* The duration of the asset.
|
|
8391
|
+
* The duration of the asset, in seconds.
|
|
7989
8392
|
*/
|
|
7990
8393
|
duration: number;
|
|
7991
8394
|
/**
|
|
@@ -8001,18 +8404,18 @@ interface VerizonMediaAssetInfoResponse {
|
|
|
8001
8404
|
*
|
|
8002
8405
|
* @remarks
|
|
8003
8406
|
* These available flags are the following:
|
|
8004
|
-
*
|
|
8005
|
-
*
|
|
8006
|
-
*
|
|
8007
|
-
*
|
|
8407
|
+
* - D: Drug-related themes are present
|
|
8408
|
+
* - V: Violence is present
|
|
8409
|
+
* - S: Sexual situations are present
|
|
8410
|
+
* - L: Adult Language is present
|
|
8008
8411
|
*
|
|
8009
8412
|
* This number is a bitwise number to indicate if one or more of these values are present.
|
|
8010
|
-
*
|
|
8011
|
-
*
|
|
8012
|
-
*
|
|
8013
|
-
*
|
|
8014
|
-
*
|
|
8015
|
-
*
|
|
8413
|
+
* - [ ][ ][ ][ ] - 0: No rating flag.
|
|
8414
|
+
* - [ ][ ][ ][L] - 1: Language flag.
|
|
8415
|
+
* - [ ][ ][S][ ] - 2: Sex flag.
|
|
8416
|
+
* - [ ][V][ ][ ] - 4: Violence flag.
|
|
8417
|
+
* - [D][ ][ ][ ] - 8: Drugs flag.
|
|
8418
|
+
* - [D][V][S][L] - 15: All flags are on.
|
|
8016
8419
|
*/
|
|
8017
8420
|
rating_flags: number;
|
|
8018
8421
|
/**
|
|
@@ -8020,10 +8423,10 @@ interface VerizonMediaAssetInfoResponse {
|
|
|
8020
8423
|
*/
|
|
8021
8424
|
external_id: string;
|
|
8022
8425
|
/**
|
|
8023
|
-
*
|
|
8426
|
+
* Returns 1 when asset is an ad.
|
|
8024
8427
|
*
|
|
8025
8428
|
* @remarks
|
|
8026
|
-
*
|
|
8429
|
+
* Valid values are: `0` | `1`.
|
|
8027
8430
|
*/
|
|
8028
8431
|
is_ad: number;
|
|
8029
8432
|
/**
|
|
@@ -8033,14 +8436,15 @@ interface VerizonMediaAssetInfoResponse {
|
|
|
8033
8436
|
}
|
|
8034
8437
|
/**
|
|
8035
8438
|
* A boundary can be one of 3 possible types:
|
|
8036
|
-
*
|
|
8037
|
-
*
|
|
8038
|
-
*
|
|
8439
|
+
* - `c3`: An ad that is relevant for up to 3 days after the original airing.
|
|
8440
|
+
* - `c7`: An ad that is relevant for up to 7 days after the original airing.
|
|
8441
|
+
* - `halftime`: Identifies special content.
|
|
8039
8442
|
*
|
|
8040
8443
|
* @remarks
|
|
8041
|
-
* <br/> - See {@link https://docs.
|
|
8444
|
+
* <br/> - See {@link https://api-docs.uplynk.com/index.html#Setup/Boundaries-Setup-Playback.htm | Boundaries }
|
|
8042
8445
|
*
|
|
8043
8446
|
* @category Verizon Media
|
|
8447
|
+
* @category Uplynk
|
|
8044
8448
|
* @public
|
|
8045
8449
|
*/
|
|
8046
8450
|
type Boundary = BoundaryC3 | BoundaryC7 | BoundaryHalftime;
|
|
@@ -8048,6 +8452,7 @@ type Boundary = BoundaryC3 | BoundaryC7 | BoundaryHalftime;
|
|
|
8048
8452
|
* Represents the information of an ad boundary.
|
|
8049
8453
|
*
|
|
8050
8454
|
* @category Verizon Media
|
|
8455
|
+
* @category Uplynk
|
|
8051
8456
|
* @public
|
|
8052
8457
|
*/
|
|
8053
8458
|
interface BoundaryInfo {
|
|
@@ -8064,6 +8469,7 @@ interface BoundaryInfo {
|
|
|
8064
8469
|
* Represents the boundary of an ad that is relevant for up to three days after the original airing.
|
|
8065
8470
|
*
|
|
8066
8471
|
* @category Verizon Media
|
|
8472
|
+
* @category Uplynk
|
|
8067
8473
|
* @public
|
|
8068
8474
|
*/
|
|
8069
8475
|
interface BoundaryC3 {
|
|
@@ -8073,6 +8479,7 @@ interface BoundaryC3 {
|
|
|
8073
8479
|
* Represents the boundary of an ad that is relevant for up to seven days after the original airing.
|
|
8074
8480
|
*
|
|
8075
8481
|
* @category Verizon Media
|
|
8482
|
+
* @category Uplynk
|
|
8076
8483
|
* @public
|
|
8077
8484
|
*/
|
|
8078
8485
|
interface BoundaryC7 {
|
|
@@ -8082,15 +8489,17 @@ interface BoundaryC7 {
|
|
|
8082
8489
|
* Represents the boundary that identifies special content.
|
|
8083
8490
|
*
|
|
8084
8491
|
* @category Verizon Media
|
|
8492
|
+
* @category Uplynk
|
|
8085
8493
|
* @public
|
|
8086
8494
|
*/
|
|
8087
8495
|
interface BoundaryHalftime {
|
|
8088
8496
|
halftime: BoundaryInfo;
|
|
8089
8497
|
}
|
|
8090
8498
|
/**
|
|
8091
|
-
* Represents the resolution of
|
|
8499
|
+
* Represents the resolution of an Uplynk thumbnail.
|
|
8092
8500
|
*
|
|
8093
8501
|
* @category Verizon Media
|
|
8502
|
+
* @category Uplynk
|
|
8094
8503
|
* @public
|
|
8095
8504
|
*/
|
|
8096
8505
|
interface ThumbnailResolution {
|
|
@@ -8139,8 +8548,29 @@ interface ThumbnailResolution {
|
|
|
8139
8548
|
*
|
|
8140
8549
|
* @category Verizon Media
|
|
8141
8550
|
* @public
|
|
8551
|
+
* @deprecated Superseded by {@link UplynkAssetTvRating}
|
|
8552
|
+
*/
|
|
8553
|
+
type VerizonMediaAssetTvRating = UplynkAssetTvRating;
|
|
8554
|
+
/**
|
|
8555
|
+
* The TV rating of an asset, represented by a value from the following list:
|
|
8556
|
+
* <br/> - `-1` (NOT_AVAILABLE)
|
|
8557
|
+
* <br/> - `0` (NOT_APPLICABLE)
|
|
8558
|
+
* <br/> - `1` (TV_Y)
|
|
8559
|
+
* <br/> - `2` (TV_Y7)
|
|
8560
|
+
* <br/> - `3` (TV_G)
|
|
8561
|
+
* <br/> - `4` (TV_PG)
|
|
8562
|
+
* <br/> - `5` (TV_14)
|
|
8563
|
+
* <br/> - `6` (TV_MA)
|
|
8564
|
+
* <br/> - `7` (NOT_RATED)
|
|
8565
|
+
*
|
|
8566
|
+
* @remarks
|
|
8567
|
+
* In the online documentation the value for 0 is also "NOT RATED". Since this is counter-intuitive, we have assumed
|
|
8568
|
+
* this to be erronous and have modeled this according to the Movie Ratings, with 0 being "NOT APPLICABLE".
|
|
8569
|
+
*
|
|
8570
|
+
* @category Uplynk
|
|
8571
|
+
* @public
|
|
8142
8572
|
*/
|
|
8143
|
-
type
|
|
8573
|
+
type UplynkAssetTvRating = -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
8144
8574
|
/**
|
|
8145
8575
|
* The movie rating of an asset, represented by a value from the following list:
|
|
8146
8576
|
* <br/> - `-1` (NOT_AVAILABLE)
|
|
@@ -8155,8 +8585,25 @@ type VerizonMediaAssetTvRating = -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
|
8155
8585
|
*
|
|
8156
8586
|
* @category Verizon Media
|
|
8157
8587
|
* @public
|
|
8588
|
+
* @deprecated Superseded by {@link UplynkAssetMovieRating}
|
|
8158
8589
|
*/
|
|
8159
|
-
type VerizonMediaAssetMovieRating =
|
|
8590
|
+
type VerizonMediaAssetMovieRating = UplynkAssetMovieRating;
|
|
8591
|
+
/**
|
|
8592
|
+
* The movie rating of an asset, represented by a value from the following list:
|
|
8593
|
+
* <br/> - `-1` (NOT_AVAILABLE)
|
|
8594
|
+
* <br/> - `0` (NOT_APPLICABLE)
|
|
8595
|
+
* <br/> - `1` (G)
|
|
8596
|
+
* <br/> - `2` (PG)
|
|
8597
|
+
* <br/> - `3` (PG_13)
|
|
8598
|
+
* <br/> - `4` (R)
|
|
8599
|
+
* <br/> - `5` (NC_17)
|
|
8600
|
+
* <br/> - `6` (X)
|
|
8601
|
+
* <br/> - `7` (NOT_RATED)
|
|
8602
|
+
*
|
|
8603
|
+
* @category Uplynk
|
|
8604
|
+
* @public
|
|
8605
|
+
*/
|
|
8606
|
+
type UplynkAssetMovieRating = -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
8160
8607
|
|
|
8161
8608
|
/**
|
|
8162
8609
|
* Fired when an asset info response is received.
|
|
@@ -8164,12 +8611,21 @@ type VerizonMediaAssetMovieRating = -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
|
8164
8611
|
* @category Verizon Media
|
|
8165
8612
|
* @category Events
|
|
8166
8613
|
* @public
|
|
8614
|
+
* @deprecated Superseded by {@link UplynkAssetInfoResponseEvent}
|
|
8615
|
+
*/
|
|
8616
|
+
type VerizonMediaAssetInfoResponseEvent = UplynkAssetInfoResponseEvent;
|
|
8617
|
+
/**
|
|
8618
|
+
* Fired when an asset info response is received.
|
|
8619
|
+
*
|
|
8620
|
+
* @category Uplynk
|
|
8621
|
+
* @category Events
|
|
8622
|
+
* @public
|
|
8167
8623
|
*/
|
|
8168
|
-
interface
|
|
8624
|
+
interface UplynkAssetInfoResponseEvent extends Event<'assetinforesponse'> {
|
|
8169
8625
|
/**
|
|
8170
8626
|
* The response which has been received.
|
|
8171
8627
|
*/
|
|
8172
|
-
readonly response:
|
|
8628
|
+
readonly response: UplynkAssetInfoResponse;
|
|
8173
8629
|
}
|
|
8174
8630
|
|
|
8175
8631
|
/**
|
|
@@ -8177,23 +8633,39 @@ interface VerizonMediaAssetInfoResponseEvent extends Event<'assetinforesponse'>
|
|
|
8177
8633
|
*
|
|
8178
8634
|
* @category Verizon Media
|
|
8179
8635
|
* @public
|
|
8636
|
+
* @deprecated Superseded by {@link UplynkResponseLiveAds}
|
|
8637
|
+
*/
|
|
8638
|
+
type VerizonMediaResponseLiveAds = UplynkResponseLiveAds;
|
|
8639
|
+
/**
|
|
8640
|
+
* Represents an Uplynk response with advertisement information for live assets.
|
|
8641
|
+
*
|
|
8642
|
+
* @category Uplynk
|
|
8643
|
+
* @public
|
|
8180
8644
|
*/
|
|
8181
|
-
interface
|
|
8645
|
+
interface UplynkResponseLiveAds {
|
|
8182
8646
|
/**
|
|
8183
8647
|
* List of ad break information.
|
|
8184
8648
|
*
|
|
8185
8649
|
* @remarks
|
|
8186
8650
|
* <br/> - This includes both linear and non-linear ads.
|
|
8187
8651
|
*/
|
|
8188
|
-
breaks:
|
|
8652
|
+
breaks: UplynkResponseLiveAdBreak[];
|
|
8189
8653
|
}
|
|
8190
8654
|
/**
|
|
8191
8655
|
* Represents a Verizon Media response for live ad breaks.
|
|
8192
8656
|
*
|
|
8193
8657
|
* @category Verizon Media
|
|
8194
8658
|
* @public
|
|
8659
|
+
* @deprecated Superseded by {@link UplynkResponseLiveAdBreak}
|
|
8195
8660
|
*/
|
|
8196
|
-
|
|
8661
|
+
type VerizonMediaResponseLiveAdBreak = UplynkResponseLiveAdBreak;
|
|
8662
|
+
/**
|
|
8663
|
+
* Represents an Uplynk response for live ad breaks.
|
|
8664
|
+
*
|
|
8665
|
+
* @category Uplynk
|
|
8666
|
+
* @public
|
|
8667
|
+
*/
|
|
8668
|
+
interface UplynkResponseLiveAdBreak {
|
|
8197
8669
|
/**
|
|
8198
8670
|
* The identifier of the ad break.
|
|
8199
8671
|
*/
|
|
@@ -8201,7 +8673,7 @@ interface VerizonMediaResponseLiveAdBreak {
|
|
|
8201
8673
|
/**
|
|
8202
8674
|
* List of ad information.
|
|
8203
8675
|
*/
|
|
8204
|
-
ads:
|
|
8676
|
+
ads: UplynkResponseLiveAd[];
|
|
8205
8677
|
/**
|
|
8206
8678
|
* The type of the ad break.
|
|
8207
8679
|
*/
|
|
@@ -8249,8 +8721,16 @@ interface VerizonMediaResponseLiveAdBreak {
|
|
|
8249
8721
|
*
|
|
8250
8722
|
* @category Verizon Media
|
|
8251
8723
|
* @public
|
|
8724
|
+
* @deprecated Superseded by {@link UplynkResponseLiveAd}
|
|
8725
|
+
*/
|
|
8726
|
+
type VerizonMediaResponseLiveAd = UplynkResponseLiveAd;
|
|
8727
|
+
/**
|
|
8728
|
+
* Represents an Uplynk response with live ads.
|
|
8729
|
+
*
|
|
8730
|
+
* @category Uplynk
|
|
8731
|
+
* @public
|
|
8252
8732
|
*/
|
|
8253
|
-
interface
|
|
8733
|
+
interface UplynkResponseLiveAd {
|
|
8254
8734
|
/**
|
|
8255
8735
|
* Identifier for the ad.
|
|
8256
8736
|
*/
|
|
@@ -8266,7 +8746,7 @@ interface VerizonMediaResponseLiveAd {
|
|
|
8266
8746
|
/**
|
|
8267
8747
|
* List of companion ads of the ad.
|
|
8268
8748
|
*/
|
|
8269
|
-
companions:
|
|
8749
|
+
companions: UplynkResponseLiveAd[];
|
|
8270
8750
|
/**
|
|
8271
8751
|
* The creative identifier.
|
|
8272
8752
|
*
|
|
@@ -8320,8 +8800,19 @@ interface VerizonMediaResponseLiveAd {
|
|
|
8320
8800
|
*
|
|
8321
8801
|
* @category Verizon Media
|
|
8322
8802
|
* @public
|
|
8803
|
+
* @deprecated Superseded by {@link UplynkPingResponse}
|
|
8323
8804
|
*/
|
|
8324
|
-
|
|
8805
|
+
type VerizonMediaPingResponse = UplynkPingResponse;
|
|
8806
|
+
/**
|
|
8807
|
+
* Represents an Uplynk Ping response.
|
|
8808
|
+
*
|
|
8809
|
+
* @remarks
|
|
8810
|
+
* <br/> - See {@link https://api-docs.uplynk.com/#Develop/Pingv2.htm%3FTocPath%3DClient%2520(Media%2520Player)%7C_____3 | Ping API (Version 2)}.
|
|
8811
|
+
*
|
|
8812
|
+
* @category Uplynk
|
|
8813
|
+
* @public
|
|
8814
|
+
*/
|
|
8815
|
+
interface UplynkPingResponse {
|
|
8325
8816
|
/**
|
|
8326
8817
|
* The playback position at which the next ping request must be made, in seconds.
|
|
8327
8818
|
*
|
|
@@ -8332,9 +8823,9 @@ interface VerizonMediaPingResponse {
|
|
|
8332
8823
|
/**
|
|
8333
8824
|
* The live ad information.
|
|
8334
8825
|
*/
|
|
8335
|
-
ads?:
|
|
8826
|
+
ads?: UplynkResponseLiveAds;
|
|
8336
8827
|
/**
|
|
8337
|
-
* Whether {@link
|
|
8828
|
+
* Whether {@link UplynkAds.currentAdBreak} is ending.
|
|
8338
8829
|
*
|
|
8339
8830
|
* @remarks
|
|
8340
8831
|
* <br/> - False if `0`, true otherwise.
|
|
@@ -8356,12 +8847,21 @@ interface VerizonMediaPingResponse {
|
|
|
8356
8847
|
* @category Verizon Media
|
|
8357
8848
|
* @category Events
|
|
8358
8849
|
* @public
|
|
8850
|
+
* @deprecated Superseded by {@link UplynkPingResponseEvent}
|
|
8359
8851
|
*/
|
|
8360
|
-
|
|
8852
|
+
type VerizonMediaPingResponseEvent = UplynkPingResponseEvent;
|
|
8853
|
+
/**
|
|
8854
|
+
* Fired when a Ping response is received.
|
|
8855
|
+
*
|
|
8856
|
+
* @category Uplynk
|
|
8857
|
+
* @category Events
|
|
8858
|
+
* @public
|
|
8859
|
+
*/
|
|
8860
|
+
interface UplynkPingResponseEvent extends Event<'pingresponse'> {
|
|
8361
8861
|
/**
|
|
8362
8862
|
* The response which has been received.
|
|
8363
8863
|
*/
|
|
8364
|
-
readonly response:
|
|
8864
|
+
readonly response: UplynkPingResponse;
|
|
8365
8865
|
}
|
|
8366
8866
|
|
|
8367
8867
|
/**
|
|
@@ -8370,8 +8870,17 @@ interface VerizonMediaPingResponseEvent extends Event<'pingresponse'> {
|
|
|
8370
8870
|
* @category Verizon Media
|
|
8371
8871
|
* @category Events
|
|
8372
8872
|
* @public
|
|
8873
|
+
* @deprecated Superseded by {@link UplynkPingErrorEvent}
|
|
8874
|
+
*/
|
|
8875
|
+
type VerizonMediaPingErrorEvent = UplynkPingErrorEvent;
|
|
8876
|
+
/**
|
|
8877
|
+
* Fired when an error or invalid response is received from the Ping API.
|
|
8878
|
+
*
|
|
8879
|
+
* @category Uplynk
|
|
8880
|
+
* @category Events
|
|
8881
|
+
* @public
|
|
8373
8882
|
*/
|
|
8374
|
-
interface
|
|
8883
|
+
interface UplynkPingErrorEvent extends Event<'pingerror'> {
|
|
8375
8884
|
/**
|
|
8376
8885
|
* The error message.
|
|
8377
8886
|
*/
|
|
@@ -8383,8 +8892,16 @@ interface VerizonMediaPingErrorEvent extends Event<'pingerror'> {
|
|
|
8383
8892
|
*
|
|
8384
8893
|
* @category Verizon Media
|
|
8385
8894
|
* @public
|
|
8895
|
+
* @deprecated Superseded by {@link UplynkAsset}
|
|
8386
8896
|
*/
|
|
8387
|
-
|
|
8897
|
+
type VerizonMediaAsset = UplynkAsset;
|
|
8898
|
+
/**
|
|
8899
|
+
* Represents an Uplynk asset.
|
|
8900
|
+
*
|
|
8901
|
+
* @category Uplynk
|
|
8902
|
+
* @public
|
|
8903
|
+
*/
|
|
8904
|
+
interface UplynkAsset {
|
|
8388
8905
|
/**
|
|
8389
8906
|
* The start time of the asset, in seconds.
|
|
8390
8907
|
*/
|
|
@@ -8393,7 +8910,7 @@ interface VerizonMediaAsset {
|
|
|
8393
8910
|
* The end time of the asset, in seconds.
|
|
8394
8911
|
*
|
|
8395
8912
|
* @remarks
|
|
8396
|
-
* <br> - The end time is the sum of {@link
|
|
8913
|
+
* <br> - The end time is the sum of {@link UplynkAsset.startTime}, {@link UplynkAsset.duration} and the {@link UplynkAdBreak.duration} of the ad breaks scheduled during the asset.
|
|
8397
8914
|
*/
|
|
8398
8915
|
endTime: number;
|
|
8399
8916
|
/**
|
|
@@ -8408,7 +8925,7 @@ interface VerizonMediaAsset {
|
|
|
8408
8925
|
* List of boundaries of the asset.
|
|
8409
8926
|
*
|
|
8410
8927
|
* @remarks
|
|
8411
|
-
* <br/> - See {@link https://docs.
|
|
8928
|
+
* <br/> - See {@link https://api-docs.uplynk.com/index.html#Setup/Boundaries-Setup-Playback.htm | Boundaries}
|
|
8412
8929
|
*/
|
|
8413
8930
|
boundaryDetails: Boundary[] | undefined;
|
|
8414
8931
|
/**
|
|
@@ -8520,12 +9037,21 @@ interface VerizonMediaAsset {
|
|
|
8520
9037
|
* @category Verizon Media
|
|
8521
9038
|
* @category Events
|
|
8522
9039
|
* @public
|
|
9040
|
+
* @deprecated Superseded by {@link UplynkAddAssetEvent}
|
|
8523
9041
|
*/
|
|
8524
|
-
|
|
9042
|
+
type VerizonMediaAddAssetEvent = UplynkAddAssetEvent;
|
|
9043
|
+
/**
|
|
9044
|
+
* Fired when an asset is added.
|
|
9045
|
+
*
|
|
9046
|
+
* @category Uplynk
|
|
9047
|
+
* @category Events
|
|
9048
|
+
* @public
|
|
9049
|
+
*/
|
|
9050
|
+
interface UplynkAddAssetEvent extends Event<'addasset'> {
|
|
8525
9051
|
/**
|
|
8526
9052
|
* The asset which has been added.
|
|
8527
9053
|
*/
|
|
8528
|
-
readonly asset:
|
|
9054
|
+
readonly asset: UplynkAsset;
|
|
8529
9055
|
}
|
|
8530
9056
|
|
|
8531
9057
|
/**
|
|
@@ -8534,12 +9060,21 @@ interface VerizonMediaAddAssetEvent extends Event<'addasset'> {
|
|
|
8534
9060
|
* @category Verizon Media
|
|
8535
9061
|
* @category Events
|
|
8536
9062
|
* @public
|
|
9063
|
+
* @deprecated Superseded by {@link UplynkRemoveAssetEvent}
|
|
9064
|
+
*/
|
|
9065
|
+
type VerizonMediaRemoveAssetEvent = UplynkRemoveAssetEvent;
|
|
9066
|
+
/**
|
|
9067
|
+
* Fired when an asset is removed.
|
|
9068
|
+
*
|
|
9069
|
+
* @category Uplynk
|
|
9070
|
+
* @category Events
|
|
9071
|
+
* @public
|
|
8537
9072
|
*/
|
|
8538
|
-
interface
|
|
9073
|
+
interface UplynkRemoveAssetEvent extends Event<'removeasset'> {
|
|
8539
9074
|
/**
|
|
8540
9075
|
* The asset which has been removed.
|
|
8541
9076
|
*/
|
|
8542
|
-
readonly asset:
|
|
9077
|
+
readonly asset: UplynkAsset;
|
|
8543
9078
|
}
|
|
8544
9079
|
|
|
8545
9080
|
/**
|
|
@@ -8547,24 +9082,40 @@ interface VerizonMediaRemoveAssetEvent extends Event<'removeasset'> {
|
|
|
8547
9082
|
*
|
|
8548
9083
|
* @category Verizon Media
|
|
8549
9084
|
* @public
|
|
9085
|
+
* @deprecated Superseded by {@link UplynkAssetEventMap}
|
|
8550
9086
|
*/
|
|
8551
|
-
|
|
9087
|
+
type VerizonMediaAssetEventMap = UplynkAssetEventMap;
|
|
9088
|
+
/**
|
|
9089
|
+
* The events fired by the {@link UplynkAssetList}.
|
|
9090
|
+
*
|
|
9091
|
+
* @category Uplynk
|
|
9092
|
+
* @public
|
|
9093
|
+
*/
|
|
9094
|
+
interface UplynkAssetEventMap {
|
|
8552
9095
|
/**
|
|
8553
|
-
* {@inheritDoc
|
|
9096
|
+
* {@inheritDoc UplynkAddAssetEvent}
|
|
8554
9097
|
*/
|
|
8555
|
-
addasset:
|
|
9098
|
+
addasset: UplynkAddAssetEvent;
|
|
8556
9099
|
/**
|
|
8557
|
-
* {@inheritDoc
|
|
9100
|
+
* {@inheritDoc UplynkRemoveAssetEvent}
|
|
8558
9101
|
*/
|
|
8559
|
-
removeasset:
|
|
9102
|
+
removeasset: UplynkRemoveAssetEvent;
|
|
8560
9103
|
}
|
|
8561
9104
|
/**
|
|
8562
9105
|
* List of Verizon Media assets.
|
|
8563
9106
|
*
|
|
8564
9107
|
* @category Verizon Media
|
|
8565
9108
|
* @public
|
|
9109
|
+
* @deprecated Superseded by {@link UplynkAssetList}
|
|
9110
|
+
*/
|
|
9111
|
+
type VerizonMediaAssetList = UplynkAssetList;
|
|
9112
|
+
/**
|
|
9113
|
+
* List of Uplynk assets.
|
|
9114
|
+
*
|
|
9115
|
+
* @category Uplynk
|
|
9116
|
+
* @public
|
|
8566
9117
|
*/
|
|
8567
|
-
interface
|
|
9118
|
+
interface UplynkAssetList extends EventedList<UplynkAsset, UplynkAssetEventMap> {
|
|
8568
9119
|
}
|
|
8569
9120
|
|
|
8570
9121
|
/**
|
|
@@ -8572,24 +9123,32 @@ interface VerizonMediaAssetList extends EventedList<VerizonMediaAsset, VerizonMe
|
|
|
8572
9123
|
*
|
|
8573
9124
|
* @category Verizon Media
|
|
8574
9125
|
* @public
|
|
9126
|
+
* @deprecated Superseded by {@link UplynkEventMap}.
|
|
9127
|
+
*/
|
|
9128
|
+
type VerizonMediaEventMap = UplynkEventMap;
|
|
9129
|
+
/**
|
|
9130
|
+
* The events fired by the {@link Uplynk | Uplynk API}.
|
|
9131
|
+
*
|
|
9132
|
+
* @category Uplynk
|
|
9133
|
+
* @public
|
|
8575
9134
|
*/
|
|
8576
|
-
interface
|
|
9135
|
+
interface UplynkEventMap {
|
|
8577
9136
|
/**
|
|
8578
|
-
* {@inheritDoc
|
|
9137
|
+
* {@inheritDoc UplynkPreplayResponseEvent}
|
|
8579
9138
|
*/
|
|
8580
|
-
preplayresponse:
|
|
9139
|
+
preplayresponse: UplynkPreplayResponseEvent;
|
|
8581
9140
|
/**
|
|
8582
|
-
* {@inheritDoc
|
|
9141
|
+
* {@inheritDoc UplynkAssetInfoResponseEvent}
|
|
8583
9142
|
*/
|
|
8584
|
-
assetinforesponse:
|
|
9143
|
+
assetinforesponse: UplynkAssetInfoResponseEvent;
|
|
8585
9144
|
/**
|
|
8586
|
-
* {@inheritDoc
|
|
9145
|
+
* {@inheritDoc UplynkPingResponseEvent}
|
|
8587
9146
|
*/
|
|
8588
|
-
pingresponse:
|
|
9147
|
+
pingresponse: UplynkPingResponseEvent;
|
|
8589
9148
|
/**
|
|
8590
|
-
* {@inheritDoc
|
|
9149
|
+
* {@inheritDoc UplynkPingErrorEvent}
|
|
8591
9150
|
*/
|
|
8592
|
-
pingerror:
|
|
9151
|
+
pingerror: UplynkPingErrorEvent;
|
|
8593
9152
|
}
|
|
8594
9153
|
/**
|
|
8595
9154
|
* The Verizon Media API.
|
|
@@ -8599,16 +9158,27 @@ interface VerizonMediaEventMap {
|
|
|
8599
9158
|
*
|
|
8600
9159
|
* @category Verizon Media
|
|
8601
9160
|
* @public
|
|
9161
|
+
* @deprecated Superseded by {@link Uplynk}.
|
|
9162
|
+
*/
|
|
9163
|
+
type VerizonMedia = Uplynk;
|
|
9164
|
+
/**
|
|
9165
|
+
* The Uplynk API.
|
|
9166
|
+
*
|
|
9167
|
+
* @remarks
|
|
9168
|
+
* <br/> - Only available with the feature 'uplynk'.
|
|
9169
|
+
*
|
|
9170
|
+
* @category Uplynk
|
|
9171
|
+
* @public
|
|
8602
9172
|
*/
|
|
8603
|
-
interface
|
|
9173
|
+
interface Uplynk extends EventDispatcher<UplynkEventMap> {
|
|
8604
9174
|
/**
|
|
8605
|
-
* The
|
|
9175
|
+
* The Uplynk SSAI API.
|
|
8606
9176
|
*/
|
|
8607
|
-
readonly ads:
|
|
9177
|
+
readonly ads: UplynkAds;
|
|
8608
9178
|
/**
|
|
8609
|
-
* List of
|
|
9179
|
+
* List of Uplynk assets.
|
|
8610
9180
|
*/
|
|
8611
|
-
readonly assets:
|
|
9181
|
+
readonly assets: UplynkAssetList;
|
|
8612
9182
|
}
|
|
8613
9183
|
|
|
8614
9184
|
/**
|
|
@@ -9622,6 +10192,186 @@ interface CustomTextTrackMap {
|
|
|
9622
10192
|
webvtt: CustomWebVTTTextTrack;
|
|
9623
10193
|
}
|
|
9624
10194
|
|
|
10195
|
+
/**
|
|
10196
|
+
* The THEOads API.
|
|
10197
|
+
*
|
|
10198
|
+
* @remarks
|
|
10199
|
+
* <br/> - Available since v8.12.0.
|
|
10200
|
+
*
|
|
10201
|
+
* @category THEOads
|
|
10202
|
+
* @public
|
|
10203
|
+
*/
|
|
10204
|
+
interface TheoAds extends EventDispatcher<TheoAdsEventsMap> {
|
|
10205
|
+
/**
|
|
10206
|
+
* The currently playing interstitials.
|
|
10207
|
+
*/
|
|
10208
|
+
currentInterstitials: readonly Interstitial[];
|
|
10209
|
+
/**
|
|
10210
|
+
* List of interstitials which still need to be played.
|
|
10211
|
+
*/
|
|
10212
|
+
scheduledInterstitials: readonly Interstitial[];
|
|
10213
|
+
/**
|
|
10214
|
+
* Replaces all the ad tag parameters used for upcoming ad requests for a live stream.
|
|
10215
|
+
*
|
|
10216
|
+
* @param adTagParameters - The new ad tag parameters.
|
|
10217
|
+
*
|
|
10218
|
+
* @remarks
|
|
10219
|
+
* <br/> - If set, this value overrides any parameters set on the {@link TheoAdDescription.adTagParameters}.
|
|
10220
|
+
*/
|
|
10221
|
+
replaceAdTagParameters(adTagParameters?: Record<string, string>): void;
|
|
10222
|
+
}
|
|
10223
|
+
/**
|
|
10224
|
+
* The events fired by the {@link TheoAds | THEOads API}.
|
|
10225
|
+
*
|
|
10226
|
+
* @category THEOads
|
|
10227
|
+
* @public
|
|
10228
|
+
*/
|
|
10229
|
+
interface TheoAdsEventsMap {
|
|
10230
|
+
/**
|
|
10231
|
+
* Fired when an interstitial is added.
|
|
10232
|
+
*/
|
|
10233
|
+
addinterstitial: InterstitialEvent<'addinterstitial'>;
|
|
10234
|
+
/**
|
|
10235
|
+
* Fired when an interstitial begins.
|
|
10236
|
+
*/
|
|
10237
|
+
interstitialbegin: InterstitialEvent<'interstitialbegin'>;
|
|
10238
|
+
/**
|
|
10239
|
+
* Fired when an interstitial ends.
|
|
10240
|
+
*/
|
|
10241
|
+
interstitialend: InterstitialEvent<'interstitialend'>;
|
|
10242
|
+
/**
|
|
10243
|
+
* Fired when an interstitial is updated.
|
|
10244
|
+
*/
|
|
10245
|
+
interstitialupdate: InterstitialEvent<'interstitialupdate'>;
|
|
10246
|
+
/**
|
|
10247
|
+
* Fired when an interstitial has errored.
|
|
10248
|
+
*/
|
|
10249
|
+
interstitialerror: InterstitialEvent<'interstitialerror'>;
|
|
10250
|
+
}
|
|
10251
|
+
/**
|
|
10252
|
+
* Base type for events related to an interstitial.
|
|
10253
|
+
*
|
|
10254
|
+
* @category THEOads
|
|
10255
|
+
* @category Events
|
|
10256
|
+
* @public
|
|
10257
|
+
*/
|
|
10258
|
+
interface InterstitialEvent<TType extends string> extends Event<TType> {
|
|
10259
|
+
/**
|
|
10260
|
+
* The interstitial.
|
|
10261
|
+
*/
|
|
10262
|
+
readonly interstitial: Interstitial;
|
|
10263
|
+
}
|
|
10264
|
+
/**
|
|
10265
|
+
* The type of the interstitial.
|
|
10266
|
+
*
|
|
10267
|
+
* @category THEOads
|
|
10268
|
+
* @public
|
|
10269
|
+
*/
|
|
10270
|
+
type InterstitialType = 'adbreak' | 'overlay';
|
|
10271
|
+
/**
|
|
10272
|
+
* The THEOads interstitial.
|
|
10273
|
+
*
|
|
10274
|
+
* @category THEOads
|
|
10275
|
+
* @public
|
|
10276
|
+
*/
|
|
10277
|
+
interface Interstitial {
|
|
10278
|
+
/**
|
|
10279
|
+
* The type of the interstitial.
|
|
10280
|
+
*/
|
|
10281
|
+
type: InterstitialType;
|
|
10282
|
+
/**
|
|
10283
|
+
* The identifier of the interstitial.
|
|
10284
|
+
*/
|
|
10285
|
+
id: string;
|
|
10286
|
+
/**
|
|
10287
|
+
* The start time at which the interstitial will start.
|
|
10288
|
+
*/
|
|
10289
|
+
startTime: number;
|
|
10290
|
+
/**
|
|
10291
|
+
* The duration of the interstitial, in seconds.
|
|
10292
|
+
*
|
|
10293
|
+
*/
|
|
10294
|
+
duration: number | undefined;
|
|
10295
|
+
}
|
|
10296
|
+
/**
|
|
10297
|
+
* The layout of the THEOad.
|
|
10298
|
+
*/
|
|
10299
|
+
type TheoAdsLayout = 'single' | 'l-shape' | 'double';
|
|
10300
|
+
/**
|
|
10301
|
+
* The THEOads interstitial that corresponds with ad playback.
|
|
10302
|
+
*
|
|
10303
|
+
* @category THEOads
|
|
10304
|
+
* @public
|
|
10305
|
+
*/
|
|
10306
|
+
interface AdBreakInterstitial extends Interstitial {
|
|
10307
|
+
type: 'adbreak';
|
|
10308
|
+
/**
|
|
10309
|
+
* The layout which is used to play the ads of the interstitial.
|
|
10310
|
+
*/
|
|
10311
|
+
layout: TheoAdsLayout;
|
|
10312
|
+
/**
|
|
10313
|
+
* The background when playing an ad.
|
|
10314
|
+
*
|
|
10315
|
+
* @remarks
|
|
10316
|
+
* - <br/> This is only available when playing in double or l-shape layout.
|
|
10317
|
+
*/
|
|
10318
|
+
backdropUri: string | undefined;
|
|
10319
|
+
/**
|
|
10320
|
+
* The ads that are part of the interstitial.
|
|
10321
|
+
*
|
|
10322
|
+
* @remarks
|
|
10323
|
+
* - <br/> - Only available during ad playback.
|
|
10324
|
+
*/
|
|
10325
|
+
ads: readonly Ad[];
|
|
10326
|
+
}
|
|
10327
|
+
/**
|
|
10328
|
+
* The THEOads interstitial that corresponds with overlay playback.
|
|
10329
|
+
*
|
|
10330
|
+
* @category THEOads
|
|
10331
|
+
* @public
|
|
10332
|
+
*/
|
|
10333
|
+
interface OverlayInterstitial extends Interstitial {
|
|
10334
|
+
type: 'overlay';
|
|
10335
|
+
/**
|
|
10336
|
+
* The url of the image of the overlay.
|
|
10337
|
+
*/
|
|
10338
|
+
imageUrl: string | undefined;
|
|
10339
|
+
/**
|
|
10340
|
+
* The clickThrough url of the overlay.
|
|
10341
|
+
*/
|
|
10342
|
+
clickThrough: string | undefined;
|
|
10343
|
+
/**
|
|
10344
|
+
* The position of the overlay.
|
|
10345
|
+
*/
|
|
10346
|
+
position: OverlayPosition;
|
|
10347
|
+
/**
|
|
10348
|
+
* The size of the overlay.
|
|
10349
|
+
*/
|
|
10350
|
+
size: OverlaySize;
|
|
10351
|
+
}
|
|
10352
|
+
/**
|
|
10353
|
+
* The position information of the overlay.
|
|
10354
|
+
*
|
|
10355
|
+
* @category THEOads
|
|
10356
|
+
* @public
|
|
10357
|
+
*/
|
|
10358
|
+
interface OverlayPosition {
|
|
10359
|
+
left?: number;
|
|
10360
|
+
right?: number;
|
|
10361
|
+
top?: number;
|
|
10362
|
+
bottom?: number;
|
|
10363
|
+
}
|
|
10364
|
+
/**
|
|
10365
|
+
* The size information of the overlay.
|
|
10366
|
+
*
|
|
10367
|
+
* @category THEOads
|
|
10368
|
+
* @public
|
|
10369
|
+
*/
|
|
10370
|
+
interface OverlaySize {
|
|
10371
|
+
width?: number;
|
|
10372
|
+
height?: number;
|
|
10373
|
+
}
|
|
10374
|
+
|
|
9625
10375
|
/**
|
|
9626
10376
|
* The events fired by the {@link ChromelessPlayer}.
|
|
9627
10377
|
*
|
|
@@ -10150,8 +10900,16 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
|
|
|
10150
10900
|
*
|
|
10151
10901
|
* @remarks
|
|
10152
10902
|
* <br/> - Only available with the feature `'verizonmedia'`.
|
|
10903
|
+
* @deprecated Superseded by `uplynk`.
|
|
10153
10904
|
*/
|
|
10154
10905
|
readonly verizonMedia?: VerizonMedia;
|
|
10906
|
+
/**
|
|
10907
|
+
* The Uplynk API.
|
|
10908
|
+
*
|
|
10909
|
+
* @remarks
|
|
10910
|
+
* <br/> - Only available with the feature `'uplynk'`.
|
|
10911
|
+
*/
|
|
10912
|
+
readonly uplynk?: Uplynk;
|
|
10155
10913
|
/**
|
|
10156
10914
|
* The HESP API.
|
|
10157
10915
|
* @remarks
|
|
@@ -10159,6 +10917,13 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
|
|
|
10159
10917
|
* <br/> - Only available with the feature `'hesp'`.
|
|
10160
10918
|
*/
|
|
10161
10919
|
readonly hesp?: HespApi;
|
|
10920
|
+
/**
|
|
10921
|
+
* The THEOads API.
|
|
10922
|
+
*
|
|
10923
|
+
* @remarks
|
|
10924
|
+
* <br/> - Only available with the feature `'theoads''`.
|
|
10925
|
+
*/
|
|
10926
|
+
readonly theoads?: TheoAds;
|
|
10162
10927
|
}
|
|
10163
10928
|
|
|
10164
10929
|
/**
|
|
@@ -12356,6 +13121,48 @@ interface TTMLCue extends TextTrackCue {
|
|
|
12356
13121
|
metadata: any;
|
|
12357
13122
|
}
|
|
12358
13123
|
|
|
13124
|
+
/**
|
|
13125
|
+
* Represents a metadata cue of a Millicast source.
|
|
13126
|
+
*
|
|
13127
|
+
* @remarks
|
|
13128
|
+
* In order to receive Millicast metadata, you must set `metadata` to `true` in {@link MillicastSource.connectOptions}.
|
|
13129
|
+
*
|
|
13130
|
+
* @see https://docs.dolby.io/streaming-apis/docs/frame-metadata
|
|
13131
|
+
*
|
|
13132
|
+
* @category Media and Text Tracks
|
|
13133
|
+
* @category Millicast
|
|
13134
|
+
* @public
|
|
13135
|
+
*/
|
|
13136
|
+
interface MillicastMetadataCue extends TextTrackCue {
|
|
13137
|
+
/**
|
|
13138
|
+
* Unused.
|
|
13139
|
+
*
|
|
13140
|
+
* @remarks
|
|
13141
|
+
* <br/> - Use {@link timecode} and/or {@link unregistered} to retrieve the contents of the Millicast metadata.
|
|
13142
|
+
*/
|
|
13143
|
+
readonly content: undefined;
|
|
13144
|
+
/**
|
|
13145
|
+
* The media identifier of the track that contains the metadata.
|
|
13146
|
+
*/
|
|
13147
|
+
readonly mid: string;
|
|
13148
|
+
/**
|
|
13149
|
+
* The UUID of the metadata.
|
|
13150
|
+
*/
|
|
13151
|
+
readonly uuid: string | undefined;
|
|
13152
|
+
/**
|
|
13153
|
+
* Timecode of when the metadata was generated.
|
|
13154
|
+
*/
|
|
13155
|
+
readonly timecode: Date | undefined;
|
|
13156
|
+
/**
|
|
13157
|
+
* Unregistered data.
|
|
13158
|
+
*
|
|
13159
|
+
* @remarks
|
|
13160
|
+
* <br/> - If the metadata content is valid JSON, then this is the parsed JSON object.
|
|
13161
|
+
* Otherwise, it's the raw data as a {@link Uint8Array}.
|
|
13162
|
+
*/
|
|
13163
|
+
readonly unregistered: object | Uint8Array | undefined;
|
|
13164
|
+
}
|
|
13165
|
+
|
|
12359
13166
|
/**
|
|
12360
13167
|
* Describes a THEOads ad break request.
|
|
12361
13168
|
*
|
|
@@ -12459,7 +13266,7 @@ interface TheoAdDescription extends AdDescription {
|
|
|
12459
13266
|
*
|
|
12460
13267
|
* @category Ads
|
|
12461
13268
|
*/
|
|
12462
|
-
type TheoAdsLayoutOverride =
|
|
13269
|
+
type TheoAdsLayoutOverride = TheoAdsLayout | 'single-if-mobile';
|
|
12463
13270
|
|
|
12464
13271
|
/**
|
|
12465
13272
|
* @category HESP
|
|
@@ -13396,4 +14203,4 @@ declare function registerContentProtectionIntegration(integrationId: string, key
|
|
|
13396
14203
|
*/
|
|
13397
14204
|
declare const utils: CommonUtils;
|
|
13398
14205
|
|
|
13399
|
-
export { ABRConfiguration, ABRMetadata, ABRStrategy, ABRStrategyConfiguration, ABRStrategyType, AES128KeySystemConfiguration, AccessibilityRole, Ad, AdBreak, AdBreakEvent, AdBreakInit, AdBufferingEvent, AdDescription, AdEvent, AdInit, AdIntegrationKind, AdMetadataEvent, AdPreloadType, AdReadyState, AdSkipEvent, AdSource, AdSourceType, AdType, AddCachingTaskEvent, AddTrackEvent, AddViewEvent, Ads, AdsConfiguration, AdsEventMap, 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, 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, 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, MillicastSource, MoatAnalyticsIntegrationID, MoatConfiguration, MultiViewPlayer, MultiViewPlayerEventMap, MultiViewPlayerLayout, MutedAutoplayConfiguration, Network, NetworkEstimator, NetworkEstimatorController, NetworkEventMap, NetworkInterceptorController, NodeStyleVoidCallback, NonLinearAd, PauseEvent, PiPConfiguration, PiPPosition, PlayEvent, PlayReadyKeySystemConfiguration, PlayerConfiguration, PlayerEventMap, PlayerList, PlayingEvent, PreloadType, Presentation, PresentationEventMap, PresentationMode, PresentationModeChangeEvent, ProgressEvent, PublicationLoadStartEvent, PublicationLoadedEvent, PublicationOfflineEvent, Quality, QualityEvent, QualityEventMap, QualityList, RateChangeEvent, ReadyStateChangeEvent, RelatedChangeEvent, RelatedContent, RelatedContentEventMap, RelatedContentSource, RelatedHideEvent, RelatedShowEvent, RemoveCachingTaskEvent, RemoveTrackEvent, RemoveViewEvent, Representation, RepresentationChangeEvent, Request, RequestBody, RequestInit, RequestInterceptor, RequestLike, RequestMeasurer, RequestMethod, RequestSubType, RequestType, ResponseBody, ResponseInit, ResponseInterceptor, ResponseLike, ResponseType, RetryConfiguration, SSAIIntegrationId, SeamlessPeriodSwitchStrategy, SeamlessSwitchStrategy, SeekedEvent, SeekingEvent, ServerSideAdInsertionConfiguration, ServerSideAdIntegrationController, ServerSideAdIntegrationFactory, ServerSideAdIntegrationHandler, 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, 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, UplynkDRMConfiguration, UplynkIntegrationID, UserActions, VPAIDMode, VR, VRConfiguration, VRDirection, VREventMap, VRPanoramaMode, VRPlayerConfiguration, VRState, VRStereoMode, VTTAlignSetting, VTTDirectionSetting, VTTLine, VTTLineAlignSetting, VTTPosition, VTTPositionAlignSetting, VTTScrollSetting, VendorCast, VendorCastEventMap, VerimatrixDRMConfiguration, VerimatrixIntegrationID, VerizonMedia, VerizonMediaAd, VerizonMediaAdBeginEvent, VerizonMediaAdBreak, VerizonMediaAdBreakBeginEvent, VerizonMediaAdBreakEndEvent, VerizonMediaAdBreakEventMap, VerizonMediaAdBreakList, VerizonMediaAdBreakListEventMap, VerizonMediaAdBreakSkipEvent, VerizonMediaAdCompleteEvent, VerizonMediaAdEndEvent, VerizonMediaAdEventMap, VerizonMediaAdFirstQuartileEvent, VerizonMediaAdList, VerizonMediaAdListEventMap, VerizonMediaAdMidpointEvent, VerizonMediaAdThirdQuartileEvent, VerizonMediaAddAdBreakEvent, VerizonMediaAddAssetEvent, VerizonMediaAds, VerizonMediaAsset, VerizonMediaAssetEventMap, VerizonMediaAssetId, VerizonMediaAssetInfoResponse, VerizonMediaAssetInfoResponseEvent, VerizonMediaAssetList, VerizonMediaAssetMovieRating, VerizonMediaAssetTvRating, VerizonMediaAssetType, VerizonMediaConfiguration, VerizonMediaEventMap, VerizonMediaExternalId, VerizonMediaPingConfiguration, VerizonMediaPingErrorEvent, VerizonMediaPingResponse, VerizonMediaPingResponseEvent, VerizonMediaPreplayBaseResponse, VerizonMediaPreplayLiveResponse, VerizonMediaPreplayResponse, VerizonMediaPreplayResponseEvent, VerizonMediaPreplayResponseType, VerizonMediaPreplayVodResponse, VerizonMediaRemoveAdBreakEvent, VerizonMediaRemoveAdEvent, VerizonMediaRemoveAssetEvent, VerizonMediaResponseDrm, VerizonMediaResponseLiveAd, VerizonMediaResponseLiveAdBreak, VerizonMediaResponseLiveAds, VerizonMediaResponseVodAd, VerizonMediaResponseVodAdBreak, VerizonMediaResponseVodAdBreakOffset, VerizonMediaResponseVodAdPlaceholder, VerizonMediaResponseVodAds, VerizonMediaSource, VerizonMediaUiConfiguration, VerizonMediaUpdateAdBreakEvent, VideoFrameCallbackMetadata, VideoFrameRequestCallback, VideoQuality, View, ViewChangeEvent, ViewPositionChangeEvent, VimondDRMConfiguration, VimondIntegrationID, Visibility, VisibilityObserver, VisibilityObserverCallback, VoidPromiseCallback, VolumeChangeEvent, VudrmDRMConfiguration, VudrmIntegrationID, WaitUntilCallback, WaitingEvent, WebAudio, WebVTTCue, WebVTTRegion, WidevineKeySystemConfiguration, XstreamDRMConfiguration, XstreamIntegrationID, YospaceId, YouboraAnalyticsIntegrationID, YouboraOptions, cache, cast, features, playerSuiteVersion, players, registerContentProtectionIntegration, utils, version, videojs };
|
|
14206
|
+
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, 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 };
|