@react-native-firebase/ml 21.7.1 → 21.7.3
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 +10 -0
- package/README.md +1 -1
- package/lib/index.d.ts +1 -2
- package/lib/modular/index.d.ts +2 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,16 @@
|
|
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
|
+
## [21.7.3](https://github.com/invertase/react-native-firebase/compare/v21.7.2...v21.7.3) (2025-02-08)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **auth:** resolve type issue when migrating to v9 ([#8277](https://github.com/invertase/react-native-firebase/issues/8277)) ([f4e44ad](https://github.com/invertase/react-native-firebase/commit/f4e44ad50ec85604b7ba0ea835490f473ed5447c))
|
11
|
+
|
12
|
+
## [21.7.2](https://github.com/invertase/react-native-firebase/compare/v21.7.1...v21.7.2) (2025-02-05)
|
13
|
+
|
14
|
+
**Note:** Version bump only for package @react-native-firebase/ml
|
15
|
+
|
6
16
|
## [21.7.1](https://github.com/invertase/react-native-firebase/compare/v21.7.0...v21.7.1) (2025-01-20)
|
7
17
|
|
8
18
|
**Note:** Version bump only for package @react-native-firebase/ml
|
package/README.md
CHANGED
@@ -93,7 +93,7 @@ yarn add @react-native-firebase/ml
|
|
93
93
|
---
|
94
94
|
|
95
95
|
<p>
|
96
|
-
<img align="left" width="75px" src="https://static.invertase.io/assets/invertase-
|
96
|
+
<img align="left" width="75px" src="https://static.invertase.io/assets/invertase/invertase-rounded.png">
|
97
97
|
<p align="left">
|
98
98
|
Built and maintained with 💛 by <a href="https://invertase.io">Invertase</a>.
|
99
99
|
</p>
|
package/lib/index.d.ts
CHANGED
@@ -55,7 +55,7 @@ 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-
|
58
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
59
59
|
export interface Statics {}
|
60
60
|
|
61
61
|
export class Module extends FirebaseModule {}
|
@@ -79,7 +79,6 @@ export * from './modular';
|
|
79
79
|
* Attach namespace to `firebase.` and `FirebaseApp.`.
|
80
80
|
*/
|
81
81
|
declare module '@react-native-firebase/app' {
|
82
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
83
82
|
namespace ReactNativeFirebase {
|
84
83
|
import FirebaseModuleWithStaticsAndApp = ReactNativeFirebase.FirebaseModuleWithStaticsAndApp;
|
85
84
|
interface Module {
|
package/lib/modular/index.d.ts
CHANGED
@@ -1,7 +1,8 @@
|
|
1
|
-
import {
|
1
|
+
import { ReactNativeFirebase } from '@react-native-firebase/app';
|
2
2
|
import { FirebaseMLTypes } from '..';
|
3
3
|
|
4
4
|
type FirebaseML = FirebaseMLTypes.Module;
|
5
|
+
import FirebaseApp = ReactNativeFirebase.FirebaseApp;
|
5
6
|
|
6
7
|
/**
|
7
8
|
* Returns the existing default {@link FirebaseML} instance that is associated with the
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '21.7.
|
2
|
+
module.exports = '21.7.3';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/ml",
|
3
|
-
"version": "21.7.
|
3
|
+
"version": "21.7.3",
|
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,10 +26,10 @@
|
|
26
26
|
"image labeler"
|
27
27
|
],
|
28
28
|
"peerDependencies": {
|
29
|
-
"@react-native-firebase/app": "21.7.
|
29
|
+
"@react-native-firebase/app": "21.7.3"
|
30
30
|
},
|
31
31
|
"publishConfig": {
|
32
32
|
"access": "public"
|
33
33
|
},
|
34
|
-
"gitHead": "
|
34
|
+
"gitHead": "e1446c8737b4df5067fcc4f99ca30b0a3afcc8e5"
|
35
35
|
}
|