@hot-updater/firebase 0.24.1 → 0.24.2
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/dist/index.d.ts +3 -3
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _hot_updater_plugin_core0 from "@hot-updater/plugin-core";
|
|
2
2
|
import * as admin from "firebase-admin";
|
|
3
3
|
|
|
4
4
|
//#region src/firebaseDatabase.d.ts
|
|
5
|
-
declare const firebaseDatabase: (config: admin.AppOptions, hooks?:
|
|
5
|
+
declare const firebaseDatabase: (config: admin.AppOptions, hooks?: _hot_updater_plugin_core0.DatabasePluginHooks) => (() => _hot_updater_plugin_core0.DatabasePlugin);
|
|
6
6
|
//#endregion
|
|
7
7
|
//#region src/firebaseStorage.d.ts
|
|
8
8
|
interface FirebaseStorageConfig extends admin.AppOptions {
|
|
@@ -12,6 +12,6 @@ interface FirebaseStorageConfig extends admin.AppOptions {
|
|
|
12
12
|
*/
|
|
13
13
|
basePath?: string;
|
|
14
14
|
}
|
|
15
|
-
declare const firebaseStorage: (config: FirebaseStorageConfig, hooks?:
|
|
15
|
+
declare const firebaseStorage: (config: FirebaseStorageConfig, hooks?: _hot_updater_plugin_core0.StoragePluginHooks) => () => _hot_updater_plugin_core0.StoragePlugin;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { FirebaseStorageConfig, firebaseDatabase, firebaseStorage };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hot-updater/firebase",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.24.
|
|
4
|
+
"version": "0.24.2",
|
|
5
5
|
"description": "React Native OTA solution for self-hosted",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"firebase": "^11.3.1",
|
|
38
|
-
"@hot-updater/cli-tools": "0.24.
|
|
39
|
-
"@hot-updater/core": "0.24.
|
|
40
|
-
"@hot-updater/
|
|
38
|
+
"@hot-updater/cli-tools": "0.24.2",
|
|
39
|
+
"@hot-updater/plugin-core": "0.24.2",
|
|
40
|
+
"@hot-updater/core": "0.24.2"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"fkill": "^9.0.0",
|
|
54
54
|
"hono": "^4.6.3",
|
|
55
55
|
"mime": "^4.0.4",
|
|
56
|
-
"@hot-updater/js": "0.24.
|
|
57
|
-
"@hot-updater/test-utils": "0.24.
|
|
56
|
+
"@hot-updater/js": "0.24.2",
|
|
57
|
+
"@hot-updater/test-utils": "0.24.2"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"firebase-admin": "*"
|