@theoplayer/extended 11.1.0 → 11.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1189,6 +1189,7 @@ interface GoogleImaAd extends Ad {
1189
1189
  *
1190
1190
  * @remarks
1191
1191
  * <br/> - Available when the {@link Ad.readyState} is `'ready'`.
1192
+ * <br/> - Only available for the `google-ima` integration.
1192
1193
  */
1193
1194
  traffickingParameters: {
1194
1195
  [parameterKey: string]: string;
@@ -1204,7 +1205,8 @@ interface GoogleImaAd extends Ad {
1204
1205
  * The custom parameters for the ad at the time of ad trafficking, as a string.
1205
1206
  *
1206
1207
  * @remarks
1207
- * <br/> - A parsed version is available as {@link GoogleImaAd.traffickingParameters}.
1208
+ * <br/> - Available for `google-ima` since v2.60.0 and for `google-dai` since v11.2.0.
1209
+ * <br/> - A parsed version is available as {@link GoogleImaAd.traffickingParameters} (only when using the `google-ima` integration).
1208
1210
  * <br/> - Available when the {@link Ad.readyState} is `'ready'`.
1209
1211
  */
1210
1212
  traffickingParametersString: string | undefined;
@@ -1668,9 +1670,10 @@ interface AdDescription {
1668
1670
  *
1669
1671
  * @remarks
1670
1672
  * <br/> - When the ad ends, the content will resume at the ad break's offset plus its duration.
1673
+ * <br/> - Available for `theoads` since v11.2.0.
1671
1674
  *
1672
1675
  * @defaultValue
1673
- * <br/> - `true` for live content,
1676
+ * <br/> - `true` for live content and `theoads` VOD content.
1674
1677
  * <br/> - `false` for VOD content.
1675
1678
  */
1676
1679
  replaceContent?: boolean;
@@ -2620,7 +2623,7 @@ interface ChromecastConfiguration {
2620
2623
  /**
2621
2624
  * The identifier of a custom Chromecast receiver app.
2622
2625
  *
2623
- * @defaultValue The default THEOplayer receiver app ID: 8E80B9CE.
2626
+ * @defaultValue The default THEOplayer receiver app ID: `8E80B9CE`. This is a Shaka-based CAF receiver. Use `44BAE7D1` for an MPL-based CAF receiver for THEOplayer.
2624
2627
  */
2625
2628
  appID?: string;
2626
2629
  }
@@ -3523,6 +3526,7 @@ interface DashPlaybackConfiguration {
3523
3526
  *
3524
3527
  * @category Source
3525
3528
  * @public
3529
+ * @deprecated Will be removed in a future version.
3526
3530
  */
3527
3531
  type HlsDiscontinuityAlignment = 'auto' | 'playlist' | 'media';
3528
3532
  /**
@@ -3539,6 +3543,7 @@ interface HlsPlaybackConfiguration {
3539
3543
  * The strategy for aligning HLS discontinuities.
3540
3544
  *
3541
3545
  * @defaultValue `'auto'`
3546
+ * @deprecated This is no longer supported and is ignored by the player. Will be removed in a future version.
3542
3547
  */
3543
3548
  discontinuityAlignment?: HlsDiscontinuityAlignment;
3544
3549
  /**