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