From 3eaad581316ab4039344850888196dc1d32a9b31 Mon Sep 17 00:00:00 2001 From: Artem Date: Thu, 18 Dec 2025 03:00:20 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=BE=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D0=B2=D0=B5=D1=80=D1=81=D0=B8=D1=8E=20=D0=B4?= =?UTF-8?q?=D0=BE=202.3.2rc3=20=D0=B8=20=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D1=82=D1=8C=20=D1=81=D1=82=D1=80=D1=83=D0=BA=D1=82=D1=83?= =?UTF-8?q?=D1=80=D1=83=20UserUsageDto=20=D0=B4=D0=BB=D1=8F=20=D1=85=D1=80?= =?UTF-8?q?=D0=B0=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B8=D0=BD=D1=84=D0=BE?= =?UTF-8?q?=D1=80=D0=BC=D0=B0=D1=86=D0=B8=D0=B8=20=D0=BE=20=D0=BF=D0=BE?= =?UTF-8?q?=D0=BB=D1=8C=D0=B7=D0=BE=D0=B2=D0=B0=D1=82=D0=B5=D0=BB=D0=B5=20?= =?UTF-8?q?=D0=B8=20=D1=83=D0=B7=D0=BB=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- remnawave/models/nodes_usage_history.py | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6f7c379..b1cb0c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "remnawave" -version = "2.3.2rc2" +version = "2.3.2rc3" description = "A Python SDK for interacting with the Remnawave API v2.3.2." authors = [ {name = "Artem",email = "dev@forestsnet.com"} diff --git a/remnawave/models/nodes_usage_history.py b/remnawave/models/nodes_usage_history.py index c827219..60a65da 100644 --- a/remnawave/models/nodes_usage_history.py +++ b/remnawave/models/nodes_usage_history.py @@ -49,10 +49,12 @@ class GetNodesUsageByRangeResponseDto(RootModel[List[NodeUsageDto]]): class UserUsageDto(BaseModel): + """User usage data with node information""" user_uuid: UUID = Field(alias="userUuid") + node_uuid: UUID = Field(alias="nodeUuid") username: str - upload: int - download: int + total: int + date: datetime class GetNodeUserUsageByRangeResponseDto(RootModel[List[UserUsageDto]]):