@hot-updater/aws 0.21.12 → 0.21.13
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/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
|
import { S3ClientConfig } from "@aws-sdk/client-s3";
|
|
3
3
|
|
|
4
4
|
//#region src/s3Database.d.ts
|
|
@@ -14,7 +14,7 @@ interface S3DatabaseConfig extends S3ClientConfig {
|
|
|
14
14
|
cloudfrontDistributionId?: string;
|
|
15
15
|
apiBasePath?: string;
|
|
16
16
|
}
|
|
17
|
-
declare const s3Database: (config: S3DatabaseConfig, hooks?:
|
|
17
|
+
declare const s3Database: (config: S3DatabaseConfig, hooks?: _hot_updater_plugin_core0.DatabasePluginHooks) => _hot_updater_plugin_core0.DatabasePlugin;
|
|
18
18
|
//#endregion
|
|
19
19
|
//#region src/s3Storage.d.ts
|
|
20
20
|
interface S3StorageConfig extends S3ClientConfig {
|
|
@@ -24,6 +24,6 @@ interface S3StorageConfig extends S3ClientConfig {
|
|
|
24
24
|
*/
|
|
25
25
|
basePath?: string;
|
|
26
26
|
}
|
|
27
|
-
declare const s3Storage: (config: S3StorageConfig, hooks?:
|
|
27
|
+
declare const s3Storage: (config: S3StorageConfig, hooks?: _hot_updater_plugin_core0.StoragePluginHooks) => () => _hot_updater_plugin_core0.StoragePlugin;
|
|
28
28
|
//#endregion
|
|
29
29
|
export { S3DatabaseConfig, S3StorageConfig, s3Database, s3Storage };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hot-updater/aws",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.21.
|
|
4
|
+
"version": "0.21.13",
|
|
5
5
|
"description": "React Native OTA solution for self-hosted",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"execa": "9.5.2",
|
|
45
45
|
"hono": "^4.6.3",
|
|
46
46
|
"mime": "^4.0.4",
|
|
47
|
-
"@hot-updater/
|
|
48
|
-
"@hot-updater/
|
|
49
|
-
"@hot-updater/
|
|
47
|
+
"@hot-updater/js": "0.21.13",
|
|
48
|
+
"@hot-updater/test-utils": "0.21.13",
|
|
49
|
+
"@hot-updater/core": "0.21.13"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@aws-sdk/client-cloudfront": "3.772.0",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"@aws-sdk/credential-providers": "3.772.0",
|
|
60
60
|
"@aws-sdk/lib-storage": "3.772.0",
|
|
61
61
|
"aws-lambda": "1.0.7",
|
|
62
|
-
"@hot-updater/cli-tools": "0.21.
|
|
63
|
-
"@hot-updater/plugin-core": "0.21.
|
|
62
|
+
"@hot-updater/cli-tools": "0.21.13",
|
|
63
|
+
"@hot-updater/plugin-core": "0.21.13"
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
66
|
"build": "tsdown",
|