From 0129d53b264c72180fc5a616cd95de54da36d1d8 Mon Sep 17 00:00:00 2001 From: LordOfPolls Date: Sun, 10 Sep 2023 07:31:04 +0100 Subject: [PATCH 1/2] chore: Version bump Signed-off-by: LordOfPolls --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 68778cfea..1d28bd18b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "interactions.py" -version = "5.9.2" +version = "5.10.0" description = "Easy, simple, scalable and modular: a Python API wrapper for interactions." authors = [ "LordOfPolls ", From 5918a49bef9d84ca17258309374f4f0da992e578 Mon Sep 17 00:00:00 2001 From: Scratch Date: Sat, 21 Oct 2023 01:26:10 +1100 Subject: [PATCH 2/2] feat: support nitro basic PremiumType --- interactions/models/discord/enums.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interactions/models/discord/enums.py b/interactions/models/discord/enums.py index c201f6d50..6957c818f 100644 --- a/interactions/models/discord/enums.py +++ b/interactions/models/discord/enums.py @@ -340,6 +340,8 @@ class PremiumType(CursedIntEnum): """Using Nitro Classic""" NITRO = 2 """Full Nitro membership""" + NITRO_BASIC = 3 + """Basic Nitro membership""" class MessageType(CursedIntEnum):