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.
@@ -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[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopoflex-types",
3
- "version": "1.0.158",
3
+ "version": "1.0.161",
4
4
  "description": "Shared TypeScript types for Shopoflex applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",