import type { CurrencyValue } from '../../../libs/util-domain-models'; export interface OrderItem { description?: string; id?: string; productId: string; quantity: number; shipmentId?: string; shippingItemId?: string; slug: string; title?: string; totalPrice?: CurrencyValue; variantId?: string; }