@theoplayer/extended 8.9.0 → 8.11.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/README.md +1 -1
- 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 +30 -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 +30 -0
package/THEOplayer.common.d.ts
CHANGED
|
@@ -2225,6 +2225,13 @@ interface DRMConfiguration {
|
|
|
2225
2225
|
* Default value is ['widevine', 'playready', 'fairplay'].
|
|
2226
2226
|
*/
|
|
2227
2227
|
preferredKeySystems?: Array<KeySystemId | (string & {})>;
|
|
2228
|
+
/**
|
|
2229
|
+
* A flag that affects HbbTV enabled devices and indicates whether the OIPF DRM agent should be used for handling DRM protection,
|
|
2230
|
+
* even when EME is available.
|
|
2231
|
+
*
|
|
2232
|
+
* Default value is false.
|
|
2233
|
+
*/
|
|
2234
|
+
useOipfDrmAgent?: boolean;
|
|
2228
2235
|
}
|
|
2229
2236
|
/**
|
|
2230
2237
|
* The id of a key system. Possible values are 'widevine', 'fairplay' and 'playready'.
|
|
@@ -2278,6 +2285,8 @@ interface GoogleDAIConfiguration extends ServerSideAdInsertionConfiguration {
|
|
|
2278
2285
|
* @remarks
|
|
2279
2286
|
* <br/> - If present, this token is used instead of the API key for stricter content authorization.
|
|
2280
2287
|
* <br/> - The publisher can control individual content streams authorizations based on this token.
|
|
2288
|
+
* <br/> - See {@link https://developers.google.com/ad-manager/dynamic-ad-insertion/sdk/html5/reference/js/StreamRequest#authToken}
|
|
2289
|
+
* for more information.
|
|
2281
2290
|
*/
|
|
2282
2291
|
authToken?: string;
|
|
2283
2292
|
/**
|
|
@@ -2286,6 +2295,8 @@ interface GoogleDAIConfiguration extends ServerSideAdInsertionConfiguration {
|
|
|
2286
2295
|
* @remarks
|
|
2287
2296
|
* <br/> - This key is used to verify applications that are attempting to access the content.
|
|
2288
2297
|
* <br/> - This key is configured through the Google Ad Manager UI.
|
|
2298
|
+
* <br/> - See {@link https://developers.google.com/ad-manager/dynamic-ad-insertion/sdk/html5/reference/js/StreamRequest#apiKey}
|
|
2299
|
+
* for more information.
|
|
2289
2300
|
*/
|
|
2290
2301
|
apiKey: string;
|
|
2291
2302
|
/**
|
|
@@ -2293,6 +2304,8 @@ interface GoogleDAIConfiguration extends ServerSideAdInsertionConfiguration {
|
|
|
2293
2304
|
*
|
|
2294
2305
|
* @remarks
|
|
2295
2306
|
* <br/> - Each entry contains the parameter name with associated value.
|
|
2307
|
+
* <br/> - See {@link https://developers.google.com/ad-manager/dynamic-ad-insertion/sdk/html5/reference/js/StreamRequest#adTagParameters}
|
|
2308
|
+
* for more information.
|
|
2296
2309
|
*
|
|
2297
2310
|
* Valid parameters:
|
|
2298
2311
|
* <br/> - {@link https://support.google.com/admanager/answer/7320899 | Supply targeting parameters to your stream}
|
|
@@ -2301,10 +2314,26 @@ interface GoogleDAIConfiguration extends ServerSideAdInsertionConfiguration {
|
|
|
2301
2314
|
adTagParameters?: Record<string, string>;
|
|
2302
2315
|
/**
|
|
2303
2316
|
* The identifier for a stream activity monitor session.
|
|
2317
|
+
*
|
|
2318
|
+
* @remarks
|
|
2319
|
+
* <br/> - See {@link https://developers.google.com/ad-manager/dynamic-ad-insertion/sdk/html5/reference/js/StreamRequest#streamActivityMonitorId}
|
|
2320
|
+
* for more information.
|
|
2304
2321
|
*/
|
|
2305
2322
|
streamActivityMonitorID?: string;
|
|
2323
|
+
/**
|
|
2324
|
+
* The network code for the publisher making this stream request.
|
|
2325
|
+
*
|
|
2326
|
+
* @remarks
|
|
2327
|
+
* <br/> - See {@link https://developers.google.com/ad-manager/dynamic-ad-insertion/sdk/html5/reference/js/StreamRequest#networkCode}
|
|
2328
|
+
* for more information.
|
|
2329
|
+
*/
|
|
2330
|
+
networkCode?: string;
|
|
2306
2331
|
/**
|
|
2307
2332
|
* Optional settings object for mapping verification vendors (google.ima.OmidVerificationVendor) to OMID Access Modes (google.ima.OmidAccessMode).
|
|
2333
|
+
*
|
|
2334
|
+
* @remarks
|
|
2335
|
+
* <br/> - See {@link https://developers.google.com/ad-manager/dynamic-ad-insertion/sdk/html5/reference/js/StreamRequest#omidAccessModeRules}
|
|
2336
|
+
* for more information.
|
|
2308
2337
|
*/
|
|
2309
2338
|
omidAccessModeRules?: Record<number, string>;
|
|
2310
2339
|
}
|
|
@@ -9280,6 +9309,7 @@ interface PublicationLoadStartEvent extends Event<'publicationloadstart'> {
|
|
|
9280
9309
|
*/
|
|
9281
9310
|
interface PublicationLoadedEvent extends Event<'publicationloaded'> {
|
|
9282
9311
|
readonly publicationId: string;
|
|
9312
|
+
readonly channelName: string;
|
|
9283
9313
|
}
|
|
9284
9314
|
/**
|
|
9285
9315
|
* Fired when loading a THEOlive publication that cannot be played, for example because the publication is stopped.
|