Allow to sync worldstate from a remote server #2218

Closed
nyaoouo wants to merge 4 commits from nyaoouo:Impl-WorldState-Sync into main
Showing only changes of commit 82c0a60afa - Show all commits

View File

@ -44,6 +44,7 @@ export const updateChallengeProgressController: RequestHandler = async (req, res
case "ChallengeProgress": case "ChallengeProgress":
case "SeasonChallengeCompletions": case "SeasonChallengeCompletions":
case "ChallengePTS": case "ChallengePTS":
case "crossPlaySetting":
break; break;
default: default:
logger.warn(`unknown challenge progress entry`, { key, value }); logger.warn(`unknown challenge progress entry`, { key, value });
@ -62,4 +63,5 @@ interface IUpdateChallengeProgressRequest {
ChallengeProgress?: IChallengeProgress[]; ChallengeProgress?: IChallengeProgress[];
SeasonChallengeHistory?: ISeasonChallenge[]; SeasonChallengeHistory?: ISeasonChallenge[];
SeasonChallengeCompletions?: ISeasonChallenge[]; SeasonChallengeCompletions?: ISeasonChallenge[];
crossPlaySetting?: string;
} }