From 1d9290c427bf161035d3d188dd0d3328003d1665 Mon Sep 17 00:00:00 2001 From: Artem Date: Thu, 13 Nov 2025 04:12:43 +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=20"2.2.6.post1"=20=D0=B2=20pyproject.toml=20=D0=B8=20?= =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82=D1=8C=20=D0=BF=D0=BE?= =?UTF-8?q?=D0=BB=D1=8F=20total=20=D0=B8=20external=5Fsquads=20=D0=B2=20Ge?= =?UTF-8?q?tExternalSquadsResponseDto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- remnawave/models/external_squads.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e34b8a6..9ba1303 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "remnawave" -version = "2.2.6" +version = "2.2.6.post1" description = "A Python SDK for interacting with the Remnawave API v2.2.6." authors = [ {name = "Artem",email = "dev@forestsnet.com"} diff --git a/remnawave/models/external_squads.py b/remnawave/models/external_squads.py index 5b327e9..ad83788 100644 --- a/remnawave/models/external_squads.py +++ b/remnawave/models/external_squads.py @@ -64,7 +64,8 @@ class ExternalSquadDto(BaseModel): # Request/Response models class GetExternalSquadsResponseDto(ExternalSquadDto): """Response with all external squads""" - pass + total: int = Field(alias="total") + external_squads: List[ExternalSquadDto] = Field(alias="externalSquads") class GetExternalSquadByUuidResponseDto(ExternalSquadDto):