From c1ac9903dd5c58ed37bb9cc13edf19db809bb3ec Mon Sep 17 00:00:00 2001 From: Artem Date: Wed, 3 Sep 2025 00:00:39 +0200 Subject: [PATCH] =?UTF-8?q?feat:=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=20SDK=20?= =?UTF-8?q?=D0=B4=D0=BE=202.1.7.post1,=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D1=82=D1=8C=20=D0=BF=D0=BE=D0=BB=D0=B5=20tag=20=D0=B2=20?= =?UTF-8?q?=D0=BC=D0=BE=D0=B4=D0=B5=D0=BB=D1=8C=20UserResponseDto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- pyproject.toml | 2 +- remnawave/models/users.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b0a0703..c01ef19 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ pip install git+https://github.com/remnawave/python-sdk.git@development | Contract Version | Remnawave Panel Version | | ---------------- | ----------------------- | -| 2.1.7 | >=2.1.7 | +| 2.1.7.post1 | >=2.1.7 | | 2.1.4 | >=2.1.4, <2.1.7 | | 2.1.1 | >=2.1.1, <2.1.4 | | 2.0.0 | >=2.0.0,<2.1.0 | diff --git a/pyproject.toml b/pyproject.toml index 0907239..bef949d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "remnawave" -version = "2.1.7" +version = "2.1.7.post1" description = "A Python SDK for interacting with the Remnawave API v2.1.7." authors = [ {name = "Artem",email = "dev@forestsnet.com"} diff --git a/remnawave/models/users.py b/remnawave/models/users.py index 3ef85f7..cc47ff4 100644 --- a/remnawave/models/users.py +++ b/remnawave/models/users.py @@ -130,6 +130,7 @@ class UserResponseDto(BaseModel): None, alias="lastConnectedNode" ) happ: Optional[HappCrypto] = Field(None, alias="happ") + tag: Optional[str] = Field(None, alias="tag") created_at: datetime = Field(alias="createdAt") updated_at: datetime = Field(alias="updatedAt")