@react-native-firebase/messaging 15.6.0 → 15.7.0
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/CHANGELOG.md
CHANGED
@@ -3,6 +3,10 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
# [15.7.0](https://github.com/invertase/react-native-firebase/compare/v15.6.0...v15.7.0) (2022-10-01)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/messaging
|
9
|
+
|
6
10
|
# [15.6.0](https://github.com/invertase/react-native-firebase/compare/v15.5.0...v15.6.0) (2022-09-17)
|
7
11
|
|
8
12
|
### Features
|
@@ -232,7 +232,8 @@ public class ReactNativeFirebaseMessagingModule extends ReactNativeFirebaseModul
|
|
232
232
|
.addOnCompleteListener(
|
233
233
|
task -> {
|
234
234
|
if (task.isSuccessful()) {
|
235
|
-
promise.resolve(
|
235
|
+
promise.resolve(
|
236
|
+
FirebaseMessaging.getInstance().deliveryMetricsExportToBigQueryEnabled());
|
236
237
|
} else {
|
237
238
|
rejectPromiseWithExceptionMap(promise, task.getException());
|
238
239
|
}
|
@@ -243,7 +244,9 @@ public class ReactNativeFirebaseMessagingModule extends ReactNativeFirebaseModul
|
|
243
244
|
public Map<String, Object> getConstants() {
|
244
245
|
final Map<String, Object> constants = new HashMap<>();
|
245
246
|
constants.put("isAutoInitEnabled", FirebaseMessaging.getInstance().isAutoInitEnabled());
|
246
|
-
constants.put(
|
247
|
+
constants.put(
|
248
|
+
"isDeliveryMetricsExportToBigQueryEnabled",
|
249
|
+
FirebaseMessaging.getInstance().deliveryMetricsExportToBigQueryEnabled());
|
247
250
|
return constants;
|
248
251
|
}
|
249
252
|
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '15.
|
2
|
+
module.exports = '15.7.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/messaging",
|
3
|
-
"version": "15.
|
3
|
+
"version": "15.7.0",
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
5
5
|
"description": "React Native Firebase - React Native Firebase provides native integration of Firebase Cloud Messaging (FCM) for both Android & iOS. FCM is a cost free service, allowing for server-device and device-device communication. The React Native Firebase Messaging module provides a simple JavaScript API to interact with FCM.",
|
6
6
|
"main": "lib/index.js",
|
@@ -22,10 +22,10 @@
|
|
22
22
|
"messaging"
|
23
23
|
],
|
24
24
|
"peerDependencies": {
|
25
|
-
"@react-native-firebase/app": "15.
|
25
|
+
"@react-native-firebase/app": "15.7.0"
|
26
26
|
},
|
27
27
|
"publishConfig": {
|
28
28
|
"access": "public"
|
29
29
|
},
|
30
|
-
"gitHead": "
|
30
|
+
"gitHead": "769bb2b92df5775109cc4222eed6d940d1f4853a"
|
31
31
|
}
|