// apps/web/src/features/item-purchase/types.ts
import type { ShipmentForCard } from './ItemPurchaseStateCard';

export type ShipmentForTracking = ShipmentForCard & {
  shippedAt: string | null;
  createdAt: string;
};

export type TrackingEvent = {
  id: string;
  fromStatus: string | null;
  toStatus: string;
  source: string;
  note: string | null;
  createdAt: string;
};
