@react-native-firebase/app-distribution 22.2.1 → 22.3.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
+ ## [22.3.0](https://github.com/invertase/react-native-firebase/compare/v22.2.1...v22.3.0) (2025-07-08)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/app-distribution
9
+
6
10
  ## [22.2.1](https://github.com/invertase/react-native-firebase/compare/v22.2.0...v22.2.1) (2025-06-10)
7
11
 
8
12
  **Note:** Version bump only for package @react-native-firebase/app-distribution
@@ -1,5 +1,5 @@
1
1
  import { getApp } from '@react-native-firebase/app';
2
-
2
+ import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/lib/common';
3
3
  /**
4
4
  * @typedef {import("..").FirebaseApp} FirebaseApp
5
5
  * @typedef {import("..").FirebaseAppDistributionTypes.AppDistributionRelease} AppDistributionRelease
@@ -22,7 +22,7 @@ export function getAppDistribution(app) {
22
22
  * @returns {Promise<boolean>}
23
23
  */
24
24
  export function isTesterSignedIn(appDistribution) {
25
- return appDistribution.isTesterSignedIn();
25
+ return appDistribution.isTesterSignedIn.call(appDistribution, MODULAR_DEPRECATION_ARG);
26
26
  }
27
27
 
28
28
  /**
@@ -30,7 +30,7 @@ export function isTesterSignedIn(appDistribution) {
30
30
  * @returns {Promise<void>}
31
31
  */
32
32
  export function signInTester(appDistribution) {
33
- return appDistribution.signInTester();
33
+ return appDistribution.signInTester.call(appDistribution, MODULAR_DEPRECATION_ARG);
34
34
  }
35
35
 
36
36
  /**
@@ -38,7 +38,7 @@ export function signInTester(appDistribution) {
38
38
  * @returns {AppDistributionRelease>}
39
39
  */
40
40
  export function checkForUpdate(appDistribution) {
41
- return appDistribution.checkForUpdate();
41
+ return appDistribution.checkForUpdate.call(appDistribution, MODULAR_DEPRECATION_ARG);
42
42
  }
43
43
 
44
44
  /**
@@ -46,5 +46,5 @@ export function checkForUpdate(appDistribution) {
46
46
  * @returns {Promise<void>}
47
47
  */
48
48
  export function signOutTester(appDistribution) {
49
- return appDistribution.signOutTester();
49
+ return appDistribution.signOutTester.call(appDistribution, MODULAR_DEPRECATION_ARG);
50
50
  }
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '22.2.1';
2
+ module.exports = '22.3.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/app-distribution",
3
- "version": "22.2.1",
3
+ "version": "22.3.0",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - App Distribution",
6
6
  "main": "lib/index.js",
@@ -24,7 +24,7 @@
24
24
  "app-distribution"
25
25
  ],
26
26
  "peerDependencies": {
27
- "@react-native-firebase/app": "22.2.1",
27
+ "@react-native-firebase/app": "22.3.0",
28
28
  "expo": ">=47.0.0"
29
29
  },
30
30
  "devDependencies": {
@@ -39,5 +39,5 @@
39
39
  "access": "public",
40
40
  "provenance": true
41
41
  },
42
- "gitHead": "d0fa58166a3fd79c7a951161fa83d0421ae72c93"
42
+ "gitHead": "c04f2a3b681460edde5518812646cf5e0dd86627"
43
43
  }