@glomex/integration-web-component 1.1468.1 → 1.1469.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/dist/index.d.ts +14 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -841,7 +841,7 @@ export declare interface IntegrationElementEventMap {
|
|
|
841
841
|
* @eventProperty
|
|
842
842
|
*/
|
|
843
843
|
[IntegrationEvent.CONTENT_ERROR]: CustomEvent<{
|
|
844
|
-
error: MediaError_2 | MediaItemError;
|
|
844
|
+
error: MediaError_2 | MediaItemError | MediaNetworkError;
|
|
845
845
|
}>;
|
|
846
846
|
/**
|
|
847
847
|
* @inheritdoc IntegrationEvent.CONTENT_MARKER_REACHED
|
|
@@ -1602,6 +1602,19 @@ export declare enum MediaItemProvider {
|
|
|
1602
1602
|
EXTERNAL = "external"
|
|
1603
1603
|
}
|
|
1604
1604
|
|
|
1605
|
+
/**
|
|
1606
|
+
* Network error when a request fails due to connectivity issues.
|
|
1607
|
+
* Shaka Player network errors have codes in the 1000-1999 range
|
|
1608
|
+
* while HTMLMediaElement errors with 2 and 4 are considered network errors.
|
|
1609
|
+
*/
|
|
1610
|
+
export declare interface MediaNetworkError {
|
|
1611
|
+
name: 'MediaNetworkError';
|
|
1612
|
+
/** Shaka error code (1000-1999 range) or HTMLMediaElement error code (2, 4) */
|
|
1613
|
+
code: string;
|
|
1614
|
+
/** A detailed error message */
|
|
1615
|
+
message: string;
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1605
1618
|
declare type MediaSource_2 = MediaSourceBase | MediaSourceDrm | MediaSourceJoyn | MediaSourceDynamicContent;
|
|
1606
1619
|
export { MediaSource_2 as MediaSource }
|
|
1607
1620
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glomex/integration-web-component",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1469.0",
|
|
4
4
|
"description": "Web component and types to integrate the glomex player",
|
|
5
5
|
"documentation": "https://docs.glomex.com",
|
|
6
6
|
"homepage": "https://glomex.com",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@biomejs/biome": "catalog:",
|
|
35
|
-
"@glomex/integration": "1.
|
|
35
|
+
"@glomex/integration": "1.1469.0",
|
|
36
36
|
"@microsoft/api-extractor": "catalog:",
|
|
37
37
|
"@rslib/core": "catalog:",
|
|
38
38
|
"npm-run-all": "catalog:",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
44
|
"license": "MIT",
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "64a38cb1c7ef1cec5de7e10925c6b5794f0635ba"
|
|
46
46
|
}
|