@clerk/clerk-react 5.44.0 → 5.45.0

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/dist/index.js CHANGED
@@ -1637,7 +1637,7 @@ if (typeof globalThis.__BUILD_DISABLE_RHC__ === "undefined") {
1637
1637
  }
1638
1638
  var SDK_METADATA = {
1639
1639
  name: "@clerk/clerk-react",
1640
- version: "5.44.0",
1640
+ version: "5.45.0",
1641
1641
  environment: process.env.NODE_ENV
1642
1642
  };
1643
1643
  var _status, _domain, _proxyUrl, _publishableKey, _eventBus, _stateProxy, _instance, _IsomorphicClerk_instances, waitForClerkJS_fn;
@@ -2534,6 +2534,17 @@ var _IsomorphicClerk = class _IsomorphicClerk {
2534
2534
  this.premountMethodCalls.set("authenticateWithCoinbaseWallet", callback);
2535
2535
  }
2536
2536
  };
2537
+ this.authenticateWithBase = async (params) => {
2538
+ const callback = () => {
2539
+ var _a;
2540
+ return (_a = this.clerkjs) == null ? void 0 : _a.authenticateWithBase(params);
2541
+ };
2542
+ if (this.clerkjs && this.loaded) {
2543
+ return callback();
2544
+ } else {
2545
+ this.premountMethodCalls.set("authenticateWithBase", callback);
2546
+ }
2547
+ };
2537
2548
  this.authenticateWithOKXWallet = async (params) => {
2538
2549
  const callback = () => {
2539
2550
  var _a;