From 64e9e02e8bea3e2b35ca37ed5d14c1197690accc Mon Sep 17 00:00:00 2001 From: ChartierLuc Date: Mon, 27 Feb 2023 16:39:51 -0500 Subject: [PATCH] Added missing types allowed_mime_types and file_size_limit --- storage3/types.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/storage3/types.py b/storage3/types.py index 50b429aa..c23e0a0c 100644 --- a/storage3/types.py +++ b/storage3/types.py @@ -18,6 +18,8 @@ class BaseBucket: public: bool created_at: datetime updated_at: datetime + file_size_limit: int + allowed_mime_types: str def __post_init__(self) -> None: # created_at and updated_at are returned by the API as ISO timestamps