Refine play type integration flow and docs

This commit is contained in:
2026-06-03 00:57:24 +08:00
parent dbe4c902b4
commit 67ba40c678
35 changed files with 2226 additions and 619 deletions

View File

@@ -62,7 +62,7 @@ export interface PuzzleDraftLevel {
selectedCandidateId: string | null;
coverImageSrc: string | null;
coverAssetId: string | null;
generationStatus: 'idle' | 'generating' | 'ready';
generationStatus: 'idle' | 'generating' | 'ready' | 'failed';
}
export interface PuzzleResultDraft {
@@ -78,7 +78,7 @@ export interface PuzzleResultDraft {
selectedCandidateId: string | null;
coverImageSrc: string | null;
coverAssetId: string | null;
generationStatus: 'idle' | 'generating' | 'ready';
generationStatus: 'idle' | 'generating' | 'ready' | 'failed';
levels?: PuzzleDraftLevel[];
formDraft?: {
workTitle?: string;