@simplysm/capacitor-plugin-auto-update 13.0.16 → 13.0.24

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/README.md CHANGED
@@ -16,24 +16,6 @@ A Capacitor plugin that supports automatic updates for Android apps. It provides
16
16
  pnpm add @simplysm/capacitor-plugin-auto-update
17
17
  ```
18
18
 
19
- ### Peer Dependencies
20
-
21
- ```bash
22
- pnpm add @capacitor/core@^7.4.4
23
- ```
24
-
25
- ### Internal Dependencies
26
-
27
- This package depends on the following `@simplysm` packages.
28
-
29
- | Package | Purpose |
30
- |--------|------|
31
- | `@simplysm/core-common` | Path utilities, HTML templates, `waitUntil`, etc. |
32
- | `@simplysm/core-browser` | `downloadBytes` (file download) |
33
- | `@simplysm/capacitor-plugin-file-system` | File read/write, URI conversion, storage paths |
34
- | `@simplysm/service-client` | `ServiceClient` (server communication) |
35
- | `@simplysm/service-common` | `AutoUpdateService` interface definition |
36
-
37
19
  ## Android Configuration
38
20
 
39
21
  ### AndroidManifest.xml
@@ -48,7 +30,7 @@ The plugin requires `REQUEST_INSTALL_PACKAGES` permission for APK installation.
48
30
 
49
31
  The plugin is automatically registered in `capacitor.config.ts` or in the Android project. The Android source path is specified in the `capacitor` field of `package.json`.
50
32
 
51
- ## Main API
33
+ ## Main Modules
52
34
 
53
35
  This package exports two main classes.
54
36
 
@@ -206,6 +188,24 @@ interface AutoUpdateService {
206
188
  - `version`: Version string in semver format (e.g., `"1.2.3"`)
207
189
  - `downloadPath`: Download path for the APK file (combined with server host URL)
208
190
 
191
+ ## Dependencies
192
+
193
+ ### Peer Dependencies
194
+
195
+ | Package | Version |
196
+ |--------|------|
197
+ | `@capacitor/core` | `^7.4.4` |
198
+
199
+ ### Internal Dependencies
200
+
201
+ | Package | Purpose |
202
+ |--------|------|
203
+ | `@simplysm/core-common` | Path utilities, HTML templates, `waitUntil`, etc. |
204
+ | `@simplysm/core-browser` | `downloadBytes` (file download) |
205
+ | `@simplysm/capacitor-plugin-file-system` | File read/write, URI conversion, storage paths |
206
+ | `@simplysm/service-client` | `ServiceClient` (server communication) |
207
+ | `@simplysm/service-common` | `AutoUpdateService` interface definition |
208
+
209
209
  ## License
210
210
 
211
211
  MIT
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export * from "./ApkInstaller";
2
- export * from "./AutoUpdate";
3
2
  export * from "./IApkInstallerPlugin";
3
+ export * from "./AutoUpdate";
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,uBAAuB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AAGtC,cAAc,cAAc,CAAC"}
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
1
  export * from "./ApkInstaller.js";
2
- export * from "./AutoUpdate.js";
3
2
  export * from "./IApkInstallerPlugin.js";
3
+ export * from "./AutoUpdate.js";
4
4
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../src/index.ts"],
4
- "mappings": "AAAA,cAAc;AACd,cAAc;AACd,cAAc;",
4
+ "mappings": "AACA,cAAc;AACd,cAAc;AAGd,cAAc;",
5
5
  "names": []
6
6
  }
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@simplysm/capacitor-plugin-auto-update",
3
- "version": "13.0.16",
3
+ "version": "13.0.24",
4
4
  "description": "심플리즘 패키지 - Capacitor Auto Update Plugin",
5
5
  "author": "김석래",
6
+ "license": "MIT",
6
7
  "repository": {
7
8
  "type": "git",
8
9
  "url": "https://github.com/kslhunter/simplysm.git",
9
10
  "directory": "packages/capacitor-plugin-auto-update"
10
11
  },
11
- "license": "MIT",
12
12
  "type": "module",
13
13
  "main": "./dist/index.js",
14
14
  "types": "./dist/index.d.ts",
@@ -16,24 +16,24 @@
16
16
  "dist",
17
17
  "android"
18
18
  ],
19
- "capacitor": {
20
- "android": {
21
- "src": "android"
22
- }
23
- },
24
19
  "dependencies": {
25
20
  "semver": "^7.7.4",
26
- "@simplysm/capacitor-plugin-file-system": "13.0.16",
27
- "@simplysm/core-browser": "13.0.16",
28
- "@simplysm/core-common": "13.0.16",
29
- "@simplysm/service-client": "13.0.16",
30
- "@simplysm/service-common": "13.0.16"
31
- },
32
- "peerDependencies": {
33
- "@capacitor/core": "^7.4.4"
21
+ "@simplysm/capacitor-plugin-file-system": "13.0.24",
22
+ "@simplysm/core-browser": "13.0.24",
23
+ "@simplysm/core-common": "13.0.24",
24
+ "@simplysm/service-client": "13.0.24",
25
+ "@simplysm/service-common": "13.0.24"
34
26
  },
35
27
  "devDependencies": {
36
28
  "@capacitor/core": "^7.5.0",
37
29
  "@types/semver": "^7.7.1"
30
+ },
31
+ "peerDependencies": {
32
+ "@capacitor/core": "^7.4.4"
33
+ },
34
+ "capacitor": {
35
+ "android": {
36
+ "src": "android"
37
+ }
38
38
  }
39
39
  }