feat(medusa): Add item and shipping tax totals to order (#5385)

* Expose item tax total and shipping tax total in order totals

* Added changeset

* Fixes to tests

* Fixes to integration tests

* Fixes to integration tests

* Fixes to integration tests

* Change changeset to patch
This commit is contained in:
pepijn-vanvlaanderen
2023-10-19 09:57:37 +02:00
committed by GitHub
parent 5a5c96e211
commit 0d7c5543dd
6 changed files with 28 additions and 3 deletions
+2
View File
@@ -240,8 +240,10 @@ export class Order extends BaseEntity {
// Total fields
shipping_total: number
shipping_tax_total: number | null
discount_total: number
raw_discount_total: number
item_tax_total: number | null
tax_total: number | null
refunded_total: number
total: number