Type Alias: RecalculateCartResponse
RecalculateCartResponse = {
code
:"CART_CLOSED"
|"CART_NOT_FOUND"
|"CART_ACCESS_FORBIDDEN"
; } | {cartItems
:CartItem
[];priceModifiers
:PriceModifier
[]; }
Response structure for cart recalculation operations.
This type represents the possible responses when recalculating prices in a cart. It can either return the updated cart items with new prices and any price modifiers, or an error code indicating why recalculation couldn't be performed.
Having both success and error cases in a single type allows for streamlined response handling without try/catch blocks for expected scenarios.