@mediahub-bg/ott-objects 0.5.2 → 0.5.3

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 +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mediahub-bg/ott-objects",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "types": "web/types.d.ts",
5
5
  "files": [
6
6
  "web"
package/web/types.ts CHANGED
@@ -616,11 +616,19 @@ export interface IAUserProfileChangePub {
616
616
  token: string;
617
617
  srcPort: number /* uint */;
618
618
  }
619
+ /**
620
+ * IAInternalUserLastContentPub is internal-only (the /internal metrics endpoint
621
+ * * and the admin/webhook user-logs export); it is never returned to clients, so
622
+ * * it may carry diagnostic fields such as address, userAgent and server.
623
+ */
619
624
  export interface IAInternalUserLastContentPub {
620
625
  profile: string;
621
626
  token: string;
622
627
  lastLocalUpdate: number /* uint64 */;
623
628
  srcPort: number /* uint */;
629
+ address: string;
630
+ userAgent: string;
631
+ server: string;
624
632
  PubEPG: PubEPG;
625
633
  }
626
634
  export interface IAEPGStatsEntryPub {