shopoflex-types 1.0.93 → 1.0.95
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/productCart.d.ts +1 -1
- package/package.json +1 -1
package/dist/productCart.d.ts
CHANGED
|
@@ -80,6 +80,7 @@ export interface Cart {
|
|
|
80
80
|
discount: number;
|
|
81
81
|
delivery: number;
|
|
82
82
|
total: number;
|
|
83
|
+
tax?: number;
|
|
83
84
|
totalsByUnit?: Record<UnitTypeValue, number>;
|
|
84
85
|
}
|
|
85
86
|
export interface CartModelType extends Cart {
|
|
@@ -180,7 +181,6 @@ export interface OrderType {
|
|
|
180
181
|
category?: string;
|
|
181
182
|
discountedAmount?: number;
|
|
182
183
|
};
|
|
183
|
-
tax?: number;
|
|
184
184
|
processedBy?: mongoose.Types.ObjectId | string;
|
|
185
185
|
deliveredBy?: mongoose.Types.ObjectId | string;
|
|
186
186
|
terminalId?: string;
|