import { z } from 'zod';
export const IntentRequestSchema = z.object({ purchaseId: z.uuid() });
export type IntentRequest = z.infer<typeof IntentRequestSchema>;
