@hyext/types-ext-sdk-hy 3.17.1 → 3.17.2

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 +16 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1032,6 +1032,12 @@ namespace advance {
1032
1032
  * @returns 调用结果
1033
1033
  */
1034
1034
  function setVideoContainerPosition(params: SetVideoContainerPositionReq): Promise<void>;
1035
+ /**
1036
+ * 设置大礼物特效底部信息偏移
1037
+ * @param params - 参数
1038
+ * @returns 调用结果
1039
+ */
1040
+ function setLiveroomEffectOffset(params: SetLiveroomEffectOffsetReq): Promise<void>;
1035
1041
  }
1036
1042
 
1037
1043
  /**
@@ -1818,6 +1824,16 @@ type SetVideoContainerPositionReq = {
1818
1824
  position: string;
1819
1825
  };
1820
1826
 
1827
+ /**
1828
+ * 设置大礼物特效底部信息偏移参数
1829
+ * @property idList - 礼物id列表
1830
+ * @property offsetHeight - 偏移的高度,单位是点/像素
1831
+ */
1832
+ type SetLiveroomEffectOffsetReq = {
1833
+ idList: string[];
1834
+ offsetHeight: number;
1835
+ };
1836
+
1821
1837
  /**
1822
1838
  * app模块
1823
1839
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyext/types-ext-sdk-hy",
3
- "version": "3.17.1",
3
+ "version": "3.17.2",
4
4
  "description": "TypeScript definitions for sdk",
5
5
  "types": "./index.d.ts",
6
6
  "main": "",