shopoflex-types 1.0.19 → 1.0.21
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.
- package/dist/types/common.d.ts +8 -0
- package/package.json +1 -1
package/dist/types/common.d.ts
CHANGED
|
@@ -268,6 +268,14 @@ export interface OrderType {
|
|
|
268
268
|
createdAt?: Date;
|
|
269
269
|
updatedAt?: Date;
|
|
270
270
|
orderNumber?: any;
|
|
271
|
+
promo?: {
|
|
272
|
+
_id?: string;
|
|
273
|
+
code?: string;
|
|
274
|
+
type?: string;
|
|
275
|
+
value?: number;
|
|
276
|
+
category?: string;
|
|
277
|
+
discountedAmount?: number;
|
|
278
|
+
};
|
|
271
279
|
}
|
|
272
280
|
export interface Customer {
|
|
273
281
|
_id?: string;
|