mirror of
https://github.com/remnawave/python-sdk.git
synced 2026-05-13 12:16:42 +00:00
fix: обновить версию до "2.2.6.post1" в pyproject.toml и добавить поля total и external_squads в GetExternalSquadsResponseDto
This commit is contained in:
parent
00225e9284
commit
1d9290c427
2 changed files with 3 additions and 2 deletions
|
|
@ -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"}
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue