@singcl/ad-execute-manager 1.8.5 → 1.8.6

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.
@@ -2,6 +2,10 @@ export default InterstitialAdFather;
2
2
  export type IRewordAdConfig = import("../typings/ad.js").IRewordAdConfig;
3
3
  export type CallbackCollection = import("../typings/ad.js").CallbackCollection;
4
4
  export type IConstructArgs = import("../typings/ad.js").IConstructArgs;
5
+ /**
6
+ * 激励视频实例
7
+ */
8
+ export type InterstitialAd = import("../typings/create-interstitial-ad.js").InterstitialAd;
5
9
  export type IRewardedVideoAd = {
6
10
  /**
7
11
  * 显示激励视频广告
@@ -42,16 +46,14 @@ declare class InterstitialAdFather {
42
46
  _preserveOnEnd: boolean;
43
47
  /**
44
48
  * 激励视频实例
45
- * @private
46
- * @type {import('../typings/create-interstitial-ad.js').InterstitialAd | null}
49
+ * @type {InterstitialAd | null}
47
50
  */
48
- private _interstitialAd;
51
+ _interstitialAd: InterstitialAd | null;
49
52
  /**
50
53
  * 激励视频实例
51
- * @private
52
- * @type {import('../typings/create-interstitial-ad.js').InterstitialAd | null}
54
+ * @type {InterstitialAd | null}
53
55
  */
54
- private __ad__;
56
+ __ad__: InterstitialAd | null;
55
57
  _ttErrorMsgs: string[];
56
58
  _ttErrorCodes: number[];
57
59
  _adConfig: {};
@@ -2,6 +2,7 @@ export default RewardAdFather;
2
2
  export type IRewordAdConfig = import("../typings/ad.js").IRewordAdConfig;
3
3
  export type CallbackCollection = import("../typings/ad.js").CallbackCollection;
4
4
  export type IConstructArgs = import("../typings/ad.js").IConstructArgs;
5
+ export type RewardedVideoAd = import("../typings/create-rewarded-video-ad.js").RewardedVideoAd;
5
6
  export type IRewardedVideoAd = {
6
7
  /**
7
8
  * 显示激励视频广告
@@ -42,16 +43,14 @@ declare class RewardAdFather {
42
43
  _preserveOnEnd: boolean;
43
44
  /**
44
45
  * 激励视频实例
45
- * @private
46
- * @type {import('../typings/create-rewarded-video-ad').RewardedVideoAd | null}
46
+ * @type {RewardedVideoAd | null}
47
47
  */
48
- private _rewardAd;
48
+ _rewardAd: RewardedVideoAd | null;
49
49
  /**
50
50
  * 激励视频实例
51
- * @private
52
- * @type {import('../typings/create-rewarded-video-ad').RewardedVideoAd | null}
51
+ * @type {RewardedVideoAd | null}
53
52
  */
54
- private __ad__;
53
+ __ad__: RewardedVideoAd | null;
55
54
  _ttErrorMsgs: string[];
56
55
  _ttErrorCodes: number[];
57
56
  __bindAdErrorForeverHandler: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@singcl/ad-execute-manager",
3
- "version": "1.8.5",
3
+ "version": "1.8.6",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {