@glomex/integration-web-component 1.1336.1 → 1.1337.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/build/index.d.ts +3 -5
- package/package.json +3 -3
package/build/index.d.ts
CHANGED
|
@@ -108,13 +108,9 @@ export declare enum ContentStopReason {
|
|
|
108
108
|
PAGE_HIDE = "pageHide"
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
export declare interface CustomMarker {
|
|
111
|
+
export declare interface CustomMarker extends Omit<Marker, 'name'> {
|
|
112
112
|
/** {@inheritDoc Marker.name} */
|
|
113
113
|
name: string;
|
|
114
|
-
/** {@inheritDoc Marker.type} */
|
|
115
|
-
type: MarkerType;
|
|
116
|
-
/** {@inheritDoc Marker.threshold} */
|
|
117
|
-
threshold: number;
|
|
118
114
|
}
|
|
119
115
|
|
|
120
116
|
declare interface Experiment {
|
|
@@ -956,6 +952,8 @@ export declare interface Marker {
|
|
|
956
952
|
* - {@link MarkerType.TIME_IN_SECONDS_RECURRING}: seconds
|
|
957
953
|
*/
|
|
958
954
|
threshold: number;
|
|
955
|
+
/** Whether the marker should reference watch time instead of current time. Livestreams always use watch time. */
|
|
956
|
+
useWatchTime?: boolean;
|
|
959
957
|
}
|
|
960
958
|
|
|
961
959
|
export declare enum MarkerType {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glomex/integration-web-component",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1337.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",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@biomejs/biome": "^1.9.4",
|
|
32
|
-
"@glomex/integration": "^1.
|
|
32
|
+
"@glomex/integration": "^1.1337.0",
|
|
33
33
|
"@microsoft/api-extractor": "^7.52.8",
|
|
34
34
|
"@rslib/core": "^0.8.0",
|
|
35
35
|
"typescript": "^5.8.3"
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "4e6c278fd9a2a833206ead63100e7b5cb2fd9b35"
|
|
41
41
|
}
|