@react-native-firebase/perf 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 +14 -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/perf
|
|
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/perf
|
|
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
|
### Bug Fixes
|
package/lib/index.d.ts
CHANGED
|
@@ -398,8 +398,9 @@ export namespace FirebasePerformanceTypes {
|
|
|
398
398
|
stop(): Promise<null>;
|
|
399
399
|
}
|
|
400
400
|
|
|
401
|
-
|
|
402
|
-
|
|
401
|
+
export interface Statics {
|
|
402
|
+
SDK_VERSION: string;
|
|
403
|
+
}
|
|
403
404
|
|
|
404
405
|
/**
|
|
405
406
|
* The Firebase Performance Monitoring service interface.
|
|
@@ -415,6 +416,10 @@ export namespace FirebasePerformanceTypes {
|
|
|
415
416
|
* ```
|
|
416
417
|
*/
|
|
417
418
|
export class Module extends FirebaseModule {
|
|
419
|
+
/**
|
|
420
|
+
* The current `FirebaseApp` instance for this Firebase service.
|
|
421
|
+
*/
|
|
422
|
+
app: ReactNativeFirebase.FirebaseApp;
|
|
418
423
|
/**
|
|
419
424
|
* Determines whether performance monitoring is enabled or disabled.
|
|
420
425
|
*
|
|
@@ -540,10 +545,15 @@ export namespace FirebasePerformanceTypes {
|
|
|
540
545
|
}
|
|
541
546
|
}
|
|
542
547
|
|
|
543
|
-
|
|
548
|
+
type PerfNamespace = ReactNativeFirebase.FirebaseModuleWithStatics<
|
|
544
549
|
FirebasePerformanceTypes.Module,
|
|
545
550
|
FirebasePerformanceTypes.Statics
|
|
546
|
-
|
|
551
|
+
> & {
|
|
552
|
+
firebase: ReactNativeFirebase.Module;
|
|
553
|
+
app(name?: string): ReactNativeFirebase.FirebaseApp;
|
|
554
|
+
};
|
|
555
|
+
|
|
556
|
+
declare const defaultExport: PerfNamespace;
|
|
547
557
|
|
|
548
558
|
export const firebase: ReactNativeFirebase.Module & {
|
|
549
559
|
perf: 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/perf",
|
|
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 Performance Monitoring to gain insight into key performance characteristics within your React Native application.",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"performance monitoring"
|
|
30
30
|
],
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@react-native-firebase/app": "23.
|
|
32
|
+
"@react-native-firebase/app": "23.8.0",
|
|
33
33
|
"expo": ">=47.0.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"access": "public",
|
|
45
45
|
"provenance": true
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "724ddcfea6ebe93875e5a54ff38ca57ab5990822"
|
|
48
48
|
}
|