@react-native-firebase/storage 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 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/storage
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/storage
package/README.md CHANGED
@@ -45,7 +45,7 @@ yarn add @react-native-firebase/storage
45
45
  ---
46
46
 
47
47
  <p>
48
- <img align="left" width="75px" src="https://static.invertase.io/assets/invertase-logo-small.png">
48
+ <img align="left" width="75px" src="https://static.invertase.io/assets/invertase/invertase-rounded.png">
49
49
  <p align="left">
50
50
  Built and maintained with 💛 by <a href="https://invertase.io">Invertase</a>.
51
51
  </p>
@@ -1,4 +1,3 @@
1
- /* eslint-disable no-console */
2
1
  /*
3
2
  * Copyright (c) 2016-present Invertase Limited & Contributors
4
3
  *
package/lib/index.d.ts CHANGED
@@ -1158,7 +1158,6 @@ export default defaultExport;
1158
1158
  * Attach namespace to `firebase.` and `FirebaseApp.`.
1159
1159
  */
1160
1160
  declare module '@react-native-firebase/app' {
1161
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
1162
1161
  namespace ReactNativeFirebase {
1163
1162
  import FirebaseModuleWithStaticsAndApp = ReactNativeFirebase.FirebaseModuleWithStaticsAndApp;
1164
1163
  interface Module {
@@ -15,7 +15,7 @@
15
15
  *
16
16
  */
17
17
 
18
- import { FirebaseApp } from '@firebase/app-types';
18
+ import { ReactNativeFirebase } from '@react-native-firebase/app';
19
19
  import { FirebaseStorageTypes } from '../index';
20
20
 
21
21
  import Storage = FirebaseStorageTypes.Module;
@@ -27,6 +27,7 @@ import Task = FirebaseStorageTypes.Task;
27
27
  import ListOptions = FirebaseStorageTypes.ListOptions;
28
28
  import SettableMetadata = FirebaseStorageTypes.SettableMetadata;
29
29
  import EmulatorMockTokenOptions = FirebaseStorageTypes.EmulatorMockTokenOptions;
30
+ import FirebaseApp = ReactNativeFirebase.FirebaseApp;
30
31
 
31
32
  /**
32
33
  * Returns the existing default {@link Storage} 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.1';
2
+ module.exports = '21.7.3';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/storage",
3
- "version": "21.7.1",
3
+ "version": "21.7.3",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - React Native Firebase provides native integration with Cloud Storage, providing support to upload and download files directly from your device and from your Firebase Cloud Storage bucket.",
6
6
  "main": "lib/index.js",
@@ -29,10 +29,10 @@
29
29
  "download"
30
30
  ],
31
31
  "peerDependencies": {
32
- "@react-native-firebase/app": "21.7.1"
32
+ "@react-native-firebase/app": "21.7.3"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "a11363f77efa34b41cab2bc92ed9a700b814fd8d"
37
+ "gitHead": "e1446c8737b4df5067fcc4f99ca30b0a3afcc8e5"
38
38
  }