0 2 SellerView.ts S E L L E R // type SellerTransactionView = Pick < Transaction, | 'id' | 'itemId' | 'buyerId' | 'price' | 'platformFee' | 'shippingFee' | 'trackingNumber' | 'status' | 'buyerRating' > & { netRevenue: number; }; // : shippingAddress, sellerRating BuyerView.ts B U Y E R // type BuyerTransactionView = Pick < Transaction, | 'id' | 'itemId' | 'sellerId' | 'price' | 'shippingFee' | 'shippingAddress' | 'trackingNumber' | 'status' | 'sellerRating' > & { totalPaid: number; }; // : platformFee, buyerRating