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:
co-authored by
Oli Juhl
parent
65f9333501
commit
44d1d18689
@@ -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
|
||||
|
||||
@@ -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.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user