This commit is contained in:
2026-04-26 17:34:52 +08:00
104 changed files with 5086 additions and 2142 deletions

View File

@@ -23,7 +23,7 @@ export type PublicUserSearchResponse = {
};
export type AuthEntryRequest = {
username: string;
phone: string;
password: string;
};

View File

@@ -66,6 +66,8 @@ export interface RpgAgentOperationRecord {
phaseDetail: string;
progress: number;
error?: string | null;
/** 操作创建时间,草稿生成进度页用它计算总耗时。 */
startedAt?: string | null;
updatedAt?: string | null;
}