@theoplayer/extended 10.11.0 → 10.12.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.
@@ -676,6 +676,10 @@ interface AdInit extends Omit<Partial<Ad>, 'integration' | 'adBreak'> {
676
676
  * @category Ads
677
677
  */
678
678
  interface AdBreakInit {
679
+ /**
680
+ * The identifier of the ad break.
681
+ */
682
+ id?: string | undefined;
679
683
  /**
680
684
  * The time offset at which content will be paused to play the ad break, in seconds.
681
685
  */
@@ -1280,6 +1284,15 @@ interface UniversalAdId {
1280
1284
  * @public
1281
1285
  */
1282
1286
  interface AdBreak {
1287
+ /**
1288
+ * The identifier of the ad break.
1289
+ *
1290
+ * @remarks
1291
+ * <br/> - For THEOads, this is the interstitial identifier.
1292
+ * <br/> - For Google IMA & DAI, this is the pod index of the ad break.
1293
+ * <br/> - For other integrations, this may be `undefined`.
1294
+ */
1295
+ id: string | undefined;
1283
1296
  /**
1284
1297
  * The integration of the ad break, represented by a value from {@link AdIntegrationKind}
1285
1298
  * or {@link CustomAdIntegrationKind | the identifier of a custom integration} registered with {@link Ads.registerServerSideIntegration}.
@@ -4629,6 +4642,7 @@ interface MillicastSource extends TypedSource {
4629
4642
  * @remarks
4630
4643
  * <br/> - The player might change the latency configuration based on playback events like stalls.
4631
4644
  * <br/> - The current latency configuration can be monitored at {@link LatencyManager.currentConfiguration}.
4645
+ * <br/> - This feature is not supported on iOS Safari, due to platform limitations.
4632
4646
  *
4633
4647
  * @category Source
4634
4648
  * @public
@@ -10312,7 +10326,9 @@ type HespMediaType = 'audio' | 'video' | 'metadata';
10312
10326
  /**
10313
10327
  * The latency manager, used to control low-latency live playback.
10314
10328
  *
10315
- * @remarks This is only used for live playback.
10329
+ * @remarks
10330
+ * <br/> - This is only used for live playback.
10331
+ * <br/> - This feature is not supported on iOS Safari, due to platform limitations.
10316
10332
  *
10317
10333
  * @category Player
10318
10334
  * @public
@@ -11417,6 +11433,14 @@ type MultiViewPlayerLayout = 'gallery' | 'spotlight' | 'overlay';
11417
11433
  * @public
11418
11434
  */
11419
11435
  interface View {
11436
+ /**
11437
+ * (Experimental) The View's internal player.
11438
+ *
11439
+ * @remarks
11440
+ * <br/> - This should not be used for controlling playback directly. Use the {@link MultiViewPlayer} methods and properties instead.
11441
+ * <br/> - This is an experimental property. Combined with multiview, player features and APIs accessible only through this direct player API may not function as intended and may disrupt proper multiview functionality.
11442
+ */
11443
+ readonly player: ChromelessPlayer;
11420
11444
  /**
11421
11445
  * The label with which the view was created.
11422
11446
  */