shopoflex-types 1.0.96 → 1.0.98
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 +3 -0
- package/package.json +1 -1
package/dist/productCart.d.ts
CHANGED
|
@@ -92,6 +92,7 @@ export interface CartItem {
|
|
|
92
92
|
modifiersPrice?: number;
|
|
93
93
|
unitPrice?: number;
|
|
94
94
|
totalPrice?: number;
|
|
95
|
+
notes?: string;
|
|
95
96
|
}
|
|
96
97
|
export interface sModifier {
|
|
97
98
|
name: NameType;
|
|
@@ -110,6 +111,7 @@ export interface Cart {
|
|
|
110
111
|
delivery: number;
|
|
111
112
|
total: number;
|
|
112
113
|
tax?: number;
|
|
114
|
+
paid?: number;
|
|
113
115
|
totalsByUnit?: Record<UnitTypeValue, number>;
|
|
114
116
|
}
|
|
115
117
|
export interface CartModelType extends Cart {
|
|
@@ -188,5 +190,6 @@ export interface OrderType {
|
|
|
188
190
|
processedBy?: mongoose.Types.ObjectId | string;
|
|
189
191
|
deliveredBy?: mongoose.Types.ObjectId | string;
|
|
190
192
|
terminalId?: string;
|
|
193
|
+
notes?: string;
|
|
191
194
|
}
|
|
192
195
|
export {};
|