mirror of
https://github.com/remnawave/python-sdk.git
synced 2026-08-04 06:35:09 +00:00
Merge pull request #19 from remnawave:development
fix: Исправить формат версии на "2.2.3-fix1" в pyproject.toml
This commit is contained in:
commit
f9443b9db6
2 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "remnawave"
|
||||
version = "2.2.3.fix1"
|
||||
version = "2.2.3-fix1"
|
||||
description = "A Python SDK for interacting with the Remnawave API v2.2.3."
|
||||
authors = [
|
||||
{name = "Artem",email = "dev@forestsnet.com"}
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class CreateUserRequestDto(BaseModel):
|
|||
hwidDeviceLimit: int | None = Field(
|
||||
None, serialization_alias="hwidDeviceLimit", strict=True, ge=0
|
||||
)
|
||||
active_internal_squads: list[str] | None = Field(
|
||||
active_internal_squads: list[UUID] | None = Field(
|
||||
None, serialization_alias="activeInternalSquads"
|
||||
)
|
||||
external_squad_uuid: UUID | None = Field(None, alias="externalSquadUuid")
|
||||
|
|
@ -89,7 +89,7 @@ class UpdateUserRequestDto(BaseModel):
|
|||
traffic_limit_strategy: TrafficLimitStrategy | None = Field(
|
||||
None, serialization_alias="trafficLimitStrategy"
|
||||
)
|
||||
active_internal_squads: list[str] | None = Field(
|
||||
active_internal_squads: list[UUID] | None = Field(
|
||||
None, serialization_alias="activeInternalSquads"
|
||||
)
|
||||
external_squad_uuid: UUID | None = Field(None, alias="externalSquadUuid")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue