@singcl/ad-execute-manager 1.11.9 → 1.11.10
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.
|
@@ -225,13 +225,13 @@ declare class RewardAdNovel extends RewardAdFather {
|
|
|
225
225
|
* @param {object} _args
|
|
226
226
|
* @param {string} _args.scene 广告执行场景 必填
|
|
227
227
|
* @param {number} [_args.result] 广告执行成功结果 必填
|
|
228
|
-
* @param {RecoveredInfo} [_args.recovered] 恢复重试信息
|
|
228
|
+
* @param {import('../typings/ad.js').RecoveredInfo} [_args.recovered] 恢复重试信息
|
|
229
229
|
* @returns
|
|
230
230
|
*/
|
|
231
231
|
_onInnerAdShowSuccess(_args: {
|
|
232
232
|
scene: string;
|
|
233
233
|
result?: number;
|
|
234
|
-
recovered?: RecoveredInfo;
|
|
234
|
+
recovered?: import("../typings/ad.js").RecoveredInfo;
|
|
235
235
|
}): any;
|
|
236
236
|
/**
|
|
237
237
|
* 广告展示超时设置
|
|
@@ -275,14 +275,14 @@ declare class RewardAdNovel extends RewardAdFather {
|
|
|
275
275
|
* @param {string} _args.scene 广告执行场景 必填
|
|
276
276
|
* @param {string} [_args.msg] 广告执行成功原因
|
|
277
277
|
* @param {0|1} _args.result 广告执行成功结果 必填
|
|
278
|
-
* @param {RecoveredInfo} [_args.recovered] 恢复重试信息
|
|
278
|
+
* @param {import('../typings/ad.js').RecoveredInfo} [_args.recovered] 恢复重试信息
|
|
279
279
|
* @returns
|
|
280
280
|
*/
|
|
281
281
|
protected _adShowSuccessAnalytics(_args: {
|
|
282
282
|
scene: string;
|
|
283
283
|
msg?: string;
|
|
284
284
|
result: 0 | 1;
|
|
285
|
-
recovered?: RecoveredInfo;
|
|
285
|
+
recovered?: import("../typings/ad.js").RecoveredInfo;
|
|
286
286
|
}): any;
|
|
287
287
|
/**
|
|
288
288
|
* 广告展示失败分析
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@singcl/ad-execute-manager",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.10",
|
|
4
4
|
"description": "A powerful and flexible ad execution management library for handling reward-based ads, interstitial ads, and other advertising formats in JavaScript applications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|