@react-native-firebase/ml 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/ml
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/ml
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/ml
package/lib/index.d.ts CHANGED
@@ -55,16 +55,27 @@ import { ReactNativeFirebase } from '@react-native-firebase/app';
55
55
  export namespace FirebaseMLTypes {
56
56
  import FirebaseModule = ReactNativeFirebase.FirebaseModule;
57
57
 
58
- // eslint-disable-next-line @typescript-eslint/no-empty-object-type
59
- export interface Statics {}
58
+ export interface Statics {
59
+ SDK_VERSION: string;
60
+ }
60
61
 
61
- export class Module extends FirebaseModule {}
62
+ export class Module extends FirebaseModule {
63
+ /**
64
+ * The current `FirebaseApp` instance for this Firebase service.
65
+ */
66
+ app: ReactNativeFirebase.FirebaseApp;
67
+ }
62
68
  }
63
69
 
64
- declare const defaultExport: ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<
70
+ type MLNamespace = ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<
65
71
  FirebaseMLTypes.Module,
66
72
  FirebaseMLTypes.Statics
67
- >;
73
+ > & {
74
+ firebase: ReactNativeFirebase.Module;
75
+ app(name?: string): ReactNativeFirebase.FirebaseApp;
76
+ };
77
+
78
+ declare const defaultExport: MLNamespace;
68
79
 
69
80
  export const firebase: ReactNativeFirebase.Module & {
70
81
  ml: 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/ml",
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 ML brings the power of machine learning vision to your React Native application, supporting both Android & iOS.",
6
6
  "main": "lib/index.js",
@@ -26,11 +26,11 @@
26
26
  "image labeler"
27
27
  ],
28
28
  "peerDependencies": {
29
- "@react-native-firebase/app": "23.6.0"
29
+ "@react-native-firebase/app": "23.8.0"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public",
33
33
  "provenance": true
34
34
  },
35
- "gitHead": "748e89f9bfcdfbee971c627cd8a698963ba09f33"
35
+ "gitHead": "724ddcfea6ebe93875e5a54ff38ca57ab5990822"
36
36
  }