feat(api-server): cache puzzle gallery card view
This commit is contained in:
@@ -42,6 +42,19 @@ export interface PuzzleWorksResponse {
|
||||
items: PuzzleWorkSummary[];
|
||||
}
|
||||
|
||||
export interface PuzzleGalleryWorkRef {
|
||||
workId: string;
|
||||
profileId: string;
|
||||
}
|
||||
|
||||
export interface PuzzleGalleryResponse {
|
||||
items: PuzzleWorkSummary[];
|
||||
previewRefs?: PuzzleGalleryWorkRef[];
|
||||
hasMore?: boolean;
|
||||
nextCursor?: string | null;
|
||||
totalCount?: number;
|
||||
}
|
||||
|
||||
export interface PuzzleWorkDetailResponse {
|
||||
item: PuzzleWorkProfile;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user