@react-native-firebase/in-app-messaging 23.6.0 → 23.8.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,14 @@
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
+ ## [23.8.0](https://github.com/invertase/react-native-firebase/compare/v23.7.0...v23.8.0) (2026-01-13)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/in-app-messaging
9
+
10
+ ## [23.7.0](https://github.com/invertase/react-native-firebase/compare/v23.6.0...v23.7.0) (2025-12-08)
11
+
12
+ **Note:** Version bump only for package @react-native-firebase/in-app-messaging
13
+
6
14
  ## [23.6.0](https://github.com/invertase/react-native-firebase/compare/v23.5.0...v23.6.0) (2025-12-08)
7
15
 
8
16
  **Note:** Version bump only for package @react-native-firebase/in-app-messaging
package/lib/index.d.ts CHANGED
@@ -56,8 +56,9 @@ import { ReactNativeFirebase } from '@react-native-firebase/app';
56
56
  export namespace FirebaseInAppMessagingTypes {
57
57
  import FirebaseModule = ReactNativeFirebase.FirebaseModule;
58
58
 
59
- // eslint-disable-next-line @typescript-eslint/no-empty-object-type
60
- export interface Statics {}
59
+ export interface Statics {
60
+ SDK_VERSION: string;
61
+ }
61
62
 
62
63
  /**
63
64
  * The Firebase In-App Messaging service interface.
@@ -73,6 +74,11 @@ export namespace FirebaseInAppMessagingTypes {
73
74
  * ```
74
75
  */
75
76
  export class Module extends FirebaseModule {
77
+ /**
78
+ * The current `FirebaseApp` instance for this Firebase service.
79
+ */
80
+ app: ReactNativeFirebase.FirebaseApp;
81
+
76
82
  /**
77
83
  * Determines whether messages are suppressed or not.
78
84
  *
@@ -147,10 +153,15 @@ export namespace FirebaseInAppMessagingTypes {
147
153
  }
148
154
  }
149
155
 
150
- declare const defaultExport: ReactNativeFirebase.FirebaseModuleWithStatics<
156
+ type InAppMessagingNamespace = ReactNativeFirebase.FirebaseModuleWithStatics<
151
157
  FirebaseInAppMessagingTypes.Module,
152
158
  FirebaseInAppMessagingTypes.Statics
153
- >;
159
+ > & {
160
+ firebase: ReactNativeFirebase.Module;
161
+ app(name?: string): ReactNativeFirebase.FirebaseApp;
162
+ };
163
+
164
+ declare const defaultExport: InAppMessagingNamespace;
154
165
 
155
166
  export const firebase: ReactNativeFirebase.Module & {
156
167
  inAppMessaging: typeof defaultExport;
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '23.6.0';
2
+ module.exports = '23.8.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/in-app-messaging",
3
- "version": "23.6.0",
3
+ "version": "23.8.0",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - Firebase In-App Messaging helps you engage your app's active users by sending them targeted, contextual messages that encourage them to use key app features. React Native Firebase provides support for both native Android & iOS integration with a simple JavaScript API.",
6
6
  "main": "lib/index.js",
@@ -27,12 +27,12 @@
27
27
  "inAppMessaging"
28
28
  ],
29
29
  "peerDependencies": {
30
- "@react-native-firebase/analytics": "23.6.0",
31
- "@react-native-firebase/app": "23.6.0"
30
+ "@react-native-firebase/analytics": "23.8.0",
31
+ "@react-native-firebase/app": "23.8.0"
32
32
  },
33
33
  "publishConfig": {
34
34
  "access": "public",
35
35
  "provenance": true
36
36
  },
37
- "gitHead": "748e89f9bfcdfbee971c627cd8a698963ba09f33"
37
+ "gitHead": "724ddcfea6ebe93875e5a54ff38ca57ab5990822"
38
38
  }