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 c1ecd0eff5
commit 8f02f98afc
6 changed files with 94 additions and 1 deletions

View File

@@ -28,6 +28,8 @@ class UserResource extends BaseResource
'name' => $this->resource->name,
/** @var string $email Email of user */
'email' => $this->resource->email,
/** @var string|null $pending_email Email address awaiting verification (set when the user has requested an email change but not yet verified the new address) */
'pending_email' => $this->resource->pending_email,
/** @var string $profile_photo_url Profile photo URL */
'profile_photo_url' => $this->resource->profile_photo_url,
/** @var string $timezone Timezone (f.e. Europe/Berlin or America/New_York) */