This commit is contained in:
2026-05-01 01:30:02 +08:00
parent aabad6407f
commit 2e9d0f4640
92 changed files with 4548 additions and 248 deletions

View File

@@ -1,4 +1,4 @@
export type PuzzleGridSize = 3 | 4;
export type PuzzleGridSize = 3 | 4 | 5 | 6 | 7;
export interface PuzzleCellPosition {
row: number;

View File

@@ -23,6 +23,10 @@ export interface PuzzleWorkSummary {
remixCount?: number;
likeCount?: number;
recentPlayCount7d?: number;
pointIncentiveTotalHalfPoints?: number;
pointIncentiveClaimedPoints?: number;
pointIncentiveTotalPoints?: number;
pointIncentiveClaimablePoints?: number;
publishReady: boolean;
levels?: PuzzleDraftLevel[];
}

View File

@@ -64,7 +64,8 @@ export type ProfileWalletLedgerEntry = {
| 'points_recharge'
| 'asset_operation_consume'
| 'asset_operation_refund'
| 'redeem_code_reward';
| 'redeem_code_reward'
| 'puzzle_author_incentive_claim';
createdAt: string;
};