From 21f0b515e47f36b5ff466241436c45317984921c Mon Sep 17 00:00:00 2001 From: Arian Reyhaneh Date: Sat, 14 Dec 2024 16:16:21 +0330 Subject: [PATCH] add BUSINESS_ADDON_CREATE to OauthResourceType --- kenar/oauth.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kenar/oauth.py b/kenar/oauth.py index a5943dd..a584da5 100644 --- a/kenar/oauth.py +++ b/kenar/oauth.py @@ -22,6 +22,8 @@ class OauthResourceType(str, Enum): POST_ONGOING_IMAGES_GET = "POST_ONGOING_IMAGES_GET" + BUSINESS_ADDON_CREATE = "BUSINESS_ADDON_CREATE" + class AccessTokenResponse(BaseModel): access_token: str