@theoplayer/extended 10.5.0 → 10.6.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.
@@ -4536,7 +4536,12 @@ interface TextTrack extends Track, EventDispatcher<TextTrackEventMap> {
4536
4536
  * @public
4537
4537
  */
4538
4538
  interface TheoLiveSource extends TypedSource {
4539
+ src: string;
4539
4540
  type: 'theolive';
4541
+ /**
4542
+ * The profile identifier is included as a query parameter in the discovery request to obtain a response specific to that profile.
4543
+ */
4544
+ profile?: string;
4540
4545
  }
4541
4546
 
4542
4547
  /**
@@ -5152,6 +5157,18 @@ interface TypedSource extends BaseSource {
5152
5157
  * <br/> - Available since v2.4.0.
5153
5158
  */
5154
5159
  type?: string;
5160
+ /**
5161
+ * The source URL of the media resource that will be played during airplay.
5162
+ *
5163
+ * @internal
5164
+ */
5165
+ airplaySrc?: string;
5166
+ /**
5167
+ * The content type (MIME type) of the media resource that will be played during airplay.
5168
+ *
5169
+ * @internal
5170
+ */
5171
+ airplaySrcType?: string;
5155
5172
  /**
5156
5173
  * The content protection parameters for the media resource.
5157
5174
  *
@@ -9142,9 +9159,19 @@ interface TheoAdDescription extends AdDescription {
9142
9159
  *
9143
9160
  * @remarks
9144
9161
  * <br/> - Only applicable for specific use-cases.
9145
- * <br/> - Contact THEO Technologies for more information.
9162
+ * <br/> - Contact Dolby Optiview for more information.
9146
9163
  */
9147
9164
  useId3?: boolean;
9165
+ /**
9166
+ * Whether to use the EMSG based operating mode.
9167
+ *
9168
+ * @defaultValue `false`
9169
+ *
9170
+ * @remarks
9171
+ * <br/> - Only applicable for specific use-cases.
9172
+ * <br/> - Contact Dolby Optiview for more information.
9173
+ */
9174
+ useEMSG?: boolean;
9148
9175
  /**
9149
9176
  * The URI from where to retrieve the PodID's as returned from the EABN service from Google.
9150
9177
  *
@@ -10366,6 +10393,9 @@ interface TheoLiveApi extends EventDispatcher<TheoLiveApiEventMap> {
10366
10393
  * Get or set the auth token that will be used when requesting a manifest or segment.
10367
10394
  */
10368
10395
  authToken: string | undefined;
10396
+ /**
10397
+ * @deprecated This will be removed in a future version.
10398
+ */
10369
10399
  preloadPublications(publicationIds: string[]): Promise<TheoLivePublication[]>;
10370
10400
  }
10371
10401
  /**