Add guild_template_code to GuildCreateSchema

Fixes guild creation due to additional property error.
This commit is contained in:
Toastie 2024-09-26 20:56:53 +12:00
parent a6976a172b
commit fde638a810
Signed by: toastie_t0ast
GPG key ID: 27F3B6855AFD40A4

View file

@ -10,4 +10,5 @@ export interface GuildCreateSchema {
channels?: ChannelModifySchema[];
system_channel_id?: string;
rules_channel_id?: string;
guild_template_code?: string;
}