@react-native-firebase/storage 23.7.0 → 23.8.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 +8 -0
- package/lib/index.d.ts +13 -2
- 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.1](https://github.com/invertase/react-native-firebase/compare/v23.8.0...v23.8.1) (2026-01-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/storage
|
|
9
|
+
|
|
10
|
+
## [23.8.0](https://github.com/invertase/react-native-firebase/compare/v23.7.0...v23.8.0) (2026-01-13)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @react-native-firebase/storage
|
|
13
|
+
|
|
6
14
|
## [23.7.0](https://github.com/invertase/react-native-firebase/compare/v23.6.0...v23.7.0) (2025-12-08)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @react-native-firebase/storage
|
package/lib/index.d.ts
CHANGED
|
@@ -236,6 +236,7 @@ export namespace FirebaseStorageTypes {
|
|
|
236
236
|
* ```
|
|
237
237
|
*/
|
|
238
238
|
TaskEvent: TaskEvent;
|
|
239
|
+
SDK_VERSION: string;
|
|
239
240
|
}
|
|
240
241
|
|
|
241
242
|
/**
|
|
@@ -1020,6 +1021,11 @@ export namespace FirebaseStorageTypes {
|
|
|
1020
1021
|
*
|
|
1021
1022
|
*/
|
|
1022
1023
|
export class Module extends FirebaseModule {
|
|
1024
|
+
/**
|
|
1025
|
+
* The current `FirebaseApp` instance for this Firebase service.
|
|
1026
|
+
*/
|
|
1027
|
+
app: ReactNativeFirebase.FirebaseApp;
|
|
1028
|
+
|
|
1023
1029
|
/**
|
|
1024
1030
|
* Returns the current maximum time in milliseconds to retry an upload if a failure occurs.
|
|
1025
1031
|
*
|
|
@@ -1142,10 +1148,15 @@ export namespace FirebaseStorageTypes {
|
|
|
1142
1148
|
}
|
|
1143
1149
|
}
|
|
1144
1150
|
|
|
1145
|
-
|
|
1151
|
+
type StorageNamespace = ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<
|
|
1146
1152
|
FirebaseStorageTypes.Module,
|
|
1147
1153
|
FirebaseStorageTypes.Statics
|
|
1148
|
-
|
|
1154
|
+
> & {
|
|
1155
|
+
firebase: ReactNativeFirebase.Module;
|
|
1156
|
+
app(name?: string): ReactNativeFirebase.FirebaseApp;
|
|
1157
|
+
};
|
|
1158
|
+
|
|
1159
|
+
declare const defaultExport: StorageNamespace;
|
|
1149
1160
|
|
|
1150
1161
|
export const firebase: ReactNativeFirebase.Module & {
|
|
1151
1162
|
storage: 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.1';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-firebase/storage",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.8.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": "23.
|
|
32
|
+
"@react-native-firebase/app": "23.8.1"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public",
|
|
36
36
|
"provenance": true
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "46b06d2b1100ec03c7807b4ff34b583b773a19d7"
|
|
39
39
|
}
|