mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-28 14:49:01 +03:00
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
CI / Jetson Jetpack 6 (push) Waiting to run
* Pin ruff * Add python upgrade fixes This enables python upgrade checks in ruff to look for deprecated types and patterns. This namely fixes: - usage of deprecated `Typing` which is now built in - some specific exceptions which are caught and have new aliases Some specific UP checks were also ignored as they are stylistic / unimportant and likely to cause bugs * Remove async blocking calls Use asyncio.to_thread on two remaining blocking calls to fix hanging event thread loop. Enable this specific rule to block it in the future. * Use proper logging mechanism * Correctly format logs * Raise with context When raising an exception include the from context to improve debugging * Cleanup
43 lines
856 B
Python
43 lines
856 B
Python
from typing import Any
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
class EventResponse(BaseModel):
|
|
id: str
|
|
label: str
|
|
sub_label: str | None
|
|
camera: str
|
|
start_time: float
|
|
end_time: float | None
|
|
false_positive: bool | None
|
|
zones: list[str]
|
|
thumbnail: str | None
|
|
has_clip: bool
|
|
has_snapshot: bool
|
|
retain_indefinitely: bool
|
|
plus_id: str | None
|
|
model_hash: str | None
|
|
detector_type: str | None
|
|
model_type: str | None
|
|
data: dict[str, Any]
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|
|
|
|
|
|
class EventCreateResponse(BaseModel):
|
|
success: bool
|
|
message: str
|
|
event_id: str
|
|
|
|
|
|
class EventMultiDeleteResponse(BaseModel):
|
|
success: bool
|
|
deleted_events: list[str]
|
|
not_found_events: list[str]
|
|
|
|
|
|
class EventUploadPlusResponse(BaseModel):
|
|
success: bool
|
|
plus_id: str
|