diff --git a/docs/index.rst b/docs/index.rst index 952db50..561af0b 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -312,6 +312,8 @@ Toot dicts 'pinned': # Boolean denoting whether or not the status is currently pinned for the # associated account. 'replies_count': # The number of replies to this status. + 'card': # A preview card for links from the status, if present at time of delivery, + # as card dict. } Mention dicts @@ -565,9 +567,14 @@ Instance dicts 'version': # The instances mastodon version 'urls': # Additional URLs dict, presently only 'streaming_api' with the # stream websocket address. + 'stats: # A dictionary containing three stats, user_count (number of local users), + # status_count (number of local statuses) and domain_count (number of known + # instance domains other than this one). 'contact_account': # Account dict of the primary contact for the instance. 'languages': # Array of ISO 639-1 (two-letter) language codes the instance # has chosen to advertise. + 'registrations': # Boolean indication whether registrations on this instance are open + # (True) or not (False). } Activity dicts diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 16617e3..aecc69a 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py @@ -164,7 +164,7 @@ class Mastodon: __DICT_VERSION_ACCOUNT = "2.4.0" __DICT_VERSION_STATUS = bigger_version(bigger_version(bigger_version(bigger_version("2.5.0", __DICT_VERSION_MEDIA), __DICT_VERSION_ACCOUNT), __DICT_VERSION_APPLICATION), __DICT_VERSION_MENTION) - __DICT_VERSION_INSTANCE = bigger_version("2.3.0", __DICT_VERSION_ACCOUNT) + __DICT_VERSION_INSTANCE = bigger_version("2.6.0", __DICT_VERSION_ACCOUNT) __DICT_VERSION_HASHTAG = "2.3.4" __DICT_VERSION_EMOJI = "2.1.0" __DICT_VERSION_RELATIONSHIP = "2.5.0"