@react-native-firebase/installations 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 +8 -0
- package/lib/index.d.ts +13 -4
- package/lib/version.js +1 -1
- package/package.json +3 -3
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/installations
|
|
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/installations
|
|
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/installations
|
package/lib/index.d.ts
CHANGED
|
@@ -56,9 +56,8 @@ import { ReactNativeFirebase } from '@react-native-firebase/app';
|
|
|
56
56
|
export namespace FirebaseInstallationsTypes {
|
|
57
57
|
import FirebaseModule = ReactNativeFirebase.FirebaseModule;
|
|
58
58
|
|
|
59
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
60
59
|
export interface Statics {
|
|
61
|
-
|
|
60
|
+
SDK_VERSION: string;
|
|
62
61
|
}
|
|
63
62
|
|
|
64
63
|
/**
|
|
@@ -83,6 +82,11 @@ export namespace FirebaseInstallationsTypes {
|
|
|
83
82
|
*
|
|
84
83
|
*/
|
|
85
84
|
export class Module extends FirebaseModule {
|
|
85
|
+
/**
|
|
86
|
+
* The current `FirebaseApp` instance for this Firebase service.
|
|
87
|
+
*/
|
|
88
|
+
app: ReactNativeFirebase.FirebaseApp;
|
|
89
|
+
|
|
86
90
|
/**
|
|
87
91
|
* Creates a Firebase Installation if there isn't one for the app and
|
|
88
92
|
* returns the Installation ID. The installation ID is a globally unique,
|
|
@@ -127,10 +131,15 @@ export namespace FirebaseInstallationsTypes {
|
|
|
127
131
|
}
|
|
128
132
|
}
|
|
129
133
|
|
|
130
|
-
|
|
134
|
+
type InstallationsNamespace = ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<
|
|
131
135
|
FirebaseInstallationsTypes.Module,
|
|
132
136
|
FirebaseInstallationsTypes.Statics
|
|
133
|
-
|
|
137
|
+
> & {
|
|
138
|
+
firebase: ReactNativeFirebase.Module;
|
|
139
|
+
app(name?: string): ReactNativeFirebase.FirebaseApp;
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
declare const defaultExport: InstallationsNamespace;
|
|
134
143
|
|
|
135
144
|
export const firebase: ReactNativeFirebase.Module & {
|
|
136
145
|
installations: 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/installations",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.8.0",
|
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
|
5
5
|
"description": "React Native Firebase - Installations",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"installations"
|
|
23
23
|
],
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@react-native-firebase/app": "23.
|
|
25
|
+
"@react-native-firebase/app": "23.8.0"
|
|
26
26
|
},
|
|
27
27
|
"publishConfig": {
|
|
28
28
|
"access": "public",
|
|
29
29
|
"provenance": true
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "724ddcfea6ebe93875e5a54ff38ca57ab5990822"
|
|
32
32
|
}
|