@worldcoin/minikit-js 0.0.25-internal-alpha → 0.0.26-internal-alpha

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/build/index.cjs CHANGED
@@ -447,7 +447,7 @@ var _MiniKit = class _MiniKit {
447
447
  static isInstalled(debug) {
448
448
  if (debug)
449
449
  console.log("MiniKit is alive!");
450
- return true;
450
+ return Boolean(window.MiniKit);
451
451
  }
452
452
  };
453
453
  _MiniKit.MINIKIT_VERSION = 1;
package/build/index.js CHANGED
@@ -401,7 +401,7 @@ var _MiniKit = class _MiniKit {
401
401
  static isInstalled(debug) {
402
402
  if (debug)
403
403
  console.log("MiniKit is alive!");
404
- return true;
404
+ return Boolean(window.MiniKit);
405
405
  }
406
406
  };
407
407
  _MiniKit.MINIKIT_VERSION = 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worldcoin/minikit-js",
3
- "version": "0.0.25-internal-alpha",
3
+ "version": "0.0.26-internal-alpha",
4
4
  "homepage": "https://docs.worldcoin.org/id/minikit",
5
5
  "description": "Internal Alpha: Mini-kit JS is a lightweight sdk for building mini-apps compatible with World App",
6
6
  "license": "MIT",