Rescue Paperjet v1 implementation
This commit is contained in:
parent
7ff5c8130d
commit
db9e2ca51b
83 changed files with 6186 additions and 3894 deletions
8
backend/app/schemas/export.py
Normal file
8
backend/app/schemas/export.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
"""PDF export request schema."""
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class ExportRequest(BaseModel):
|
||||
versionId: str | None = None
|
||||
flatten: bool = True
|
||||
Loading…
Add table
Add a link
Reference in a new issue