From fde638a810785d18d247d43683106d4b8dc28a4c Mon Sep 17 00:00:00 2001 From: Toastie Date: Thu, 26 Sep 2024 20:56:53 +1200 Subject: [PATCH] Add guild_template_code to GuildCreateSchema Fixes guild creation due to additional property error. --- src/util/schemas/GuildCreateSchema.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/schemas/GuildCreateSchema.ts b/src/util/schemas/GuildCreateSchema.ts index 5d74a4d..e55c537 100644 --- a/src/util/schemas/GuildCreateSchema.ts +++ b/src/util/schemas/GuildCreateSchema.ts @@ -10,4 +10,5 @@ export interface GuildCreateSchema { channels?: ChannelModifySchema[]; system_channel_id?: string; rules_channel_id?: string; + guild_template_code?: string; }