@mitumba/sdk 1.3.0 → 1.4.0

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
@@ -473,27 +473,22 @@ interface WishlistListing {
473
473
  id: string;
474
474
  title: string;
475
475
  price: number;
476
- condition: Condition;
477
- store_id: string | null;
478
- category_id: string;
479
- city_id: string;
480
- status: string;
481
- created_at: string;
482
- image_keys?: string;
476
+ condition: string;
477
+ size: string | null;
478
+ image_url: string | null;
483
479
  }
484
480
 
485
481
  interface CartItem {
486
- id: string;
487
482
  listing_id: string;
488
- store_id: string;
489
- store_name: string;
490
- store_slug: string;
491
483
  title: string;
492
484
  price: number;
493
485
  condition: string;
494
486
  size: string | null;
495
- image_keys: string | null;
496
- added_at: string;
487
+ store_id: string;
488
+ store_name: string;
489
+ store_slug: string;
490
+ image_url: string | null;
491
+ delivery_fee: number;
497
492
  }
498
493
 
499
494
  interface UpdateProfileInput {
package/dist/index.d.ts CHANGED
@@ -473,27 +473,22 @@ interface WishlistListing {
473
473
  id: string;
474
474
  title: string;
475
475
  price: number;
476
- condition: Condition;
477
- store_id: string | null;
478
- category_id: string;
479
- city_id: string;
480
- status: string;
481
- created_at: string;
482
- image_keys?: string;
476
+ condition: string;
477
+ size: string | null;
478
+ image_url: string | null;
483
479
  }
484
480
 
485
481
  interface CartItem {
486
- id: string;
487
482
  listing_id: string;
488
- store_id: string;
489
- store_name: string;
490
- store_slug: string;
491
483
  title: string;
492
484
  price: number;
493
485
  condition: string;
494
486
  size: string | null;
495
- image_keys: string | null;
496
- added_at: string;
487
+ store_id: string;
488
+ store_name: string;
489
+ store_slug: string;
490
+ image_url: string | null;
491
+ delivery_fee: number;
497
492
  }
498
493
 
499
494
  interface UpdateProfileInput {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mitumba/sdk",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "The official TypeScript SDK for the Mitumba marketplace platform.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",