diff --git a/deno/v8/payloads/channel.ts b/deno/v8/payloads/channel.ts index 10f141d3..0316a861 100644 --- a/deno/v8/payloads/channel.ts +++ b/deno/v8/payloads/channel.ts @@ -435,7 +435,14 @@ export enum MessageFlags { * This message came from the urgent message system */ URGENT = 1 << 4, + /** + * This message is only visible to the user who invoked the Interaction + */ EPHEMERAL = 1 << 6, + /** + * This message is an Interaction Response and the bot is "thinking" + */ + LOADING = 1 << 7, } /** diff --git a/v8/payloads/channel.ts b/v8/payloads/channel.ts index 3caef012..5decb8c9 100644 --- a/v8/payloads/channel.ts +++ b/v8/payloads/channel.ts @@ -435,7 +435,14 @@ export const enum MessageFlags { * This message came from the urgent message system */ URGENT = 1 << 4, + /** + * This message is only visible to the user who invoked the Interaction + */ EPHEMERAL = 1 << 6, + /** + * This message is an Interaction Response and the bot is "thinking" + */ + LOADING = 1 << 7, } /**