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