Document 2.5.0 entity updates

This commit is contained in:
Lorenz Diener 2019-04-27 21:45:57 +02:00
pare e393664974
commit 4deeb7875b
S'han modificat 2 arxius amb 5 adicions i 2 eliminacions

Veure arxiu

@ -308,6 +308,7 @@ Toot dicts
# way of conversation muting
'pinned': # Boolean denoting whether or not the status is currently pinned for the
# associated account.
'replies_count': # The number of replies to this status.
}
Mention dicts
@ -393,6 +394,8 @@ Relationship dicts
# specified users domain
'showing_reblogs': # Boolean denoting whether the specified users reblogs show up on the
# logged-in users Timeline
'endorsed': # Boolean denoting wheter the specified user is being endorsed / featured by the
# logged-in user
}
Filter dicts

Veure arxiu

@ -162,12 +162,12 @@ class Mastodon:
__DICT_VERSION_MENTION = "1.0.0"
__DICT_VERSION_MEDIA = "2.3.0"
__DICT_VERSION_ACCOUNT = "2.4.0"
__DICT_VERSION_STATUS = bigger_version(bigger_version(bigger_version(bigger_version("2.1.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_HASHTAG = "2.3.4"
__DICT_VERSION_EMOJI = "2.1.0"
__DICT_VERSION_RELATIONSHIP = "2.4.3"
__DICT_VERSION_RELATIONSHIP = "2.5.0"
__DICT_VERSION_NOTIFICATION = bigger_version(bigger_version("1.0.0", __DICT_VERSION_ACCOUNT), __DICT_VERSION_STATUS)
__DICT_VERSION_CONTEXT = bigger_version("1.0.0", __DICT_VERSION_STATUS)
__DICT_VERSION_LIST = "2.1.0"