import { z } from "zod";

export const UpsertHotDealSchema = z.object({}).passthrough();
export const CreateHotDealSchema = z.object({
  id: z.string().min(1),
  deal: z.object({}).passthrough(),
});
export const UpdateHotDealSchema = z.object({}).passthrough();

export type CreateHotDealRequest = z.infer<typeof CreateHotDealSchema>;
export type UpdateHotDealRequest = z.infer<typeof UpdateHotDealSchema>;
