summary refs log tree commit diff
path: root/src/schemas/gateway/StreamCreateSchema.ts
blob: bb6507914010ce5f4da5e6e9c27feb47e0c68ddb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
export interface StreamCreateSchema {
	type: "guild" | "call";
	channel_id: string;
	guild_id?: string;
	preferred_region?: string;
}

export const StreamCreateSchema = {
	type: String,
	channel_id: String,
	$guild_id: String,
	$preferred_region: String,
};