Add clip pinning test coverage

This commit is contained in:
Codex
2026-04-22 08:33:47 -05:00
parent 0a13aedbef
commit 58efca9a9f
9 changed files with 124 additions and 6 deletions

View File

@@ -68,6 +68,7 @@ class AudioClipUpdate(BaseModel):
start_ms: int = Field(ge=0)
end_ms: int = Field(gt=0)
sort_order: int | None = None
hidden: bool | None = None
class AudioClipResponse(BaseModel):
@@ -80,6 +81,7 @@ class AudioClipResponse(BaseModel):
start_ms: int
end_ms: int
sort_order: int
hidden: bool
normalization_status: str
normalized_url: str | None
waveform_duration_ms: int | None = None