[types] Update PremiumType and StickerFormatType

This commit is contained in:
EXPLOSION 2023-07-05 11:43:06 +09:00 committed by GitHub
parent c448932fa0
commit eb06129378
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ from typing_extensions import NotRequired
from .snowflake import Snowflake
from .user import User
StickerFormatType = Literal[1, 2, 3]
StickerFormatType = Literal[1, 2, 3, 4]
class StickerItem(TypedDict):

View File

@ -34,7 +34,7 @@ class PartialUser(TypedDict):
global_name: Optional[str]
PremiumType = Literal[0, 1, 2]
PremiumType = Literal[0, 1, 2, 3]
class User(PartialUser, total=False):