@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.
- package/package.json +1 -1
- package/web/types.ts +6 -6
package/package.json
CHANGED
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?:
|
|
915
|
-
profileSettings?:
|
|
916
|
-
mobileSettings?:
|
|
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?:
|
|
999
|
-
profileSettings?:
|
|
1000
|
-
mobileSettings?:
|
|
998
|
+
deviceSettings?: DeviceSettings;
|
|
999
|
+
profileSettings?: ProfileSettings;
|
|
1000
|
+
mobileSettings?: MobileSettings;
|
|
1001
1001
|
video_quality?: string;
|
|
1002
1002
|
audio?: string;
|
|
1003
1003
|
subtitles?: string;
|