mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
server: add reviewed in the object output
This commit is contained in:
@@ -50,6 +50,7 @@ class GetTranscript(BaseModel):
|
|||||||
source_language: str | None
|
source_language: str | None
|
||||||
target_language: str | None
|
target_language: str | None
|
||||||
participants: list[TranscriptParticipant] | None
|
participants: list[TranscriptParticipant] | None
|
||||||
|
reviewed: bool
|
||||||
|
|
||||||
|
|
||||||
class CreateTranscript(BaseModel):
|
class CreateTranscript(BaseModel):
|
||||||
@@ -66,6 +67,7 @@ class UpdateTranscript(BaseModel):
|
|||||||
long_summary: Optional[str] = Field(None)
|
long_summary: Optional[str] = Field(None)
|
||||||
share_mode: Optional[Literal["public", "semi-private", "private"]] = Field(None)
|
share_mode: Optional[Literal["public", "semi-private", "private"]] = Field(None)
|
||||||
participants: Optional[list[TranscriptParticipant]] = Field(None)
|
participants: Optional[list[TranscriptParticipant]] = Field(None)
|
||||||
|
reviewed: Optional[bool] = Field(None)
|
||||||
|
|
||||||
|
|
||||||
class DeletionStatus(BaseModel):
|
class DeletionStatus(BaseModel):
|
||||||
|
|||||||
Reference in New Issue
Block a user