summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSupremeMortal <6178101+SupremeMortal@users.noreply.github.com>2024-09-14 22:01:46 +0100
committerSupremeMortal <6178101+SupremeMortal@users.noreply.github.com>2024-09-14 22:01:46 +0100
commit79eb8b67852b60a2160e93b279ac0819b4a59b07 (patch)
treedad0c5af27124f5acfebad6481b0333c2a45df73 /src
parentMerge pull request #1210 from CyberL1/fix/nick-response (diff)
downloadserver-ts-79eb8b67852b60a2160e93b279ac0819b4a59b07.tar.xz
Add `guild_template_code` to `GuildCreateSchema`
Fixes guild creation due to additional property error.
Diffstat (limited to 'src')
-rw-r--r--src/util/schemas/GuildCreateSchema.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/schemas/GuildCreateSchema.ts b/src/util/schemas/GuildCreateSchema.ts

index 41e3b214..ae9d275b 100644 --- a/src/util/schemas/GuildCreateSchema.ts +++ b/src/util/schemas/GuildCreateSchema.ts
@@ -28,4 +28,5 @@ export interface GuildCreateSchema { channels?: ChannelModifySchema[]; system_channel_id?: string; rules_channel_id?: string; + guild_template_code?: string; }