完善虎牙自动注册改密

This commit is contained in:
yml2213
2026-07-06 01:20:22 +08:00
parent af98ea8416
commit db4ca78280
8 changed files with 777 additions and 29 deletions
+9
View File
@@ -179,18 +179,26 @@ export interface HuyaAutoRegisterRequest {
concurrency?: number;
wait_seconds?: number;
poll_interval?: number;
password_prefix?: string;
fixed_password?: string;
}
export interface HuyaAutoRegisterItem {
line: number;
phone: string;
provider: string;
sms_url: string;
status: string;
message: string;
code: string;
change_code: string;
attempts: number;
change_attempts: number;
account_id: number | null;
username: string;
uid: string;
password: string;
password_changed: boolean;
cookie: string;
cookie_preview: string;
started_at: string | null;
@@ -206,6 +214,7 @@ export interface HuyaAutoRegisterBatch {
concurrency: number;
wait_seconds: number;
poll_interval: number;
password_prefix: string;
total: number;
success_count: number;
failed_count: number;