@hot-updater/cloudflare 0.24.3 → 0.24.5
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 +6 -6
- package/worker/dist/README.md +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _hot_updater_plugin_core0 from "@hot-updater/plugin-core";
|
|
2
2
|
|
|
3
3
|
//#region src/d1Database.d.ts
|
|
4
4
|
interface D1DatabaseConfig {
|
|
@@ -6,7 +6,7 @@ interface D1DatabaseConfig {
|
|
|
6
6
|
accountId: string;
|
|
7
7
|
cloudflareApiToken: string;
|
|
8
8
|
}
|
|
9
|
-
declare const d1Database: (config: D1DatabaseConfig, hooks?:
|
|
9
|
+
declare const d1Database: (config: D1DatabaseConfig, hooks?: _hot_updater_plugin_core0.DatabasePluginHooks) => (() => _hot_updater_plugin_core0.DatabasePlugin);
|
|
10
10
|
//#endregion
|
|
11
11
|
//#region src/r2Storage.d.ts
|
|
12
12
|
interface R2StorageConfig {
|
|
@@ -41,6 +41,6 @@ interface R2StorageConfig {
|
|
|
41
41
|
* })
|
|
42
42
|
* ```
|
|
43
43
|
*/
|
|
44
|
-
declare const r2Storage: (config: R2StorageConfig, hooks?:
|
|
44
|
+
declare const r2Storage: (config: R2StorageConfig, hooks?: _hot_updater_plugin_core0.StoragePluginHooks) => () => _hot_updater_plugin_core0.StoragePlugin;
|
|
45
45
|
//#endregion
|
|
46
46
|
export { D1DatabaseConfig, R2StorageConfig, d1Database, r2Storage };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hot-updater/cloudflare",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.24.
|
|
4
|
+
"version": "0.24.5",
|
|
5
5
|
"description": "React Native OTA solution for self-hosted",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"cloudflare": "4.2.0",
|
|
44
|
-
"@hot-updater/
|
|
45
|
-
"@hot-updater/
|
|
46
|
-
"@hot-updater/
|
|
47
|
-
"@hot-updater/plugin-core": "0.24.
|
|
44
|
+
"@hot-updater/core": "0.24.5",
|
|
45
|
+
"@hot-updater/js": "0.24.5",
|
|
46
|
+
"@hot-updater/cli-tools": "0.24.5",
|
|
47
|
+
"@hot-updater/plugin-core": "0.24.5"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@cloudflare/vitest-pool-workers": "^0.8.70",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"vitest": "2.1.8",
|
|
63
63
|
"wrangler": "^4.5.0",
|
|
64
64
|
"xdg-app-paths": "^8.3.0",
|
|
65
|
-
"@hot-updater/test-utils": "0.24.
|
|
65
|
+
"@hot-updater/test-utils": "0.24.5"
|
|
66
66
|
},
|
|
67
67
|
"scripts": {
|
|
68
68
|
"build": "tsdown && pnpm build:worker",
|
package/worker/dist/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
This folder contains the built output assets for the worker "hot-updater" generated at 2025-12-
|
|
1
|
+
This folder contains the built output assets for the worker "hot-updater" generated at 2025-12-13T12:44:13.535Z.
|