File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed
Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,8 @@ pip install git+https://github.com/remnawave/python-sdk.git@development
6363
6464| Contract Version | Remnawave Panel Version |
6565| ---------------- | ----------------------- |
66- | 2.1.8 | >=2.1.8 |
66+ | 2.1.9 | >=2.1.9 |
67+ | 2.1.8 | ==2.1.8 |
6768| 2.1.7.post1 | ==2.1.7 |
6869| 2.1.4 | >=2.1.4, <2.1.7 |
6970| 2.1.1 | >=2.1.1, <2.1.4 |
Original file line number Diff line number Diff line change 11[project ]
22name = " remnawave"
3- version = " 2.1.8 "
4- description = " A Python SDK for interacting with the Remnawave API v2.1.8 ."
3+ version = " 2.1.9 "
4+ description = " A Python SDK for interacting with the Remnawave API v2.1.9 ."
55authors = [
66 {
name =
" Artem" ,
email =
" [email protected] " }
77]
Original file line number Diff line number Diff line change @@ -61,6 +61,12 @@ class UpdateHostRequestDto(BaseModel):
6161 None ,
6262 serialization_alias = "overrideSniFromAddress" ,
6363 )
64+ vless_route_id : Optional [int ] = Field (
65+ None ,
66+ serialization_alias = "vlessRouteId" ,
67+ ge = 0 ,
68+ le = 65535
69+ )
6470
6571
6672class HostInboundData (BaseModel ):
@@ -114,6 +120,10 @@ class HostResponseDto(BaseModel):
114120 None ,
115121 serialization_alias = "overrideSniFromAddress" ,
116122 )
123+ vless_route_id : Optional [int ] = Field (
124+ None ,
125+ serialization_alias = "vlessRouteId" ,
126+ )
117127
118128 # Legacy compatibility property
119129 @property
@@ -210,6 +220,12 @@ class CreateHostRequestDto(BaseModel):
210220 server_description : Optional [str ] = Field (
211221 None , alias = "serverDescription" , max_length = 30
212222 )
223+ vless_route_id : Optional [int ] = Field (
224+ None ,
225+ serialization_alias = "vlessRouteId" ,
226+ ge = 0 ,
227+ le = 65535
228+ )
213229
214230 # Legacy compatibility property
215231 @property
You can’t perform that action at this time.
0 commit comments