shopoflex-types 1.0.97 → 1.0.99

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.
@@ -111,6 +111,7 @@ export interface Cart {
111
111
  delivery: number;
112
112
  total: number;
113
113
  tax?: number;
114
+ paid?: number;
114
115
  totalsByUnit?: Record<UnitTypeValue, number>;
115
116
  }
116
117
  export interface CartModelType extends Cart {
@@ -161,7 +162,6 @@ export interface OrderType {
161
162
  paymentMethod?: PaymentMethodType;
162
163
  address?: Address;
163
164
  status?: OrderStatusType;
164
- paid?: boolean;
165
165
  shipping: Shipping;
166
166
  createdAt?: Date;
167
167
  updatedAt?: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopoflex-types",
3
- "version": "1.0.97",
3
+ "version": "1.0.99",
4
4
  "description": "Shared TypeScript types for Shopoflex applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",