Newer
Older
percord / src / util / schemas / StreamCreateSchema.ts
@dank074 dank074 on 22 Jun 2025 258 bytes add webrtc support (#1284)
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,
};