@hot-updater/supabase 0.24.0 → 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.cts +3 -3
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _hot_updater_plugin_core0 from "@hot-updater/plugin-core";
|
|
2
2
|
|
|
3
3
|
//#region src/supabaseDatabase.d.ts
|
|
4
4
|
interface SupabaseDatabaseConfig {
|
|
5
5
|
supabaseUrl: string;
|
|
6
6
|
supabaseAnonKey: string;
|
|
7
7
|
}
|
|
8
|
-
declare const supabaseDatabase: (config: SupabaseDatabaseConfig, hooks?:
|
|
8
|
+
declare const supabaseDatabase: (config: SupabaseDatabaseConfig, hooks?: _hot_updater_plugin_core0.DatabasePluginHooks) => (() => _hot_updater_plugin_core0.DatabasePlugin);
|
|
9
9
|
//#endregion
|
|
10
10
|
//#region src/supabaseStorage.d.ts
|
|
11
11
|
interface SupabaseStorageConfig {
|
|
@@ -17,6 +17,6 @@ interface SupabaseStorageConfig {
|
|
|
17
17
|
*/
|
|
18
18
|
basePath?: string;
|
|
19
19
|
}
|
|
20
|
-
declare const supabaseStorage: (config: SupabaseStorageConfig, hooks?:
|
|
20
|
+
declare const supabaseStorage: (config: SupabaseStorageConfig, hooks?: _hot_updater_plugin_core0.StoragePluginHooks) => () => _hot_updater_plugin_core0.StoragePlugin;
|
|
21
21
|
//#endregion
|
|
22
22
|
export { SupabaseDatabaseConfig, SupabaseStorageConfig, supabaseDatabase, supabaseStorage };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hot-updater/supabase",
|
|
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
|
"module": "dist/index.js",
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@supabase/supabase-js": "^2.76.1",
|
|
44
|
-
"@hot-updater/core": "0.24.
|
|
45
|
-
"@hot-updater/plugin-core": "0.24.
|
|
46
|
-
"@hot-updater/cli-tools": "0.24.
|
|
44
|
+
"@hot-updater/core": "0.24.2",
|
|
45
|
+
"@hot-updater/plugin-core": "0.24.2",
|
|
46
|
+
"@hot-updater/cli-tools": "0.24.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"dayjs": "^1.11.13",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"execa": "9.5.2",
|
|
52
52
|
"@types/node": "^20",
|
|
53
53
|
"mime": "^4.0.4",
|
|
54
|
-
"@hot-updater/postgres": "0.24.
|
|
54
|
+
"@hot-updater/postgres": "0.24.2"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
57
|
"build": "tsdown",
|