@theoplayer/extended 4.9.1 → 4.10.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.js +3 -3
- package/THEOplayer.d.ts +4 -2
- 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.e.js +3 -3
- package/theoplayer.p.js +3 -3
package/THEOplayer.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* THEOplayer
|
|
3
3
|
* https://www.theoplayer.com
|
|
4
4
|
*
|
|
5
|
-
* Version: 2023.1.
|
|
5
|
+
* Version: 2023.1.4 (4.10.0)
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
/**
|
|
@@ -7352,6 +7352,7 @@ export declare type RequestMethod = 'DELETE' | 'GET' | 'HEAD' | 'OPTIONS' | 'POS
|
|
|
7352
7352
|
* The request's subtype, represented by a value from the following list:
|
|
7353
7353
|
* <br/> - `'initialization-segment'`
|
|
7354
7354
|
* <br/> - Any value of {@link ContentProtectionRequestSubType}
|
|
7355
|
+
* <br/> - Empty string (`''`) when the subtype is unknown
|
|
7355
7356
|
*
|
|
7356
7357
|
* @public
|
|
7357
7358
|
*/
|
|
@@ -7361,11 +7362,12 @@ export declare type RequestSubType = '' | 'initialization-segment' | ContentProt
|
|
|
7361
7362
|
* The request's type, represented by a value from the following list:
|
|
7362
7363
|
* <br/> - `'manifest'`
|
|
7363
7364
|
* <br/> - `'segment'`
|
|
7365
|
+
* <br/> - `'preload-hint'`
|
|
7364
7366
|
* <br/> - `'content-protection'`
|
|
7365
7367
|
*
|
|
7366
7368
|
* @public
|
|
7367
7369
|
*/
|
|
7368
|
-
export declare type RequestType = '' | 'manifest' | 'segment' | 'content-protection';
|
|
7370
|
+
export declare type RequestType = '' | 'manifest' | 'segment' | 'preload-hint' | 'content-protection';
|
|
7369
7371
|
|
|
7370
7372
|
/**
|
|
7371
7373
|
* The possible types of an HTTP response body.
|