Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .changeset/action-param-visible.md

This file was deleted.

29 changes: 0 additions & 29 deletions .changeset/adr-0057-p4-handoff-context.md

This file was deleted.

26 changes: 0 additions & 26 deletions .changeset/adr-0057-p4-open-in-builder.md

This file was deleted.

30 changes: 0 additions & 30 deletions .changeset/console-chat-conversation-key.md

This file was deleted.

30 changes: 0 additions & 30 deletions .changeset/console-surface-agent-resolver.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/gantt-api-data-source.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/gantt-border-color-field.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/gantt-dependency-guards.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/gantt-tree-aware-filter.md

This file was deleted.

28 changes: 0 additions & 28 deletions .changeset/metadata-client-authenticated-fetch.md

This file was deleted.

26 changes: 0 additions & 26 deletions .changeset/phone-password-login.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/resolve-action-param-visible.md

This file was deleted.

32 changes: 0 additions & 32 deletions .changeset/sharing-rule-form-pickers.md

This file was deleted.

28 changes: 28 additions & 0 deletions apps/console/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @object-ui/console

## 13.3.0

### Patch Changes

- 94d00d4: feat(auth): phone number + password sign-in on the login page

The login page's password mode now accepts an **email OR a phone number** as the
identifier and routes by shape — email → `/sign-in/email`, phone →
`/sign-in/phone-number` (better-auth phoneNumber plugin, framework#2780). It
coexists with the existing phone-OTP mode.

- Gated on `features.phoneNumber` (phoneNumber plugin enabled). Unlike phone-OTP
it needs no SMS service, so it uses that coarser capability flag, not
`features.phoneNumberOtp`. When the flag is off the field stays email-only.
- New `AuthClient.signInWithPhonePassword(phoneNumber, password)` wired through
`AuthContext` / `AuthProvider` / `useAuth`.
- New `normalizePhoneIdentifier` / `looksLikePhoneIdentifier` helpers that mirror
the backend's `normalizePhoneNumber` exactly (strip `[\s\-().]`, validate
`^\+?[0-9]{6,15}$`, **no** forced E.164 / country code — the backend stores the
light-stripped form, so anything heavier would break the lookup).
- SSO stays email-only (a phone-shaped identifier no longer attempts domain
routing).

Only works for accounts that have both a phone number and a password set;
phone-only accounts set a password on first OTP sign-in.
- @object-ui/react-runtime@13.3.0
- @object-ui/sdui-parser@13.3.0

## 13.2.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/console/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@object-ui/console",
"version": "13.2.0",
"version": "13.3.0",
"description": "ObjectStack Console — opinionated, fork-ready runtime console built on @object-ui/app-shell with the full plugin set wired up. Ships as a Hono UI plugin serving a pre-built SPA.",
"license": "MIT",
"type": "module",
Expand Down
Loading