From 52ff7d4150c090bfe6c9b980c26a43d27cce88f5 Mon Sep 17 00:00:00 2001 From: Miwory Date: Wed, 17 Dec 2025 21:23:37 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=BE=D1=82=D0=B2=D0=B5=D1=82=20=D0=BE=D1=82=20?= =?UTF-8?q?Get=20Users?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- src/twitchclient/schema.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e723176..6221a41 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "twitchclient" -version = "1.0.4" +version = "1.0.5" description = "Client for Twitch API" readme = "README.md" authors = [ diff --git a/src/twitchclient/schema.py b/src/twitchclient/schema.py index 08cf8dc..6477f13 100644 --- a/src/twitchclient/schema.py +++ b/src/twitchclient/schema.py @@ -1390,6 +1390,7 @@ class User(BaseSchema): offline_image_url: str email: str | None = None created_at: datetime + view_count: int = Field(..., deprecated=True) class Users(BaseSchema): -- 2.47.2