()
| 459 | * 加入Beta计划 |
| 460 | */ |
| 461 | export async function joinBeta(): Promise<{ success: boolean; message: string; beta: number }> { |
| 462 | return fetchWithAuth<{ success: boolean; message: string; beta: number }>( |
| 463 | `${API_BASE_URL}/api/auth/join-beta`, |
| 464 | { method: 'POST' } |
| 465 | ); |
| 466 | } |
| 467 | |
| 468 | /** |
| 469 | * 获取Beta计划状态 |
no test coverage detected