Variable GameEventSchemaConst

GameEventSchema: ZodDiscriminatedUnion<"type", [ZodObject<{
    correct: ZodBoolean;
    tutorial: ZodOptional<ZodBoolean>;
    type: ZodLiteral<"chest_open">;
}, "strip", ZodTypeAny, {
    correct: boolean;
    tutorial?: boolean;
    type: "chest_open";
}, {
    correct: boolean;
    tutorial?: boolean;
    type: "chest_open";
}>, ZodObject<{
    correct: ZodBoolean;
    tutorial: ZodOptional<ZodBoolean>;
    type: ZodLiteral<"sequence_step">;
}, "strip", ZodTypeAny, {
    correct: boolean;
    tutorial?: boolean;
    type: "sequence_step";
}, {
    correct: boolean;
    tutorial?: boolean;
    type: "sequence_step";
}>, ZodObject<{
    correct: ZodBoolean;
    round: ZodNumber;
    type: ZodLiteral<"price_guess">;
}, "strip", ZodTypeAny, {
    correct: boolean;
    round: number;
    type: "price_guess";
}, {
    correct: boolean;
    round: number;
    type: "price_guess";
}>]> = ...