feat(postbox): reconcile lifecycle notifications

This commit is contained in:
2026-08-20 04:58:34 +02:00
parent 41ea8d8e23
commit 8a21876634
8 changed files with 765 additions and 9 deletions
+1
View File
@@ -230,6 +230,7 @@ class PostboxDeliveryCreateRequest(BaseModel):
body_text: str | None = None
sender_label: str | None = Field(default=None, max_length=500)
classification: PostboxClassification = "internal"
action_required: bool = False
participants: list[PostboxParticipantPayload] = Field(default_factory=list)
attachments: list[PostboxAttachmentPayload] = Field(default_factory=list)
expires_at: datetime | None = None