@mediahub-bg/ott-objects 0.4.6 → 0.4.8
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 +63 -0
package/package.json
CHANGED
package/web/types.ts
CHANGED
|
@@ -541,6 +541,69 @@ export interface PubVodEPGSearchEntry {
|
|
|
541
541
|
PubVodEPG: PubVodEPG;
|
|
542
542
|
}
|
|
543
543
|
|
|
544
|
+
//////////
|
|
545
|
+
// source: ia_pub.go
|
|
546
|
+
/*
|
|
547
|
+
Copyright (C) MediaHub Ltd - All Rights Reserved
|
|
548
|
+
* Unauthorized copying of this file, via any medium is strictly prohibited
|
|
549
|
+
* Proprietary and confidential
|
|
550
|
+
* Written by Nikolay Aleksandrov <razor@blackwall.org>, December 2020
|
|
551
|
+
*/
|
|
552
|
+
|
|
553
|
+
export interface IAUserProfileChangePub {
|
|
554
|
+
uid: string;
|
|
555
|
+
profile: string;
|
|
556
|
+
ts: number /* uint64 */;
|
|
557
|
+
token: string;
|
|
558
|
+
srcPort: number /* uint */;
|
|
559
|
+
}
|
|
560
|
+
export interface IAInternalUserLastContentPub {
|
|
561
|
+
profile: string;
|
|
562
|
+
token: string;
|
|
563
|
+
lastLocalUpdate: number /* uint64 */;
|
|
564
|
+
srcPort: number /* uint */;
|
|
565
|
+
PubEPG: PubEPG;
|
|
566
|
+
}
|
|
567
|
+
export interface IAEPGStatsEntryPub {
|
|
568
|
+
cnt: number /* uint */;
|
|
569
|
+
PubEPG: PubEPG;
|
|
570
|
+
}
|
|
571
|
+
export interface IAVodEPGStatsEntryPub {
|
|
572
|
+
cnt: number /* uint */;
|
|
573
|
+
PubVodEPG: PubVodEPG;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
//////////
|
|
577
|
+
// source: message_pub.go
|
|
578
|
+
/*
|
|
579
|
+
Copyright (C) MediaHub Ltd - All Rights Reserved
|
|
580
|
+
* Unauthorized copying of this file, via any medium is strictly prohibited
|
|
581
|
+
* Proprietary and confidential
|
|
582
|
+
* Written by Peter Gerasimov <gerasimov@mediahub.eu>, January 2026
|
|
583
|
+
*/
|
|
584
|
+
|
|
585
|
+
export interface PubMessage {
|
|
586
|
+
id?: string;
|
|
587
|
+
timestamp: number /* int64 */;
|
|
588
|
+
from?: string;
|
|
589
|
+
title?: string;
|
|
590
|
+
content?: string;
|
|
591
|
+
media?: string;
|
|
592
|
+
priority?: string;
|
|
593
|
+
type?: string;
|
|
594
|
+
read: boolean;
|
|
595
|
+
seen: boolean;
|
|
596
|
+
validFrom?: number /* int64 */;
|
|
597
|
+
validTo?: number /* int64 */;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
//////////
|
|
601
|
+
// source: pictures_pub.go
|
|
602
|
+
|
|
603
|
+
export interface PubPic {
|
|
604
|
+
url: string;
|
|
605
|
+
}
|
|
606
|
+
|
|
544
607
|
//////////
|
|
545
608
|
// source: token_pub.go
|
|
546
609
|
|