경매 관련 진행 준비

This commit is contained in:
2026-01-22 17:25:39 +00:00
parent de914a5d16
commit b5b761984e
17 changed files with 481 additions and 12 deletions
+12
View File
@@ -69,6 +69,7 @@ export type TurnDaemonCommand =
};
}
| { type: 'dropItem'; requestId?: string; generalId: number; itemType: string }
| { type: 'auctionFinalize'; requestId?: string; auctionId: number }
| {
type: 'changePermission';
requestId?: string;
@@ -87,6 +88,17 @@ export type TurnDaemonCommand =
};
export type TurnDaemonCommandResult =
| {
type: 'auctionFinalize';
ok: true;
auctionId: number;
}
| {
type: 'auctionFinalize';
ok: false;
auctionId: number;
reason: string;
}
| {
type: 'troopJoin';
ok: true;