chore(types): rename MessageFlags.IsComponentV2 to IsComponentsV2 to match docs (#4439)

This commit is contained in:
Awesome Stickz
2025-09-08 04:14:55 +05:30
committed by GitHub
parent 96fa6e3a3f
commit 8e8ffa6a54
+2 -2
View File
@@ -197,12 +197,12 @@ export enum MessageFlags {
/** This message has a snapshot (via Message Forwarding) */
HasSnapshot = 1 << 14,
/**
* Allows you to create fully component driven messages
* Allows you to create fully component-driven messages
*
* @remarks
* Once a message has been sent with this flag, it can't be removed from that message.
*/
IsComponentV2 = 1 << 15,
IsComponentsV2 = 1 << 15,
}
/** https://discord.com/developers/docs/resources/message#message-interaction-metadata-object */