@bondsports/types 2.1.11 → 2.1.13
Sign up to get free protection for your applications and to get access to all the features.
@@ -59,7 +59,11 @@ export interface IUserItem {
|
|
59
59
|
productId: number;
|
60
60
|
product?: Product;
|
61
61
|
quantity?: number;
|
62
|
+
price?: number;
|
62
63
|
totalPrice?: number;
|
64
|
+
isTaxInclusive?: boolean;
|
65
|
+
percentage?: number;
|
66
|
+
taxItem?: IUserItem;
|
63
67
|
}
|
64
68
|
export interface IFindDiscountsOptions {
|
65
69
|
includeGLCodes?: boolean;
|
@@ -75,3 +79,8 @@ export interface IProductRelatedResource {
|
|
75
79
|
program?: IProductRelatedProgram;
|
76
80
|
membership?: IProductRelatedMembership;
|
77
81
|
}
|
82
|
+
export interface IDiscountItem {
|
83
|
+
id: number;
|
84
|
+
amount: number;
|
85
|
+
percentage?: number;
|
86
|
+
}
|