@hyext/types-ext-sdk-hy 3.18.1-beta.1 → 3.18.1-beta.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/index.d.ts +11 -9
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1049,7 +1049,7 @@ namespace advance {
1049
1049
  * @param params - 传入参数
1050
1050
  * @returns 调用结果
1051
1051
  */
1052
- function getSeiContentByTag(params: GetSeiContentByTagReq): Promise<GetSeiContentByTagRsp>;
1052
+ function getSeiContentByPort(params: GetSeiContentByPortReq): Promise<GetSeiContentByPortRsp>;
1053
1053
  /**
1054
1054
  * 监听SEI数据变化
1055
1055
  * @param params - 传入参数
@@ -1872,16 +1872,16 @@ type SetCustomizeVideoLayoutAvailabilityReq = {
1872
1872
  * SEI数据
1873
1873
  * @property content - SEI内容
1874
1874
  */
1875
- type GetSeiContentByTagRsp = {
1875
+ type GetSeiContentByPortRsp = {
1876
1876
  content: string;
1877
1877
  };
1878
1878
 
1879
1879
  /**
1880
1880
  * 按标签获取SEI数据参数
1881
- * @property tag - 标签
1881
+ * @property port - port
1882
1882
  */
1883
- type GetSeiContentByTagReq = {
1884
- tag: string;
1883
+ type GetSeiContentByPortReq = {
1884
+ port: string;
1885
1885
  };
1886
1886
 
1887
1887
  /**
@@ -1899,20 +1899,20 @@ type SeiContentChange = (notices: SeiContent) => void;
1899
1899
 
1900
1900
  /**
1901
1901
  * 监听SEI数据变化参数
1902
- * @property tag - 标签
1902
+ * @property port - port
1903
1903
  * @property callback - SEI数据变化回调
1904
1904
  */
1905
1905
  type OnSeiContentChangeReq = {
1906
- tag: string;
1906
+ port: string;
1907
1907
  callback: SeiContentChange;
1908
1908
  };
1909
1909
 
1910
1910
  /**
1911
1911
  * 取消监听SEI数据变化参数
1912
- * @property tag - 标签
1912
+ * @property port - port
1913
1913
  */
1914
1914
  type OffSeiContentChangeReq = {
1915
- tag: string;
1915
+ port: string;
1916
1916
  };
1917
1917
 
1918
1918
  /**
@@ -7363,6 +7363,7 @@ type SetModeRsp = {
7363
7363
  * @property [containerHeight] - NOTICE模式下自定义容器高度,单位是点或者像素
7364
7364
  * @property [maskHeight] - BOTTOM_BANNER模式下公屏向上顶开的高度,单位是点或者像素
7365
7365
  * @property [additionReportParams] - 额外上报参数
7366
+ * @property [liveRoomBottomBannerKey] - 直播间BOTTOM_BANNER的key
7366
7367
  */
7367
7368
  type SetModeReq = {
7368
7369
  mode: string;
@@ -7372,6 +7373,7 @@ type SetModeReq = {
7372
7373
  containerHeight?: number;
7373
7374
  maskHeight?: number;
7374
7375
  additionReportParams?: any;
7376
+ liveRoomBottomBannerKey?: string;
7375
7377
  };
7376
7378
 
7377
7379
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyext/types-ext-sdk-hy",
3
- "version": "3.18.1-beta.1",
3
+ "version": "3.18.1-beta.3",
4
4
  "description": "TypeScript definitions for sdk",
5
5
  "types": "./index.d.ts",
6
6
  "main": "",