@fluxbase/sdk 2026.1.1-rc.8 → 2026.1.1-rc.9

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.d.cts CHANGED
@@ -1674,6 +1674,8 @@ interface AuthConfig {
1674
1674
  require_email_verification: boolean;
1675
1675
  /** Whether magic link authentication is enabled */
1676
1676
  magic_link_enabled: boolean;
1677
+ /** Whether password login is enabled for app users */
1678
+ password_login_enabled: boolean;
1677
1679
  /** Whether MFA/2FA is available (always true, users opt-in) */
1678
1680
  mfa_available: boolean;
1679
1681
  /** Minimum password length requirement */
package/dist/index.d.ts CHANGED
@@ -1674,6 +1674,8 @@ interface AuthConfig {
1674
1674
  require_email_verification: boolean;
1675
1675
  /** Whether magic link authentication is enabled */
1676
1676
  magic_link_enabled: boolean;
1677
+ /** Whether password login is enabled for app users */
1678
+ password_login_enabled: boolean;
1677
1679
  /** Whether MFA/2FA is available (always true, users opt-in) */
1678
1680
  mfa_available: boolean;
1679
1681
  /** Minimum password length requirement */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluxbase/sdk",
3
- "version": "2026.1.1-rc.8",
3
+ "version": "2026.1.1-rc.9",
4
4
  "description": "Official TypeScript SDK for Fluxbase - Backend as a Service",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",