@glomex/integration-web-component 1.1485.0 → 1.1486.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +8 -0
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -172,6 +172,7 @@ export declare interface ContentSource {
172
172
  playbackMode: PlaybackMode;
173
173
  entitlementToken?: string;
174
174
  drm: boolean;
175
+ liveEdgeTolerance: number;
175
176
  }
176
177
 
177
178
  export declare enum ContentStopReason {
@@ -1587,6 +1588,13 @@ export declare interface MediaItem {
1587
1588
  startTime: number;
1588
1589
  /** UTC end time of the livestream in milliseconds */
1589
1590
  endTime?: number;
1591
+ /** EPG entries containing UTC start and end times in milliseconds. Can be used for timeshift functionality (e.g., jump markers within the DVR window).*/
1592
+ epgEntries?: {
1593
+ /** UTC start time of the livestream program in unix time */
1594
+ startDate: number;
1595
+ /** UTC end time of the livestream program in unix time */
1596
+ endDate: number;
1597
+ }[];
1590
1598
  };
1591
1599
  /**
1592
1600
  * Only relevant for glomex-internal use. Mark it to allow teaser experiments.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glomex/integration-web-component",
3
- "version": "1.1485.0",
3
+ "version": "1.1486.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.1485.0",
35
+ "@glomex/integration": "1.1486.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": "fd333a9fbb33e5b06a96804b390a1f8f9bc4bebe"
45
+ "gitHead": "42aeacda8011d52f7193583b83f09997c8056646"
46
46
  }