From 8e466ec5772f8ae2e1d07c043c3bc7cfbe101c98 Mon Sep 17 00:00:00 2001 From: Miwory Date: Mon, 15 Dec 2025 19:35:25 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- src/osuclient/schema.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 768a78e..193cfa7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "osuclient" -version = "0.6.0" +version = "0.6.1" description = "Client for osu! API" readme = "README.md" authors = [ diff --git a/src/osuclient/schema.py b/src/osuclient/schema.py index c3ac8db..4b25b78 100644 --- a/src/osuclient/schema.py +++ b/src/osuclient/schema.py @@ -398,3 +398,7 @@ class GetUser(User): rankHistory: RankHistory ranked_and_approved_beatmapset_count: int unranked_beatmapset_count: int + + +class UserBeatmapScores(BaseModel): + scores: list[Score]