@react-native-firebase/remote-config 23.7.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 +4 -0
- package/lib/index.d.ts +13 -2
- package/lib/version.js +1 -1
- package/package.json +4 -4
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
|
+
## [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/remote-config
|
|
9
|
+
|
|
6
10
|
## [23.7.0](https://github.com/invertase/react-native-firebase/compare/v23.6.0...v23.7.0) (2025-12-08)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @react-native-firebase/remote-config
|
package/lib/index.d.ts
CHANGED
|
@@ -175,6 +175,7 @@ export namespace FirebaseRemoteConfigTypes {
|
|
|
175
175
|
* ```
|
|
176
176
|
*/
|
|
177
177
|
LastFetchStatus: LastFetchStatus;
|
|
178
|
+
SDK_VERSION: string;
|
|
178
179
|
}
|
|
179
180
|
|
|
180
181
|
/**
|
|
@@ -344,6 +345,11 @@ export namespace FirebaseRemoteConfigTypes {
|
|
|
344
345
|
* ```
|
|
345
346
|
*/
|
|
346
347
|
export class Module extends FirebaseModule {
|
|
348
|
+
/**
|
|
349
|
+
* The current `FirebaseApp` instance for this Firebase service.
|
|
350
|
+
*/
|
|
351
|
+
app: ReactNativeFirebase.FirebaseApp;
|
|
352
|
+
|
|
347
353
|
/**
|
|
348
354
|
* The number of milliseconds since the last Remote RemoteConfig fetch was performed.
|
|
349
355
|
*/
|
|
@@ -613,10 +619,15 @@ export namespace FirebaseRemoteConfigTypes {
|
|
|
613
619
|
) => void;
|
|
614
620
|
}
|
|
615
621
|
|
|
616
|
-
|
|
622
|
+
type RemoteConfigNamespace = ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<
|
|
617
623
|
FirebaseRemoteConfigTypes.Module,
|
|
618
624
|
FirebaseRemoteConfigTypes.Statics
|
|
619
|
-
|
|
625
|
+
> & {
|
|
626
|
+
firebase: ReactNativeFirebase.Module;
|
|
627
|
+
app(name?: string): ReactNativeFirebase.FirebaseApp;
|
|
628
|
+
};
|
|
629
|
+
|
|
630
|
+
declare const defaultExport: RemoteConfigNamespace;
|
|
620
631
|
|
|
621
632
|
export const firebase: ReactNativeFirebase.Module & {
|
|
622
633
|
remoteConfig: typeof defaultExport;
|
package/lib/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
module.exports = '23.
|
|
2
|
+
module.exports = '23.8.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-firebase/remote-config",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.8.0",
|
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
|
5
5
|
"description": "React Native Firebase - React Native Firebase provides native integration with Remote Config, allowing you to change the appearance and/or functionality of your app without requiring an app update.",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"remote-config"
|
|
25
25
|
],
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@react-native-firebase/analytics": "23.
|
|
28
|
-
"@react-native-firebase/app": "23.
|
|
27
|
+
"@react-native-firebase/analytics": "23.8.0",
|
|
28
|
+
"@react-native-firebase/app": "23.8.0"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/text-encoding": "^0.0.40"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "724ddcfea6ebe93875e5a54ff38ca57ab5990822"
|
|
43
43
|
}
|