@react-native-firebase/storage 22.1.0 → 22.2.1
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/lib/modular/index.d.ts +5 -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
|
+
## [22.2.1](https://github.com/invertase/react-native-firebase/compare/v22.2.0...v22.2.1) (2025-06-10)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/storage
|
9
|
+
|
10
|
+
## [22.2.0](https://github.com/invertase/react-native-firebase/compare/v22.1.0...v22.2.0) (2025-05-12)
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
|
14
|
+
- **storage, types:** add missing type for StringFormat object values ([#8530](https://github.com/invertase/react-native-firebase/issues/8530)) ([4e75f57](https://github.com/invertase/react-native-firebase/commit/4e75f57dee763ae607c240e20299d3bb83fc2bda))
|
15
|
+
|
6
16
|
## [22.1.0](https://github.com/invertase/react-native-firebase/compare/v22.0.0...v22.1.0) (2025-04-30)
|
7
17
|
|
8
18
|
**Note:** Version bump only for package @react-native-firebase/storage
|
package/lib/modular/index.d.ts
CHANGED
@@ -27,13 +27,17 @@ import Task = FirebaseStorageTypes.Task;
|
|
27
27
|
import ListOptions = FirebaseStorageTypes.ListOptions;
|
28
28
|
import SettableMetadata = FirebaseStorageTypes.SettableMetadata;
|
29
29
|
import EmulatorMockTokenOptions = FirebaseStorageTypes.EmulatorMockTokenOptions;
|
30
|
-
import StringFormat = FirebaseStorageTypes.StringFormat;
|
31
30
|
import FirebaseApp = ReactNativeFirebase.FirebaseApp;
|
32
31
|
|
33
32
|
export const StringFormat: FirebaseStorageTypes.StringFormat;
|
34
33
|
export const TaskEvent: FirebaseStorageTypes.TaskEvent;
|
35
34
|
export const TaskState: FirebaseStorageTypes.TaskState;
|
36
35
|
|
36
|
+
/**
|
37
|
+
* Union of literal string values in StringFormat "enum" object
|
38
|
+
*/
|
39
|
+
export type StringFormat = (typeof StringFormat)[keyof typeof StringFormat];
|
40
|
+
|
37
41
|
/**
|
38
42
|
* Returns the existing default {@link Storage} instance that is associated with the
|
39
43
|
* default {@link FirebaseApp}. The default storage bucket is used. If no instance exists, initializes a new
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '22.1
|
2
|
+
module.exports = '22.2.1';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/storage",
|
3
|
-
"version": "22.1
|
3
|
+
"version": "22.2.1",
|
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,11 +29,11 @@
|
|
29
29
|
"download"
|
30
30
|
],
|
31
31
|
"peerDependencies": {
|
32
|
-
"@react-native-firebase/app": "22.1
|
32
|
+
"@react-native-firebase/app": "22.2.1"
|
33
33
|
},
|
34
34
|
"publishConfig": {
|
35
35
|
"access": "public",
|
36
36
|
"provenance": true
|
37
37
|
},
|
38
|
-
"gitHead": "
|
38
|
+
"gitHead": "d0fa58166a3fd79c7a951161fa83d0421ae72c93"
|
39
39
|
}
|