[UP] v 0.1.6-1

This commit is contained in:
Evgeny (Krymmy) Momotov 2025-12-09 14:15:28 +03:00
parent 73cef306c9
commit 78c122b864
2 changed files with 4 additions and 1 deletions

View file

@ -1,6 +1,6 @@
[project]
name = "yandexapimanager"
version = "0.1.6"
version = "0.1.6-1"
description = ""
authors = [
{name = "Evgeny (Krymmy) Momotov",email = "evgeny.momotov@gmail.com"}

View file

@ -104,6 +104,9 @@ class YandexFleetApiKey(UUIDModel, BasicModel):
class Driver(BasicModel):
yandex_fleet: Optional[YandexFleet] = Field(description="ID или название флота Yandex", example="fleet-123")
driver_id: str = Field(max_length=64, description="ID драйвера в Yandex", example="drv-abc123")
first_name: Optional[str] = Field(description="Имя", example="John", default=None)
last_name : Optional[str] = Field(description="Фамилия", example="Doe", default=None)
middle_name: Optional[str] = Field(description="Отчество", example="Ivanovich", default=None)
created_at: Optional[str] = Field(description="Дата создания", example="2024-01-01T12:00:00")
updated_at: Optional[str] = Field(description="Дата обновления", example="2024-01-01T12:00:00")