@singcl/ad-execute-manager 2.3.0 → 2.3.1

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.
@@ -219,11 +219,13 @@ declare class RewardAdNovel extends RewardAdFather {
219
219
  * @param {object} _args
220
220
  * @param {string} _args.scene 广告执行场景 必填
221
221
  * @param {number} [_args.timeout] 广告超时时间 单位ms
222
+ * @param {string} _args.eId 广告执行唯一ID 必填
222
223
  * @param {Function} _args.end 结束当前广告任务的回调函数 必填
223
224
  */
224
225
  protected customExecuteAfterTimeout(_args: {
225
226
  scene: string;
226
227
  timeout?: number;
228
+ eId: string;
227
229
  end: Function;
228
230
  }): void;
229
231
  /**
@@ -232,22 +234,27 @@ declare class RewardAdNovel extends RewardAdFather {
232
234
  * @param {object} args
233
235
  * @param {string} args.scene 广告执行场景 必填
234
236
  * @param {number} args.timeout 广告超时时间 单位ms 必填
237
+ * @param {string} args.eId 广告执行唯一ID 必填
235
238
  */
236
239
  _adTimeoutBeforeEnd(args: {
237
240
  scene: string;
238
241
  timeout: number;
242
+ eId: string;
239
243
  }): {
240
244
  scene: string;
241
245
  timeout: number;
246
+ eId: string;
242
247
  };
243
248
  /**
244
249
  * 广告展示前定时器
245
250
  * @param {object} args
246
251
  * @param {string} args.scene 广告执行场景 必填
252
+ * @param {string} args.eId 广告执行唯一ID 必填
247
253
  * @param {Function} args.prelude 广告展示前回调函数 可选
248
254
  */
249
255
  _adPreludeInterval(args: {
250
256
  scene: string;
257
+ eId: string;
251
258
  prelude: Function;
252
259
  }): void;
253
260
  _clearAdTimeout(): void;
@@ -346,12 +353,14 @@ declare class RewardAdNovel extends RewardAdFather {
346
353
  * @protected
347
354
  * @param {object} _args
348
355
  * @param {string} _args.scene 广告执行场景 必填
356
+ * @param {string} _args.eId 广告执行唯一ID 必填
349
357
  * @param {number} _args.ad_is_completed 广告是否完成 必填
350
358
  * @param {number} _args.ad_count 广告执行次数 必填
351
359
  * @returns
352
360
  */
353
361
  protected _adCloseSuccessAnalytics(_args: {
354
362
  scene: string;
363
+ eId: string;
355
364
  ad_is_completed: number;
356
365
  ad_count: number;
357
366
  }): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@singcl/ad-execute-manager",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
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": {
@@ -86,7 +86,7 @@
86
86
  "dependencies": {
87
87
  "@ad-execute-manager/core": "^2.0.6",
88
88
  "@ad-execute-manager/logger": "^2.0.5",
89
- "@ad-execute-manager/ad-reward": "^2.3.0",
89
+ "@ad-execute-manager/ad-reward": "^2.3.1",
90
90
  "@ad-execute-manager/ad-interstitial": "^2.0.6",
91
91
  "@ad-execute-manager/count-recorder": "^2.1.0",
92
92
  "@ad-execute-manager/serializable-error": "^2.0.5",