@mediahub-bg/ott-objects 0.4.71 → 0.4.74
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/package.json +1 -1
- package/web/types.ts +10 -0
package/package.json
CHANGED
package/web/types.ts
CHANGED
|
@@ -540,6 +540,16 @@ export interface PubVodEPGSearchEntry {
|
|
|
540
540
|
score: number /* float64 */;
|
|
541
541
|
PubVodEPG: PubVodEPG;
|
|
542
542
|
}
|
|
543
|
+
export interface PubModuleTvEPGsResp {
|
|
544
|
+
epgs: PubEPG[];
|
|
545
|
+
prev: number /* int64 */;
|
|
546
|
+
next: number /* int64 */;
|
|
547
|
+
}
|
|
548
|
+
export interface PubModuleVodEPGsResp {
|
|
549
|
+
epgs: PubVodEPG[];
|
|
550
|
+
prev: number /* int64 */;
|
|
551
|
+
next: number /* int64 */;
|
|
552
|
+
}
|
|
543
553
|
|
|
544
554
|
//////////
|
|
545
555
|
// source: ia_pub.go
|