@insforge/react 0.3.2 → 0.3.3

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
@@ -254,9 +254,9 @@ function InsforgeProvider({
254
254
  },
255
255
  [user, onAuthChange, insforge]
256
256
  );
257
- const sendPasswordResetCode = react.useCallback(
257
+ const sendResetPasswordEmail = react.useCallback(
258
258
  async (email) => {
259
- const sdkResult = await insforge.auth.sendPasswordResetCode({ email });
259
+ const sdkResult = await insforge.auth.sendResetPasswordEmail({ email });
260
260
  return sdkResult.data;
261
261
  },
262
262
  [insforge]
@@ -292,7 +292,7 @@ function InsforgeProvider({
292
292
  updateUser,
293
293
  reloadAuth: loadAuthState,
294
294
  baseUrl,
295
- sendPasswordResetCode,
295
+ sendResetPasswordEmail,
296
296
  resetPassword,
297
297
  verifyEmail,
298
298
  getPublicAuthConfig
@@ -310,22 +310,22 @@ function useInsforge() {
310
310
  }
311
311
  function usePublicAuthConfig() {
312
312
  const { getPublicAuthConfig } = useInsforge();
313
- const [emailConfig, setEmailConfig] = react.useState(null);
313
+ const [authConfig, setAuthConfig] = react.useState(null);
314
314
  const [isLoaded, setIsLoaded] = react.useState(false);
315
315
  react.useEffect(() => {
316
316
  async function fetchConfig() {
317
317
  const result = await getPublicAuthConfig();
318
318
  if (result) {
319
- setEmailConfig(result);
319
+ setAuthConfig(result);
320
320
  } else {
321
321
  console.error("[usePublicAuthConfig] Failed to get public auth config");
322
- setEmailConfig(null);
322
+ setAuthConfig(null);
323
323
  }
324
324
  setIsLoaded(true);
325
325
  }
326
326
  fetchConfig();
327
327
  }, [getPublicAuthConfig]);
328
- return { emailConfig, isLoaded };
328
+ return { authConfig, isLoaded };
329
329
  }
330
330
  function AuthBranding() {
331
331
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "bg-[#FAFAFA] px-2 py-4 flex flex-row justify-center items-center gap-1", children: [
@@ -562,7 +562,7 @@ function AuthPasswordField({
562
562
  label,
563
563
  id,
564
564
  showStrengthIndicator = false,
565
- emailAuthConfig,
565
+ authConfig,
566
566
  forgotPasswordLink,
567
567
  value,
568
568
  appearance = {},
@@ -640,7 +640,7 @@ function AuthPasswordField({
640
640
  AuthPasswordStrengthIndicator,
641
641
  {
642
642
  password: String(value || ""),
643
- config: emailAuthConfig
643
+ config: authConfig
644
644
  }
645
645
  )
646
646
  ]
@@ -1077,11 +1077,7 @@ function AuthEmailVerificationStep({
1077
1077
  react.useEffect(() => {
1078
1078
  const sendInitialEmail = async () => {
1079
1079
  try {
1080
- if (method === "code") {
1081
- await insforge.auth.sendVerificationCode({ email });
1082
- } else {
1083
- await insforge.auth.sendVerificationLink({ email });
1084
- }
1080
+ await insforge.auth.sendVerificationEmail({ email });
1085
1081
  } catch {
1086
1082
  }
1087
1083
  };
@@ -1107,11 +1103,7 @@ function AuthEmailVerificationStep({
1107
1103
  setIsSending(true);
1108
1104
  setVerificationError("");
1109
1105
  try {
1110
- if (method === "code") {
1111
- await insforge.auth.sendVerificationCode({ email });
1112
- } else {
1113
- await insforge.auth.sendVerificationLink({ email });
1114
- }
1106
+ await insforge.auth.sendVerificationEmail({ email });
1115
1107
  } catch {
1116
1108
  setResendDisabled(false);
1117
1109
  setResendCountdown(0);
@@ -1189,7 +1181,7 @@ function SignInForm({
1189
1181
  oauthLoading = null,
1190
1182
  availableProviders = [],
1191
1183
  onOAuthClick,
1192
- emailAuthConfig,
1184
+ authConfig,
1193
1185
  appearance = {},
1194
1186
  title = "Welcome Back",
1195
1187
  subtitle = "Login to your account",
@@ -1279,7 +1271,7 @@ function SignInForm({
1279
1271
  onChange: (e) => onPasswordChange(e.target.value),
1280
1272
  required: true,
1281
1273
  autoComplete: "current-password",
1282
- emailAuthConfig,
1274
+ authConfig,
1283
1275
  forgotPasswordLink: forgotPasswordUrl ? {
1284
1276
  href: forgotPasswordUrl,
1285
1277
  text: forgotPasswordText
@@ -1350,7 +1342,7 @@ function SignIn({
1350
1342
  ...uiProps
1351
1343
  }) {
1352
1344
  const { signIn, baseUrl } = useInsforge();
1353
- const { emailConfig } = usePublicAuthConfig();
1345
+ const { authConfig } = usePublicAuthConfig();
1354
1346
  const [email, setEmail] = react.useState("");
1355
1347
  const [password, setPassword] = react.useState("");
1356
1348
  const [error, setError] = react.useState("");
@@ -1416,7 +1408,7 @@ function SignIn({
1416
1408
  setOauthLoading(null);
1417
1409
  }
1418
1410
  }
1419
- if (!emailConfig) {
1411
+ if (!authConfig) {
1420
1412
  return null;
1421
1413
  }
1422
1414
  return /* @__PURE__ */ jsxRuntime.jsx(
@@ -1430,9 +1422,9 @@ function SignIn({
1430
1422
  error,
1431
1423
  loading,
1432
1424
  oauthLoading,
1433
- availableProviders: emailConfig?.oAuthProviders || [],
1425
+ availableProviders: authConfig?.oAuthProviders || [],
1434
1426
  onOAuthClick: handleOAuth,
1435
- emailAuthConfig: emailConfig,
1427
+ authConfig,
1436
1428
  showVerificationStep: step === "awaiting-verification",
1437
1429
  onVerifyCode: handleVerifyCode,
1438
1430
  ...uiProps
@@ -1450,7 +1442,7 @@ function SignUpForm({
1450
1442
  oauthLoading = null,
1451
1443
  availableProviders = [],
1452
1444
  onOAuthClick,
1453
- emailAuthConfig,
1445
+ authConfig,
1454
1446
  appearance = {},
1455
1447
  title = "Get Started",
1456
1448
  subtitle = "Create your account",
@@ -1537,10 +1529,10 @@ function SignUpForm({
1537
1529
  value: password,
1538
1530
  onChange: (e) => onPasswordChange(e.target.value),
1539
1531
  required: true,
1540
- minLength: emailAuthConfig.passwordMinLength,
1532
+ minLength: authConfig.passwordMinLength,
1541
1533
  autoComplete: "new-password",
1542
1534
  showStrengthIndicator: true,
1543
- emailAuthConfig,
1535
+ authConfig,
1544
1536
  appearance: {
1545
1537
  containerClassName: appearance.form?.passwordField?.container,
1546
1538
  labelClassName: appearance.form?.passwordField?.label,
@@ -1678,7 +1670,7 @@ function SignUp({
1678
1670
  ...uiProps
1679
1671
  }) {
1680
1672
  const { signUp, baseUrl } = useInsforge();
1681
- const { emailConfig } = usePublicAuthConfig();
1673
+ const { authConfig } = usePublicAuthConfig();
1682
1674
  const [email, setEmail] = react.useState("");
1683
1675
  const [password, setPassword] = react.useState("");
1684
1676
  const [error, setError] = react.useState("");
@@ -1692,7 +1684,7 @@ function SignUp({
1692
1684
  e.preventDefault();
1693
1685
  setLoading(true);
1694
1686
  setError("");
1695
- if (!emailConfig) {
1687
+ if (!authConfig) {
1696
1688
  setError("Configuration not loaded. Please refresh the page.");
1697
1689
  setLoading(false);
1698
1690
  return;
@@ -1705,11 +1697,11 @@ function SignUp({
1705
1697
  return;
1706
1698
  }
1707
1699
  const passwordZodSchema = createPasswordSchema({
1708
- minLength: emailConfig.passwordMinLength,
1709
- requireUppercase: emailConfig.requireUppercase,
1710
- requireLowercase: emailConfig.requireLowercase,
1711
- requireNumber: emailConfig.requireNumber,
1712
- requireSpecialChar: emailConfig.requireSpecialChar
1700
+ minLength: authConfig.passwordMinLength,
1701
+ requireUppercase: authConfig.requireUppercase,
1702
+ requireLowercase: authConfig.requireLowercase,
1703
+ requireNumber: authConfig.requireNumber,
1704
+ requireSpecialChar: authConfig.requireSpecialChar
1713
1705
  });
1714
1706
  const passwordValidation = passwordZodSchema.safeParse(password);
1715
1707
  if (!passwordValidation.success) {
@@ -1771,7 +1763,7 @@ function SignUp({
1771
1763
  setOauthLoading(null);
1772
1764
  }
1773
1765
  }
1774
- if (!emailConfig) {
1766
+ if (!authConfig) {
1775
1767
  return null;
1776
1768
  }
1777
1769
  return /* @__PURE__ */ jsxRuntime.jsx(
@@ -1785,9 +1777,9 @@ function SignUp({
1785
1777
  error,
1786
1778
  loading,
1787
1779
  oauthLoading,
1788
- availableProviders: emailConfig?.oAuthProviders || [],
1780
+ availableProviders: authConfig?.oAuthProviders || [],
1789
1781
  onOAuthClick: handleOAuth,
1790
- emailAuthConfig: emailConfig,
1782
+ authConfig,
1791
1783
  showVerificationStep: step === "awaiting-verification",
1792
1784
  onVerifyCode: handleVerifyCode,
1793
1785
  ...uiProps
@@ -1919,7 +1911,7 @@ function ResetPasswordForm({
1919
1911
  error,
1920
1912
  loading = false,
1921
1913
  success = false,
1922
- emailAuthConfig,
1914
+ authConfig,
1923
1915
  appearance = {},
1924
1916
  title = "Reset Password",
1925
1917
  subtitle = "Enter your new password below.",
@@ -1996,7 +1988,7 @@ function ResetPasswordForm({
1996
1988
  required: true,
1997
1989
  autoComplete: "new-password",
1998
1990
  showStrengthIndicator: true,
1999
- emailAuthConfig,
1991
+ authConfig,
2000
1992
  appearance: {
2001
1993
  containerClassName: appearance.form?.newPasswordField?.container,
2002
1994
  labelClassName: appearance.form?.newPasswordField?.label,
@@ -2014,7 +2006,7 @@ function ResetPasswordForm({
2014
2006
  onChange: (e) => onConfirmPasswordChange(e.target.value),
2015
2007
  required: true,
2016
2008
  autoComplete: "new-password",
2017
- emailAuthConfig,
2009
+ authConfig,
2018
2010
  appearance: {
2019
2011
  containerClassName: appearance.form?.confirmPasswordField?.container,
2020
2012
  labelClassName: appearance.form?.confirmPasswordField?.label,
@@ -2058,7 +2050,7 @@ function ResetPassword({
2058
2050
  ...uiProps
2059
2051
  }) {
2060
2052
  const { resetPassword } = useInsforge();
2061
- const { emailConfig } = usePublicAuthConfig();
2053
+ const { authConfig } = usePublicAuthConfig();
2062
2054
  const [newPassword, setNewPassword] = react.useState("");
2063
2055
  const [confirmPassword, setConfirmPassword] = react.useState("");
2064
2056
  const [error, setError] = react.useState("");
@@ -2068,7 +2060,7 @@ function ResetPassword({
2068
2060
  e.preventDefault();
2069
2061
  setLoading(true);
2070
2062
  setError("");
2071
- if (!emailConfig) {
2063
+ if (!authConfig) {
2072
2064
  setError("Configuration not loaded. Please refresh the page.");
2073
2065
  setLoading(false);
2074
2066
  return;
@@ -2084,11 +2076,11 @@ function ResetPassword({
2084
2076
  return;
2085
2077
  }
2086
2078
  const passwordZodSchema = createPasswordSchema({
2087
- minLength: emailConfig.passwordMinLength,
2088
- requireUppercase: emailConfig.requireUppercase,
2089
- requireLowercase: emailConfig.requireLowercase,
2090
- requireNumber: emailConfig.requireNumber,
2091
- requireSpecialChar: emailConfig.requireSpecialChar
2079
+ minLength: authConfig.passwordMinLength,
2080
+ requireUppercase: authConfig.requireUppercase,
2081
+ requireLowercase: authConfig.requireLowercase,
2082
+ requireNumber: authConfig.requireNumber,
2083
+ requireSpecialChar: authConfig.requireSpecialChar
2092
2084
  });
2093
2085
  const passwordValidation = passwordZodSchema.safeParse(newPassword);
2094
2086
  if (!passwordValidation.success) {
@@ -2121,7 +2113,7 @@ function ResetPassword({
2121
2113
  setLoading(false);
2122
2114
  }
2123
2115
  }
2124
- if (!emailConfig) {
2116
+ if (!authConfig) {
2125
2117
  return null;
2126
2118
  }
2127
2119
  return /* @__PURE__ */ jsxRuntime.jsx(
@@ -2135,7 +2127,7 @@ function ResetPassword({
2135
2127
  error,
2136
2128
  loading,
2137
2129
  success,
2138
- emailAuthConfig: emailConfig,
2130
+ authConfig,
2139
2131
  backToSignInUrl,
2140
2132
  ...uiProps
2141
2133
  }
@@ -2147,8 +2139,8 @@ function ForgotPassword({
2147
2139
  onError,
2148
2140
  ...uiProps
2149
2141
  }) {
2150
- const { sendPasswordResetCode, baseUrl } = useInsforge();
2151
- const { emailConfig } = usePublicAuthConfig();
2142
+ const { sendResetPasswordEmail, baseUrl } = useInsforge();
2143
+ const { authConfig } = usePublicAuthConfig();
2152
2144
  const [insforge] = react.useState(() => sdk.createClient({ baseUrl }));
2153
2145
  const [step, setStep] = react.useState("email");
2154
2146
  const [email, setEmail] = react.useState("");
@@ -2187,9 +2179,9 @@ function ForgotPassword({
2187
2179
  return;
2188
2180
  }
2189
2181
  try {
2190
- const result = await sendPasswordResetCode(emailValidation.data);
2182
+ const result = await sendResetPasswordEmail(emailValidation.data);
2191
2183
  if (result?.success) {
2192
- if (emailConfig?.resetPasswordMethod === "link") {
2184
+ if (authConfig?.resetPasswordMethod === "link") {
2193
2185
  setSuccess(true);
2194
2186
  if (onSuccess) {
2195
2187
  onSuccess();
@@ -2242,7 +2234,7 @@ function ForgotPassword({
2242
2234
  setIsSendingCode(true);
2243
2235
  setError("");
2244
2236
  try {
2245
- await sendPasswordResetCode(email);
2237
+ await sendResetPasswordEmail(email);
2246
2238
  } catch (err) {
2247
2239
  setError(err.message || "Failed to resend code");
2248
2240
  setResendDisabled(false);
@@ -2250,7 +2242,7 @@ function ForgotPassword({
2250
2242
  } finally {
2251
2243
  setIsSendingCode(false);
2252
2244
  }
2253
- }, [email, sendPasswordResetCode]);
2245
+ }, [email, sendResetPasswordEmail]);
2254
2246
  function handlePasswordResetSuccess(redirectTo) {
2255
2247
  const targetUrl = redirectTo || backToSignInUrl;
2256
2248
  if (onSuccess) {
@@ -2260,7 +2252,7 @@ function ForgotPassword({
2260
2252
  window.location.href = targetUrl;
2261
2253
  }, 1500);
2262
2254
  }
2263
- if (!emailConfig) {
2255
+ if (!authConfig) {
2264
2256
  return null;
2265
2257
  }
2266
2258
  if (step === "email") {