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):