@worldcoin/minikit-js 1.9.3 → 1.9.4
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.
|
@@ -790,6 +790,7 @@ var _MiniKit = class _MiniKit {
|
|
|
790
790
|
_MiniKit.isCommandAvailable[minikitCommandName] = true;
|
|
791
791
|
isCommandValid = true;
|
|
792
792
|
} else {
|
|
793
|
+
isCommandValid = true;
|
|
793
794
|
console.warn(
|
|
794
795
|
`Command ${minikitCommandName} version ${version} is not supported by the app. Supported versions: ${commandInput.supported_versions.join(", ")}. This is not an error, but it is recommended to update the World App version.`
|
|
795
796
|
);
|
package/build/index.cjs
CHANGED
|
@@ -842,6 +842,7 @@ var _MiniKit = class _MiniKit {
|
|
|
842
842
|
_MiniKit.isCommandAvailable[minikitCommandName] = true;
|
|
843
843
|
isCommandValid = true;
|
|
844
844
|
} else {
|
|
845
|
+
isCommandValid = true;
|
|
845
846
|
console.warn(
|
|
846
847
|
`Command ${minikitCommandName} version ${version} is not supported by the app. Supported versions: ${commandInput.supported_versions.join(", ")}. This is not an error, but it is recommended to update the World App version.`
|
|
847
848
|
);
|
package/build/index.js
CHANGED
|
@@ -369,6 +369,7 @@ var _MiniKit = class _MiniKit {
|
|
|
369
369
|
_MiniKit.isCommandAvailable[minikitCommandName] = true;
|
|
370
370
|
isCommandValid = true;
|
|
371
371
|
} else {
|
|
372
|
+
isCommandValid = true;
|
|
372
373
|
console.warn(
|
|
373
374
|
`Command ${minikitCommandName} version ${version} is not supported by the app. Supported versions: ${commandInput.supported_versions.join(", ")}. This is not an error, but it is recommended to update the World App version.`
|
|
374
375
|
);
|