@signskart/shared 1.3.39 → 1.3.40

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 CHANGED
@@ -602,9 +602,10 @@ interface ICartItem {
602
602
 
603
603
  interface ICart {
604
604
  _id: string;
605
+ cartId: string;
605
606
  cartItems: ICartItem[];
606
- user: ICustomer;
607
- coupon: ICoupon;
607
+ user?: ICustomer;
608
+ coupon?: ICoupon;
608
609
  store: IStore;
609
610
  metaData: {};
610
611
  subTotalAmount: number;
package/dist/index.d.ts CHANGED
@@ -602,9 +602,10 @@ interface ICartItem {
602
602
 
603
603
  interface ICart {
604
604
  _id: string;
605
+ cartId: string;
605
606
  cartItems: ICartItem[];
606
- user: ICustomer;
607
- coupon: ICoupon;
607
+ user?: ICustomer;
608
+ coupon?: ICoupon;
608
609
  store: IStore;
609
610
  metaData: {};
610
611
  subTotalAmount: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signskart/shared",
3
- "version": "1.3.39",
3
+ "version": "1.3.40",
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",