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