v0.3.0 #15

Merged
pptx704 merged 64 commits from dev into main 2026-06-25 22:11:26 +00:00
17 changed files with 2368 additions and 3392 deletions
Showing only changes of commit 99cd25bd29 - Show all commits

File diff suppressed because it is too large Load Diff

View File

@ -3,10 +3,12 @@
# timestamp: 2026-06-22T22:24:45+00:00
from __future__ import annotations
from typing import Annotated
from pydantic import AwareDatetime, BaseModel, Field
from datetime import date as date_aliased
from enum import StrEnum
from typing import Annotated
from pydantic import AwareDatetime, BaseModel, Field
class CreateCapsuleRequest(BaseModel):
@ -278,12 +280,6 @@ class FileEntry(BaseModel):
symlink_target: str | None = None
class MakeDirRequest(BaseModel):
path: Annotated[
str, Field(description="Directory path to create inside the capsule")
]
class MakeDirResponse(BaseModel):
entry: FileEntry | None = None