shopoflex-types 1.0.158 → 1.0.161
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 +2 -0
- package/package.json +1 -1
package/dist/productCart.d.ts
CHANGED
|
@@ -102,6 +102,7 @@ export interface CartItem {
|
|
|
102
102
|
selectedVariant: VariantType | null;
|
|
103
103
|
files?: FileType[];
|
|
104
104
|
quantity: number;
|
|
105
|
+
refundedQuantity?: number;
|
|
105
106
|
basePrice?: number;
|
|
106
107
|
modifiersPrice?: number;
|
|
107
108
|
unitPrice?: number;
|
|
@@ -218,6 +219,7 @@ export interface OrderType {
|
|
|
218
219
|
}>;
|
|
219
220
|
currentHandler?: mongoose.Types.ObjectId | string;
|
|
220
221
|
notes?: string;
|
|
222
|
+
refunded?: boolean;
|
|
221
223
|
addTimelineEntry?(action: string, userId?: mongoose.Types.ObjectId | string): this;
|
|
222
224
|
getWhoDidAction?(action: string): any;
|
|
223
225
|
getUserTimeline?(userId: mongoose.Types.ObjectId | string): any[];
|