import type { CategoryEntity, MerchantEntity, ProductEntity } from './index.js'; export type CheckoutOrderItemProductEntity = Pick; export type CheckoutOrderItemProductEntityDenormalized = Omit & { categories: CategoryEntity[] | undefined; merchant: MerchantEntity | undefined; labels: ProductEntity['labels']; };