chore(server): disable version check for oauth callback (#12640)

<!-- This is an auto-generated comment: release notes by coderabbit.ai -->

## Summary by CodeRabbit

- **Bug Fixes**
  - Improved Apple OAuth login reliability by ensuring client version checks do not block the callback process.

- **New Features**
  - Enhanced OAuth account information by including an optional display name field.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
forehalo
2025-05-30 03:05:38 +00:00
parent 52777b0064
commit 88eec2cdfb
2 changed files with 4 additions and 1 deletions
@@ -7,6 +7,7 @@ import { OAuthProviderFactory } from '../factory';
export interface OAuthAccount {
id: string;
email: string;
name?: string;
avatarUrl?: string;
}