fix(types,medusa): calculate taxes for original price (#11692)

This commit is contained in:
Riqwan Thamir
2025-03-03 14:20:48 +01:00
committed by GitHub
parent 954136f13a
commit 51b0af193c
4 changed files with 108 additions and 0 deletions
@@ -46,6 +46,16 @@ export interface BaseCalculatedPriceSet {
*/
original_amount: number | null
/**
* The amount of the original price with taxes included. If the original price is tax inclusive, this field will be the same as `original_amount`.
*/
original_amount_with_tax: number | null
/**
* The amount of the original price without taxes included. If the original price is tax exclusive, this field will be the same as `original_amount`.
*/
original_amount_without_tax: number | null
/**
* The currency code of the calculated price, or null if there isn't a calculated price.
*/