fix(types): add missing completed_at property for carts (#14412)

This commit is contained in:
Shahed Nasser
2025-12-29 11:08:37 +02:00
committed by GitHub
parent d347e369ce
commit 89a0adc612
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
---
"@medusajs/types": patch
---
fix(types): add missing completed_at property for carts

View File

@@ -199,6 +199,11 @@ export interface BaseCart {
* The sum of all shipping methods' original tax totals before discounts.
*/
original_shipping_tax_total: number
/**
* The date the cart was completed.
*/
completed_at?: string | Date
}
export interface BaseCartAddress {