feat: обновить версию SDK до 2.1.7.post1, добавить поле tag в модель UserResponseDto

This commit is contained in:
Artem 2025-09-03 00:00:39 +02:00
parent 97ef97bd46
commit c1ac9903dd
No known key found for this signature in database
GPG key ID: 833485276B7902CE
3 changed files with 3 additions and 2 deletions

View file

@ -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 |

View file

@ -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"}

View file

@ -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")