Патч
All checks were successful
Build And Push / publish (push) Successful in 53s

This commit is contained in:
2025-12-02 03:45:25 +03:00
parent 9612a8be67
commit bf39b8e574
5 changed files with 106 additions and 159 deletions

View File

@ -3,6 +3,30 @@ from typing import TypedDict
from pydantic import BaseModel
class AEMDFile(TypedDict):
emdrId: str
localUid: str
registrationDate: str
registrationDateTime: str
storeTillDate: str
DocKind: str
IsSemd: bool
class AEMDReturnFile(TypedDict):
emdrId: str
registrationDate: str
DocKind: str
IsSemd: bool
isCached: bool
class AEMDDemandContent(TypedDict):
messageId: str
emdrId: str
vitaId: str
class Notifications(TypedDict):
notifications: list[dict[str, str | bool]]