@mediahub-bg/ott-objects 0.5.11 → 0.5.13

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/package.json +1 -1
  2. package/web/types.ts +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mediahub-bg/ott-objects",
3
- "version": "0.5.11",
3
+ "version": "0.5.13",
4
4
  "types": "web/types.d.ts",
5
5
  "files": [
6
6
  "web"
package/web/types.ts CHANGED
@@ -469,6 +469,12 @@ export interface EPGNumeration {
469
469
  SeasonNumber: number /* uint64 */;
470
470
  }
471
471
  export interface EPGPhoto {
472
+ /**
473
+ * Id is the photo's index within the asset, stamped by ProcessEPG when it
474
+ * * (re)generates the per-photo URLs; model it so a round-tripped asset passes
475
+ * * the strict webhook decode.
476
+ */
477
+ id?: number /* int */;
472
478
  url: string;
473
479
  type: string;
474
480
  }