Browse Source

Add approximate_user_install_count to AppInfo

pull/9932/head
Alex Nørgaard 7 months ago
committed by GitHub
parent
commit
d578709640
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      discord/appinfo.py
  2. 1
      discord/types/appinfo.py

6
discord/appinfo.py

@ -147,6 +147,10 @@ class AppInfo:
The approximate count of the guilds the bot was added to.
.. versionadded:: 2.4
approximate_user_install_count: Optional[:class:`int`]
The approximate count of the user-level installations the bot has.
.. versionadded:: 2.5
"""
__slots__ = (
@ -175,6 +179,7 @@ class AppInfo:
'interactions_endpoint_url',
'redirect_uris',
'approximate_guild_count',
'approximate_user_install_count',
)
def __init__(self, state: ConnectionState, data: AppInfoPayload):
@ -212,6 +217,7 @@ class AppInfo:
self.interactions_endpoint_url: Optional[str] = data.get('interactions_endpoint_url')
self.redirect_uris: List[str] = data.get('redirect_uris', [])
self.approximate_guild_count: int = data.get('approximate_guild_count', 0)
self.approximate_user_install_count: Optional[int] = data.get('approximate_user_install_count')
def __repr__(self) -> str:
return (

1
discord/types/appinfo.py

@ -45,6 +45,7 @@ class BaseAppInfo(TypedDict):
summary: str
description: str
flags: int
approximate_user_install_count: NotRequired[int]
cover_image: NotRequired[str]
terms_of_service_url: NotRequired[str]
privacy_policy_url: NotRequired[str]

Loading…
Cancel
Save