feat: focus 2.0 #2898

Merged
Sainan merged 10 commits from focus-2.0 into main 2025-10-16 00:48:02 -07:00
Showing only changes of commit be42d9243f - Show all commits

View File

@ -34,6 +34,9 @@ export const focusController: RequestHandler = async (req, res) => {
case Focus2Operation.UpdateUpgrade:
op = "UpdateUpgrade";
break;
case Focus2Operation.SentTrainingAmplifier:
op = "SentTrainingAmplifier";
break;
case Focus2Operation.ConvertShard:
op = "ConvertShard";
break;
@ -263,6 +266,7 @@ enum Focus2Operation {
LevelUpUpgrade = "5",
ActivateWay = "6",
UpdateUpgrade = "7", // used to change the IsActive state, same format as ILevelUpUpgradeRequest
SentTrainingAmplifier = "9",
ConvertShard = "11"
}