@hyext/types-ext-sdk-hy 3.18.0 → 3.18.1-beta.10
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/index.d.ts +19 -26
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1044,12 +1044,6 @@ namespace advance {
|
|
|
1044
1044
|
* @returns 调用结果
|
|
1045
1045
|
*/
|
|
1046
1046
|
function setCustomizeVideoLayoutAvailability(params: SetCustomizeVideoLayoutAvailabilityReq): Promise<void>;
|
|
1047
|
-
/**
|
|
1048
|
-
* 按标签获取SEI数据
|
|
1049
|
-
* @param params - 传入参数
|
|
1050
|
-
* @returns 调用结果
|
|
1051
|
-
*/
|
|
1052
|
-
function getSeiContentByTag(params: GetSeiContentByTagReq): Promise<GetSeiContentByTagRsp>;
|
|
1053
1047
|
/**
|
|
1054
1048
|
* 监听SEI数据变化
|
|
1055
1049
|
* @param params - 传入参数
|
|
@@ -1062,6 +1056,11 @@ namespace advance {
|
|
|
1062
1056
|
* @returns 调用结果
|
|
1063
1057
|
*/
|
|
1064
1058
|
function offSeiContentChange(params: OffSeiContentChangeReq): Promise<void>;
|
|
1059
|
+
/**
|
|
1060
|
+
* 获取所有订阅UID列表
|
|
1061
|
+
* @returns 调用结果
|
|
1062
|
+
*/
|
|
1063
|
+
function getAllSubscribeToUidList(): Promise<GetAllSubscribeToUidListRsp>;
|
|
1065
1064
|
}
|
|
1066
1065
|
|
|
1067
1066
|
/**
|
|
@@ -1868,22 +1867,6 @@ type SetCustomizeVideoLayoutAvailabilityReq = {
|
|
|
1868
1867
|
msg?: string;
|
|
1869
1868
|
};
|
|
1870
1869
|
|
|
1871
|
-
/**
|
|
1872
|
-
* SEI数据
|
|
1873
|
-
* @property content - SEI内容
|
|
1874
|
-
*/
|
|
1875
|
-
type GetSeiContentByTagRsp = {
|
|
1876
|
-
content: string;
|
|
1877
|
-
};
|
|
1878
|
-
|
|
1879
|
-
/**
|
|
1880
|
-
* 按标签获取SEI数据参数
|
|
1881
|
-
* @property tag - 标签
|
|
1882
|
-
*/
|
|
1883
|
-
type GetSeiContentByTagReq = {
|
|
1884
|
-
tag: string;
|
|
1885
|
-
};
|
|
1886
|
-
|
|
1887
1870
|
/**
|
|
1888
1871
|
* SEI数据
|
|
1889
1872
|
* @property content - SEI内容
|
|
@@ -1899,20 +1882,28 @@ type SeiContentChange = (notices: SeiContent) => void;
|
|
|
1899
1882
|
|
|
1900
1883
|
/**
|
|
1901
1884
|
* 监听SEI数据变化参数
|
|
1902
|
-
* @property
|
|
1885
|
+
* @property port - port
|
|
1903
1886
|
* @property callback - SEI数据变化回调
|
|
1904
1887
|
*/
|
|
1905
1888
|
type OnSeiContentChangeReq = {
|
|
1906
|
-
|
|
1889
|
+
port: number;
|
|
1907
1890
|
callback: SeiContentChange;
|
|
1908
1891
|
};
|
|
1909
1892
|
|
|
1910
1893
|
/**
|
|
1911
1894
|
* 取消监听SEI数据变化参数
|
|
1912
|
-
* @property
|
|
1895
|
+
* @property port - port
|
|
1913
1896
|
*/
|
|
1914
1897
|
type OffSeiContentChangeReq = {
|
|
1915
|
-
|
|
1898
|
+
port: number;
|
|
1899
|
+
};
|
|
1900
|
+
|
|
1901
|
+
/**
|
|
1902
|
+
* 所有订阅UID列表
|
|
1903
|
+
* @property vAllUid - 跟当前用户有订阅关系的主播uid列表
|
|
1904
|
+
*/
|
|
1905
|
+
type GetAllSubscribeToUidListRsp = {
|
|
1906
|
+
vAllUid: string[];
|
|
1916
1907
|
};
|
|
1917
1908
|
|
|
1918
1909
|
/**
|
|
@@ -7363,6 +7354,7 @@ type SetModeRsp = {
|
|
|
7363
7354
|
* @property [containerHeight] - NOTICE模式下自定义容器高度,单位是点或者像素
|
|
7364
7355
|
* @property [maskHeight] - BOTTOM_BANNER模式下公屏向上顶开的高度,单位是点或者像素
|
|
7365
7356
|
* @property [additionReportParams] - 额外上报参数
|
|
7357
|
+
* @property [liveRoomBottomBannerKey] - 直播间BOTTOM_BANNER的key
|
|
7366
7358
|
*/
|
|
7367
7359
|
type SetModeReq = {
|
|
7368
7360
|
mode: string;
|
|
@@ -7372,6 +7364,7 @@ type SetModeReq = {
|
|
|
7372
7364
|
containerHeight?: number;
|
|
7373
7365
|
maskHeight?: number;
|
|
7374
7366
|
additionReportParams?: any;
|
|
7367
|
+
liveRoomBottomBannerKey?: string;
|
|
7375
7368
|
};
|
|
7376
7369
|
|
|
7377
7370
|
/**
|