Add new field to guild update schema

This commit is contained in:
Rory& 2025-07-11 13:24:31 +02:00
parent 4d81d4461f
commit a5bb6a9b5d

View File

@ -33,4 +33,5 @@ export interface GuildUpdateSchema extends Omit<GuildCreateSchema, "channels"> {
preferred_locale?: string;
premium_progress_bar_enabled?: boolean;
discovery_splash?: string;
safety_alerts_channel_id?: string | null;
}