import { z } from "zod"; export type SeedVariations = z.infer; export const SeedVariationsSchema = z.enum([ "check-in", "match", "tournament-start", ]);