shopoflex-types 1.0.96 → 1.0.97

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.
@@ -92,6 +92,7 @@ export interface CartItem {
92
92
  modifiersPrice?: number;
93
93
  unitPrice?: number;
94
94
  totalPrice?: number;
95
+ notes?: string;
95
96
  }
96
97
  export interface sModifier {
97
98
  name: NameType;
@@ -188,5 +189,6 @@ export interface OrderType {
188
189
  processedBy?: mongoose.Types.ObjectId | string;
189
190
  deliveredBy?: mongoose.Types.ObjectId | string;
190
191
  terminalId?: string;
192
+ notes?: string;
191
193
  }
192
194
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopoflex-types",
3
- "version": "1.0.96",
3
+ "version": "1.0.97",
4
4
  "description": "Shared TypeScript types for Shopoflex applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",