@simplysm/capacitor-plugin-auto-update 13.0.57 → 13.0.59

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.
Files changed (2) hide show
  1. package/README.md +9 -9
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -46,15 +46,6 @@ A low-level API responsible for APK installation and permission management. All
46
46
  | `install(apkUri)` | `Promise<void>` | Execute APK installation. `apkUri` is a `content://` URI (FileProvider URI) |
47
47
  | `getVersionInfo()` | `Promise<IVersionInfo>` | Retrieve current app version information |
48
48
 
49
- ### AutoUpdate
50
-
51
- A high-level API that manages the complete automatic update flow. All methods are `static`.
52
-
53
- | Method | Return Type | Description |
54
- |--------|-----------|------|
55
- | `run(opt)` | `Promise<void>` | Execute server-based automatic update |
56
- | `runByExternalStorage(opt)` | `Promise<void>` | Execute external storage-based automatic update |
57
-
58
49
  ### IVersionInfo
59
50
 
60
51
  An interface representing app version information.
@@ -76,6 +67,15 @@ Capacitor native plugin interface. Generally used indirectly through the `ApkIns
76
67
  | `hasPermissionManifest()` | `Promise<{ declared: boolean }>` | Check manifest permission declaration |
77
68
  | `getVersionInfo()` | `Promise<IVersionInfo>` | Retrieve version information |
78
69
 
70
+ ### AutoUpdate
71
+
72
+ A high-level API that manages the complete automatic update flow. All methods are `static`.
73
+
74
+ | Method | Return Type | Description |
75
+ |--------|-----------|------|
76
+ | `run(opt)` | `Promise<void>` | Execute server-based automatic update |
77
+ | `runByExternalStorage(opt)` | `Promise<void>` | Execute external storage-based automatic update |
78
+
79
79
  ## Usage Examples
80
80
 
81
81
  ### Server-Based Automatic Update
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplysm/capacitor-plugin-auto-update",
3
- "version": "13.0.57",
3
+ "version": "13.0.59",
4
4
  "description": "심플리즘 패키지 - Capacitor Auto Update Plugin",
5
5
  "author": "김석래",
6
6
  "license": "MIT",
@@ -18,11 +18,11 @@
18
18
  ],
19
19
  "dependencies": {
20
20
  "semver": "^7.7.4",
21
- "@simplysm/core-common": "13.0.57",
22
- "@simplysm/capacitor-plugin-file-system": "13.0.57",
23
- "@simplysm/service-client": "13.0.57",
24
- "@simplysm/service-common": "13.0.57",
25
- "@simplysm/core-browser": "13.0.57"
21
+ "@simplysm/capacitor-plugin-file-system": "13.0.59",
22
+ "@simplysm/core-common": "13.0.59",
23
+ "@simplysm/core-browser": "13.0.59",
24
+ "@simplysm/service-client": "13.0.59",
25
+ "@simplysm/service-common": "13.0.59"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@capacitor/core": "^7.5.0",