diff --git a/discord/enums.py b/discord/enums.py index 3f973f243c..3972b1bb55 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -632,6 +632,12 @@ class EmbeddedActivity(Enum): betrayal = 773336526917861400 fishing = 814288819477020702 chess = 832012774040141894 + letter_tile = 879863686565621790 + word_snack = 879863976006127627 + doodle_crew = 878067389634314250 + watch_together = 880218394199220334 + watch_together_dev = 880218832743055411 + T = TypeVar('T') diff --git a/docs/api.rst b/docs/api.rst index 5d2eec26fa..3933f13930 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -2659,6 +2659,52 @@ of :class:`enum.Enum`. The guild may contain NSFW content. +.. class:: EmbeddedActivity + + Respresents an embedded activity application. + + .. versionadded:: 2.0 + + .. attribute:: youtube + + Represents the embedded application Youtube Together. + + .. attribute:: watch_together + + Same as `youtube` with remote feature which allows guild admins to limit the playlist access. + + .. attribute:: watch_together_dev + + Development version of `watch_together`. + + .. attribute:: poker + + Represents the embedded application Poker Night. + + .. attribute:: betrayal + + Represents the embedded application Betrayal.io + + .. attribute:: fishing + + Represents the embedded application Fishington.io + + .. attribute:: chess + Represents the embedded application Chess in the Park. + + .. attribute:: letter_tile + + Represents the embedded application Letter Tile. + + .. attribute:: word_snack + + Represents the embedded application Word Snacks. + + .. attribute:: doodle_crew + + Represents the embedded application Doodle Crew. + + Async Iterator ----------------