restructure
move to bun workspaces bump zod begin adding fluxer
This commit is contained in:
29
core/src/entities/channels/channels.schema.ts
Normal file
29
core/src/entities/channels/channels.schema.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import z from "zod";
|
||||
|
||||
export const TextChannelOptions = [
|
||||
"bump",
|
||||
"bot",
|
||||
"notification",
|
||||
"testing",
|
||||
"news",
|
||||
"rules",
|
||||
"feedback",
|
||||
"welcome",
|
||||
"introduction",
|
||||
"off-topic",
|
||||
"help",
|
||||
"pomodoro",
|
||||
] as const;
|
||||
|
||||
export const VoiceChannelOptions = [
|
||||
"for-two",
|
||||
"for-three",
|
||||
"for-four",
|
||||
"for-group",
|
||||
"custom",
|
||||
"pomodoro-25-5",
|
||||
"pomodoro-50-10",
|
||||
] as const;
|
||||
|
||||
export const TextChannels = z.enum(TextChannelOptions);
|
||||
export const VoiceChannels = z.enum(VoiceChannelOptions);
|
||||
Reference in New Issue
Block a user