This commit is contained in:
2025-12-15 19:35:25 +03:00
parent d5a6bfffd1
commit 8e466ec577
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[project] [project]
name = "osuclient" name = "osuclient"
version = "0.6.0" version = "0.6.1"
description = "Client for osu! API" description = "Client for osu! API"
readme = "README.md" readme = "README.md"
authors = [ authors = [

View File

@ -398,3 +398,7 @@ class GetUser(User):
rankHistory: RankHistory rankHistory: RankHistory
ranked_and_approved_beatmapset_count: int ranked_and_approved_beatmapset_count: int
unranked_beatmapset_count: int unranked_beatmapset_count: int
class UserBeatmapScores(BaseModel):
scores: list[Score]