@theoplayer/extended 10.5.1 → 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.
- package/THEOplayer.chromeless.d.ts +1 -1
- package/THEOplayer.chromeless.esm.js +2 -2
- package/THEOplayer.chromeless.js +3 -3
- package/THEOplayer.common.d.ts +20 -0
- package/THEOplayer.common.esm.js +3 -3
- package/THEOplayer.d.ts +1 -1
- package/THEOplayer.esm.js +3 -3
- package/THEOplayer.js +3 -3
- package/THEOplayer.transmux.asmjs.js +3 -3
- package/THEOplayer.transmux.js +3 -3
- package/package.json +1 -1
- package/theoplayer.d.js +3 -3
- package/theoplayer.sw.js +3 -3
package/THEOplayer.common.d.ts
CHANGED
|
@@ -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
|
*
|
|
@@ -10376,6 +10393,9 @@ interface TheoLiveApi extends EventDispatcher<TheoLiveApiEventMap> {
|
|
|
10376
10393
|
* Get or set the auth token that will be used when requesting a manifest or segment.
|
|
10377
10394
|
*/
|
|
10378
10395
|
authToken: string | undefined;
|
|
10396
|
+
/**
|
|
10397
|
+
* @deprecated This will be removed in a future version.
|
|
10398
|
+
*/
|
|
10379
10399
|
preloadPublications(publicationIds: string[]): Promise<TheoLivePublication[]>;
|
|
10380
10400
|
}
|
|
10381
10401
|
/**
|