@mediahub-bg/ott-objects 0.5.25 → 0.5.27

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 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mediahub-bg/ott-objects",
3
- "version": "0.5.25",
3
+ "version": "0.5.27",
4
4
  "types": "web/types.d.ts",
5
5
  "files": [
6
6
  "web"
package/web/types.ts CHANGED
@@ -911,9 +911,9 @@ export interface PubToken {
911
911
  // source: user_pub.go
912
912
 
913
913
  export interface InProfileUpdate {
914
- deviceSettings?: { [key: string]: any};
915
- profileSettings?: { [key: string]: any};
916
- mobileSettings?: { [key: string]: any};
914
+ deviceSettings?: DeviceSettings;
915
+ profileSettings?: ProfileSettings;
916
+ mobileSettings?: MobileSettings;
917
917
  video_quality?: string;
918
918
  audio?: string;
919
919
  subtitles?: string;
@@ -995,9 +995,9 @@ export interface InUserPayment {
995
995
  export interface PubProfile {
996
996
  handle?: string;
997
997
  handleLower?: string;
998
- deviceSettings?: { [key: string]: any};
999
- profileSettings?: { [key: string]: any};
1000
- mobileSettings?: { [key: string]: any};
998
+ deviceSettings?: DeviceSettings;
999
+ profileSettings?: ProfileSettings;
1000
+ mobileSettings?: MobileSettings;
1001
1001
  video_quality?: string;
1002
1002
  audio?: string;
1003
1003
  subtitles?: string;