summary refs log tree commit diff
path: root/src/util/schemas/GuildUpdateSchema.ts
blob: fb2ac4f257f1845325fffbdc83275d26f2bb65d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { GuildCreateSchema } from "@fosscord/util";

export interface GuildUpdateSchema extends Omit<GuildCreateSchema, "channels"> {
	banner?: string | null;
	splash?: string | null;
	description?: string;
	features?: string[];
	verification_level?: number;
	default_message_notifications?: number;
	system_channel_flags?: number;
	explicit_content_filter?: number;
	public_updates_channel_id?: string;
	afk_timeout?: number;
	afk_channel_id?: string;
	preferred_locale?: string;
	premium_progress_bar_enabled?: boolean;
}