shopoflex-types 1.0.142 → 1.0.144

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.
@@ -120,6 +120,7 @@ export interface CreatePurchaseOrderRequest {
120
120
  items: Omit<PurchaseOrderItem, 'receivedQuantity'>[];
121
121
  expectedDelivery?: string;
122
122
  notes?: string;
123
+ orderDate?: string;
123
124
  }
124
125
  export interface ReceivePurchaseOrderRequest {
125
126
  receivedItems: {
@@ -60,6 +60,7 @@ export interface ProductType {
60
60
  hasVariants?: boolean;
61
61
  sort?: number;
62
62
  isActive: boolean;
63
+ taxEnabled?: boolean;
63
64
  specifications?: {
64
65
  active: boolean;
65
66
  values: any[];
@@ -106,6 +107,7 @@ export interface CartItem {
106
107
  notes?: ProductNotes;
107
108
  printCategory?: string;
108
109
  printed?: boolean;
110
+ taxEnabled?: boolean;
109
111
  }
110
112
  export interface sModifier {
111
113
  name: NameType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopoflex-types",
3
- "version": "1.0.142",
3
+ "version": "1.0.144",
4
4
  "description": "Shared TypeScript types for Shopoflex applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",