react-native-applovin-max 7.0.0 → 7.0.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.
- package/android/build.gradle +2 -2
- package/android/src/main/java/com/applovin/reactnative/AppLovinMAXAdViewUiComponent.java +6 -3
- package/android/src/main/java/com/applovin/reactnative/AppLovinMAXModule.java +2 -2
- package/lib/commonjs/AdView.js +348 -0
- package/lib/commonjs/AdView.js.map +1 -0
- package/lib/commonjs/AppLovinMAX.js +52 -0
- package/lib/commonjs/AppLovinMAX.js.map +1 -0
- package/lib/commonjs/AppOpenAd.js +102 -0
- package/lib/commonjs/AppOpenAd.js.map +1 -0
- package/lib/commonjs/BannerAd.js +139 -0
- package/lib/commonjs/BannerAd.js.map +1 -0
- package/lib/commonjs/EventEmitter.js +32 -0
- package/lib/commonjs/EventEmitter.js.map +1 -0
- package/lib/commonjs/InterstitialAd.js +102 -0
- package/lib/commonjs/InterstitialAd.js.map +1 -0
- package/lib/commonjs/MRecAd.js +117 -0
- package/lib/commonjs/MRecAd.js.map +1 -0
- package/lib/commonjs/Privacy.js +12 -0
- package/lib/commonjs/Privacy.js.map +1 -0
- package/lib/commonjs/RewardedAd.js +116 -0
- package/lib/commonjs/RewardedAd.js.map +1 -0
- package/lib/commonjs/TargetingData.js +179 -0
- package/lib/commonjs/TargetingData.js.map +1 -0
- package/lib/commonjs/index.js +256 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/nativeAd/NativeAdView.js +147 -0
- package/lib/commonjs/nativeAd/NativeAdView.js.map +1 -0
- package/lib/commonjs/nativeAd/NativeAdViewComponents.js +197 -0
- package/lib/commonjs/nativeAd/NativeAdViewComponents.js.map +1 -0
- package/lib/commonjs/nativeAd/NativeAdViewProvider.js +37 -0
- package/lib/commonjs/nativeAd/NativeAdViewProvider.js.map +1 -0
- package/lib/commonjs/types/AdEvent.js +6 -0
- package/lib/commonjs/types/AdEvent.js.map +1 -0
- package/lib/commonjs/types/AdInfo.js +48 -0
- package/lib/commonjs/types/AdInfo.js.map +1 -0
- package/lib/commonjs/types/AdProps.js +6 -0
- package/lib/commonjs/types/AdProps.js.map +1 -0
- package/lib/commonjs/types/AdViewProps.js +6 -0
- package/lib/commonjs/types/AdViewProps.js.map +1 -0
- package/lib/commonjs/types/AppLovinMAX.js +6 -0
- package/lib/commonjs/types/AppLovinMAX.js.map +1 -0
- package/lib/commonjs/types/AppOpenAd.js +6 -0
- package/lib/commonjs/types/AppOpenAd.js.map +1 -0
- package/lib/commonjs/types/BannerAd.js +6 -0
- package/lib/commonjs/types/BannerAd.js.map +1 -0
- package/lib/commonjs/types/CMPError.js +6 -0
- package/lib/commonjs/types/CMPError.js.map +1 -0
- package/lib/commonjs/types/Configuration.js +6 -0
- package/lib/commonjs/types/Configuration.js.map +1 -0
- package/lib/commonjs/types/FullscreenAd.js +6 -0
- package/lib/commonjs/types/FullscreenAd.js.map +1 -0
- package/lib/commonjs/types/InterstitialAd.js +6 -0
- package/lib/commonjs/types/InterstitialAd.js.map +1 -0
- package/lib/commonjs/types/MRecAd.js +6 -0
- package/lib/commonjs/types/MRecAd.js.map +1 -0
- package/lib/commonjs/types/NativeAd.js +2 -0
- package/lib/commonjs/types/NativeAd.js.map +1 -0
- package/lib/commonjs/types/NativeAdViewProps.js +6 -0
- package/lib/commonjs/types/NativeAdViewProps.js.map +1 -0
- package/lib/commonjs/types/Privacy.js +2 -0
- package/lib/commonjs/types/Privacy.js.map +1 -0
- package/lib/commonjs/types/RewardedAd.js +6 -0
- package/lib/commonjs/types/RewardedAd.js.map +1 -0
- package/lib/commonjs/types/TargetingData.js +6 -0
- package/lib/commonjs/types/TargetingData.js.map +1 -0
- package/lib/commonjs/types/ViewAd.js +6 -0
- package/lib/commonjs/types/ViewAd.js.map +1 -0
- package/lib/commonjs/types/index.js +61 -0
- package/lib/commonjs/types/index.js.map +1 -0
- package/lib/module/AdView.js +335 -0
- package/lib/module/AdView.js.map +1 -0
- package/lib/module/AppLovinMAX.js +48 -0
- package/lib/module/AppLovinMAX.js.map +1 -0
- package/lib/module/AppOpenAd.js +96 -0
- package/lib/module/AppOpenAd.js.map +1 -0
- package/lib/module/BannerAd.js +133 -0
- package/lib/module/BannerAd.js.map +1 -0
- package/lib/module/EventEmitter.js +24 -0
- package/lib/module/EventEmitter.js.map +1 -0
- package/lib/module/InterstitialAd.js +96 -0
- package/lib/module/InterstitialAd.js.map +1 -0
- package/lib/module/MRecAd.js +111 -0
- package/lib/module/MRecAd.js.map +1 -0
- package/lib/module/Privacy.js +6 -0
- package/lib/module/Privacy.js.map +1 -0
- package/lib/module/RewardedAd.js +110 -0
- package/lib/module/RewardedAd.js.map +1 -0
- package/lib/module/TargetingData.js +175 -0
- package/lib/module/TargetingData.js.map +1 -0
- package/lib/module/index.js +14 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/nativeAd/NativeAdView.js +139 -0
- package/lib/module/nativeAd/NativeAdView.js.map +1 -0
- package/lib/module/nativeAd/NativeAdViewComponents.js +181 -0
- package/lib/module/nativeAd/NativeAdViewComponents.js.map +1 -0
- package/lib/module/nativeAd/NativeAdViewProvider.js +28 -0
- package/lib/module/nativeAd/NativeAdViewProvider.js.map +1 -0
- package/lib/module/types/AdEvent.js +2 -0
- package/lib/module/types/AdEvent.js.map +1 -0
- package/lib/module/types/AdInfo.js +52 -0
- package/lib/module/types/AdInfo.js.map +1 -0
- package/lib/module/types/AdProps.js +2 -0
- package/lib/module/types/AdProps.js.map +1 -0
- package/lib/module/types/AdViewProps.js +2 -0
- package/lib/module/types/AdViewProps.js.map +1 -0
- package/lib/module/types/AppLovinMAX.js +2 -0
- package/lib/module/types/AppLovinMAX.js.map +1 -0
- package/lib/module/types/AppOpenAd.js +2 -0
- package/lib/module/types/AppOpenAd.js.map +1 -0
- package/lib/module/types/BannerAd.js +2 -0
- package/lib/module/types/BannerAd.js.map +1 -0
- package/lib/module/types/CMPError.js +2 -0
- package/lib/module/types/CMPError.js.map +1 -0
- package/lib/module/types/Configuration.js +2 -0
- package/lib/module/types/Configuration.js.map +1 -0
- package/lib/module/types/FullscreenAd.js +2 -0
- package/lib/module/types/FullscreenAd.js.map +1 -0
- package/lib/module/types/InterstitialAd.js +2 -0
- package/lib/module/types/InterstitialAd.js.map +1 -0
- package/lib/module/types/MRecAd.js +2 -0
- package/lib/module/types/MRecAd.js.map +1 -0
- package/lib/module/types/NativeAd.js +2 -0
- package/lib/module/types/NativeAd.js.map +1 -0
- package/lib/module/types/NativeAdViewProps.js +2 -0
- package/lib/module/types/NativeAdViewProps.js.map +1 -0
- package/lib/module/types/Privacy.js +2 -0
- package/lib/module/types/Privacy.js.map +1 -0
- package/lib/module/types/RewardedAd.js +2 -0
- package/lib/module/types/RewardedAd.js.map +1 -0
- package/lib/module/types/TargetingData.js +2 -0
- package/lib/module/types/TargetingData.js.map +1 -0
- package/lib/module/types/ViewAd.js +2 -0
- package/lib/module/types/ViewAd.js.map +1 -0
- package/lib/module/types/index.js +6 -0
- package/lib/module/types/index.js.map +1 -0
- package/lib/typescript/src/AdView.d.ts +115 -0
- package/lib/typescript/src/AdView.d.ts.map +1 -0
- package/lib/typescript/src/AppLovinMAX.d.ts +73 -0
- package/lib/typescript/src/AppLovinMAX.d.ts.map +1 -0
- package/lib/typescript/src/AppOpenAd.d.ts +4 -0
- package/lib/typescript/src/AppOpenAd.d.ts.map +1 -0
- package/lib/typescript/src/BannerAd.d.ts +4 -0
- package/lib/typescript/src/BannerAd.d.ts.map +1 -0
- package/lib/typescript/src/EventEmitter.d.ts +4 -0
- package/lib/typescript/src/EventEmitter.d.ts.map +1 -0
- package/lib/typescript/src/InterstitialAd.d.ts +4 -0
- package/lib/typescript/src/InterstitialAd.d.ts.map +1 -0
- package/lib/typescript/src/MRecAd.d.ts +4 -0
- package/lib/typescript/src/MRecAd.d.ts.map +1 -0
- package/lib/typescript/src/Privacy.d.ts +3 -0
- package/lib/typescript/src/Privacy.d.ts.map +1 -0
- package/lib/typescript/src/RewardedAd.d.ts +4 -0
- package/lib/typescript/src/RewardedAd.d.ts.map +1 -0
- package/lib/typescript/src/TargetingData.d.ts +26 -0
- package/lib/typescript/src/TargetingData.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +14 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/nativeAd/NativeAdView.d.ts +42 -0
- package/lib/typescript/src/nativeAd/NativeAdView.d.ts.map +1 -0
- package/lib/typescript/src/nativeAd/NativeAdViewComponents.d.ts +11 -0
- package/lib/typescript/src/nativeAd/NativeAdViewComponents.d.ts.map +1 -0
- package/lib/typescript/src/nativeAd/NativeAdViewProvider.d.ts +16 -0
- package/lib/typescript/src/nativeAd/NativeAdViewProvider.d.ts.map +1 -0
- package/lib/typescript/src/types/AdEvent.d.ts +15 -0
- package/lib/typescript/src/types/AdEvent.d.ts.map +1 -0
- package/lib/typescript/src/types/AdInfo.d.ts +295 -0
- package/lib/typescript/src/types/AdInfo.d.ts.map +1 -0
- package/lib/typescript/src/types/AdProps.d.ts +58 -0
- package/lib/typescript/src/types/AdProps.d.ts.map +1 -0
- package/lib/typescript/src/types/AdViewProps.d.ts +73 -0
- package/lib/typescript/src/types/AdViewProps.d.ts.map +1 -0
- package/lib/typescript/src/types/AppLovinMAX.d.ts +133 -0
- package/lib/typescript/src/types/AppLovinMAX.d.ts.map +1 -0
- package/lib/typescript/src/types/AppOpenAd.d.ts +3 -0
- package/lib/typescript/src/types/AppOpenAd.d.ts.map +1 -0
- package/lib/typescript/src/types/BannerAd.d.ts +42 -0
- package/lib/typescript/src/types/BannerAd.d.ts.map +1 -0
- package/lib/typescript/src/types/CMPError.d.ts +20 -0
- package/lib/typescript/src/types/CMPError.d.ts.map +1 -0
- package/lib/typescript/src/types/Configuration.d.ts +33 -0
- package/lib/typescript/src/types/Configuration.d.ts.map +1 -0
- package/lib/typescript/src/types/FullscreenAd.d.ts +123 -0
- package/lib/typescript/src/types/FullscreenAd.d.ts.map +1 -0
- package/lib/typescript/src/types/InterstitialAd.d.ts +3 -0
- package/lib/typescript/src/types/InterstitialAd.d.ts.map +1 -0
- package/lib/typescript/src/types/MRecAd.d.ts +12 -0
- package/lib/typescript/src/types/MRecAd.d.ts.map +1 -0
- package/lib/typescript/src/types/NativeAd.d.ts +42 -0
- package/lib/typescript/src/types/NativeAd.d.ts.map +1 -0
- package/lib/typescript/src/types/NativeAdViewProps.d.ts +15 -0
- package/lib/typescript/src/types/NativeAdViewProps.d.ts.map +1 -0
- package/lib/typescript/src/types/Privacy.d.ts +35 -0
- package/lib/typescript/src/types/Privacy.d.ts.map +1 -0
- package/lib/typescript/src/types/RewardedAd.d.ts +18 -0
- package/lib/typescript/src/types/RewardedAd.d.ts.map +1 -0
- package/lib/typescript/src/types/TargetingData.d.ts +43 -0
- package/lib/typescript/src/types/TargetingData.d.ts.map +1 -0
- package/lib/typescript/src/types/ViewAd.d.ts +141 -0
- package/lib/typescript/src/types/ViewAd.d.ts.map +1 -0
- package/lib/typescript/src/types/index.d.ts +6 -0
- package/lib/typescript/src/types/index.d.ts.map +1 -0
- package/package.json +19 -11
- package/react-native-applovin-max.podspec +1 -1
- package/src/AppLovinMAX.ts +1 -1
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ViewProps } from 'react-native';
|
|
3
|
+
import type { AdInfo, AdLoadFailedInfo } from './types/AdInfo';
|
|
4
|
+
import type { AdViewHandler, NativeUIComponentAdViewOptions } from './types/AdViewProps';
|
|
5
|
+
/**
|
|
6
|
+
* Defines a format of an ad.
|
|
7
|
+
*/
|
|
8
|
+
export declare enum AdFormat {
|
|
9
|
+
/**
|
|
10
|
+
* Banner ad.
|
|
11
|
+
*/
|
|
12
|
+
BANNER,
|
|
13
|
+
/**
|
|
14
|
+
* MREC ad.
|
|
15
|
+
*/
|
|
16
|
+
MREC
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Defines a position of a banner or MREC ad.
|
|
20
|
+
*/
|
|
21
|
+
export declare enum AdViewPosition {
|
|
22
|
+
TOP_CENTER,
|
|
23
|
+
TOP_LEFT,
|
|
24
|
+
TOP_RIGHT,
|
|
25
|
+
CENTERED,
|
|
26
|
+
CENTER_LEFT,
|
|
27
|
+
CENTER_RIGHT,
|
|
28
|
+
BOTTOM_LEFT,
|
|
29
|
+
BOTTOM_CENTER,
|
|
30
|
+
BOTTOM_RIGHT
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* The {@link AdView} component that you use building a banner or an MREC. Phones
|
|
34
|
+
* sizes banners to 320x50 and MRECs to 300x250. Tablets sizes banners to 728x90 and MRECs to
|
|
35
|
+
* 300x250. You may use the utility method {@link AppLovinMAX.isTablet()} to help with view sizing
|
|
36
|
+
* adjustments. For adaptive banners, call {@link BannerAd.getAdaptiveHeightForWidth()} to get
|
|
37
|
+
* the banner height, and then adjust your content accordingly.
|
|
38
|
+
*
|
|
39
|
+
* ### Example:
|
|
40
|
+
* ```js
|
|
41
|
+
* <AdView
|
|
42
|
+
* adUnitId={adUnitId}
|
|
43
|
+
* adFormat={AdFormat.BANNER}
|
|
44
|
+
* placement="my_placement"
|
|
45
|
+
* customData="my_customData"
|
|
46
|
+
* extraParameters={{"key1":"value1", "key2":"value2"}}
|
|
47
|
+
* localExtraParameters={{"key1":123", "key2":object}}
|
|
48
|
+
* adaptiveBannerEnabled={false}
|
|
49
|
+
* autoRefresh={false}
|
|
50
|
+
* style={styles.banner}
|
|
51
|
+
* onAdLoaded={(adInfo: AdInfo) => { ... }}
|
|
52
|
+
* />
|
|
53
|
+
* ```
|
|
54
|
+
*/
|
|
55
|
+
export declare const AdView: React.ForwardRefExoticComponent<import("./types/AdProps").AdProps & {
|
|
56
|
+
adFormat: AdFormat;
|
|
57
|
+
adaptiveBannerEnabled?: boolean | undefined;
|
|
58
|
+
autoRefresh?: boolean | undefined;
|
|
59
|
+
loadOnMount?: boolean | undefined;
|
|
60
|
+
onAdExpanded?: ((adInfo: AdInfo) => void) | undefined;
|
|
61
|
+
onAdCollapsed?: ((adInfo: AdInfo) => void) | undefined;
|
|
62
|
+
} & ViewProps & React.RefAttributes<AdViewHandler>>;
|
|
63
|
+
/**
|
|
64
|
+
* Preloads a native UI component for {@link AdView}. When you mount {@link AdView} with the Ad Unit
|
|
65
|
+
* ID you preloaded, it will be constructed with the preloaded native UI component, allowing the ads
|
|
66
|
+
* to be displayed quickly. When you unmount {@link AdView}, the preloaded native UI component won't
|
|
67
|
+
* be destroyed. Instead, it will be reused for the next mount. You must manually destroy it when it
|
|
68
|
+
* is no longer needed.
|
|
69
|
+
*
|
|
70
|
+
* You can preload only one native UI component for a single Ad Unit ID. If you mount two of
|
|
71
|
+
* {@link AdView} with the same Ad Unit ID, the first {@link AdView} will be constructed with the
|
|
72
|
+
* preloaded native UI component, but the second {@link AdView} will create its own native UI
|
|
73
|
+
* component and destroy it when unmounting.
|
|
74
|
+
*
|
|
75
|
+
* @param adUnitId The Ad Unit ID to load ads for.
|
|
76
|
+
* @param adFormat An enum value representing the ad format to load ads for. Should be either
|
|
77
|
+
* {@link AdFormat.BANNER} or {@link AdFormat.MREC}.
|
|
78
|
+
* @param options Optional props used to construct a native UI component.
|
|
79
|
+
* @returns A promise that resolves when preload starts. The resolved object contains void.
|
|
80
|
+
* @throws Throws an error if the request fails.
|
|
81
|
+
*/
|
|
82
|
+
export declare const preloadNativeUIComponentAdView: (adUnitId: string, adFormat: AdFormat, options?: NativeUIComponentAdViewOptions) => Promise<void>;
|
|
83
|
+
/**
|
|
84
|
+
* Destroys the native UI component.
|
|
85
|
+
*
|
|
86
|
+
* @param adUnitId The ad unit ID of the native UI component to destroy.
|
|
87
|
+
* @returns A promise that resolves upon the destruction of the native UI component. The resolved
|
|
88
|
+
* object contains void.
|
|
89
|
+
* @throws Throws an error if the request fails.
|
|
90
|
+
*/
|
|
91
|
+
export declare const destroyNativeUIComponentAdView: (adUnitId: string) => Promise<void>;
|
|
92
|
+
/**
|
|
93
|
+
* Adds the specified event listener to receive {@link AdInfo} when a native UI component loads a
|
|
94
|
+
* new ad.
|
|
95
|
+
*
|
|
96
|
+
* @param listener Listener to be notified.
|
|
97
|
+
*/
|
|
98
|
+
export declare const addNativeUIComponentAdViewAdLoadedEventListener: (listener: (adInfo: AdInfo) => void) => void;
|
|
99
|
+
/**
|
|
100
|
+
* Removes the event listener to receive {@link AdInfo} when a native UI component loads a new ad.
|
|
101
|
+
*/
|
|
102
|
+
export declare const removeNativeUIComponentAdViewAdLoadedEventListener: () => void;
|
|
103
|
+
/**
|
|
104
|
+
* Adds the specified event listener to receive {@link AdLoadFailedInfo} when a native UI component
|
|
105
|
+
* could not load a new ad.
|
|
106
|
+
*
|
|
107
|
+
* @param listener Listener to be notified.
|
|
108
|
+
*/
|
|
109
|
+
export declare const addNativeUIComponentAdViewAdLoadFailedEventListener: (listener: (errorInfo: AdLoadFailedInfo) => void) => void;
|
|
110
|
+
/**
|
|
111
|
+
* Removes the event listener to receive {@link AdLoadFailedInfo} when a native UI component could
|
|
112
|
+
* not load a new ad.
|
|
113
|
+
*/
|
|
114
|
+
export declare const removeNativeUIComponentAdViewAdLoadFailedEventListener: () => void;
|
|
115
|
+
//# sourceMappingURL=AdView.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AdView.d.ts","sourceRoot":"","sources":["../../../src/AdView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,KAAK,EAAE,SAAS,EAAuD,MAAM,cAAc,CAAC;AACnG,OAAO,KAAK,EAAuB,MAAM,EAAE,gBAAgB,EAAiB,MAAM,gBAAgB,CAAC;AAEnG,OAAO,KAAK,EAAe,aAAa,EAAE,8BAA8B,EAAE,MAAM,qBAAqB,CAAC;AAuBtG;;GAEG;AACH,oBAAY,QAAQ;IAChB;;OAEG;IACH,MAA+B;IAE/B;;OAEG;IACH,IAA2B;CAC9B;AAED;;GAEG;AACH,oBAAY,cAAc;IACtB,UAAgC;IAChC,QAA4B;IAC5B,SAA8B;IAC9B,QAA4B;IAC5B,WAAkC;IAClC,YAAoC;IACpC,WAAkC;IAClC,aAAsC;IACtC,YAAoC;CACvC;AAoDD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,eAAO,MAAM,MAAM;;;;;;;mDA+JjB,CAAC;AAEH;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,8BAA8B,aAAoB,MAAM,YAAY,QAAQ,YAAY,8BAA8B,KAAG,QAAQ,IAAI,CAEjJ,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,8BAA8B,aAAoB,MAAM,KAAG,QAAQ,IAAI,CAEnF,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,+CAA+C,aAAc,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,SAEjG,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kDAAkD,YAE9D,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,mDAAmD,aAAc,CAAC,SAAS,EAAE,gBAAgB,KAAK,IAAI,SAElH,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,sDAAsD,YAElE,CAAC"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import type { AppLovinMAXType } from './types/AppLovinMAX';
|
|
2
|
+
/**
|
|
3
|
+
* This enum represents the user's geography used to determine the type of consent flow shown to the
|
|
4
|
+
* user.
|
|
5
|
+
*/
|
|
6
|
+
export declare enum ConsentFlowUserGeography {
|
|
7
|
+
/**
|
|
8
|
+
* User's geography is unknown.
|
|
9
|
+
*/
|
|
10
|
+
UNKNOWN = "U",
|
|
11
|
+
/**
|
|
12
|
+
* The user is in GDPR region.
|
|
13
|
+
*/
|
|
14
|
+
GDPR = "G",
|
|
15
|
+
/**
|
|
16
|
+
* The user is in a non-GDPR region.
|
|
17
|
+
*/
|
|
18
|
+
OTHER = "O"
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* AppLovin SDK-defined app tracking transparency status values (extended to include "unavailable"
|
|
22
|
+
* state on iOS before iOS14).
|
|
23
|
+
*/
|
|
24
|
+
export declare enum AppTrackingStatus {
|
|
25
|
+
/**
|
|
26
|
+
* Device is on iOS before iOS14, AppTrackingTransparency.framework is not available.
|
|
27
|
+
*/
|
|
28
|
+
UNAVAILABLE = "U",
|
|
29
|
+
/**
|
|
30
|
+
* The user has not yet received an authorization request to authorize access to app-related
|
|
31
|
+
* data that can be used for tracking the user or the device.
|
|
32
|
+
*/
|
|
33
|
+
NOT_DETERMINED = "N",
|
|
34
|
+
/**
|
|
35
|
+
* Authorization to access app-related data that can be used for tracking the user or the device
|
|
36
|
+
* is restricted.
|
|
37
|
+
*/
|
|
38
|
+
RESTRICTED = "R",
|
|
39
|
+
/**
|
|
40
|
+
* The user denies authorization to access app-related data that can be used for tracking the
|
|
41
|
+
* user or the device.
|
|
42
|
+
*/
|
|
43
|
+
DENIED = "D",
|
|
44
|
+
/**
|
|
45
|
+
* The user authorizes access to app-related data that can be used for tracking the user or the
|
|
46
|
+
* device.
|
|
47
|
+
*/
|
|
48
|
+
AUTHORIZED = "A"
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Represents errors for CMP flow.
|
|
52
|
+
*/
|
|
53
|
+
export declare enum CMPErrorCode {
|
|
54
|
+
/**
|
|
55
|
+
* Indicates that an unspecified error has occurred.
|
|
56
|
+
*/
|
|
57
|
+
UNSPECIFIED = -1,
|
|
58
|
+
/**
|
|
59
|
+
* Indicates that the CMP has not been integrated correctly.
|
|
60
|
+
*/
|
|
61
|
+
INTEGRATION_ERROR = 1,
|
|
62
|
+
/**
|
|
63
|
+
* Indicates that the CMP form is unavailable.
|
|
64
|
+
*/
|
|
65
|
+
FORM_UNAVAILABLE = 2,
|
|
66
|
+
/**
|
|
67
|
+
* Indicates that the CMP form is not required.
|
|
68
|
+
*/
|
|
69
|
+
FORM_NOT_REQUIRED = 3
|
|
70
|
+
}
|
|
71
|
+
export declare const AppLovinMAX: AppLovinMAXType;
|
|
72
|
+
export default AppLovinMAX;
|
|
73
|
+
//# sourceMappingURL=AppLovinMAX.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppLovinMAX.d.ts","sourceRoot":"","sources":["../../../src/AppLovinMAX.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAO3D;;;GAGG;AACH,oBAAY,wBAAwB;IAChC;;OAEG;IACH,OAAO,MAAM;IAEb;;OAEG;IACH,IAAI,MAAM;IAEV;;OAEG;IACH,KAAK,MAAM;CACd;AAED;;;GAGG;AACH,oBAAY,iBAAiB;IACzB;;OAEG;IACH,WAAW,MAAM;IAEjB;;;OAGG;IACH,cAAc,MAAM;IAEpB;;;OAGG;IACH,UAAU,MAAM;IAEhB;;;OAGG;IACH,MAAM,MAAM;IAEZ;;;OAGG;IACH,UAAU,MAAM;CACnB;AAED;;GAEG;AACH,oBAAY,YAAY;IACpB;;OAEG;IACH,WAAW,KAAK;IAEhB;;OAEG;IACH,iBAAiB,IAAI;IAErB;;OAEG;IACH,gBAAgB,IAAI;IAEpB;;OAEG;IACH,iBAAiB,IAAI;CACxB;AAUD,eAAO,MAAM,WAAW,EAAE,eAGzB,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppOpenAd.d.ts","sourceRoot":"","sources":["../../../src/AppOpenAd.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AA0FvD,eAAO,MAAM,SAAS,EAAE,aA4BvB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BannerAd.d.ts","sourceRoot":"","sources":["../../../src/BannerAd.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AA6HrD,eAAO,MAAM,QAAQ,EAAE,YA6CtB,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { AdEventObject, AdEventListener } from './types/AdEvent';
|
|
2
|
+
export declare const addEventListener: <T extends AdEventObject>(event: string, handler: AdEventListener<T>) => void;
|
|
3
|
+
export declare const removeEventListener: (event: string) => void;
|
|
4
|
+
//# sourceMappingURL=EventEmitter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventEmitter.d.ts","sourceRoot":"","sources":["../../../src/EventEmitter.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAStE,eAAO,MAAM,gBAAgB,mCAAoC,MAAM,WAAW,gBAAgB,CAAC,CAAC,SAOnG,CAAC;AAEF,eAAO,MAAM,mBAAmB,UAAW,MAAM,SAMhD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InterstitialAd.d.ts","sourceRoot":"","sources":["../../../src/InterstitialAd.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AA0FjE,eAAO,MAAM,cAAc,EAAE,kBA4B5B,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MRecAd.d.ts","sourceRoot":"","sources":["../../../src/MRecAd.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAoGjD,eAAO,MAAM,MAAM,EAAE,UAmCpB,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Privacy.d.ts","sourceRoot":"","sources":["../../../src/Privacy.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAInD,eAAO,MAAM,OAAO,EAAE,WAAyB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RewardedAd.d.ts","sourceRoot":"","sources":["../../../src/RewardedAd.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAqGzD,eAAO,MAAM,UAAU,EAAE,cAiCxB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { TargetingDataType } from './types/TargetingData';
|
|
2
|
+
/**
|
|
3
|
+
* This enumeration represents content ratings for the ads shown to users.
|
|
4
|
+
*/
|
|
5
|
+
export declare enum AdContentRating {
|
|
6
|
+
NONE = 0,
|
|
7
|
+
ALL_AUDIENCES = 1,
|
|
8
|
+
EVERYONE_OVER_TWELVE = 2,
|
|
9
|
+
MATURE_AUDIENCES = 3
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* This enumeration represents gender.
|
|
13
|
+
*/
|
|
14
|
+
export declare enum UserGender {
|
|
15
|
+
UNKNOWN = "U",
|
|
16
|
+
FEMALE = "F",
|
|
17
|
+
MALE = "M",
|
|
18
|
+
OTHER = "O"
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Defines additional data for the publisher to send to AppLovin.
|
|
22
|
+
*
|
|
23
|
+
* @see {@link https://support.applovin.com/hc/en-us/articles/13964925614733-Data-and-Keyword-Passing}
|
|
24
|
+
*/
|
|
25
|
+
export declare const TargetingData: TargetingDataType;
|
|
26
|
+
//# sourceMappingURL=TargetingData.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TargetingData.d.ts","sourceRoot":"","sources":["../../../src/TargetingData.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAwB/D;;GAEG;AACH,oBAAY,eAAe;IACvB,IAAI,IAAI;IACR,aAAa,IAAI;IACjB,oBAAoB,IAAI;IACxB,gBAAgB,IAAI;CACvB;AAED;;GAEG;AACH,oBAAY,UAAU;IAClB,OAAO,MAAM;IACb,MAAM,MAAM;IACZ,IAAI,MAAM;IACV,KAAK,MAAM;CACd;AAED;;;;GAIG;AACH,eAAO,MAAM,aAAa,EAAE,iBAyJ3B,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export { default, AppLovinMAX, ConsentFlowUserGeography, AppTrackingStatus, CMPErrorCode } from './AppLovinMAX';
|
|
2
|
+
export { Privacy } from './Privacy';
|
|
3
|
+
export { TargetingData, AdContentRating, UserGender } from './TargetingData';
|
|
4
|
+
export { InterstitialAd } from './InterstitialAd';
|
|
5
|
+
export { RewardedAd } from './RewardedAd';
|
|
6
|
+
export { AppOpenAd } from './AppOpenAd';
|
|
7
|
+
export { BannerAd } from './BannerAd';
|
|
8
|
+
export { MRecAd } from './MRecAd';
|
|
9
|
+
export { AdView, AdFormat, AdViewPosition } from './AdView';
|
|
10
|
+
export { preloadNativeUIComponentAdView, destroyNativeUIComponentAdView, addNativeUIComponentAdViewAdLoadFailedEventListener, removeNativeUIComponentAdViewAdLoadedEventListener, addNativeUIComponentAdViewAdLoadedEventListener, removeNativeUIComponentAdViewAdLoadFailedEventListener, } from './AdView';
|
|
11
|
+
export { NativeAdView } from './nativeAd/NativeAdView';
|
|
12
|
+
export { TitleView, AdvertiserView, BodyView, CallToActionView, IconView, OptionsView, MediaView, StarRatingView } from './nativeAd/NativeAdViewComponents';
|
|
13
|
+
export * from './types';
|
|
14
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,wBAAwB,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAChH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAC5D,OAAO,EACH,8BAA8B,EAC9B,8BAA8B,EAC9B,mDAAmD,EACnD,kDAAkD,EAClD,+CAA+C,EAC/C,sDAAsD,GACzD,MAAM,UAAU,CAAC;AAClB,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,QAAQ,EAAE,gBAAgB,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;AAC5J,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ViewProps } from 'react-native';
|
|
3
|
+
import type { NativeAdViewHandler } from '../types/NativeAdViewProps';
|
|
4
|
+
/**
|
|
5
|
+
* The {@link NativeAdView} component that you use building a native ad. This loads a native ad and
|
|
6
|
+
* renders it with the asset views:
|
|
7
|
+
*
|
|
8
|
+
* - {@link IconView}
|
|
9
|
+
* - {@link TitleView}
|
|
10
|
+
* - {@link AdvertiserView}
|
|
11
|
+
* - {@link StarRatingView}
|
|
12
|
+
* - {@link BodyView}
|
|
13
|
+
* - {@link MediaView}
|
|
14
|
+
* - {@link CallToActionView}
|
|
15
|
+
*
|
|
16
|
+
* {@link NativeAdView} fills each asset view with the data of a native ad as soon as it loads the native
|
|
17
|
+
* ad, but you need to provide the layout and style of the asset views.
|
|
18
|
+
* {@link NativeAdView} can reload a new native ad by using the ref handler.
|
|
19
|
+
*
|
|
20
|
+
* ### Example:
|
|
21
|
+
* ```js
|
|
22
|
+
* <NativeAdView
|
|
23
|
+
* ref={nativeAdViewHandler}
|
|
24
|
+
* adUnitId={adUnitId}
|
|
25
|
+
* style={styles.nativead}
|
|
26
|
+
* onAdLoaded={(adInfo: AdInfo) => { ... }}
|
|
27
|
+
* >
|
|
28
|
+
* <View style={ ... }>
|
|
29
|
+
* <IconView style={styles.icon} />
|
|
30
|
+
* <TitleView style={styles.title} />
|
|
31
|
+
* <AdvertiserView style={styles.advertiser} />
|
|
32
|
+
* <StarRatingView style={styles.starRatingView} />
|
|
33
|
+
* <OptionsView style={styles.optionsView} />
|
|
34
|
+
* <BodyView style={styles.body} />
|
|
35
|
+
* <MediaView style={styles.mediaView} />
|
|
36
|
+
* <CallToActionView style={styles.callToAction} />
|
|
37
|
+
* </View>
|
|
38
|
+
* </NativeAdView>
|
|
39
|
+
* ```
|
|
40
|
+
*/
|
|
41
|
+
export declare const NativeAdView: React.ForwardRefExoticComponent<import("../types/AdProps").AdProps & ViewProps & React.RefAttributes<NativeAdViewHandler>>;
|
|
42
|
+
//# sourceMappingURL=NativeAdView.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NativeAdView.d.ts","sourceRoot":"","sources":["../../../../src/nativeAd/NativeAdView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAK9C,OAAO,KAAK,EAAE,mBAAmB,EAAqB,MAAM,4BAA4B,CAAC;AAczF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,eAAO,MAAM,YAAY,4HAuBvB,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ViewProps, ImageProps, TextProps } from 'react-native';
|
|
3
|
+
export declare const TitleView: (props: TextProps) => React.JSX.Element;
|
|
4
|
+
export declare const AdvertiserView: (props: TextProps) => React.JSX.Element;
|
|
5
|
+
export declare const BodyView: (props: TextProps) => React.JSX.Element;
|
|
6
|
+
export declare const CallToActionView: (props: TextProps) => React.JSX.Element;
|
|
7
|
+
export declare const IconView: (props: Omit<ImageProps, 'source'>) => React.JSX.Element;
|
|
8
|
+
export declare const OptionsView: (props: ViewProps) => React.JSX.Element;
|
|
9
|
+
export declare const MediaView: (props: ViewProps) => React.JSX.Element;
|
|
10
|
+
export declare const StarRatingView: (props: ViewProps) => React.JSX.Element;
|
|
11
|
+
//# sourceMappingURL=NativeAdViewComponents.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NativeAdViewComponents.d.ts","sourceRoot":"","sources":["../../../../src/nativeAd/NativeAdViewComponents.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAwB,SAAS,EAAE,MAAM,cAAc,CAAC;AAG3F,eAAO,MAAM,SAAS,UAAW,SAAS,sBAiBzC,CAAC;AAEF,eAAO,MAAM,cAAc,UAAW,SAAS,sBAiB9C,CAAC;AAEF,eAAO,MAAM,QAAQ,UAAW,SAAS,sBAiBxC,CAAC;AAEF,eAAO,MAAM,gBAAgB,UAAW,SAAS,sBAmBhD,CAAC;AAEF,eAAO,MAAM,QAAQ,UAAW,KAAK,UAAU,EAAE,QAAQ,CAAC,sBAmBzD,CAAC;AAEF,eAAO,MAAM,WAAW,UAAW,SAAS,sBAY3C,CAAC;AAEF,eAAO,MAAM,SAAS,UAAW,SAAS,sBAazC,CAAC;AAEF,eAAO,MAAM,cAAc,UAAW,SAAS,sBAsC9C,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { NativeMethods } from 'react-native';
|
|
3
|
+
import type { NativeAd } from '../types/NativeAd';
|
|
4
|
+
import type { NativeAdViewProps } from '../types/NativeAdViewProps';
|
|
5
|
+
export type NativeAdViewType = React.Component<NativeAdViewProps> & NativeMethods;
|
|
6
|
+
export type NativeAdViewContextType = {
|
|
7
|
+
nativeAd: NativeAd;
|
|
8
|
+
nativeAdView: NativeAdViewType | null;
|
|
9
|
+
setNativeAd: React.Dispatch<React.SetStateAction<NativeAd>>;
|
|
10
|
+
setNativeAdView: React.Dispatch<React.SetStateAction<NativeAdViewType>>;
|
|
11
|
+
};
|
|
12
|
+
export declare const NativeAdViewContext: React.Context<NativeAdViewContextType>;
|
|
13
|
+
export declare const NativeAdViewProvider: React.FC<{
|
|
14
|
+
children: React.ReactNode;
|
|
15
|
+
}>;
|
|
16
|
+
//# sourceMappingURL=NativeAdViewProvider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NativeAdViewProvider.d.ts","sourceRoot":"","sources":["../../../../src/nativeAd/NativeAdViewProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAClD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAClD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAEpE,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,SAAS,CAAC,iBAAiB,CAAC,GAAG,aAAa,CAAC;AAElF,MAAM,MAAM,uBAAuB,GAAG;IAClC,QAAQ,EAAE,QAAQ,CAAC;IACnB,YAAY,EAAE,gBAAgB,GAAG,IAAI,CAAC;IACtC,WAAW,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC;IAC5D,eAAe,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,gBAAgB,CAAC,CAAC,CAAC;CAC3E,CAAC;AAEF,eAAO,MAAM,mBAAmB,wCAK9B,CAAC;AAEH,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,CAexE,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { AdInfo, AdLoadFailedInfo, AdDisplayFailedInfo, AdRevenueInfo, AdRewardInfo } from './AdInfo';
|
|
2
|
+
export type AdEventObject = AdInfo | AdLoadFailedInfo | AdDisplayFailedInfo | AdRevenueInfo | AdRewardInfo;
|
|
3
|
+
/**
|
|
4
|
+
* Defines a generic event listener for the pragrammatic methods to receive an event from the native
|
|
5
|
+
* module.
|
|
6
|
+
*/
|
|
7
|
+
export type AdEventListener<T extends AdEventObject> = (event: T) => void;
|
|
8
|
+
/**
|
|
9
|
+
* Defines a generic event object for the UI components i.e. AdView and NativeAdView to receive an
|
|
10
|
+
* event from the native module.
|
|
11
|
+
*/
|
|
12
|
+
export type AdNativeEvent<T extends AdEventObject> = {
|
|
13
|
+
nativeEvent: T;
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=AdEvent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AdEvent.d.ts","sourceRoot":"","sources":["../../../../src/types/AdEvent.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAE3G,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,gBAAgB,GAAG,mBAAmB,GAAG,aAAa,GAAG,YAAY,CAAC;AAE3G;;;GAGG;AACH,MAAM,MAAM,eAAe,CAAC,CAAC,SAAS,aAAa,IAAI,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,CAAC;AAE1E;;;GAGG;AACH,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,aAAa,IAAI;IAAE,WAAW,EAAE,CAAC,CAAA;CAAE,CAAC"}
|