@neondatabase/auth 0.4.0-beta → 0.4.2-beta

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.
@@ -1,6 +1,6 @@
1
1
  import { d as NEON_AUTH_POPUP_CALLBACK_PARAM_NAME, f as NEON_AUTH_POPUP_CALLBACK_ROUTE, g as SESSION_CACHE_TTL_MS, h as OAUTH_POPUP_MESSAGE_TYPE, m as NEON_AUTH_SESSION_VERIFIER_PARAM_NAME, p as NEON_AUTH_POPUP_PARAM_NAME, r as normalizeBetterAuthError, u as CLOCK_SKEW_BUFFER_MS } from "./better-auth-helpers-Bkezghej.mjs";
2
2
  import { getGlobalBroadcastChannel } from "better-auth/client";
3
- import { adminClient, emailOTPClient, jwtClient, magicLinkClient, organizationClient } from "better-auth/client/plugins";
3
+ import { adminClient, emailOTPClient, jwtClient, magicLinkClient, organizationClient, phoneNumberClient } from "better-auth/client/plugins";
4
4
  import z from "zod";
5
5
 
6
6
  //#region src/core/in-flight-request-manager.ts
@@ -632,7 +632,7 @@ function initBroadcastChannel() {
632
632
  //#endregion
633
633
  //#region package.json
634
634
  var name = "@neondatabase/auth";
635
- var version = "0.4.0-beta";
635
+ var version = "0.4.2-beta";
636
636
 
637
637
  //#endregion
638
638
  //#region ../internal/dist/index.mjs
@@ -728,6 +728,7 @@ const supportedBetterAuthClientPlugins = [
728
728
  organizationClient(),
729
729
  emailOTPClient(),
730
730
  magicLinkClient(),
731
+ phoneNumberClient(),
731
732
  anonymousTokenClient()
732
733
  ];
733
734
  var NeonAuthAdapterCore = class {