feat(dashboard,types): add credit lines + loyalty changes (#11885)

* feat(dashboard,types): add credit lines + loyalty changes

* chore: fix types

* chore: fix specs

* chore: use correct plugin name

* chore: use new currency input

---------

Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
This commit is contained in:
Riqwan Thamir
2025-06-12 20:12:03 +02:00
committed by GitHub
co-authored by Oli Juhl
parent 65f9333501
commit 44d1d18689
21 changed files with 883 additions and 113 deletions
@@ -884,6 +884,10 @@ export interface BaseOrder {
* The tax total applied on the order's shipping methods, excluding promotions.
*/
original_shipping_tax_total: number
/**
* The total of the order's credit lines.
*/
credit_line_total: number
}
export interface BaseOrderFilters
+12
View File
@@ -1227,6 +1227,11 @@ export interface OrderDTO {
*/
discount_tax_total: BigNumberValue
/**
* The credit line total of the order.
*/
credit_line_total: BigNumberValue
/**
* The gift card total of the order.
*/
@@ -1365,6 +1370,13 @@ export interface OrderDTO {
*/
raw_discount_tax_total: BigNumberRawValue
/**
* The raw credit line total of the order.
*
* @ignore
*/
raw_credit_line_total: BigNumberRawValue
/**
* The raw gift card total of the order.
*