diff options
author | Erkin Alp Güney <erkinalp9035@gmail.com> | 2022-03-19 15:17:11 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-19 15:17:11 +0300 |
commit | c63047284d2a1f85d670f438183584b0b1b03452 (patch) | |
tree | c58fd241d38980b878e11f12b1424a8c94f7b205 | |
parent | close issue #684 (diff) | |
download | server-c63047284d2a1f85d670f438183584b0b1b03452.tar.xz |
add the necessary types for server assisted selfbotting
-rw-r--r-- | util/src/interfaces/Interaction.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/src/interfaces/Interaction.ts b/util/src/interfaces/Interaction.ts index 3cafb2d5..5d3aae24 100644 --- a/util/src/interfaces/Interaction.ts +++ b/util/src/interfaces/Interaction.ts @@ -12,11 +12,13 @@ export interface Interaction { } export enum InteractionType { + SelfCommand = 0, Ping = 1, ApplicationCommand = 2, } export enum InteractionResponseType { + SelfCommandResponse = 0, Pong = 1, Acknowledge = 2, ChannelMessage = 3, |