@signskart/shared 1.3.37 → 1.3.39
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/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -595,6 +595,7 @@ interface ICartItem {
|
|
|
595
595
|
product: IProduct;
|
|
596
596
|
quantity: number;
|
|
597
597
|
totalAmount: number;
|
|
598
|
+
metaData: {};
|
|
598
599
|
createdAt: string;
|
|
599
600
|
updatedAt: string;
|
|
600
601
|
}
|
|
@@ -604,6 +605,8 @@ interface ICart {
|
|
|
604
605
|
cartItems: ICartItem[];
|
|
605
606
|
user: ICustomer;
|
|
606
607
|
coupon: ICoupon;
|
|
608
|
+
store: IStore;
|
|
609
|
+
metaData: {};
|
|
607
610
|
subTotalAmount: number;
|
|
608
611
|
discountAmount: number;
|
|
609
612
|
totalAmount: number;
|
|
@@ -628,6 +631,7 @@ interface IOrder {
|
|
|
628
631
|
_id: string;
|
|
629
632
|
orderItems: IOrderItem[];
|
|
630
633
|
cart: ICart;
|
|
634
|
+
store: IStore;
|
|
631
635
|
coupon: ICoupon;
|
|
632
636
|
customer: ICustomer;
|
|
633
637
|
subTotalAmount: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -595,6 +595,7 @@ interface ICartItem {
|
|
|
595
595
|
product: IProduct;
|
|
596
596
|
quantity: number;
|
|
597
597
|
totalAmount: number;
|
|
598
|
+
metaData: {};
|
|
598
599
|
createdAt: string;
|
|
599
600
|
updatedAt: string;
|
|
600
601
|
}
|
|
@@ -604,6 +605,8 @@ interface ICart {
|
|
|
604
605
|
cartItems: ICartItem[];
|
|
605
606
|
user: ICustomer;
|
|
606
607
|
coupon: ICoupon;
|
|
608
|
+
store: IStore;
|
|
609
|
+
metaData: {};
|
|
607
610
|
subTotalAmount: number;
|
|
608
611
|
discountAmount: number;
|
|
609
612
|
totalAmount: number;
|
|
@@ -628,6 +631,7 @@ interface IOrder {
|
|
|
628
631
|
_id: string;
|
|
629
632
|
orderItems: IOrderItem[];
|
|
630
633
|
cart: ICart;
|
|
634
|
+
store: IStore;
|
|
631
635
|
coupon: ICoupon;
|
|
632
636
|
customer: ICustomer;
|
|
633
637
|
subTotalAmount: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signskart/shared",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.39",
|
|
4
4
|
"description": "Production-grade upload manager SDK with queue, progress tracking, retry logic, and multi-provider support (S3, Cloudinary).",
|
|
5
5
|
"author": "Signskart",
|
|
6
6
|
"license": "UNLICENSED",
|