@hyext/types-ext-sdk-hy 3.15.0-beta.2 → 3.15.0-beta.4
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 +4 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1156,11 +1156,9 @@ type CreateAdRsp = {
|
|
|
1156
1156
|
|
|
1157
1157
|
/**
|
|
1158
1158
|
* 创建广告实例参数
|
|
1159
|
-
* @property type - 广告类型, rewardedVideoAd-激励广告, interstitialAd-插屏广告
|
|
1160
1159
|
* @property adUnitId - 广告单元 id
|
|
1161
1160
|
*/
|
|
1162
1161
|
type CreateAdReq = {
|
|
1163
|
-
type: string;
|
|
1164
1162
|
adUnitId: string;
|
|
1165
1163
|
};
|
|
1166
1164
|
|
|
@@ -9032,19 +9030,23 @@ type TriggerVideoClickReq = {
|
|
|
9032
9030
|
/**
|
|
9033
9031
|
* 键盘输入返回
|
|
9034
9032
|
* @property text - 输入的文字
|
|
9033
|
+
* @property [from] - 来源, confirm-点击完成, mask-点击空白
|
|
9035
9034
|
*/
|
|
9036
9035
|
type ShowInputBarRsp = {
|
|
9037
9036
|
text: string;
|
|
9037
|
+
from?: string;
|
|
9038
9038
|
};
|
|
9039
9039
|
|
|
9040
9040
|
/**
|
|
9041
9041
|
* 展示APP端键盘输入框参数
|
|
9042
9042
|
* @property [text] - 默认文字
|
|
9043
9043
|
* @property [placeholder] - 默认提示文字
|
|
9044
|
+
* @property [btnText] - 完成按钮文字
|
|
9044
9045
|
*/
|
|
9045
9046
|
type ShowInputBarReq = {
|
|
9046
9047
|
text?: string;
|
|
9047
9048
|
placeholder?: string;
|
|
9049
|
+
btnText?: string;
|
|
9048
9050
|
};
|
|
9049
9051
|
|
|
9050
9052
|
/**
|