Skip to content

Commit

Permalink
feat(MessageFlags): EPHEMERAL desc and added LOADING (#109)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
advaith1 and github-actions[bot] committed Apr 8, 2021
1 parent 679a5cf commit 4462255
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions deno/v8/payloads/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

/**
Expand Down
7 changes: 7 additions & 0 deletions v8/payloads/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

/**
Expand Down

0 comments on commit 4462255

Please sign in to comment.