@hot-updater/core 0.5.3 → 0.5.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.
Files changed (2) hide show
  1. package/dist/types.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -15,7 +15,7 @@ export interface Bundle {
15
15
  /**
16
16
  * Whether the bundle should force an update.
17
17
  */
18
- forceUpdate: boolean;
18
+ shouldForceUpdate: boolean;
19
19
  /**
20
20
  * Whether the bundle is enabled.
21
21
  */
@@ -41,7 +41,7 @@ export type BundleArg = string | Bundle[] | (() => Promise<Bundle[]>) | (() => B
41
41
  export type UpdateStatus = "ROLLBACK" | "UPDATE";
42
42
  export interface UpdateInfo {
43
43
  id: string;
44
- forceUpdate: boolean;
44
+ shouldForceUpdate: boolean;
45
45
  fileUrl: string | null;
46
46
  fileHash: string | null;
47
47
  status: UpdateStatus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hot-updater/core",
3
- "version": "0.5.3",
3
+ "version": "0.5.5",
4
4
  "type": "module",
5
5
  "description": "React Native OTA solution for self-hosted",
6
6
  "sideEffects": false,