more bracket work
This commit is contained in:
@@ -22,6 +22,13 @@ export interface Team {
|
||||
tournaments: Tournament[];
|
||||
}
|
||||
|
||||
export interface TeamInfo {
|
||||
id: string;
|
||||
name: string;
|
||||
primary_color: string;
|
||||
accent_color: string;
|
||||
}
|
||||
|
||||
export const teamInputSchema = z
|
||||
.object({
|
||||
name: z.string().min(1, "Team name is required").max(100, "Name too long"),
|
||||
|
||||
Reference in New Issue
Block a user