@hyext/types-ext-sdk-hy 3.17.0-beta.17 → 3.17.0-beta.19
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 +10 -10
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1711,24 +1711,24 @@ type SendActivityGiftRsp = {
|
|
|
1711
1711
|
* 定制送礼接口参数
|
|
1712
1712
|
* @property giftId - giftId
|
|
1713
1713
|
* @property giftCount - giftCount
|
|
1714
|
-
* @property useSelectMic - useSelectMic
|
|
1714
|
+
* @property [useSelectMic] - useSelectMic
|
|
1715
1715
|
* @property sourceType - sourceTyp
|
|
1716
|
-
* @property mapParam - mapParam
|
|
1717
|
-
* @property uid - uid
|
|
1718
|
-
* @property secondConfirm - secondConfirm
|
|
1716
|
+
* @property [mapParam] - mapParam
|
|
1717
|
+
* @property [uid] - uid
|
|
1718
|
+
* @property [secondConfirm] - secondConfirm
|
|
1719
1719
|
*/
|
|
1720
1720
|
type SendActivityGiftReq = {
|
|
1721
1721
|
giftId: number;
|
|
1722
1722
|
giftCount: number;
|
|
1723
|
-
useSelectMic
|
|
1723
|
+
useSelectMic?: boolean;
|
|
1724
1724
|
sourceType: string;
|
|
1725
|
-
mapParam
|
|
1726
|
-
uid
|
|
1727
|
-
secondConfirm
|
|
1725
|
+
mapParam?: any;
|
|
1726
|
+
uid?: string;
|
|
1727
|
+
secondConfirm?: boolean;
|
|
1728
1728
|
};
|
|
1729
1729
|
|
|
1730
1730
|
/**
|
|
1731
|
-
*
|
|
1731
|
+
* 获取直播间当前特效状态结果
|
|
1732
1732
|
* @property id - 当前生效的特效,id为空则表示没有此类型的特效在播
|
|
1733
1733
|
*/
|
|
1734
1734
|
type GetLiveroomEffectStatusRsp = {
|
|
@@ -1736,7 +1736,7 @@ type GetLiveroomEffectStatusRsp = {
|
|
|
1736
1736
|
};
|
|
1737
1737
|
|
|
1738
1738
|
/**
|
|
1739
|
-
*
|
|
1739
|
+
* 获取直播间当前特效状态参数
|
|
1740
1740
|
* @property type - 类型
|
|
1741
1741
|
*/
|
|
1742
1742
|
type GetLiveroomEffectStatusReq = {
|