summary refs log tree commit diff
path: root/util
diff options
context:
space:
mode:
authorErkin Alp Güney <erkinalp9035@gmail.com>2022-03-19 15:17:11 +0300
committerGitHub <noreply@github.com>2022-03-19 15:17:11 +0300
commit44ddb97e088c08b799ac27c70d1f0418bb59d4df (patch)
tree984f126ec8e6c7bf7ab8c4fbd6bd7cb7692a6294 /util
parentclose issue #684 (diff)
downloadserver-44ddb97e088c08b799ac27c70d1f0418bb59d4df.tar.xz
add the necessary types for server assisted selfbotting
Diffstat (limited to 'util')
-rw-r--r--util/src/interfaces/Interaction.ts2
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,