summary refs log tree commit diff
path: root/src/util/schemas
diff options
context:
space:
mode:
authorTomatoCake <60300461+DEVTomatoCake@users.noreply.github.com>2024-07-17 12:31:09 +0200
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2024-07-17 20:34:09 +1000
commitd3ece937e6e6e476610fc1d7eae085727d01ec95 (patch)
treef8a1625364c9daad0afbeeca070530acb3026499 /src/util/schemas
parentfeat: badge-icons cdn route (diff)
downloadserver-ts-d3ece937e6e6e476610fc1d7eae085727d01ec95.tar.xz
Make channel ID optional when replying
Diffstat (limited to 'src/util/schemas')
-rw-r--r--src/util/schemas/MessageCreateSchema.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/schemas/MessageCreateSchema.ts b/src/util/schemas/MessageCreateSchema.ts

index 495e2ebd..014f6c87 100644 --- a/src/util/schemas/MessageCreateSchema.ts +++ b/src/util/schemas/MessageCreateSchema.ts
@@ -42,7 +42,7 @@ export interface MessageCreateSchema { }; message_reference?: { message_id: string; - channel_id: string; + channel_id?: string; guild_id?: string; fail_if_not_exists?: boolean; };