Merge origin/main into frontend parity worktree

This commit is contained in:
2026-07-25 11:16:03 +00:00
34 changed files with 2358 additions and 244 deletions
+22
View File
@@ -80,6 +80,17 @@ export type TurnDaemonCommand =
}
| { type: 'dropItem'; requestId?: string; generalId: number; itemType: string }
| { type: 'auctionFinalize'; requestId?: string; auctionId: number }
| {
type: 'auctionOpen';
requestId?: string;
generalId: number;
auctionType: 'BUY_RICE' | 'SELL_RICE' | 'UNIQUE_ITEM';
amount: number;
closeTurnCnt?: number;
startBidAmount?: number;
finishBidAmount?: number;
itemKey?: string;
}
| {
type: 'changePermission';
requestId?: string;
@@ -226,6 +237,17 @@ export type TurnDaemonCommandResult =
generalId: number;
reason: string;
}
| {
type: 'auctionOpen';
ok: true;
auctionId: number;
closeAt: string;
}
| {
type: 'auctionOpen';
ok: false;
reason: string;
}
| {
type: 'troopJoin';
ok: true;