summary refs log tree commit diff
path: root/src/schemas/gateway/StreamCreateSchema.ts
blob: 3e97724a86211dd32b26026266770eba4eac9785 (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,
};