Skip to content

Commit 49f5954

Browse files
authored
chore: tags (#233)
* tag for ephemeral deprecation * tag for entry point command error
1 parent 60d86ca commit 49f5954

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

tags/tags.toml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1211,10 +1211,19 @@ discord.js does not support features until they are officially documented.
12111211
While there might be a way for these features to work, it can change at any time without any notice
12121212
"""
12131213

1214-
[partial-group-dm]
1215-
keywords = ["group-dm", "send-does-not-exist"]
1214+
[ephemeral]
1215+
keywords = ["ephemeral-deprecated"]
12161216
content = """
1217-
Bots cannot send messages in partial group dm channels.
1218-
Use `if ('send' in channel)` or compare `channel.type` to mitigate this.
1219-
A fix will be implemented in 14.16.2, where you can use `channel.isSendable()`
1217+
The `ephemeral` option when replying to an interaction will be removed in v15
1218+
```diff
1219+
- {..., ephemeral: true}
1220+
+ {..., flags: MessageFlags.Ephemeral}
1221+
``` Read [here](<https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_OR>) on how to specify multiple flags
1222+
"""
1223+
1224+
[entry-point]
1225+
keywords = ["50240", "remove-entry-point"]
1226+
content = """
1227+
You have enabled activities in the Activity Settings on the Developer Portal.
1228+
Either do not enable them if you do not need them, or include the command that was created in the request body.
12201229
"""

0 commit comments

Comments
 (0)