1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import type { JsonObject } from './common';
|
||||
import type { PuzzleAnchorPack } from './puzzleAgentDraft';
|
||||
import type { PuzzleAnchorPack, PuzzleDraftLevel } from './puzzleAgentDraft';
|
||||
|
||||
export type PuzzleWorkPublicationStatus = 'draft' | 'published';
|
||||
|
||||
@@ -9,6 +9,8 @@ export interface PuzzleWorkSummary {
|
||||
ownerUserId: string;
|
||||
sourceSessionId?: string | null;
|
||||
authorDisplayName: string;
|
||||
workTitle?: string;
|
||||
workDescription?: string;
|
||||
levelName: string;
|
||||
summary: string;
|
||||
themeTags: string[];
|
||||
@@ -26,6 +28,7 @@ export interface PuzzleWorkSummary {
|
||||
|
||||
export interface PuzzleWorkProfile extends PuzzleWorkSummary {
|
||||
anchorPack: PuzzleAnchorPack;
|
||||
levels?: PuzzleDraftLevel[];
|
||||
metadata?: JsonObject | null;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user