@nextsparkjs/theme-default 0.1.0-beta.147 → 0.1.0-beta.149

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.
@@ -53,6 +53,21 @@ export const APP_CONFIG_OVERRIDES = {
53
53
  enabled: true,
54
54
  },
55
55
  },
56
+ /**
57
+ * Whether Better Auth automatically sends the verification email on signup.
58
+ *
59
+ * - `true` (default): users get a "Verify Your Email Address" link email
60
+ * immediately when they sign up via `/api/auth/sign-up/email`.
61
+ * - `false`: suppress the automatic email. Use this when your project
62
+ * verifies email ownership through other means (OTP code, invitation
63
+ * token, claim-account flow). The `sendVerificationEmail` function
64
+ * remains available — you can still trigger link-based verification
65
+ * explicitly when you need to.
66
+ *
67
+ * `requireEmailVerification: true` is enforced regardless: users with
68
+ * `emailVerified: false` cannot sign in.
69
+ */
70
+ sendVerificationEmailOnSignup: true,
56
71
  },
57
72
 
58
73
  // =============================================================================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextsparkjs/theme-default",
3
- "version": "0.1.0-beta.147",
3
+ "version": "0.1.0-beta.149",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./config/theme.config.ts",