add pending email to UserResource and update openapi client

This commit is contained in:
Gregor Vostrak
2026-05-26 18:02:15 +02:00
committed by Constantin Graf
parent 19e1edca31
commit 7b6cdf1d45
6 changed files with 94 additions and 1 deletions

View File

@@ -63,6 +63,7 @@ export interface User {
id: string;
name: string;
email: string;
pending_email: string | null;
email_verified_at: string | null;
password?: string;
remember_token?: string | null;

View File

@@ -80,6 +80,7 @@ export interface User {
id: string;
name: string;
email: string;
pending_email: string | null;
email_verified_at: string | null;
password?: string;
remember_token?: string | null;