fix(beatmapset): update cursor type of SearchBeatmapsetsResp to support string values

This commit is contained in:
MingxuanGame
2025-10-04 07:35:35 +00:00
parent 00f53f0dc0
commit 470e8b3c06

View File

@@ -339,5 +339,5 @@ class BeatmapsetResp(BeatmapsetBase):
class SearchBeatmapsetsResp(SQLModel):
beatmapsets: list[BeatmapsetResp]
total: int
cursor: dict[str, int | float] | None = None
cursor: dict[str, int | float | str] | None = None
cursor_string: str | None = None