@hyext/types-ext-sdk-hy 3.18.1-beta.10 → 3.18.1-beta.11

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 +10 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1058,9 +1058,10 @@ namespace advance {
1058
1058
  function offSeiContentChange(params: OffSeiContentChangeReq): Promise<void>;
1059
1059
  /**
1060
1060
  * 获取所有订阅UID列表
1061
+ * @param params - 传入参数
1061
1062
  * @returns 调用结果
1062
1063
  */
1063
- function getAllSubscribeToUidList(): Promise<GetAllSubscribeToUidListRsp>;
1064
+ function getAllSubscribeToUidList(params: GetAllSubscribeToUidListReq): Promise<GetAllSubscribeToUidListRsp>;
1064
1065
  }
1065
1066
 
1066
1067
  /**
@@ -1906,6 +1907,14 @@ type GetAllSubscribeToUidListRsp = {
1906
1907
  vAllUid: string[];
1907
1908
  };
1908
1909
 
1910
+ /**
1911
+ * 获取所有订阅UID列表参数
1912
+ * @property [targetUidList] - 要获取的主播uid列表
1913
+ */
1914
+ type GetAllSubscribeToUidListReq = {
1915
+ targetUidList?: string[];
1916
+ };
1917
+
1909
1918
  /**
1910
1919
  * app模块
1911
1920
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyext/types-ext-sdk-hy",
3
- "version": "3.18.1-beta.10",
3
+ "version": "3.18.1-beta.11",
4
4
  "description": "TypeScript definitions for sdk",
5
5
  "types": "./index.d.ts",
6
6
  "main": "",