From 49f5954c96633e2a5cfcb19323849415a1bcb03f Mon Sep 17 00:00:00 2001 From: Luna <84203950+Wolvinny@users.noreply.github.com> Date: Sat, 4 Jan 2025 14:41:17 +0100 Subject: [PATCH] chore: tags (#233) * tag for ephemeral deprecation * tag for entry point command error --- tags/tags.toml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/tags/tags.toml b/tags/tags.toml index 5b4b93f..94975b7 100644 --- a/tags/tags.toml +++ b/tags/tags.toml @@ -1211,10 +1211,19 @@ discord.js does not support features until they are officially documented. While there might be a way for these features to work, it can change at any time without any notice """ -[partial-group-dm] -keywords = ["group-dm", "send-does-not-exist"] +[ephemeral] +keywords = ["ephemeral-deprecated"] content = """ -Bots cannot send messages in partial group dm channels. -Use `if ('send' in channel)` or compare `channel.type` to mitigate this. -A fix will be implemented in 14.16.2, where you can use `channel.isSendable()` +The `ephemeral` option when replying to an interaction will be removed in v15 +```diff +- {..., ephemeral: true} ++ {..., flags: MessageFlags.Ephemeral} +``` Read [here]() on how to specify multiple flags +""" + +[entry-point] +keywords = ["50240", "remove-entry-point"] +content = """ +You have enabled activities in the Activity Settings on the Developer Portal. +Either do not enable them if you do not need them, or include the command that was created in the request body. """