react-native-google-mobile-ads 11.6.0 → 11.6.2

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/README.md CHANGED
@@ -50,19 +50,12 @@ When using The New Architecture, some legacy code will still be used though. See
50
50
  - [Installation](https://docs.page/invertase/react-native-google-mobile-ads)
51
51
  - [Displaying Ads](https://docs.page/invertase/react-native-google-mobile-ads/displaying-ads)
52
52
 
53
- <!--
54
- - [Quick Start](https://rnfirebase.io/)
55
- - [Reference API](https://rnfirebase.io/reference) -->
56
-
57
53
  ## Contributing
58
54
 
59
- <!-- - [Overview](https://rnfirebase.io) -->
60
-
61
55
  - [Issues](https://github.com/invertase/react-native-google-mobile-ads/issues)
62
56
  - [PRs](https://github.com/invertase/react-native-google-mobile-ads/pulls)
63
- <!-- - [Documentation](https://rnfirebase.io) -->
64
- - [Community](https://github.com/invertase/react-native-google-mobile-ads/blob/master/CONTRIBUTING.md)
65
- - [Code of Conduct](https://github.com/invertase/meta/blob/master/CODE_OF_CONDUCT.md)
57
+ - [Guidelines](https://github.com/invertase/react-native-google-mobile-ads/blob/main/CONTRIBUTING.md)
58
+ - [Code of Conduct](https://github.com/invertase/meta/blob/main/CODE_OF_CONDUCT.md)
66
59
 
67
60
  ## License
68
61
 
@@ -16,6 +16,7 @@ package io.invertase.googlemobileads;
16
16
  * limitations under the License.
17
17
  *
18
18
  */
19
+ import android.app.Activity;
19
20
  import android.content.SharedPreferences;
20
21
  import android.preference.PreferenceManager;
21
22
  import com.facebook.react.bridge.Arguments;
@@ -96,7 +97,9 @@ public class ReactNativeGoogleMobileAdsConsentModule extends ReactNativeModule {
96
97
 
97
98
  ConsentRequestParameters consentRequestParameters = paramsBuilder.build();
98
99
 
99
- if (getCurrentActivity() == null) {
100
+ Activity currentActivity = getCurrentActivity();
101
+
102
+ if (currentActivity == null) {
100
103
  rejectPromiseWithCodeAndMessage(
101
104
  promise,
102
105
  "null-activity",
@@ -105,7 +108,7 @@ public class ReactNativeGoogleMobileAdsConsentModule extends ReactNativeModule {
105
108
  }
106
109
 
107
110
  consentInformation.requestConsentInfoUpdate(
108
- getCurrentActivity(),
111
+ currentActivity,
109
112
  consentRequestParameters,
110
113
  () -> {
111
114
  WritableMap requestInfoMap = Arguments.createMap();
@@ -131,37 +134,38 @@ public class ReactNativeGoogleMobileAdsConsentModule extends ReactNativeModule {
131
134
  @ReactMethod
132
135
  public void showForm(final Promise promise) {
133
136
  try {
134
- if (getCurrentActivity() == null) {
137
+ Activity currentActivity = getCurrentActivity();
138
+
139
+ if (currentActivity == null) {
135
140
  rejectPromiseWithCodeAndMessage(
136
141
  promise,
137
142
  "null-activity",
138
143
  "Consent form attempted to show but the current Activity was null.");
139
144
  return;
140
145
  }
141
- getCurrentActivity()
142
- .runOnUiThread(
143
- () ->
144
- UserMessagingPlatform.loadConsentForm(
145
- getReactApplicationContext(),
146
- consentForm ->
147
- consentForm.show(
148
- getCurrentActivity(),
149
- formError -> {
150
- if (formError != null) {
151
- rejectPromiseWithCodeAndMessage(
152
- promise, "consent-form-error", formError.getMessage());
153
- } else {
154
- WritableMap consentFormMap = Arguments.createMap();
155
- consentFormMap.putString(
156
- "status",
157
- getConsentStatusString(
158
- consentInformation.getConsentStatus()));
159
- promise.resolve(consentFormMap);
160
- }
161
- }),
162
- formError ->
163
- rejectPromiseWithCodeAndMessage(
164
- promise, "consent-form-error", formError.getMessage())));
146
+
147
+ currentActivity.runOnUiThread(
148
+ () ->
149
+ UserMessagingPlatform.loadConsentForm(
150
+ getReactApplicationContext(),
151
+ consentForm ->
152
+ consentForm.show(
153
+ currentActivity,
154
+ formError -> {
155
+ if (formError != null) {
156
+ rejectPromiseWithCodeAndMessage(
157
+ promise, "consent-form-error", formError.getMessage());
158
+ } else {
159
+ WritableMap consentFormMap = Arguments.createMap();
160
+ consentFormMap.putString(
161
+ "status",
162
+ getConsentStatusString(consentInformation.getConsentStatus()));
163
+ promise.resolve(consentFormMap);
164
+ }
165
+ }),
166
+ formError ->
167
+ rejectPromiseWithCodeAndMessage(
168
+ promise, "consent-form-error", formError.getMessage())));
165
169
  } catch (Exception e) {
166
170
  rejectPromiseWithCodeAndMessage(promise, "consent-form-error", e.toString());
167
171
  }
@@ -170,26 +174,28 @@ public class ReactNativeGoogleMobileAdsConsentModule extends ReactNativeModule {
170
174
  @ReactMethod
171
175
  public void showPrivacyOptionsForm(final Promise promise) {
172
176
  try {
173
- if (getCurrentActivity() == null) {
177
+ Activity currentActivity = getCurrentActivity();
178
+
179
+ if (currentActivity == null) {
174
180
  rejectPromiseWithCodeAndMessage(
175
181
  promise,
176
182
  "null-activity",
177
183
  "Privacy options form attempted to show but the current Activity was null.");
178
184
  return;
179
185
  }
180
- getCurrentActivity()
181
- .runOnUiThread(
182
- () ->
183
- UserMessagingPlatform.showPrivacyOptionsForm(
184
- getCurrentActivity(),
185
- formError -> {
186
- if (formError != null) {
187
- rejectPromiseWithCodeAndMessage(
188
- promise, "privacy-options-form-error", formError.getMessage());
189
- } else {
190
- promise.resolve("Privacy options form presented successfully.");
191
- }
192
- }));
186
+
187
+ currentActivity.runOnUiThread(
188
+ () ->
189
+ UserMessagingPlatform.showPrivacyOptionsForm(
190
+ currentActivity,
191
+ formError -> {
192
+ if (formError != null) {
193
+ rejectPromiseWithCodeAndMessage(
194
+ promise, "privacy-options-form-error", formError.getMessage());
195
+ } else {
196
+ promise.resolve("Privacy options form presented successfully.");
197
+ }
198
+ }));
193
199
  } catch (Exception e) {
194
200
  rejectPromiseWithCodeAndMessage(promise, "consent-form-error", e.toString());
195
201
  }
@@ -10,6 +10,7 @@ var _exportNames = {
10
10
  AdsConsentPurposes: true,
11
11
  AdsConsentSpecialFeatures: true,
12
12
  AdsConsentStatus: true,
13
+ AdsConsentPrivacyOptionsRequirementStatus: true,
13
14
  MaxAdContentRating: true,
14
15
  TestIds: true,
15
16
  AdEventType: true,
@@ -47,6 +48,12 @@ Object.defineProperty(exports, "AdsConsentDebugGeography", {
47
48
  return _AdsConsentDebugGeography.AdsConsentDebugGeography;
48
49
  }
49
50
  });
51
+ Object.defineProperty(exports, "AdsConsentPrivacyOptionsRequirementStatus", {
52
+ enumerable: true,
53
+ get: function () {
54
+ return _AdsConsentPrivacyOptionsRequirementStatus.AdsConsentPrivacyOptionsRequirementStatus;
55
+ }
56
+ });
50
57
  Object.defineProperty(exports, "AdsConsentPurposes", {
51
58
  enumerable: true,
52
59
  get: function () {
@@ -180,6 +187,7 @@ var _AdsConsentDebugGeography = require("./AdsConsentDebugGeography");
180
187
  var _AdsConsentPurposes = require("./AdsConsentPurposes");
181
188
  var _AdsConsentSpecialFeatures = require("./AdsConsentSpecialFeatures");
182
189
  var _AdsConsentStatus = require("./AdsConsentStatus");
190
+ var _AdsConsentPrivacyOptionsRequirementStatus = require("./AdsConsentPrivacyOptionsRequirementStatus");
183
191
  var _MaxAdContentRating = require("./MaxAdContentRating");
184
192
  var _TestIds = require("./TestIds");
185
193
  var _AdEventType = require("./AdEventType");
@@ -1 +1 @@
1
- {"version":3,"names":["SDK_VERSION","version"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiBA;AAKA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAwB;AAAA;AA7CxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAIA;AACO,MAAMA,WAAW,GAAGC,gBAAO;AAAC"}
1
+ {"version":3,"names":["SDK_VERSION","version"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiBA;AAKA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAwB;AAAA;AA9CxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAIA;AACO,MAAMA,WAAW,GAAGC,gBAAO;AAAC"}
@@ -5,6 +5,6 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.version = void 0;
7
7
  // Generated by genversion.
8
- const version = '11.6.0';
8
+ const version = '11.6.2';
9
9
  exports.version = version;
10
10
  //# sourceMappingURL=version.js.map
@@ -24,6 +24,7 @@ export { AdsConsentDebugGeography } from './AdsConsentDebugGeography';
24
24
  export { AdsConsentPurposes } from './AdsConsentPurposes';
25
25
  export { AdsConsentSpecialFeatures } from './AdsConsentSpecialFeatures';
26
26
  export { AdsConsentStatus } from './AdsConsentStatus';
27
+ export { AdsConsentPrivacyOptionsRequirementStatus } from './AdsConsentPrivacyOptionsRequirementStatus';
27
28
  export { MaxAdContentRating } from './MaxAdContentRating';
28
29
  export { TestIds } from './TestIds';
29
30
  export { AdEventType } from './AdEventType';
@@ -1 +1 @@
1
- {"version":3,"names":["version","SDK_VERSION","default","MobileAds","AdsConsentDebugGeography","AdsConsentPurposes","AdsConsentSpecialFeatures","AdsConsentStatus","MaxAdContentRating","TestIds","AdEventType","BannerAdSize","GAMAdEventType","RewardedAdEventType","AdsConsent","AppOpenAd","InterstitialAd","RewardedAd","RewardedInterstitialAd","BannerAd","GAMBannerAd","GAMInterstitialAd","useAppOpenAd","useInterstitialAd","useRewardedAd","useRewardedInterstitialAd"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAASA,OAAO,QAAQ,WAAW;;AAEnC;AACA,OAAO,MAAMC,WAAW,GAAGD,OAAO;AAElC,SAASE,OAAO,EAAEC,SAAS,QAAQ,aAAa;AAChD,SAASC,wBAAwB,QAAQ,4BAA4B;AACrE,SAASC,kBAAkB,QAAQ,sBAAsB;AACzD,SAASC,yBAAyB,QAAQ,6BAA6B;AACvE,SAASC,gBAAgB,QAAQ,oBAAoB;AACrD,SAASC,kBAAkB,QAAQ,sBAAsB;AACzD,SAASC,OAAO,QAAQ,WAAW;AACnC,SAASC,WAAW,QAAQ,eAAe;AAC3C,SAASC,YAAY,QAAQ,gBAAgB;AAC7C,SAASC,cAAc,QAAQ,kBAAkB;AACjD,SAASC,mBAAmB,QAAQ,uBAAuB;AAC3D,SAASC,UAAU,QAAQ,cAAc;AACzC,SAASC,SAAS,QAAQ,iBAAiB;AAC3C,SAASC,cAAc,QAAQ,sBAAsB;AACrD,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SAASC,sBAAsB,QAAQ,8BAA8B;AACrE,SAASC,QAAQ,QAAQ,gBAAgB;AACzC,SAASC,WAAW,QAAQ,mBAAmB;AAC/C,SAASC,iBAAiB,QAAQ,yBAAyB;AAC3D,SAASC,YAAY,QAAQ,sBAAsB;AACnD,SAASC,iBAAiB,QAAQ,2BAA2B;AAC7D,SAASC,aAAa,QAAQ,uBAAuB;AACrD,SAASC,yBAAyB,QAAQ,mCAAmC;AAC7E,cAAc,SAAS"}
1
+ {"version":3,"names":["version","SDK_VERSION","default","MobileAds","AdsConsentDebugGeography","AdsConsentPurposes","AdsConsentSpecialFeatures","AdsConsentStatus","AdsConsentPrivacyOptionsRequirementStatus","MaxAdContentRating","TestIds","AdEventType","BannerAdSize","GAMAdEventType","RewardedAdEventType","AdsConsent","AppOpenAd","InterstitialAd","RewardedAd","RewardedInterstitialAd","BannerAd","GAMBannerAd","GAMInterstitialAd","useAppOpenAd","useInterstitialAd","useRewardedAd","useRewardedInterstitialAd"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAASA,OAAO,QAAQ,WAAW;;AAEnC;AACA,OAAO,MAAMC,WAAW,GAAGD,OAAO;AAElC,SAASE,OAAO,EAAEC,SAAS,QAAQ,aAAa;AAChD,SAASC,wBAAwB,QAAQ,4BAA4B;AACrE,SAASC,kBAAkB,QAAQ,sBAAsB;AACzD,SAASC,yBAAyB,QAAQ,6BAA6B;AACvE,SAASC,gBAAgB,QAAQ,oBAAoB;AACrD,SAASC,yCAAyC,QAAQ,6CAA6C;AACvG,SAASC,kBAAkB,QAAQ,sBAAsB;AACzD,SAASC,OAAO,QAAQ,WAAW;AACnC,SAASC,WAAW,QAAQ,eAAe;AAC3C,SAASC,YAAY,QAAQ,gBAAgB;AAC7C,SAASC,cAAc,QAAQ,kBAAkB;AACjD,SAASC,mBAAmB,QAAQ,uBAAuB;AAC3D,SAASC,UAAU,QAAQ,cAAc;AACzC,SAASC,SAAS,QAAQ,iBAAiB;AAC3C,SAASC,cAAc,QAAQ,sBAAsB;AACrD,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SAASC,sBAAsB,QAAQ,8BAA8B;AACrE,SAASC,QAAQ,QAAQ,gBAAgB;AACzC,SAASC,WAAW,QAAQ,mBAAmB;AAC/C,SAASC,iBAAiB,QAAQ,yBAAyB;AAC3D,SAASC,YAAY,QAAQ,sBAAsB;AACnD,SAASC,iBAAiB,QAAQ,2BAA2B;AAC7D,SAASC,aAAa,QAAQ,uBAAuB;AACrD,SAASC,yBAAyB,QAAQ,mCAAmC;AAC7E,cAAc,SAAS"}
@@ -1,3 +1,3 @@
1
1
  // Generated by genversion.
2
- export const version = '11.6.0';
2
+ export const version = '11.6.2';
3
3
  //# sourceMappingURL=version.js.map
@@ -1,9 +1,10 @@
1
- export declare const SDK_VERSION = "11.6.0";
1
+ export declare const SDK_VERSION = "11.6.2";
2
2
  export { default, MobileAds } from './MobileAds';
3
3
  export { AdsConsentDebugGeography } from './AdsConsentDebugGeography';
4
4
  export { AdsConsentPurposes } from './AdsConsentPurposes';
5
5
  export { AdsConsentSpecialFeatures } from './AdsConsentSpecialFeatures';
6
6
  export { AdsConsentStatus } from './AdsConsentStatus';
7
+ export { AdsConsentPrivacyOptionsRequirementStatus } from './AdsConsentPrivacyOptionsRequirementStatus';
7
8
  export { MaxAdContentRating } from './MaxAdContentRating';
8
9
  export { TestIds } from './TestIds';
9
10
  export { AdEventType } from './AdEventType';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAoBA,eAAO,MAAM,WAAW,WAAU,CAAC;AAEnC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AACtE,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACxE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;AACtE,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,yBAAyB,EAAE,MAAM,mCAAmC,CAAC;AAC9E,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAoBA,eAAO,MAAM,WAAW,WAAU,CAAC;AAEnC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AACtE,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACxE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,yCAAyC,EAAE,MAAM,6CAA6C,CAAC;AACxG,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;AACtE,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,yBAAyB,EAAE,MAAM,mCAAmC,CAAC;AAC9E,cAAc,SAAS,CAAC"}
@@ -1,2 +1,2 @@
1
- export declare const version = "11.6.0";
1
+ export declare const version = "11.6.2";
2
2
  //# sourceMappingURL=version.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-google-mobile-ads",
3
- "version": "11.6.0",
3
+ "version": "11.6.2",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Google Mobile Ads is an easy way to monetize mobile apps with targeted, in-app advertising.",
6
6
  "main": "lib/commonjs/index.js",
package/src/index.ts CHANGED
@@ -25,6 +25,7 @@ export { AdsConsentDebugGeography } from './AdsConsentDebugGeography';
25
25
  export { AdsConsentPurposes } from './AdsConsentPurposes';
26
26
  export { AdsConsentSpecialFeatures } from './AdsConsentSpecialFeatures';
27
27
  export { AdsConsentStatus } from './AdsConsentStatus';
28
+ export { AdsConsentPrivacyOptionsRequirementStatus } from './AdsConsentPrivacyOptionsRequirementStatus';
28
29
  export { MaxAdContentRating } from './MaxAdContentRating';
29
30
  export { TestIds } from './TestIds';
30
31
  export { AdEventType } from './AdEventType';
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '11.6.0';
2
+ export const version = '11.6.2';